/* ============================================================
   SEAMLESS APP — Global Stylesheet
   Aesthetic: Warm editorial + friendly professional
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --navy: #1a2744;
  --teal: #2a7f7f;
  --teal-light: #3aa8a8;
  --gold: #c9962c;
  --gold-light: #f0c96a;
  --cream: #faf7f2;
  --cream-dark: #f0ebe0;
  --white: #ffffff;
  --gray-light: #f5f3ee;
  --gray-mid: #d4cfc4;
  --gray-text: #7a7468;
  --body-text: #2e2b26;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26,39,68,0.08);
  --shadow-lg: 0 12px 48px rgba(26,39,68,0.14);
  --transition: 0.28s 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; }

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h4, h5, h6 { font-family: var(--font-body); font-weight: 600; }

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p { max-width: 68ch; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-light); }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--sm { padding: 4rem 0; }
.section--lg { padding: 8rem 0; }

/* ---- TOP BAR ---- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--navy); height: 40px;
  display: flex; align-items: center;
}
.topbar__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
}
.topbar__text { font-size: 0.78rem; color: rgba(255,255,255,0.6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__phone {
  font-size: 1rem; font-weight: 700; color: var(--gold-light);
  text-decoration: none; letter-spacing: 0.03em;
  transition: color var(--transition);
  white-space: nowrap; flex-shrink: 0;
}
.topbar__phone:hover { color: var(--white); }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; padding: 0 2rem; max-width: 1200px; margin: 0 auto;
}
.nav__logo {
  display: flex; align-items: center; gap: 0.6rem; text-decoration: none;
}
.nav__logo-mark {
  width: 42px; height: 42px; background: linear-gradient(135deg, #c0392b 0%, #96281b 100%);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: -0.3px;
}
.nav__logo-text {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--navy); line-height: 1.1;
}
.nav__logo-sub { font-size: 0.65rem; font-family: var(--font-body); color: var(--gray-text); display: block; font-weight: 400; letter-spacing: 0.04em; text-transform: none; }
.nav__links { display: flex; align-items: center; gap: 0.2rem; }
.nav__link {
  font-size: 0.9rem; font-weight: 500; color: var(--body-text);
  padding: 0.5rem 0.85rem; border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.nav__link:hover, .nav__link.active { background: var(--cream); color: var(--teal); }
.nav__cta {
  background: var(--navy); color: var(--white) !important;
  padding: 0.55rem 1.2rem !important; border-radius: 8px;
  font-weight: 600; margin-left: 0.5rem;
}
.nav__cta:hover { background: var(--teal) !important; }
.nav__cta-cal {
  background: var(--teal); color: var(--white) !important;
  padding: 0.55rem 1.2rem !important; border-radius: 8px;
  font-weight: 600; margin-left: 0.25rem;
}
.nav__cta-cal:hover { background: var(--teal-light) !important; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ---- PAGE WRAPPER ---- */
.page { display: none; }
.page.active { display: block; }
#page-home { padding-top: 120px; }
.page:not(#page-home) { padding-top: 120px; }

/* ---- HERO ---- */
.hero {
  min-height: calc(100vh - 72px);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(42,127,127,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(201,150,44,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #1a2744 0%, #0f1a30 100%);
}
.hero__pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 4rem 2rem;
  margin: 0 auto 0 calc((100% - 1200px)/2 + 2rem);
  animation: fadeUp 0.8s ease both;
}
@media (max-width: 1240px) { .hero__content { margin: 0 auto; text-align: center; } }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,150,44,0.15); border: 1px solid rgba(201,150,44,0.3);
  color: var(--gold-light); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero__sub { font-size: 1.15rem; color: rgba(255,255,255,0.72); margin-bottom: 2.5rem; max-width: 52ch; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero__stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hero__stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  padding: 0.85rem 1.8rem; border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-light); border-color: var(--teal-light); color: var(--white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(42,127,127,0.3); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: #243058; color: var(--white); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: #b8861e; color: var(--white); transform: translateY(-1px); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { color: var(--gray-text); margin: 0.75rem auto 0; font-size: 1.05rem; }
.eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.75rem;
}
.divider {
  width: 48px; height: 3px; background: var(--gold);
  border-radius: 2px; margin: 1rem auto 0;
}

/* ---- CARDS ---- */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--cream); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }
.card p { color: var(--gray-text); font-size: 0.95rem; }

/* ---- GRID LAYOUTS ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ---- FEATURE STRIP ---- */
.feature-strip {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 3.5rem 3rem; display: grid;
  grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.feature-strip__item { text-align: center; }
.feature-strip__num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--teal); line-height: 1; }
.feature-strip__label { font-size: 0.88rem; color: var(--gray-text); margin-top: 0.3rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy); padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(42,127,127,0.2) 0%, transparent 60%);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 54ch; }
.page-hero .eyebrow { color: var(--gold-light); }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1rem; }
.breadcrumb span { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.breadcrumb a { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---- PROFILE CARDS ---- */
.profile-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.profile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.profile-card__header { background: var(--navy); padding: 2rem; text-align: center; position: relative; overflow: hidden; min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
.profile-card__header-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; filter: brightness(0.45) saturate(0.7); }
.profile-card__header-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,39,68,0.95) 0%, rgba(26,39,68,0.4) 60%, rgba(26,39,68,0.2) 100%); }
.profile-card__header-content { position: relative; z-index: 2; width: 100%; }
.profile-card__avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal); margin: 0 auto 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.6rem; color: var(--white);
  border: 3px solid rgba(255,255,255,0.3);
  overflow: hidden; flex-shrink: 0;
}
.profile-card__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; }
.profile-card__name { font-family: var(--font-display); color: var(--white); font-size: 1.2rem; }
.profile-card__title { color: var(--gold-light); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; }
.profile-card__body { padding: 1.75rem; }
.profile-card__body p { color: var(--gray-text); font-size: 0.92rem; }
.tag {
  display: inline-block; background: var(--cream); color: var(--teal);
  font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.7rem;
  border-radius: 100px; margin: 0.25rem 0.15rem;
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
}
.service-card__top {
  padding: 2.5rem 2rem 2rem; border-bottom: 1px solid var(--cream-dark);
}
.service-card__icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card__body { padding: 1.75rem 2rem 2rem; }
.service-card__list { list-style: none; }
.service-card__list li {
  display: flex; gap: 0.6rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark); font-size: 0.93rem;
  color: var(--gray-text);
}
.service-card__list li:last-child { border-bottom: none; }
.service-card__list li::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ---- PRICING ---- */
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow);
  border: 2px solid var(--cream-dark);
  text-align: center; transition: all var(--transition);
  position: relative;
}
.pricing-card:hover, .pricing-card.featured {
  border-color: var(--teal); box-shadow: 0 8px 40px rgba(42,127,127,0.15);
}
.pricing-card.featured { background: var(--navy); }
.pricing-card.featured .pricing-card__price,
.pricing-card.featured h4,
.pricing-card.featured p,
.pricing-card.featured .pricing-card__apps { color: var(--white); }
.pricing-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 100px;
}
.pricing-card__apps { color: var(--gray-text); font-size: 0.82rem; margin-bottom: 0.5rem; }
.pricing-card__price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.pricing-card__price span { font-size: 1rem; font-weight: 400; color: var(--gray-text); }
.pricing-card p { color: var(--gray-text); font-size: 0.88rem; margin-top: 0.75rem; }

/* ---- APPROACH ---- */
.approach-step {
  display: grid; grid-template-columns: auto 1fr; gap: 2rem;
  align-items: start; padding: 2.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.approach-step:last-child { border-bottom: none; }
.approach-step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--gold-light);
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.approach-step h3 { margin-bottom: 0.5rem; }
.approach-step p { color: var(--gray-text); }

/* ---- BLOG ---- */
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__img {
  height: 180px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; position: relative; overflow: hidden;
}
.blog-card__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.6) 0%, rgba(42,127,127,0.4) 100%);
}
.blog-card__img span { position: relative; z-index: 2; }
.blog-card__cat {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 3;
  background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 100px;
}
.blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__date { font-size: 0.78rem; color: var(--gray-text); margin-bottom: 0.6rem; }
.blog-card__title { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.35; }
.blog-card__excerpt { font-size: 0.88rem; color: var(--gray-text); flex: 1; }
.blog-card__link { color: var(--teal); font-size: 0.85rem; font-weight: 600; margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.3rem; }

/* ---- REGISTRATION FORM ---- */
.reg-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--cream-dark); }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--body-text); margin-bottom: 0.4rem; }
.form-control {
  width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--cream-dark);
  border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem;
  color: var(--body-text); background: var(--cream);
  transition: border-color var(--transition);
  appearance: none;
}
.form-control:focus { outline: none; border-color: var(--teal); background: var(--white); }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.price-display {
  background: var(--navy); border-radius: var(--radius); padding: 1.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.price-display__label { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.price-display__amount { font-family: var(--font-display); font-size: 2rem; color: var(--gold-light); font-weight: 700; }
.service-select-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.service-select-card {
  border: 2px solid var(--cream-dark); border-radius: var(--radius);
  padding: 1.25rem; cursor: pointer; transition: all var(--transition);
  text-align: center;
}
.service-select-card:hover, .service-select-card.selected { border-color: var(--teal); background: rgba(42,127,127,0.05); }
.service-select-card h4 { color: var(--navy); margin-bottom: 0.3rem; }
.service-select-card p { font-size: 0.8rem; color: var(--gray-text); max-width: none; }

/* ---- CONTACT ---- */
.contact-info-card {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 2.5rem; color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-item__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item__label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.contact-item__value { color: var(--white); font-size: 0.95rem; }
.service-area-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8); font-size: 0.82rem; padding: 0.35rem 0.9rem;
  border-radius: 100px; margin: 0.2rem;
}

/* ---- PACKAGE SELECTOR CARDS ---- */
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem;
}
.pkg-grid--col1 { grid-template-columns: 1fr; gap: 0.75rem; }
.pkg-card {
  border: 2px solid var(--cream-dark); border-radius: var(--radius);
  padding: 1rem 1.1rem; cursor: pointer;
  transition: all var(--transition); background: var(--white);
  display: block;
}
.pkg-card:hover { border-color: var(--teal); background: rgba(42,127,127,0.04); }
.pkg-card.selected { border-color: var(--teal); background: rgba(42,127,127,0.08); }
.pkg-grid:not(.pkg-grid--col1) .pkg-card { text-align: center; }
.pkg-num { font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; display: block; }
.pkg-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--teal); line-height: 1; display: block; }
.pkg-price span { font-size: 0.7rem; font-weight: 400; color: var(--gray-text); }
.pkg-total { font-size: 0.72rem; color: var(--gray-text); margin-top: 0.25rem; display: block; }
.pkg-grid--col1 .pkg-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 1.25rem;
  row-gap: 0.15rem;
  align-items: center;
  text-align: left;
}
.pkg-grid--col1 .pkg-num   { grid-column: 1; grid-row: 1; font-size: 0.95rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 0; }
.pkg-grid--col1 .pkg-price { grid-column: 2; grid-row: 1 / span 2; font-size: 1.5rem; font-weight: 700; color: var(--teal); font-family: var(--font-display); display: block; white-space: nowrap; }
.pkg-grid--col1 .pkg-total { grid-column: 1; grid-row: 2; font-size: 0.78rem; color: var(--gray-text); display: block; margin-top: 0; }

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

/* ---- FOOTER ---- */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand p { font-size: 0.9rem; margin-top: 1rem; max-width: 28ch; }
.footer h4 { color: var(--white); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a { color: rgba(255,255,255,0.55); font-size: 0.9rem; text-decoration: none; transition: color var(--transition); }
.footer__links a:hover { color: var(--gold-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
.footer__bottom p { font-size: 0.82rem; }

/* ---- UTIL ---- */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.gap-sm { gap: 0.75rem; }
.inline-flex { display: inline-flex; }
.align-center { align-items: center; }
.w-full { width: 100%; }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--teal); padding: 4rem 0; text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.75); margin: 0 auto 2rem; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ---- TESTIMONIAL ---- */
.testimonial {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 2rem; border-left: 4px solid var(--gold);
}
.testimonial blockquote { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); font-style: italic; margin-bottom: 1rem; max-width: none; }
.testimonial cite { font-size: 0.85rem; color: var(--gray-text); font-style: normal; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }

/* ---- NOTICE / HIGHLIGHT ---- */
.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, #243058 100%);
  border-radius: var(--radius-lg); padding: 3rem;
  color: var(--white); position: relative; overflow: hidden;
}
.highlight-box::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(42,127,127,0.15);
}
.highlight-box h3 { color: var(--white); margin-bottom: 0.75rem; }
.highlight-box p { color: rgba(255,255,255,0.7); max-width: none; }

/* ---- BLOG FILTER ---- */
.blog-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
  padding: 0.45rem 1rem; border-radius: 100px;
  border: 2px solid var(--cream-dark); background: var(--white);
  font-size: 0.82rem; font-weight: 600; color: var(--gray-text);
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-select-cards { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; }
  .approach-step { grid-template-columns: 1fr; }
  .approach-step__num { margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  /* Topbar mobile: hide long text, show only phone */
  .topbar__text { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__phone { font-size: 0.95rem; }
  /* About grid stack on mobile */
  .about-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ---- NAV MOBILE OPEN ---- */
.nav.open .nav__links {
  display: flex; flex-direction: column; position: absolute;
  top: 80px; left: 0; right: 0; background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1rem; gap: 0.25rem; box-shadow: var(--shadow);
}
