/* ============================================
   CAMERON WEB SOLUTIONS — style.css
   Bold geometric creative agency aesthetic
   Navy + Pink + White — logo-inspired framing
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy: #1C2A69;
  --navy-deep: #111A45;
  --pink: #F0197A;
  --pink-hover: #D8146B;
  --white: #FFFFFF;
  --off-white: #F5F6FA;
  --grey-100: #ECEDF2;
  --grey-200: #E2E8F0;
  --grey-400: #94A3B8;
  --grey-600: #64748B;
  --text: #1E293B;
  --text-light: #475569;
  --success: #16A34A;

  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Logo & header — change --logo-height and everything adjusts automatically */
  --logo-height: 52px;
  --header-pad: 16px;
  --header-height: calc(var(--logo-height) + var(--header-pad) * 2);

  --section-py: clamp(5rem, 10vw, 8rem);
  --container-px: clamp(1.25rem, 4vw, 2rem);
  --container-max: 1100px;

  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(17,26,69,.05);
  --shadow-md: 0 4px 24px rgba(17,26,69,.08);
  --shadow-lg: 0 12px 48px rgba(17,26,69,.12);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ---------- Section utilities ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pink);
  margin-bottom: .75rem;
  position: relative;
  padding-left: 1.4rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: .85rem;
  height: 2px;
  background: var(--pink);
}
.section-label--light { color: var(--pink); }
.section-label--light::before { background: var(--pink); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-header .section-label {
  padding-left: 0;
}
.section-header .section-label::before {
  display: none;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  line-height: 1.2;
  color: var(--navy-deep);
  margin-bottom: .65rem;
}
.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  padding: .65rem 1.6rem;
  white-space: nowrap;
  letter-spacing: .01em;
}

.btn--primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn--primary:hover {
  background: var(--pink-hover);
  border-color: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,25,122,.3);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg { padding: .9rem 2.2rem; font-size: .95rem; }
.btn--full { width: 100%; }

.btn--nav {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  padding: .5rem 1.3rem;
  font-size: .82rem;
}
.btn--nav:hover {
  background: var(--pink-hover);
  border-color: var(--pink-hover);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: var(--logo-height); width: auto; }

.nav-list { display: flex; align-items: center; gap: 1.8rem; }
.nav-link {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}
.nav-link:not(.btn):hover { color: var(--pink); }
.nav-link:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width var(--transition);
}
.nav-link:not(.btn):hover::after { width: 100%; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy-deep); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-height); left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--grey-200);
    padding: 1.5rem var(--container-px);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s ease, opacity .3s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-list { flex-direction: column; gap: 1rem; align-items: stretch; }
  .nav-link { font-size: 1rem; text-align: center; }
  .btn--nav { margin-top: .5rem; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + clamp(4rem, 10vw, 7rem));
  padding-bottom: clamp(4rem, 10vw, 7rem);
  background: var(--navy-deep);
  background-image: url('headerbackground.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Logo-inspired geometric frame accents */
.hero-frame {
  position: absolute;
  width: clamp(80px, 15vw, 160px);
  height: clamp(80px, 15vw, 160px);
  border: 2px solid rgba(240,25,122,.25);
  pointer-events: none;
}
.hero-frame--tl { top: calc(var(--header-height) + 2rem); left: 2rem; border-right: none; border-bottom: none; }
.hero-frame--br { bottom: 2rem; right: 2rem; border-left: none; border-top: none; }

/* Large subtle accent circle */
.hero-accent {
  position: absolute;
  top: 50%; right: -8%;
  transform: translateY(-50%);
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,25,122,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-content { max-width: 640px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-title-highlight {
  color: var(--pink);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.65);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.hero .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.hero .btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}

/* Trust bar */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.hero-trust-accent {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--pink);
}
.hero-trust-item span:last-child {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}
.hero-trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.12);
}

@media (max-width: 480px) {
  .hero-trust-divider { display: none; }
  .hero-trust { gap: 1rem; }
  .hero-frame { display: none; }
}

/* ============================================
   ABOUT / VALUE PROP
   ============================================ */
.about {
  padding-block: var(--section-py);
  background: var(--white);
}

.about-inner { display: grid; gap: 3rem; }

.about-text .section-title { text-align: left; }
.about-text p { color: var(--text-light); margin-bottom: .75rem; }

.about-cards { display: flex; flex-direction: column; gap: 1rem; }

.about-card {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-card-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--navy-deep);
  color: var(--pink);
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: .15rem;
}
.about-card p {
  font-size: .86rem;
  color: var(--grey-600);
  line-height: 1.55;
}

/* ============================================
   SERVICES / PACKAGE
   ============================================ */
.services {
  padding-block: var(--section-py);
  background: var(--off-white);
}

.package-wrapper {
  max-width: 480px;
  margin-inline: auto;
}

.package-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-lg);
}

/* Pink accent bar at top of card */
.package-card-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--navy));
}

.package-header {
  text-align: center;
  padding: 2.5rem 2rem 1.75rem;
  border-bottom: 1px solid var(--grey-200);
}

.package-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--white);
  background: var(--navy-deep);
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: .85rem;
}

.package-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-deep);
  margin-bottom: 1rem;
}

.package-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: .1rem;
  margin-bottom: .4rem;
}
.price-currency {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--pink);
  margin-top: .5rem;
}
.price-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--pink);
}
.price-note {
  font-size: .82rem;
  color: var(--grey-600);
}

.package-body { padding: 2rem; }

.package-features {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 2rem;
}
.package-features li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .92rem;
  color: var(--text);
}

.feature-check {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(240,25,122,.1);
  position: relative;
}
.feature-check::after {
  content: '';
  position: absolute;
  top: 5px; left: 7px;
  width: 5px; height: 9px;
  border: solid var(--pink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Currency toggle */
.currency-toggle {
  display: inline-flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1.25rem;
  background: var(--off-white);
  border-radius: 12px;
  padding: 5px;
  border: 1px solid var(--grey-200);
  flex-wrap: wrap;
}

.currency-btn {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .5rem 1rem;
  min-height: 44px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--grey-600);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.currency-btn:hover {
  color: var(--navy-deep);
  background: rgba(17,26,69,.04);
}

.currency-btn.active {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(17,26,69,.15);
}

.currency-flag {
  width: 1.2em;
  line-height: 1;
  border-radius: 2px;
}

@media (max-width: 480px) {
  .currency-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
    width: 100%;
    border-radius: 12px;
  }
  .currency-btn {
    padding: .55rem .5rem;
    font-size: .75rem;
    border-radius: 8px;
    min-height: 42px;
  }
}

/* ============================================
   ADD-ONS
   ============================================ */
.addons {
  padding-block: var(--section-py);
  background: var(--white);
}

.addons-grid { display: grid; gap: 1.25rem; }

.addon-card {
  position: relative;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.addon-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Pink left bar accent */
.addon-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--pink);
  border-radius: 0 4px 4px 0;
}

.addon-card h3 {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: .3rem;
}
.addon-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   WHY CHOOSE ME
   ============================================ */
.why-me {
  padding-block: var(--section-py);
  background: var(--off-white);
}

.reasons-grid { display: grid; gap: 1.5rem; }

.reason-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--grey-200);
  transition: box-shadow var(--transition), transform var(--transition);
}
.reason-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.reason-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--pink);
  opacity: .18;
  display: block;
  margin-bottom: .65rem;
}

.reason-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: .3rem;
}
.reason-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   RESULTS / TESTIMONIALS
   ============================================ */
.results {
  padding-block: var(--section-py);
  background: var(--navy-deep);
  overflow: hidden;
}

.results .section-title { color: var(--white); }

.results-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .results-grid { grid-template-columns: 1.15fr 1fr; align-items: stretch; }
}

.result-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-card--featured {
  border-color: var(--pink);
  background: rgba(240,25,122,.06);
  position: relative;
  overflow: hidden;
}

.result-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--pink);
}

.result-stat {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1;
  color: var(--pink);
  margin-bottom: .25rem;
}

.result-stat-label {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}

.result-quote {
  font-family: var(--font-body);
  font-size: .95rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1.1rem;
  border-left: 3px solid var(--pink);
}

.result-card:not(.result-card--featured) .result-quote {
  border-left-color: rgba(255,255,255,.15);
}

.result-source {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.result-type {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================
   HOW IT WORKS / PROCESS
   ============================================ */
.process {
  padding-block: var(--section-py);
  background: var(--white);
}

.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 420px;
  margin-inline: auto;
}

.step { text-align: center; padding: 1.25rem; }

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .85rem;
  position: relative;
}
.step-number span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--pink);
}
/* Subtle ring around step numbers */
.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(240,25,122,.15);
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: .3rem;
}
.step p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-connector { padding: .25rem 0; }

/* ============================================
   CONTACT / CTA
   ============================================ */
.contact {
  position: relative;
  padding-block: var(--section-py);
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}

/* Geometric frame accents */
.contact-frame {
  position: absolute;
  width: clamp(60px, 10vw, 120px);
  height: clamp(60px, 10vw, 120px);
  border: 2px solid rgba(240,25,122,.15);
  pointer-events: none;
}
.contact-frame--tl { top: 2rem; left: 2rem; border-right: none; border-bottom: none; }
.contact-frame--br { bottom: 2rem; right: 2rem; border-left: none; border-top: none; }

.contact-inner { display: grid; gap: 3rem; position: relative; z-index: 1; }

.contact-info p {
  color: rgba(255,255,255,.6);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.contact-methods { display: flex; flex-direction: column; gap: .85rem; }

.contact-method {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.contact-method-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--pink);
}
.contact-method a {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-method a:hover { color: var(--pink); }

/* Form */
.contact-form-wrapper {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.form-group { margin-bottom: 1.15rem; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .72rem 1rem;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--white);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(240,25,122,.15);
}
.form-group textarea { resize: vertical; }

.form-error {
  display: none;
  font-size: .78rem;
  color: #F87171;
  margin-top: .3rem;
}
.form-group.has-error .form-error { display: block; }
.form-group.has-error input,
.form-group.has-error textarea { border-color: #F87171; }

.form-success {
  display: none;
  align-items: center;
  gap: .75rem;
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(22,163,74,.1);
  border: 1px solid rgba(22,163,74,.25);
  border-radius: var(--radius);
}
.form-success svg { flex-shrink: 0; color: var(--success); }
.form-success p {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}
.form-success.visible { display: flex; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 2.5rem 0 2rem;
  color: rgba(255,255,255,.45);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.footer-logo-img { height: 30px; width: auto; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.35); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.footer-links a {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--pink); }

.footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); }

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---- Small phones (up to 380px) ---- */
@media (max-width: 380px) {
  .hero-title { font-size: 1.75rem; }
  .hero-subtitle { font-size: .92rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: .75rem; }
  .hero-trust-divider { display: none; }

  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: .92rem; }

  .package-header { padding: 1.75rem 1.25rem 1.5rem; }
  .package-body { padding: 1.25rem; }
  .price-amount { font-size: 2.8rem; }

  .contact-form-wrapper { padding: 1.25rem; }

  .result-card { padding: 1.5rem; }
  .result-stat { font-size: 2rem; }

  .btn--lg { padding: .8rem 1.5rem; font-size: .88rem; }
}

/* ---- Phones (up to 480px) ---- */
@media (max-width: 480px) {
  .hero-frame { display: none; }
  .hero-trust-divider { width: 0; height: 0; display: none; }
  .hero-trust { gap: .85rem; }

  .about-card { flex-direction: column; gap: .65rem; }
  .about-card-icon { width: 38px; height: 38px; }

  .contact-frame { display: none; }
  .contact-form-wrapper { padding: 1.5rem; }

  .step-number { width: 48px; height: 48px; }
  .step-number span { font-size: 1rem; }

  .reason-card { padding: 1.35rem; }
  .reason-number { font-size: 1.6rem; }
}

/* ---- Tablets and small desktops (up to 768px) ---- */
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-text { text-align: center; }
  .about-text .section-label { display: block; padding-left: 0; }
  .about-text .section-label::before { display: none; }
  .about-text .section-title { text-align: center; }

  .addons-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }

  .steps { flex-direction: column; max-width: 420px; }
  .step-connector svg { display: none; }
  .step-connector {
    width: 2px;
    height: 24px;
    background: var(--grey-200);
    margin-inline: auto;
  }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-info { text-align: center; }
  .contact-info .section-label { padding-left: 0; }
  .contact-info .section-label::before { display: none; }
  .contact-info .section-title { text-align: center; }
  .contact-methods { align-items: center; }
}

/* ---- Desktop (768px and up) ---- */
@media (min-width: 768px) {
  .about-inner { grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; }
  .about-text .section-title { text-align: left; }

  .contact-inner { grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; }

  .steps { flex-direction: row; max-width: 100%; }
  .step { flex: 1; }
  .step-connector {
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: -2rem;
    width: auto;
    height: auto;
    background: none;
  }
  .step-connector svg { display: block; }
}

/* ---- Wide tablets (600px and up) ---- */
@media (min-width: 600px) and (max-width: 767px) {
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Desktop grids (600px and up) ---- */
@media (min-width: 768px) {
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .35s; }