/* Go Cleeny - Static Site Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: hsl(240, 98.5%, 27.1%);
  --primary-hover: hsl(240, 98.5%, 22%);
  --primary-light: hsl(240, 98.5%, 95%);
  --foreground: hsl(222.2, 84%, 4.9%);
  --background: hsl(0, 0%, 100%);
  --border: hsl(214.3, 31.8%, 91.4%);
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  --shadow-premium-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  --radius: 0.5rem;
  --container-max: 1400px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; letter-spacing: -0.025em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

/* Typography */
.heading-hero { font-size: 2.25rem; font-weight: 700; line-height: 1.1; }
.heading-section { font-size: 1.875rem; font-weight: 700; line-height: 1.2; }
@media (min-width: 640px) { .heading-hero { font-size: 3rem; } .heading-section { font-size: 2.25rem; } }
@media (min-width: 768px) { .heading-hero { font-size: 3.75rem; } .heading-section { font-size: 3rem; } }
@media (min-width: 1024px) { .heading-hero { font-size: 4.5rem; } }

.text-gradient {
  background: linear-gradient(to right, var(--green-300), #a7f3d0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-padding { padding: 3rem 0; }
@media (min-width: 640px) { .section-padding { padding: 4rem 0; } }
@media (min-width: 768px) { .section-padding { padding: 5rem 0; } }
@media (min-width: 1024px) { .section-padding { padding: 6rem 0; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-align: center;
}

.btn-lg { padding: 0.875rem 2rem; font-size: 1.125rem; height: 3.5rem; }
.btn-md { padding: 0.75rem 2rem; font-size: 1rem; height: 3rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

.btn-primary { background: var(--primary); color: white; box-shadow: var(--shadow-premium); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-premium-hover); }

.btn-white { background: white; color: var(--primary); box-shadow: var(--shadow-premium); }
.btn-white:hover { background: var(--gray-100); }

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  backdrop-filter: blur(12px);
}
.btn-outline:hover { background: white; color: var(--primary); }

.btn-block { width: 100%; }

/* Header / Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s;
}

.logo-link:hover img { transform: scale(1.1); }

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 640px) { .logo-text { font-size: 1.25rem; } }

.desktop-nav { display: none; gap: 1.5rem; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }

.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0,0,0,0.8);
  position: relative;
  transition: color 0.3s, transform 0.3s;
}

.desktop-nav a:hover { color: var(--primary); transform: translateY(-2px); }

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.desktop-nav a:hover::after { transform: scaleX(1); }
.desktop-nav a.active { color: var(--primary); }
.desktop-nav a.active::after { transform: scaleX(1); }

.menu-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  color: var(--foreground);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-toggle:hover { background: rgba(2,1,137,0.05); color: var(--primary); }
@media (min-width: 768px) { .menu-toggle { display: none; } }

/* Mobile Menu */
.mobile-menu {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 9999 !important;
  background: #ffffff !important;
  flex-direction: column !important;
  overflow: hidden;
}
.mobile-menu.open { display: flex !important; }

.mobile-menu-header {
  background: var(--primary);
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  flex-shrink: 0;
  width: 100%;
}

.mobile-menu-header .logo-text { color: white; }

.mobile-menu-close {
  padding: 0.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 0.5rem;
  min-width: 44px;
  min-height: 44px;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.1); }

.mobile-nav {
  flex: 1 1 auto !important;
  width: 100% !important;
  padding: 1.5rem 1rem;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem;
  overflow-y: auto;
  background: #ffffff !important;
}

.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: 0.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
  min-height: 44px;
  width: 100%;
  display: flex !important;
  align-items: center;
  color: var(--gray-900, #111);
  background: #ffffff;
}

.mobile-nav a:hover { background: rgba(2,1,137,0.1); color: var(--primary); }

/* Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .hero { min-height: 90vh; } }
.hero-sm { min-height: 50vh; }
@media (min-width: 640px) { .hero-sm { min-height: 60vh; } }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2,1,137,0.8), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 56rem;
  padding: 0 1rem;
  animation: fadeInUp 1s ease-out;
}

.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (min-width: 640px) { .badge { font-size: 0.875rem; padding: 0.375rem 1rem; } }

.hero h1 { color: white; }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.125rem; max-width: 42rem; font-weight: 300; line-height: 1.6; }
@media (min-width: 640px) { .hero p { font-size: 1.25rem; } }
@media (min-width: 768px) { .hero p { font-size: 1.5rem; } }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  padding: 0 1rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; width: auto; padding: 0; }
  .hero-buttons .btn { width: auto; }
}

/* Grid layouts */
.grid-2 { display: grid; gap: 4rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; } }

.grid-3 { display: grid; gap: 2rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 { display: grid; gap: 2rem; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Cards */
.card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
@media (min-width: 640px) { .card { padding: 2rem; } }
.card:hover { box-shadow: var(--shadow-premium-hover); transform: translateY(-8px); }

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gray-50);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s, color 0.3s;
}
.card:hover .card-icon { background: var(--primary); color: white; }
.card-icon svg { width: 1.75rem; height: 1.75rem; color: var(--gray-700); }
.card:hover .card-icon svg { color: white; }

.card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
@media (min-width: 640px) { .card h3 { font-size: 1.5rem; } }
.card p { color: var(--gray-600); line-height: 1.6; margin-bottom: 1.5rem; }
.card-price { color: var(--primary); font-weight: 700; font-size: 1.125rem; }
.card-offer { font-size: 0.875rem; color: var(--green-600); font-weight: 500; margin-top: 0.25rem; }
.card-footer { border-top: 1px solid var(--gray-100); padding-top: 1rem; margin-top: auto; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 1rem; }

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(2,1,137,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.feature-item:hover .feature-icon { background: var(--primary); }
.feature-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.feature-item:hover .feature-icon svg { color: white; }
.feature-item p { font-size: 1.125rem; font-weight: 500; color: var(--gray-800); }

/* Image blocks */
.image-block {
  position: relative;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: skewY(1deg);
  transition: transform 0.7s;
}
.image-block:hover { transform: skewY(0); }
@media (min-width: 640px) { .image-block { height: 500px; } }

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.image-block:hover img { transform: scale(1.05); }

.image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1.5rem;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  color: white;
}

/* Section labels */
.section-label {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.25rem;
  display: inline-block;
}

.section-header { text-align: center; margin-bottom: 4rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
.section-header p { font-size: 1.25rem; color: var(--gray-600); margin-top: 1rem; }

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  text-align: center;
}

.cta-section h2 { color: white; margin-bottom: 1.5rem; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.25rem; max-width: 42rem; margin: 0 auto 2.5rem; font-weight: 300; }
@media (min-width: 768px) { .cta-section p { font-size: 1.5rem; } }

.cta-shapes::before,
.cta-shapes::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
}
.cta-shapes::before { top: 0; right: 0; background: rgba(255,255,255,0.05); transform: translate(50%, -50%); }
.cta-shapes::after { bottom: 0; left: 0; background: rgba(34,197,94,0.1); transform: translate(-50%, 50%); }

/* Background decorations */
.bg-gray { background: var(--gray-50); }
.bg-white { background: white; }
.bg-decor::before {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(2,1,137,0.05);
  filter: blur(64px);
  pointer-events: none;
}
.bg-decor-tr::before { top: 0; right: 0; margin-right: -5rem; margin-top: -5rem; }
.bg-decor-bl::after {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(34,197,94,0.05);
  filter: blur(64px);
  bottom: 0;
  left: 0;
  margin-left: -5rem;
  margin-bottom: -5rem;
  pointer-events: none;
}

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-100); }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.stat-value { font-size: 1.5rem; font-weight: 700; color: var(--primary); font-family: 'Outfit', sans-serif; }
@media (min-width: 640px) { .stat-value { font-size: 1.875rem; } }
.stat-label { font-size: 0.75rem; color: var(--gray-500); font-weight: 500; }
@media (min-width: 640px) { .stat-label { font-size: 0.875rem; } }

/* Footer */
.site-footer {
  background: var(--primary);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); padding: 3rem 0; } }

.footer-brand { text-align: center; }
@media (min-width: 640px) { .footer-brand { text-align: left; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) { .footer-logo { justify-content: flex-start; } }

.footer-logo-icon {
  padding: 0.5rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}
.footer-logo-icon img { width: 48px; height: 48px; object-fit: contain; }

.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 0.5rem; }
@media (min-width: 640px) { .footer-desc { font-size: 1rem; } }


.social-links { display: flex; gap: 0.75rem; justify-content: center; padding-top: 0.5rem; }
@media (min-width: 640px) { .social-links { justify-content: flex-start; } }

.social-link {
  background: rgba(255,255,255,0.1);
  padding: 0.625rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  min-width: 44px;
  min-height: 44px;
}
.social-link:hover { background: white; color: var(--primary); }
.social-link svg { width: 1.25rem; height: 1.25rem; }

.footer-col { text-align: center; }
@media (min-width: 640px) { .footer-col { text-align: left; } }

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-left: 4px solid var(--green-400);
  padding-left: 0.75rem;
  display: inline-block;
}
@media (min-width: 640px) { .footer-col h3 { display: block; font-size: 1.125rem; } }

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
@media (min-width: 640px) { .footer-col a { font-size: 1rem; } }
.footer-col a:hover { color: white; transform: translateX(4px); }

.contact-box {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-item { margin-bottom: 0.75rem; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item h4 { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.375rem; }
.contact-item a, .contact-item span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: white;
  transition: color 0.2s;
}
@media (min-width: 640px) { .contact-item a, .contact-item span { font-size: 1rem; } }
.contact-item a:hover { color: var(--green-300); }
.contact-item svg { width: 1.25rem; height: 1.25rem; color: var(--green-400); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: white; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--green-400); }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 500; color: var(--gray-700); margin-bottom: 0.25rem; margin-left: 0.25rem; font-size: 0.875rem; }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  background: var(--gray-50);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  min-height: 48px;
}

.form-textarea { min-height: 120px; resize: vertical; }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(2,1,137,0.1);
}

.form-input.error, .form-textarea.error { border-color: #ef4444; }
.form-error { color: #ef4444; font-size: 0.75rem; margin-top: 0.25rem; margin-left: 0.25rem; }

.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

/* Contact page */
.office-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.toggle-group {
  display: flex;
  padding: 0.25rem;
  background: white;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: 1px solid var(--gray-100);
}

.toggle-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--gray-500);
  transition: all 0.3s;
  white-space: nowrap;
}

.toggle-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transform: scale(1.05);
}

.contact-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  max-width: 900px;
  margin: 0 auto;
}

.contact-card-grid { display: grid; }
@media (min-width: 768px) { .contact-card-grid { grid-template-columns: 3fr 2fr; } }

.contact-form-side { padding: 1.5rem; }
@media (min-width: 768px) { .contact-form-side { padding: 3rem; } }

.contact-info-side {
  background: var(--gray-900);
  color: white;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .contact-info-side { padding: 3rem; } }

.info-cards { display: grid; gap: 2rem; }
@media (min-width: 768px) { .info-cards { grid-template-columns: repeat(3, 1fr); } }

.info-card {
  background: var(--primary);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transition: transform 0.3s;
}
.info-card:hover { transform: translateY(-8px); }
.info-card svg { width: 4rem; height: 4rem; opacity: 0.8; margin: 0 auto 1.5rem; }
.info-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }

.map-section { width: 100%; height: 350px; background: var(--gray-200); }
@media (min-width: 640px) { .map-section { height: 450px; } }
.map-section iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3); }

/* Services */
.service-block { position: relative; }
.service-block.reverse .service-content { order: 2; }
.service-block.reverse .service-image { order: 1; }
@media (min-width: 768px) {
  .service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .service-block.reverse .service-content { grid-column: 2; }
  .service-block.reverse .service-image { grid-column: 1; grid-row: 1; }
}

.service-icon-lg {
  width: 4rem;
  height: 4rem;
  background: rgba(2,1,137,0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.service-icon-lg svg { width: 2rem; height: 2rem; }

.service-image {
  position: relative;
  height: 350px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
@media (min-width: 640px) { .service-image { height: 450px; } }
@media (min-width: 768px) { .service-image { height: 500px; } }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.service-image:hover img { transform: scale(1.05); }

/* Comparison table */
.table-scroll { overflow-x: auto; }
.table-hint { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 1rem; text-align: center; }
@media (min-width: 768px) { .table-hint { display: none; } }

.compare-table {
  min-width: 800px;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.compare-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem;
  font-weight: 700;
}

.compare-header .highlight {
  color: var(--primary);
  background: rgba(2,1,137,0.05);
  border-radius: 0.5rem 0.5rem 0 0;
  margin: -1.5rem -0.5rem -1.5rem;
  padding: 1.5rem 0.5rem;
  text-align: center;
}

.compare-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.25rem;
  align-items: center;
  border-bottom: 1px solid var(--gray-100);
}
.compare-row:nth-child(even) { background: rgba(249,250,251,0.5); }
.compare-row:hover { background: var(--gray-50); }
.compare-row .highlight-col { background: rgba(2,1,137,0.05); text-align: center; margin: -1.25rem 0; padding: 1.25rem 0; }
.compare-row .col-center { text-align: center; display: flex; justify-content: center; }

.check-icon { color: var(--green-500); width: 1.25rem; height: 1.25rem; }
.x-icon { color: var(--gray-300); width: 1.25rem; height: 1.25rem; }
.badge-addon { font-size: 0.75rem; font-weight: 700; color: var(--primary); border: 1px solid var(--primary); padding: 0.125rem 0.5rem; border-radius: 9999px; text-transform: uppercase; }

/* Reviews */
.reviews-badge-bar {
  padding: 1.5rem 0;
  background: linear-gradient(to right, #f0fdf4, #eff6ff);
  border-bottom: 1px solid var(--gray-100);
}

.checkatrade-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s;
}
.checkatrade-link:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(2,1,137,0.05), rgba(2,1,137,0.1));
  border: 1px solid rgba(2,1,137,0.1);
  transition: all 0.3s;
}
.stat-card:hover { box-shadow: 0 20px 25px rgba(0,0,0,0.1); transform: translateY(-4px); }

.reviews-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.reviews-carousel::-webkit-scrollbar { display: none; }

.review-card {
  min-width: 280px;
  width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--gray-50);
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
@media (min-width: 768px) { .review-card { min-width: 300px; width: 300px; } }
.review-card:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.1); }

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--gray-200);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  color: var(--gray-400);
  transition: color 0.2s, border-color 0.2s;
  z-index: 10;
}
.carousel-nav:hover { color: var(--primary); border-color: var(--primary); }
@media (min-width: 768px) { .carousel-nav { display: flex; } }
.carousel-prev { left: -1rem; }
.carousel-next { right: -1rem; }

.carousel-wrap { position: relative; }

.stars { display: flex; gap: 0.125rem; }
.star-filled { color: #fb923c; fill: #fb923c; }
.star-empty { color: var(--gray-200); }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }

.modal {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.2s ease-out;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  color: var(--gray-500);
}
.modal-close:hover { background: var(--gray-100); }

.modal-header { padding: 1.5rem 1.5rem 0; }
.modal-body { padding: 1.5rem; }

.alert { padding: 0.75rem; border-radius: 0.75rem; margin-bottom: 1rem; font-size: 0.875rem; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }

/* Franchising timeline */
.timeline { max-width: 56rem; margin: 0 auto; }
.timeline-item { display: flex; gap: 1.5rem; margin-bottom: 3rem; position: relative; }
.timeline-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(2,1,137,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: border-color 0.3s, transform 0.3s;
}
.timeline-item:hover .timeline-number { border-color: var(--primary); transform: scale(1.1); }
.timeline-content {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.timeline-content h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.timeline-content p { color: var(--gray-600); }

/* Legal pages */
.legal-page { padding: 3rem 0; }
.legal-content {
  max-width: 56rem;
  margin: 0 auto;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
}
@media (min-width: 768px) { .legal-content { padding: 2.5rem; } }
.legal-content h1 { font-size: 1.875rem; color: var(--primary); margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.25rem; color: var(--primary); margin-bottom: 0.75rem; margin-top: 1.5rem; }
.legal-content p, .legal-content li { color: var(--gray-700); line-height: 1.7; margin-bottom: 0.5rem; }
.legal-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-content a { color: var(--primary); }
.legal-content a:hover { text-decoration: underline; }

/* Trust badges */
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  font-weight: 700;
  color: var(--gray-700);
  transition: box-shadow 0.2s;
}
.trust-badge:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.1); }

.accredited-by {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}
.accredited-by-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}
.accredited-by-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.accredited-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.9;
}
.accredited-logo-link:hover { transform: translateY(-2px); opacity: 1; }
.accredited-logo-link img {
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  border-radius: 0.5rem;
}
@media (max-width: 480px) {
  .accredited-logo-link img { height: 52px; max-width: 110px; }
  .accredited-by { margin-top: 2rem; padding-top: 1.75rem; }
}

/* Job cards */
.job-card { display: flex; flex-direction: column; }
.job-type {
  display: inline-block;
  background: rgba(2,1,137,0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.job-reqs { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.job-reqs li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--gray-700); margin-bottom: 0.75rem; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.fade-in { animation: fadeInUp 0.8s ease-out; }
.fade-in-view { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.fade-in-view.visible { opacity: 1; transform: translateY(0); }

/* Utilities */
.text-center { text-align: center; }
.text-justify { text-align: justify; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.relative { position: relative; }
.hidden { display: none; }
.hide-sm { display: none; }
@media (min-width: 640px) { .hide-sm { display: block; } }

@media (min-width: 768px) {
  .stats-grid-4 { grid-template-columns: repeat(4, 1fr) !important; }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.pill-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
}
.pill-green { background: #f0fdf4; border: 1px solid #dcfce7; color: var(--gray-700); }
.pill-blue { background: #eff6ff; border: 1px solid #dbeafe; color: var(--gray-700); }
.pill-purple { background: #faf5ff; border: 1px solid #f3e8ff; color: var(--gray-700); }

.main-content { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
