/* ==============================================
   BASE
   ============================================== */
:root {
  --navy: #1A2953;
  --navy-deep: #0f172a;
  --navy-soft: #273554;
  --orange: #FFA726;
  --orange-soft: #ffb84a;
  --bg-light: #f5f6fa;
  --text-main: #111111;
  --text-muted: #5b6170;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.14);
  --shadow-subtle: 0 8px 20px rgba(15, 23, 42, 0.12);
}

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

body {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-light);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

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

/* Helpers */
.desktop-only {
  display: inline;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.28);
  transition: background 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: var(--orange-soft);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.3);
}

.btn-primary.secondary {
  background: #ffffff;
  color: var(--navy);
  box-shadow: var(--shadow-subtle);
}

.btn-primary.secondary:hover {
  background: #f9fafb;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #111827;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
}

.btn-ghost:hover {
  background: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.9);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--navy);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease, background 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--orange);
  background: #fff7ec;
  transform: translateY(-1px);
  box-shadow: var(--shadow-subtle);
}

/* Eyebrow text */
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 8px 0;
}

/* Section heading */
.section-heading {
  max-width: 720px;
  margin: 0 auto 32px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 10px;
  color: var(--navy);
}

.section-heading h2 span {
  color: var(--orange);
}

.section-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* ==============================================
   HERO SECTION (cleaned up)
   ============================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #020617 0%, #0b1220 55%, #020617 100%);
  color: #e5e7eb;
  padding: 88px 9vw 72px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero-left h1 {
  font-size: clamp(2.6rem, 4.1vw, 3.4rem);
  line-height: 1.1;
  margin: 18px 0 14px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 12px 0 18px;
  font-size: 1rem;
  max-width: 480px;
  color: #d1d5db;
}

.hero-subtitle span {
  color: var(--orange-soft);
  font-weight: 700;
}

.hero-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.hero-meta-item {
  padding-left: 2px;
}

.meta-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.meta-value {
  display: block;
  font-size: 0.92rem;
  color: #e5e7eb;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.hero-footnote {
  margin: 6px 0 0;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Hero right */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-image-card {
  position: relative;
  background: #020617;
  border-radius: 20px;
  padding: 10px 10px 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.65);
  max-width: 380px;
  width: 100%;
}

.hero-image {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

/* subtle, not too busy */
.hero-tag.floating-tag {
  position: absolute;
  left: 18px;
  bottom: 52px;
  background: rgba(15, 23, 42, 0.92);
  border-radius: 14px;
  padding: 7px 11px;
  font-size: 0.76rem;
  color: #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.7);
}

.hero-tag .tag-title {
  display: block;
  font-weight: 700;
  color: var(--orange-soft);
}

.hero-tag .tag-text {
  display: block;
  margin-top: 2px;
}

.hero-stat-chip {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
}

/* Responsive hero */
@media (max-width: 960px) {
  .hero-section {
    padding: 72px 20px 40px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .hero-image-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-meta {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==============================================
   TRUST BAR
   ============================================== */
.trust-bar-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #020617;
  padding: 16px 0;
  cursor: grab;
}

.trust-bar-track {
  display: flex;
  width: 200%;
  will-change: transform;
}

.trust-bar-group {
  display: flex;
  flex-shrink: 0;
  width: 50%;
  justify-content: space-around;
  gap: 20px;
}

.trust-bar-item {
  min-width: 220px;
  max-width: 260px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #e5e7eb;
  box-shadow: var(--shadow-subtle);
}

.trust-bar-item h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--orange-soft);
}

.trust-bar-item p {
  margin: 0;
  font-size: 0.78rem;
  color: #cbd5f5;
}

.trust-bar-fade {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.trust-bar-fade-left {
  left: 0;
  background: linear-gradient(to right, #020617, transparent);
}

.trust-bar-fade-right {
  right: 0;
  background: linear-gradient(to left, #020617, transparent);
}

/* ==============================================
   CLIENT TRUST (LOGOS)
   ============================================== */
.client-trust {
  text-align: center;
  padding: 72px 20px 46px;
  background-color: #ffffff;
}

.client-trust .section-heading h2 {
  color: var(--navy);
}

.client-trust .section-subtitle {
  color: var(--text-muted);
}

.client-grid {
  max-width: 880px;
  margin: 32px auto 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* cleaner, softer logo cards */
.client-card-inner {
  background: #f3f4f6; /* light grey instead of dark navy */
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.35);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease,
              background 0.16s ease;
}

.client-card-inner img {
  width: 100%;
  height: auto;
  display: block;
  /* remove grayscale filter so logos keep their colour */
  filter: none;
  object-fit: contain;
}

/* subtle hover, not crazy */
.client-card-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
  border-color: var(--orange-soft);
  background: #ffffff;
}

.cta-line {
  font-size: 1.02rem;
  color: #111827;
  margin: 18px 0 0;
}

/* Logos responsive */
@media (max-width: 900px) {
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .client-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==============================================
   FEATURED WORK – GRID
   ============================================== */
.featured-work {
  padding: 56px 20px 64px;
  background: #020617;
  border-top: 1px solid rgba(31, 41, 55, 0.8);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.featured-work .section-heading h2 {
  color: #f9fafb;
}

.featured-work .section-subtitle {
  color: #9ca3af;
}

.work-grid {
  max-width: 1180px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.work-card-link {
  display: block;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(31, 41, 55, 0.85);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.work-thumb img {
  width: 100%;
  display: block;
  height: 180px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.22s ease, filter 0.22s ease;
  filter: saturate(1.05) contrast(1.05) brightness(1.03);
}

.work-meta {
  padding: 14px 14px 16px;
}

.work-tag {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 6px;
}

.work-meta h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  color: #f9fafb;
}

.work-meta p {
  margin: 0;
  font-size: 0.84rem;
  color: #9ca3af;
}

/* Work hover */
.work-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.9);
  border-color: var(--orange-soft);
}

.work-card-link:hover .work-thumb img {
  transform: scale(1.05);
  filter: saturate(1.15) contrast(1.08) brightness(1.06);
}

/* Work responsive */
@media (max-width: 1180px) {
  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .work-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .work-thumb img {
    height: 200px;
  }
}

/* ==============================================
   VIDEO SECTION
   ============================================== */
.video-section {
  background: #0b1220;
  color: #e5e7eb;
  padding: 72px 20px;
}

.video-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.video-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.video-copy .watch-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 8px;
}

.video-copy h3 {
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.video-copy p {
  font-size: 0.96rem;
  color: #d1d5db;
  margin: 0 0 12px;
}

.video-copy ul {
  margin: 0 0 16px;
  padding-left: 18px;
  font-size: 0.94rem;
  color: #cbd5f5;
}

/* Video responsive */
@media (max-width: 960px) {
  .video-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==============================================
   SERVICES
   ============================================== */
.services-section {
  padding: 72px 20px 56px;
  background: var(--bg-light);
}

.service-grid {
  max-width: 1180px;
  margin: 26px auto 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 18px 18px 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.94rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.service-card h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  color: var(--navy);
}

.service-card p {
  margin: 0 0 4px;
  color: var(--text-muted);
}

.service-card ul {
  margin: 4px 0 0;
  padding-left: 16px;
  color: #4b5563;
  font-size: 0.86rem;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
  border-color: var(--orange-soft);
}

.services-cta-row {
  max-width: 1180px;
  margin: 10px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Services responsive */
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==============================================
   PACKAGES / TIERS
   ============================================== */
.packages-section {
  padding: 72px 20px 64px;
  background: radial-gradient(circle at top, #f8fafc 0%, #ffffff 55%, #ffffff 100%);
}

.package-grid {
  max-width: 1180px;
  margin: 26px auto 18px;
  display: grid;
  /* Crisp layout: 2x2 grid on desktop, 1 column on mobile */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.package-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px 20px 18px;
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.package-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  border-color: rgba(255, 167, 38, 0.45);
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  border-top-left-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-lg);
  background: var(--orange);
}

.package-card.tier-1::before { background: #22c55e; }
.package-card.tier-2::before { background: #3b82f6; }
.package-card.tier-3::before { background: #a855f7; }
.package-card.tier-4::before { background: var(--orange); }

.package-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.package-tier {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding-right: 132px; /* room for the badge */
}

.package-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  flex: 0 0 auto;
  margin-top: 7px;
}

.package-dot.tier-1 { background: #22c55e; }
.package-dot.tier-2 { background: #3b82f6; }
.package-dot.tier-3 { background: #a855f7; }
.package-dot.tier-4 { background: var(--orange); }

.package-tier h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--navy);
}

.package-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #f8fafc;
  color: #0f172a;
  pointer-events: none;
}

.package-badge.popular {
  border-color: rgba(255, 167, 38, 0.55);
  background: #fff7ec;
  color: var(--navy);
}

.package-price {
  margin: 0;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.2;
}

.package-price-note {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-left: 6px;
  white-space: nowrap;
}

.package-bestfor {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.package-kicker {
  margin: 12px 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 800;
}

.package-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: #4b5563;
  font-size: 0.86rem;
  line-height: 1.55;
}

.package-list li {
  margin: 8px 0;
  position: relative;
  padding-left: 22px;
}

.package-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: 0.55em;
  transform: translateY(-50%);
  border: 2px solid rgba(255, 167, 38, 0.9);
  background: #fff7ec;
}

.package-outcome {
  margin-top: auto;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  color: #111827;
  font-size: 0.88rem;
}

.package-positioning {
  margin: 10px 0 0;
  padding: 9px 11px;
  border-radius: 12px;
  background: #0b1220;
  color: #e5e7eb;
  font-style: italic;
  line-height: 1.4;
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.packages-cta-row {
  max-width: 1180px;
  margin: 14px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .package-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .package-card {
    padding: 16px 16px 14px;
  }

  .package-tier h3 {
    font-size: 0.95rem;
  }

  .package-price {
    font-size: 0.9rem;
  }

  .package-list {
    font-size: 0.84rem;
  }

  .package-outcome {
    font-size: 0.86rem;
  }

  .packages-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==============================================
   ABOUT SECTION
   ============================================== */
.about-section {
  padding: 72px 20px 64px;
  background: #ffffff;
}

.about-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: center;
}

.about-image-block {
  position: relative;
}

.about-photo-frame {
  border-radius: 22px;
  background: #020617;
  padding: 8px;
  box-shadow: var(--shadow-soft);
}

.about-photo {
  display: block;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.about-chip {
  position: absolute;
  left: 18px;
  bottom: -10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #111827;
  color: #e5e7eb;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin: 0 0 10px;
  color: var(--navy);
}

.about-copy p {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.about-copy .btn-outline {
  margin-top: 12px;
}

/* About responsive */
@media (max-width: 960px) {
  .about-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-chip {
    bottom: -8px;
  }
}

/* ==============================================
   FAQ
   ============================================== */
.faq {
  max-width: 900px;
  margin: 0 auto 64px;
  padding: 60px 20px;
}

.faq h2 {
  text-align: center;
  color: var(--navy);
  margin-bottom: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 14px;
  margin: 10px 0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #111827;
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] {
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.12);
  border-color: var(--orange-soft);
}

.faq-item p {
  margin: 8px 2px 4px;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.faq-cta {
  display: block;
  width: max-content;
  margin: 16px auto 0;
  background: var(--orange);
  color: #111827;
  font-weight: 700;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
  transition: background 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease;
}

.faq-cta:hover {
  background: var(--orange-soft);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}

/* ==============================================
   CLOSING CTA
   ============================================== */
.closing-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #ffffff;
  text-align: center;
  padding: 64px 20px 56px;
  margin-top: 32px;
}

.closing-cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.closing-cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  margin: 0 0 10px;
}

.closing-cta p {
  font-size: 0.98rem;
  margin: 0 0 22px;
  line-height: 1.6;
  color: #e5e7eb;
}

.closing-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #111827;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
  transition: background 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease;
}

.closing-cta-button:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* ==============================================
   CONTENT DAYS PAGE POLISH
   Scoped to avoid affecting other pages
   ============================================== */
.page-content-days .hero-section {
  padding: 104px 9vw 88px;
}

.page-content-days .hero-pill {
  color: rgba(226, 232, 240, 0.74);
  font-weight: 500;
  border-color: rgba(148, 163, 184, 0.4);
}

.page-content-days .hero-left h1 {
  font-size: clamp(2.9rem, 4.8vw, 3.9rem);
  letter-spacing: -0.01em;
}

.page-content-days .hero-section .btn-primary {
  padding: 14px 28px;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.34);
}

.page-content-days .btn-primary {
  padding: 12px 24px;
}

.page-content-days .eyebrow {
  color: rgba(148, 163, 184, 0.72);
  font-weight: 600;
}

.page-content-days .section-heading {
  max-width: 1180px;
  margin: 0 auto 36px;
}

.page-content-days .section-heading.center {
  max-width: 900px;
}

.page-content-days .section-heading h2 {
  font-size: clamp(2.05rem, 3.2vw, 2.7rem);
  margin-bottom: 12px;
}

.page-content-days .section-subtitle {
  margin-top: 12px;
}

.page-content-days .services-section {
  padding: 96px 20px;
}

.page-content-days .packages-section {
  padding: 96px 20px;
}

.page-content-days .packages-section .section-heading {
  margin-bottom: 0;
}

.page-content-days .packages-section .section-heading h2 {
  margin-bottom: 12px;
}

.page-content-days .packages-section .section-subtitle {
  margin-top: 12px;
}

.page-content-days .package-grid {
  margin: 32px auto 0;
}

.page-content-days .services-section .section-heading {
  margin-bottom: 0;
}

.page-content-days .services-section .section-heading h2 {
  margin-bottom: 12px;
}

.page-content-days .services-section .section-subtitle {
  margin-top: 12px;
}

.page-content-days .service-grid {
  margin: 32px auto 0;
  gap: 20px;
  align-items: stretch;
}

.page-content-days .five-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-content-days .five-card-grid > .service-card:nth-child(5) {
  grid-column: 2 / span 2;
  justify-self: center;
  width: 100%;
}

.page-content-days .service-card {
  height: 100%;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.page-content-days .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
  border-color: rgba(148, 163, 184, 0.4);
}

.page-content-days .package-card {
  padding: 24px 24px 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.1);
}

.page-content-days .package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
  border-color: rgba(255, 167, 38, 0.35);
}

.page-content-days .package-card.tier-2 {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf1 100%);
  border-color: rgba(255, 167, 38, 0.25);
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.12);
}

.page-content-days .package-tier {
  padding-right: 148px;
}

.page-content-days .package-badge {
  padding: 7px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.page-content-days .package-badge.popular {
  box-shadow: 0 10px 22px rgba(255, 167, 38, 0.16);
}

.page-content-days .package-bestfor {
  margin-bottom: 12px;
}

.page-content-days .package-list li {
  margin: 9px 0;
}

.page-content-days .faq {
  padding: 96px 20px;
  margin: 0 auto;
}

.page-content-days .closing-cta {
  padding: 96px 20px;
  margin-top: 0;
}

.page-content-days .faq-item {
  padding: 14px 16px;
  margin: 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  transition: background 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.page-content-days .faq-item + .faq-item {
  margin-top: 12px;
}

.page-content-days .faq-item:hover {
  background: #fbfcfe;
}

.page-content-days .faq-item[open] {
  background: #fffaf1;
  border-color: rgba(255, 167, 38, 0.3);
}

.page-content-days .faq-item summary {
  padding: 6px 0;
}

.page-content-days .closing-cta {
  padding: 88px 20px 80px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .page-content-days .hero-section {
    padding: 88px 7vw 72px;
  }

  .page-content-days .hero-left h1 {
    font-size: clamp(2.35rem, 8vw, 2.9rem);
  }

  .page-content-days .services-section,
  .page-content-days .packages-section {
    padding: 72px 20px;
  }

  .page-content-days .faq {
    padding: 72px 20px;
  }

  .page-content-days .closing-cta {
    padding: 72px 20px;
  }
}

@media (max-width: 1100px) {
  .page-content-days .five-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-content-days .five-card-grid > .service-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .page-content-days .five-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-content-days .five-card-grid > .service-card:nth-child(5) {
    grid-column: auto;
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }
}

@media (min-width: 961px) {
  .page-content-days .services-section .service-card {
    min-height: 190px;
  }
}