/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-50:   #EFF6FF;
  --blue-100:  #DBEAFE;
  --blue-200:  #BFDBFE;
  --blue-400:  #60A5FA;
  --blue-500:  #3B82F6;
  --blue-600:  #2563EB;
  --blue-700:  #1D4ED8;
  --blue-900:  #1E3A8A;
  --navy:      #0F172A;
  --navy-2:    #1E293B;
  --slate:     #475569;
  --slate-2:   #94A3B8;
  --white:     #FFFFFF;
  --off-white: #F8FAFF;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --r-sm:  6px;
  --r-md:  14px;
  --r-lg:  24px;
  --r-xl:  40px;
  --r-full: 9999px;

  --shadow-sm:   0 1px 4px rgba(15,23,42,.08);
  --shadow-md:   0 4px 20px rgba(15,23,42,.10);
  --shadow-lg:   0 12px 48px rgba(15,23,42,.14);
  --shadow-blue: 0 8px 32px rgba(37,99,235,.35);

  --trans: .22s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
em { font-style: italic; color: var(--blue-600); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,.45);
}
.btn--outline {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-200);
}
.btn--outline:hover {
  border-color: var(--blue-600);
  background: var(--blue-50);
  transform: translateY(-2px);
}
.btn--text {
  background: transparent;
  color: var(--navy);
  font-weight: 500;
  padding: 11px 8px;
}
.btn--text:hover { color: var(--blue-600); }
.btn--white {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--white);
}
.btn--white:hover { background: var(--blue-50); transform: translateY(-2px); }
.btn--xl { padding: 15px 36px; font-size: 1rem; }

/* ===== SECTION HEAD ===== */
.section-head { text-align: center; margin-bottom: 60px; }

.section-label {
  display: inline-block;
  color: var(--blue-600);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-sub {
  color: var(--slate);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--trans);
}
.header.scrolled {
  background: rgba(15,23,42,.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
}
.logo__name {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo__name strong { font-weight: 700; }
.logo__tld { color: var(--blue-400); }

/* NAV */
.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-full);
  transition: all var(--trans);
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.header__actions { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero__layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
}

/* Hero left */
.hero__left { color: var(--white); }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-400);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-400);
  animation: pulse 2s ease-in-out infinite;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
}
.hero__headline em { color: var(--blue-400); font-style: italic; }

.hero__copy {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero__btns .btn--text { color: rgba(255,255,255,.7); }
.hero__btns .btn--text:hover { color: var(--white); }

.hero__numbers { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__num strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}
.hero__num span { font-size: .8rem; color: rgba(255,255,255,.5); }
.hero__num-sep { width: 1px; height: 32px; background: rgba(255,255,255,.12); }

/* Hero right / scene */
.hero__right { display: flex; justify-content: center; align-items: center; }

.hero__scene {
  position: relative;
  width: 420px;
  height: 420px;
}

.scene__glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(59,130,246,.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.scene__box--main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.06);
  animation: float 5s ease-in-out infinite;
}

.scene__box-top {
  background: var(--blue-600);
  padding: 18px;
  display: flex;
  justify-content: center;
}

.scene__bow {
  position: relative;
  width: 60px;
  height: 30px;
}
.scene__bow-left,
.scene__bow-right {
  position: absolute;
  bottom: 0;
  width: 28px;
  height: 22px;
  border-radius: 50% 50% 0 0;
  background: rgba(255,255,255,.9);
}
.scene__bow-left { left: 0; transform: rotate(-20deg); transform-origin: bottom right; }
.scene__bow-right { right: 0; transform: rotate(20deg); transform-origin: bottom left; }
.scene__bow-knot {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
}

.scene__box-front {
  background: var(--navy-2);
  padding: 20px;
}

.scene__candies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  place-items: center;
}
.scene__candies span {
  font-size: 1.6rem;
  animation: wobble 3s ease-in-out infinite;
}
.scene__candies span:nth-child(1) { animation-delay: 0s; }
.scene__candies span:nth-child(2) { animation-delay: .3s; }
.scene__candies span:nth-child(3) { animation-delay: .6s; }
.scene__candies span:nth-child(4) { animation-delay: .9s; }
.scene__candies span:nth-child(5) { animation-delay: 1.2s; }
.scene__candies span:nth-child(6) { animation-delay: 1.5s; }
.scene__candies span:nth-child(7) { animation-delay: 1.8s; }
.scene__candies span:nth-child(8) { animation-delay: 2.1s; }
.scene__candies span:nth-child(9) { animation-delay: 2.4s; }

.scene__tag {
  position: absolute;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}
.scene__tag--1 { top: 60px; left: -10px; animation-delay: .5s; }
.scene__tag--2 { top: 40px; right: 10px; animation-delay: 1s; }
.scene__tag--3 { bottom: 80px; right: -10px; animation-delay: 1.5s; }

.scene__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--blue-500);
  animation: pulse 3s ease-in-out infinite;
}
.scene__dot--1 { width: 12px; height: 12px; bottom: 60px; left: 30px; animation-delay: 0s; }
.scene__dot--2 { width: 8px; height: 8px; top: 100px; right: 20px; animation-delay: .8s; background: var(--blue-400); }
.scene__dot--3 { width: 16px; height: 16px; top: 160px; left: 10px; animation-delay: 1.6s; background: rgba(59,130,246,.4); }

/* Marquee */
.hero__marquee {
  background: var(--blue-600);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  max-width: 100vw;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee__track span {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
}
.marquee__track .sep { color: rgba(255,255,255,.4); font-size: .6rem; }

/* ===== COLLECTION ===== */
.collection {
  padding: 100px 0;
  background: var(--off-white);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}

.card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,23,42,.06);
  position: relative;
  transition: all var(--trans);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card--featured {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--blue-200);
  transform: translateY(-8px);
}
.card--featured:hover { transform: translateY(-16px); }

.card__ribbon {
  position: absolute;
  top: 20px;
  right: -1px;
  background: var(--blue-600);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
}

.card__visual {
  padding: 40px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}
.card__visual--sky  { background: linear-gradient(135deg, #DBEAFE, #EFF6FF); }
.card__visual--blue { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.card__visual--navy { background: linear-gradient(135deg, #0F172A, #1E3A8A); }

.card__icon {
  font-size: 3rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
}

.card__bubbles {
  display: flex;
  gap: 8px;
}
.card__bubbles span { font-size: 1.4rem; }

.card__body { padding: 24px; }

.card__pill {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.card__pill--blue { background: var(--blue-600); color: var(--white); }
.card__pill--dark { background: var(--navy); color: var(--white); }

.card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.card__desc {
  font-size: .875rem;
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.65;
}

.card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.card__list li {
  font-size: .85rem;
  color: var(--navy-2);
  padding-left: 18px;
  position: relative;
}
.card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-500);
  font-weight: 700;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card__price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}
.card__price span:first-child { font-family: var(--font-sans); font-size: .8rem; color: var(--slate); margin-right: 2px; }
.card__price span:last-child  { font-family: var(--font-sans); font-size: .9rem; color: var(--slate); margin-left: 2px; }

.custom-banner {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}
.custom-banner__left { display: flex; align-items: center; gap: 20px; }
.custom-banner__icon { font-size: 2.5rem; flex-shrink: 0; }
.custom-banner h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 6px; }
.custom-banner p { color: rgba(255,255,255,.65); font-size: .9rem; }

/* ===== OCCASIONS ===== */
.occasions {
  padding: 100px 0;
  background: var(--white);
}

.occ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.occ {
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--trans);
  cursor: default;
}
.occ:hover {
  border-color: var(--blue-200);
  background: var(--blue-50);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.occ__icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.occ h4 { font-size: .95rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.occ p { font-size: .82rem; color: var(--slate); line-height: 1.55; }

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: var(--off-white);
}

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process__step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.process__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--blue-100);
  line-height: 1;
  margin-bottom: 12px;
}

.process__icon { font-size: 2rem; margin-bottom: 16px; }

.process__step h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.process__step p { font-size: .875rem; color: var(--slate); line-height: 1.65; }

.process__connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: var(--blue-200);
  margin-top: 52px;
  position: relative;
}
.process__connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -5px;
  border: 6px solid transparent;
  border-left-color: var(--blue-400);
}

/* ===== WHY ===== */
.why {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
}

.why__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.why__left .section-label { color: var(--blue-400); }

.why__left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 36px;
}
.why__left h2 em { color: var(--blue-400); }

.why__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.why__item { display: flex; gap: 16px; align-items: flex-start; }

.why__item-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why__item h4 { font-weight: 600; font-size: .95rem; margin-bottom: 6px; color: var(--white); }
.why__item p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ===== REVIEWS ===== */
.reviews {
  padding: 100px 0;
  background: var(--off-white);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.review {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.review--featured {
  background: var(--navy);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.review__stars {
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 24px;
  font-style: italic;
}
.review--featured p { color: rgba(255,255,255,.7); }

.review__author { display: flex; align-items: center; gap: 12px; }

.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review--featured .review__avatar { background: rgba(59,130,246,.3); }

.review__author strong { display: block; font-size: .875rem; color: var(--navy); }
.review--featured .review__author strong { color: var(--white); }
.review__author span { font-size: .8rem; color: var(--slate-2); }

.reviews__bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.reviews__stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.reviews__stat:last-child { border-right: none; }
.reviews__stat strong { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--white); margin-bottom: 4px; }
.reviews__stat span { font-size: .8rem; color: rgba(255,255,255,.45); }

/* ===== CTA ===== */
.cta {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--blue-700) 0%, var(--blue-900) 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -200px;
  right: -100px;
}
.cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -150px;
  left: -100px;
}

.cta__inner {
  text-align: center;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.cta__badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.15);
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta__title em { color: var(--blue-200); }

.cta__sub {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-bottom: 36px;
}

.cta__form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.cta__input {
  flex: 1;
  padding: 15px 22px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .95rem;
  outline: none;
  transition: all var(--trans);
  backdrop-filter: blur(8px);
}
.cta__input::placeholder { color: rgba(255,255,255,.45); }
.cta__input:focus { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.15); }

.cta__submit { flex-shrink: 0; background: var(--white); color: var(--blue-700); border-color: var(--white); }
.cta__submit:hover { background: var(--blue-50); }

.cta__fine { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); }

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer__brand .logo { margin-bottom: 16px; }
.footer__brand .logo__name { color: rgba(255,255,255,.9); }

.footer__brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all var(--trans);
}
.footer__socials a:hover { background: var(--blue-600); color: var(--white); }

.footer__col h5 {
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer__col a,
.footer__col span {
  color: rgba(255,255,255,.45);
  font-size: .875rem;
  padding: 5px 0;
  transition: color var(--trans);
}
.footer__col a:hover { color: var(--blue-400); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 24px;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom span { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-14px); }
}

@keyframes wobble {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08) rotate(4deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(0.85); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .occ-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .card--featured { transform: none; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .reviews__bar { grid-template-columns: repeat(2, 1fr); }
  .reviews__bar .reviews__stat:nth-child(2) { border-right: none; }
  .why__layout { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header__actions { margin-left: auto; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 99;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .nav.open a { font-size: 1.3rem; padding: 12px; }
  .hamburger { display: flex; z-index: 101; }

  .hero__layout { grid-template-columns: 1fr; padding-top: 100px; }
  .hero__right { display: none; }
  .hero__headline { font-size: clamp(2.5rem, 8vw, 3.5rem); }

  .process__steps { flex-direction: column; align-items: center; gap: 32px; }
  .process__connector { width: 2px; height: 32px; margin: 0; }
  .process__connector::after { display: none; }

  .why__right { grid-template-columns: 1fr; }

  .cta__form { flex-direction: column; }
  .cta__submit { width: 100%; }

  .custom-banner { flex-direction: column; text-align: center; gap: 20px; }
  .custom-banner__left { flex-direction: column; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .occ-grid { grid-template-columns: 1fr; }
  .reviews__bar { grid-template-columns: repeat(2, 1fr); }
}
