/* Discount Promo LLC — Main Stylesheet */
:root {
  --color-primary: #c2410c;
  --color-primary-dark: #9a3412;
  --color-accent: #f59e0b;
  --color-accent-light: #fbbf24;
  --color-dark: #0f172a;
  --color-text: #334155;
  --color-text-light: #64748b;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-border: #e2e8f0;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --nav-height: 76px;
  --header-top-height: 40px;
  --header-total-height: calc(var(--nav-height) + var(--header-top-height));
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }

h1, h2, h3, h4 {
  color: var(--color-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-alt { background: var(--color-bg-alt); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.125rem;
  margin-top: 1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  box-shadow: 0 4px 15px rgba(194, 65, 12, 0.35);
}

a.btn-primary,
a.btn-primary:hover,
a.btn-primary:focus {
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(194, 65, 12, 0.45);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.btn-dark {
  background: var(--color-dark);
  color: #fff;
}

.btn-dark:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity var(--transition);
}

.site-header.scrolled::after { opacity: 1; }

.header-top-bar {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary-dark) 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  height: var(--header-top-height);
  display: flex;
  align-items: center;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  gap: 1rem;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.header-top-link:hover { color: var(--color-accent-light); }

.header-top-link svg { flex-shrink: 0; opacity: 0.8; }

.header-top-tag {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header .nav-container {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-header.scrolled .nav-container {
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  position: relative;
  z-index: 2;
  transition: transform var(--transition);
}

.logo:hover { transform: scale(1.02); }

.logo img { height: 56px; width: auto; max-width: 280px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: block;
  padding: 0.625rem 0.875rem;
  color: var(--color-dark);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 8px;
  transition: color var(--transition);
  position: relative;
}

.nav-menu > li:not(.has-dropdown):not(.nav-cta):not(.nav-phone) > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-menu > li:not(.has-dropdown):not(.nav-cta):not(.nav-phone) > a:hover::after,
.nav-menu > li:not(.has-dropdown):not(.nav-cta):not(.nav-phone) > a.active::after {
  transform: scaleX(1);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--color-primary);
  background: transparent;
}

.nav-menu .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition);
  position: static;
  transform: none;
  background: none;
}

.nav-menu .has-dropdown > a:hover::after {
  transform: rotate(180deg);
}

.nav-menu .has-dropdown.open > a::after {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  list-style: none;
  border: 1px solid var(--color-border);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 24px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  transform: rotate(45deg);
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all var(--transition);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(194, 65, 12, 0.08), rgba(245, 158, 11, 0.08));
  border-radius: 10px;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.dropdown a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  transform: translateX(4px);
}

.dropdown a:hover .dropdown-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  transform: scale(1.05);
}

.nav-phone { margin-left: 0.25rem; }

.nav-phone-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--color-primary) !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 50px !important;
  background: rgba(194, 65, 12, 0.06) !important;
  border: 1px solid rgba(194, 65, 12, 0.12);
}

.nav-phone-link::after { display: none !important; }

.nav-phone-link:hover {
  background: rgba(194, 65, 12, 0.1) !important;
  color: var(--color-primary-dark) !important;
}

.nav-phone-link svg { flex-shrink: 0; }

.nav-cta { margin-left: 0.375rem; }

.btn-nav {
  padding: 0.625rem 1.375rem !important;
  font-size: 0.875rem !important;
  box-shadow: 0 4px 14px rgba(194, 65, 12, 0.35);
}

.nav-menu > li.nav-cta > a.btn-primary,
.nav-cta .btn-primary {
  color: #fff;
}

.nav-menu > li.nav-cta > a.btn-primary:hover,
.nav-cta .btn-primary:hover {
  color: #fff;
}

.btn-nav::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition);
  border-radius: 2px;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay { display: none; }

/* Water Hero */
.water-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-total-height);
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(245, 158, 11, 0.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 110%, rgba(251, 191, 36, 0.10), transparent 60%),
    linear-gradient(180deg, #1a0f05 0%, #3a1c06 100%);
  color: #fff7ed;
}

#waterCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.water-hero .grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.water-hero .hero-inner {
  position: relative;
  z-index: 5;
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 80px 0 140px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.07);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 34px;
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 12px #f59e0b;
  animation: heroPulse 2.4s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.55; }
}

.water-hero h1 {
  font-family: 'Space Grotesk', var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.5rem, 8.5vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 13ch;
  margin-bottom: 26px;
  color: #fff7ed;
}

.water-hero .liquid {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: liquidFlow 5s linear infinite;
}

@keyframes liquidFlow {
  to { background-position: 200% center; }
}

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: rgba(255, 247, 237, 0.68);
  max-width: 52ch;
  margin-bottom: 44px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn-water-primary {
  font-family: 'Space Grotesk', var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  padding: 16px 34px;
  border-radius: 100px;
  color: #1a0f05 !important;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.35);
  border: none;
}

.btn-water-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(245, 158, 11, 0.5);
  color: #1a0f05 !important;
}

.btn-water-ghost {
  font-family: 'Space Grotesk', var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  padding: 16px 34px;
  border-radius: 100px;
  color: #fff7ed !important;
  border: 1px solid rgba(255, 247, 237, 0.28);
  background: rgba(255, 247, 237, 0.05);
  backdrop-filter: blur(8px);
}

.btn-water-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 247, 237, 0.6);
  color: #fff7ed !important;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 72px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 247, 237, 0.12);
}

.hero-stat b {
  display: block;
  font-family: 'Space Grotesk', var(--font-sans);
  font-size: 1.7rem;
  color: #fff7ed;
}

.hero-stat span {
  font-size: 0.86rem;
  color: rgba(255, 247, 237, 0.55);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 247, 237, 0.35);
  border-radius: 14px;
}

.scroll-hint::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: #f59e0b;
  animation: scrollDrip 2s ease-in-out infinite;
}

@keyframes scrollDrip {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .liquid, .hero-badge::before, .scroll-hint::after { animation: none; }
}

/* Hero Slider (legacy — other pages) */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  margin-top: var(--header-total-height);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg { transform: scale(1); }

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(194, 65, 12, 0.65) 50%, rgba(245, 158, 11, 0.45) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  color: #fff;
  animation: fadeUp 0.8s ease-out;
}

.hero-slide-content h1 {
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.hero-slide-content p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  opacity: 0.92;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.hero-dot.active,
.hero-dot:hover {
  background: #fff;
  border-color: #fff;
  transform: scale(1.15);
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
}

.hero-arrow {
  pointer-events: all;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
}

/* Page Banner */
.page-banner {
  position: relative;
  margin-top: var(--header-total-height);
  padding: 5rem 0 4rem;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #1c0f02, #c2410c, #f59e0b, #9a3412, #b45309);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9375rem;
  opacity: 0.9;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.6; }
.breadcrumb .current { opacity: 1; font-weight: 500; }

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(194, 65, 12, 0.1), rgba(245, 158, 11, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--color-text-light); font-size: 0.9375rem; margin-bottom: 1.25rem; }

.card-link {
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.card-link::after {
  content: '→';
  transition: transform var(--transition);
}

.card-link:hover::after { transform: translateX(4px); }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: var(--color-text-light);
  font-weight: 500;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
}

.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { color: var(--color-text-light); font-size: 0.9375rem; }

/* Features List */
.features-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  font-size: 0.9375rem;
}

.features-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary-dark) 50%, var(--color-primary) 100%);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}

.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.active { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--color-bg-alt); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition);
  color: var(--color-primary);
}

.faq-item.active .faq-icon {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-info-item h4 { font-size: 0.875rem; color: var(--color-text-light); font-weight: 500; margin-bottom: 0.25rem; }
.contact-info-item p, .contact-info-item a { font-size: 1rem; color: var(--color-dark); font-weight: 500; }

.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.12);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-success {
  display: none;
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  color: #065f46;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.form-success.show { display: block; }

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
  aspect-ratio: 16/7;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Team / About */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.team-card h3 { margin-bottom: 0.25rem; }
.team-card .role { color: var(--color-accent); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { color: var(--color-text-light); font-size: 0.875rem; }

/* Explore Page */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.explore-card {
  display: block;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(194, 65, 12, 0.25);
  color: inherit;
}

.explore-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.explore-card h3 {
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.explore-card p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin: 0;
}

/* News Page */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
}

.news-card {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(194, 65, 12, 0.2);
}

.news-date {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.news-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.news-card h3 a {
  color: var(--color-dark);
  text-decoration: none;
}

.news-card h3 a:hover { color: var(--color-primary); }

.news-card p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.news-read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.news-read-more:hover { color: var(--color-accent); }

/* Legal / Policy Pages */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--color-dark);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.legal-updated {
  padding: 1rem 1.25rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-primary);
  margin-bottom: 2rem;
  color: var(--color-text);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-item {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
}

.value-item .value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0f172a 0%, #0c1222 50%, #080d18 100%);
  color: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta-band {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  padding: 2.5rem 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-cta-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}

.footer-cta-text h3 {
  color: #fff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-footer-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
  transition: all var(--transition);
  text-decoration: none;
  font-family: inherit;
}

.btn-footer-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.site-footer > .container {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 56px;
  width: auto;
  max-width: 280px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition);
}

.footer-social-link:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  border-radius: 2px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 0.25rem;
}

.footer-links a:hover::before {
  width: 12px;
  margin-right: 0.375rem;
}

.footer-contact { list-style: none; }

.footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.125rem;
  font-size: 0.9375rem;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--color-accent-light);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--color-accent-light); }

.footer-contact span,
.footer-contact a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.footer-nav-sep {
  color: rgba(255, 255, 255, 0.25);
  user-select: none;
}

.footer-bottom-nav a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-bottom-nav a:hover { color: var(--color-accent-light); }

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-slide-content h1,
.hero-slide-content .hero-slide-title {
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin-bottom: 1.25rem;
  max-width: 700px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-slide-content h1 { color: #fff; }

/* Agency Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card h3 { margin-bottom: 0.5rem; }
.benefit-card p { color: var(--color-text-light); font-size: 0.9375rem; }

/* Tagline Rotator */
.tagline-rotator {
  position: relative;
  height: 2.5rem;
  margin: 1.5rem 0;
  overflow: hidden;
}

.tagline-text {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.375rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tagline-text.active {
  opacity: 1;
  transform: translateY(0);
}

.welcome-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Services Numbered List */
.services-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  counter-reset: none;
}

.services-list li {
  border-bottom: 1px solid var(--color-border);
}

.services-list li:first-child { border-top: 1px solid var(--color-border); }

.services-list a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0.5rem;
  color: var(--color-dark);
  transition: all var(--transition);
}

.services-list a:hover {
  color: var(--color-primary);
  padding-left: 1rem;
}

.service-num {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-accent);
  min-width: 2.5rem;
}

.service-name {
  flex: 1;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 600;
}

.service-arrow {
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
  color: var(--color-primary);
}

.services-list a:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.cta-section .cta-label {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 0.75rem;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-overlay h3 {
  color: #fff;
  font-size: 1.125rem;
}

.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-popular {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-accent);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.pricing-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.price-old {
  font-size: 1.125rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.price-current {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-dark);
}

.pricing-term {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-bg-alt);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.pricing-btn { width: 100%; }

.pricing-guarantee {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* Home Contact */
.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.trust-checklist {
  list-style: none;
  margin-top: 1.5rem;
}

.trust-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.trust-checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 700;
  margin-top: 2px;
}

.optional {
  font-weight: 400;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* Service Page Specific */
.service-intro { max-width: 800px; margin: 0 auto 3rem; text-align: center; }
.service-intro p { font-size: 1.125rem; color: var(--color-text-light); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial-author .name { font-weight: 600; color: var(--color-dark); font-size: 0.9375rem; }
.testimonial-author .company { font-size: 0.8125rem; color: var(--color-text-light); }

/* Animations */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-phone { display: none; }
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-of-type { grid-column: 1 / -1; }
  .two-col, .contact-grid, .service-detail-grid, .home-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .pricing-popular { transform: none; }
  .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid,
  .explore-grid,
  .news-grid,
  .values-grid,
  .benefits-grid,
  .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --header-total-height: var(--nav-height);
  }

  .header-top-bar { display: none; }

  .nav-phone { display: none; }

  .hamburger { display: flex; }

  .logo img { height: 46px; max-width: 260px; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 88vw);
    height: 100dvh;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--nav-height) + 0.5rem) 1.25rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    z-index: 1001;
  }

  .nav-menu.open { right: 0; }

  .nav-menu > li > a {
    padding: 0.875rem 0.75rem;
    font-size: 1rem;
  }

  .nav-menu .has-dropdown > a::after {
    float: right;
    margin-top: 8px;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0.25rem 0 0.5rem 0.75rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .has-dropdown.open .dropdown { max-height: 320px; }

  .dropdown a {
    padding: 0.625rem 0.75rem;
    font-size: 0.9375rem;
  }

  .nav-cta { margin: 0.75rem 0 0; }
  .nav-cta .btn { width: 100%; }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .dropdown::before { display: none; }

  .dropdown a {
    flex-direction: row;
    padding: 0.625rem 0.75rem;
  }

  .dropdown-icon {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-cta-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-nav {
    justify-content: center;
    gap: 0.5rem 0.75rem;
  }

  .footer-bottom-nav a {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .footer-social { justify-content: center; }
  .footer-brand { text-align: center; }
  .footer-brand img { margin-left: auto; margin-right: auto; }

  .section { padding: 3rem 0; }

  /* Water hero */
  .water-hero .hero-inner {
    width: min(1180px, 94%);
    padding: 48px 0 110px;
  }

  .water-hero h1 {
    font-size: clamp(2rem, 9vw, 3.25rem);
    max-width: none;
  }

  .hero-badge {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    padding: 7px 14px;
    margin-bottom: 24px;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-water-primary,
  .btn-water-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
    min-height: 48px;
  }

  .hero-stats {
    gap: 20px 28px;
    margin-top: 40px;
    padding-top: 28px;
  }

  .hero-stat b { font-size: 1.5rem; }

  .scroll-hint { bottom: 18px; }

  .hero-slider {
    min-height: 480px;
    max-height: none;
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .hero-slide-content h1,
  .hero-slide-content .hero-slide-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .welcome-buttons { flex-direction: column; }
  .welcome-buttons .btn { width: 100%; text-align: center; }
  .services-list a { gap: 1rem; padding: 1.25rem 0.25rem; }
  .service-arrow { opacity: 1; transform: none; }
  .pricing-card { padding: 2rem 1.5rem; }
  .hero-slide-content p { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-dots { bottom: 1.5rem; }
  .hero-arrows { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem; }
  .contact-info-card { padding: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer { padding-top: 3rem; }
  .page-banner { padding: 3.5rem 0 2.5rem; }
  .page-banner h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .breadcrumb { font-size: 0.875rem; }
  .map-container { aspect-ratio: 4 / 3; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .cta-section { padding: 3.5rem 0; }
  .cta-section p { font-size: 1rem; }

  /* Home — Benefits */
  .benefit-card { padding: 2rem 1.5rem; }

  /* Home — Welcome */
  .tagline-rotator { height: 3rem; }
  .tagline-text { font-size: 1.125rem; line-height: 1.4; max-width: 100%; }
  .welcome-buttons .btn {
    white-space: normal;
    font-size: 0.875rem;
    padding: 0.875rem 1.25rem;
    line-height: 1.45;
    hyphens: auto;
  }
  .content-image {
    aspect-ratio: 16 / 9;
    max-height: 260px;
    font-size: 3rem;
  }

  /* Home — Services list */
  .service-name { font-size: 1rem; line-height: 1.35; word-break: break-word; }
  .service-num { min-width: 2rem; font-size: 1rem; flex-shrink: 0; }

  /* Home — Portfolio (touch: always show titles) */
  .portfolio-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .portfolio-overlay { opacity: 1; }
  .portfolio-item:hover img { transform: none; }

  /* Home — Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 1rem;
  }
  .pricing-popular { order: -1; }
  .price-current { font-size: 1.875rem; }
  .pricing-popular-badge {
    font-size: 0.6875rem;
    padding: 0.3rem 0.75rem;
    max-width: 90vw;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  /* Home — Contact */
  .trust-checklist li { font-size: 0.875rem; gap: 0.625rem; }

  /* Section headers */
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Larger touch targets */
  .hero-dot { width: 14px; height: 14px; }
  .hero-buttons .btn { min-height: 48px; }
  .btn { min-height: 48px; }

  /* Forms — prevent iOS zoom on focus */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }

  /* New pages */
  .explore-card,
  .news-card,
  .team-card,
  .value-item { padding: 1.75rem 1.5rem; }

  .legal-content {
    padding: 0 0.25rem;
  }

  .legal-content h2 {
    font-size: 1.125rem;
    margin-top: 1.75rem;
  }

  .cta-section .btn {
    width: 100%;
    max-width: 320px;
  }

  .contact-info-item p,
  .contact-info-item a {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .nav-container { padding: 0 1rem; }

  .water-hero .hero-inner { padding: 36px 0 96px; }

  .water-hero h1 { font-size: clamp(1.85rem, 10vw, 2.5rem); }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
  }

  .hero-stat:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .hero-stat b { font-size: 1.35rem; }

  .hero-stat span { font-size: 0.8rem; }

  .scroll-hint { display: none; }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .hero-slider { aspect-ratio: 3 / 4; min-height: 420px; }
  .hero-slide-content { padding: 0 1rem; }

  .stats-grid { grid-template-columns: 1fr; }
  .card { padding: 1.5rem; }
  .contact-form,
  .contact-info-card { padding: 1.25rem; }
  .faq-question { padding: 1rem 1.125rem; font-size: 0.9375rem; }
  .footer-contact li { font-size: 0.875rem; }

  /* Home — small phones */
  .benefit-card { padding: 1.5rem 1.25rem; }
  .benefit-icon { width: 52px; height: 52px; font-size: 1.25rem; }
  .welcome-buttons .btn { font-size: 0.8125rem; padding: 0.75rem 1rem; }
  .services-list a {
    flex-wrap: nowrap;
    gap: 0.75rem;
    padding: 1rem 0.25rem;
  }
  .service-name { font-size: 0.9375rem; }
  .service-arrow { display: none; }
  .pricing-card { padding: 1.75rem 1.25rem; }
  .pricing-features li { font-size: 0.875rem; }
  .price-current { font-size: 1.625rem; }
  .price-old { font-size: 1rem; }
  .portfolio-item { aspect-ratio: 16 / 10; }
  .section { padding: 2.5rem 0; }
  .cta-section { padding: 2.5rem 0; }
  .cta-section h2 { font-size: clamp(1.375rem, 5vw, 1.75rem); }

  .explore-card,
  .news-card,
  .team-card,
  .value-item { padding: 1.5rem 1.25rem; }

  .footer-bottom-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
  }

  .footer-nav-sep { display: none; }

  .footer-cta-text h3 { font-size: 1.2rem; }

  .page-banner { padding: 3rem 0 2rem; }

  .section-header h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    hyphens: auto;
  }
}
