:root {
  --background: hsl(200 20% 98%);
  --foreground: hsl(200 30% 15%);
  --border: hsl(197 30% 88%);
  --input: hsl(197 30% 88%);
  --gold: #FEBE10;
  --gold-light: #FFD04D;
  --gold-dark: #D4A000;
  --navy: #3A7C92;
  --navy-light: #4792A9;
  --dark-bg: #1e4a58;
  --section-bg: #EBF4F7;
  /* Fixed header: disclaimer strip + top bar + main nav (~150px total) */
  --site-header-offset: 150px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  height: auto;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--background);
  color: var(--foreground);
}

/* Keep scroll-reveal sections visible even if GSAP/CDN hiccups */
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale {
  opacity: 1 !important;
}

img {
  max-width: 100%;
  vertical-align: middle;
  min-height: 0;
  background: linear-gradient(135deg, #e8f4f8, #d2eaf2);
  object-fit: cover;
}

section[id],
#faq {
  scroll-margin-top: calc(var(--site-header-offset) + 12px);
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* ========================
   SCROLL PROGRESS BAR
======================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #FEBE10, #FFD04D);
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  width: 100%;
}

/* ========================
   HEADER / NAV
======================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #c8dfe6;
  box-shadow: 0 1px 10px rgba(58, 124, 146, 0.08);
  transition: box-shadow 0.3s ease;
}

/* --- Top disclaimer ticker (above navbar) */
.disclaimer-ticker {
  position: relative;
  background: linear-gradient(105deg, #0f2a35 0%, #1a4a5c 42%, #143d4d 100%);
  border-bottom: 1px solid rgba(254, 190, 16, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.disclaimer-ticker-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(254, 190, 16, 0.12) 0%,
    transparent 18%,
    transparent 82%,
    rgba(254, 190, 16, 0.1) 100%
  );
}

.disclaimer-ticker-viewport {
  position: relative;
  z-index: 1;
  padding: 9px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 48px, #000 calc(100% - 48px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 48px, #000 calc(100% - 48px), transparent);
}

.disclaimer-ticker-track {
  display: flex;
  width: max-content;
  animation: disclaimer-ticker-scroll 42s linear infinite;
}

.disclaimer-ticker-segment {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 min(5vw, 56px);
  white-space: nowrap;
}

.disclaimer-ticker-copy {
  font-size: clamp(11px, 1.9vw, 13px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.disclaimer-ticker-copy strong {
  font-weight: 700;
  color: var(--gold-light);
}

@keyframes disclaimer-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .disclaimer-ticker-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .disclaimer-ticker-track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    text-align: center;
    padding: 4px 16px 10px;
  }

  .disclaimer-ticker-segment {
    white-space: normal;
    padding: 0;
    justify-content: center;
  }

  .disclaimer-ticker-segment[aria-hidden="true"] {
    display: none;
  }
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #666;
}

.logo-bn {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: var(--gold);
}

.nav-links li a.is-current,
.nav-links li .nav-dropdown-trigger.is-current,
.mobile-drawer > a.is-current,
.mobile-drawer .mobile-nav-dropdown-trigger.is-current {
  color: var(--gold);
  font-weight: 700;
}

.nav-links li a.is-current,
.nav-links li .nav-dropdown-trigger.is-current {
  box-shadow: inset 0 -2px 0 0 var(--gold);
  padding-bottom: 2px;
}

/* --- Services nav dropdown (desktop: hover + focus; mobile panel in .mobile-drawer) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-dropdown-trigger:hover {
  color: var(--gold);
}

.nav-dropdown-chevron {
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.72;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 288px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 223, 230, 0.85);
  border-radius: 12px;
  box-shadow: 0 14px 44px rgba(58, 124, 146, 0.2);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  bottom: 100%;
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-dropdown-menu a:hover {
  background-color: rgba(71, 146, 169, 0.18);
  color: #2a6275;
}

@media (min-width: 901px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown:hover .nav-dropdown-chevron,
  .nav-dropdown:focus-within .nav-dropdown-chevron {
    transform: rotate(180deg);
  }
}

.header-cta {
  font-size: 14px;
  font-weight: 700;
  background: var(--gold);
  color: #1a3020;
  padding: 10px 22px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

button.header-cta {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-cta-livechat {
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 5px;
  border: 2px solid var(--navy);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.header-cta-livechat:hover {
  background: rgba(58, 124, 146, 0.1);
  transform: scale(1.04);
  box-shadow: 0 4px 14px rgba(58, 124, 146, 0.2);
}

button.header-cta-livechat {
  font-family: inherit;
  cursor: pointer;
}

.header-cta:hover {
  background: var(--gold-dark);
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(254, 190, 16, 0.45);
}

.header-top-bar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 6px 24px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.header-top-bar a {
  color: var(--gold-light);
  text-decoration: none;
}

/* ========================
   HERO SECTION
   Form column is always .hero-left; copy is .hero-right > .hero-copy.
   Per-page photo: use <img class="hero-bg-photo" src="…"> as first child of .hero-section (reliable vs CSS url()).
======================== */
body.page-service-childrens-book .hero-section {
  background-color: #4a2c6e;
}

body.page-service-childrens-book .hero-section::after {
  background-image:
    linear-gradient(
      125deg,
      rgba(120, 55, 150, 0.48) 0%,
      rgba(220, 125, 65, 0.28) 46%,
      rgba(35, 115, 135, 0.42) 100%
    ),
    radial-gradient(ellipse 90% 70% at 78% 18%, rgba(255, 215, 100, 0.22), transparent 52%);
}

body.page-service-childrens-book .section-label {
  color: #d9488b;
}

body.page-service-childrens-book .hero-section .hero-copy .section-label {
  color: var(--gold);
}

body.page-service-childrens-book .section-about-muted {
  background: linear-gradient(180deg, #faf6ff 0%, #eef6f8 100%);
}

body.page-service-childrens-book .about-feature-card {
  background: linear-gradient(160deg, #fff 0%, #fff9fc 100%);
  border-color: rgba(200, 130, 190, 0.35);
  box-shadow: 0 8px 28px rgba(120, 60, 120, 0.1);
}

body.page-service-childrens-book .about-feature-card:hover {
  border-color: rgba(217, 72, 139, 0.45);
  box-shadow: 0 18px 48px rgba(180, 80, 140, 0.18);
}

body.page-service-childrens-book .creative-vision-media {
  border-color: rgba(200, 130, 190, 0.45);
  box-shadow: 0 20px 50px rgba(120, 60, 120, 0.18);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--site-header-offset);
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background-color: #1a3d4a;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(
      125deg,
      rgba(30, 74, 88, 0.55) 0%,
      rgba(58, 124, 146, 0.36) 45%,
      rgba(30, 74, 88, 0.5) 100%
    ),
    radial-gradient(ellipse 85% 65% at 22% 38%, rgba(254, 190, 16, 0.18), transparent 55%);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-section .hero-copy h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero-section .hero-copy h1 em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-section .hero-copy p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 30px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.hero-section .hero-copy .section-label {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-section .hero-btns .btn-secondary {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.hero-section .hero-btns .btn-secondary:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.publish-chat-pair {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--gold);
  color: #1a3a20;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 8px 24px rgba(254, 190, 16, 0.5), 0 0 0 3px rgba(254, 190, 16, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 6px 20px rgba(58, 124, 146, 0.35);
}

button.btn-secondary {
  font-family: inherit;
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(71, 146, 169, 0.25);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(58, 124, 146, 0.18), 0 2px 12px rgba(254, 190, 16, 0.1);
}

.hero-section .hero-form-card {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    0 2px 16px rgba(254, 190, 16, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-align: center;
}

.form-subtitle {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  color: var(--foreground);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(58, 124, 146, 0.18);
}

.form-submit {
  width:100%;
  background: var(--gold);
  color: #1a3020;
  padding: 13px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 190, 16, 0.5);
}

/* ========================
   BRAND STRIP
======================== */
.brand-strip {
  background: #fff;
  padding: 28px 0;
  border-top: 1px solid #c8dfe6;
  border-bottom: 1px solid #c8dfe6;
}

.brand-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.brand-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
  font-weight: 800;
  font-size: 18px;
}

.brand-logo-item:hover {
  opacity: 1;
}

.amazon-text {
  color: #ff9900;
}

.bn-text {
  color: var(--navy);
}

.angi-text {
  color: #ff6b35;
}

.yelp-text {
  color: #d32323;
}

.google-text {
  color: #4285f4;
}

/* ========================
   SERVICES SECTION
======================== */
.services-section {
  padding: 80px 0;
  background: #fff;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.services-hero-banner {
  max-width: 920px;
  margin: 0 auto 36px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #c8dfe6;
  box-shadow: 0 14px 40px rgba(58, 124, 146, 0.15);
  line-height: 0;
}

.services-hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1200 / 480;
}

.services-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #ddd;
  background: transparent;
  color: #666;
  transition: all 0.25s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1e2a14;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(254, 190, 16, 0.4);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

#services-grid .service-card:not(.is-active) {
  display: none;
}

#services-grid .service-card.is-active {
  display: block;
  grid-column: 1 / -1;
  max-width: 720px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border: 1px solid #c8dfe6;
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 20px 50px rgba(58, 124, 146, 0.15);
  border-color: var(--navy-light);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #3a7c92, #4792a9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
}

.expert-highlight {
  background: var(--section-bg);
  border-radius: 14px;
  padding: 32px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.expert-highlight h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.expert-highlight .lead {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.expert-highlight-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.expert-mini {
  background: #fff;
  border: 1px solid #c8dfe6;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
  cursor: pointer;
}

.expert-highlight-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.expert-highlight-device {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(58, 124, 146, 0.22);
  border: 1px solid #c8dfe6;
  line-height: 0;
}

.expert-highlight-device img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.expert-mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.expert-mini span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.brand-logo-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* ========================
   BOOK SHOWCASE
======================== */
.showcase-section {
  padding: 80px 0;
  background: var(--section-bg);
  overflow: hidden;
}

.showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.book-stack {
  position: relative;
  height: 380px;
  perspective: 1000px;
}

.book-cover {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
}

.book-cover:hover {
  transform: translateY(-10px) rotateY(-5deg) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.book-cover-main {
  width: 180px;
  height: 260px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.book-cover-2 {
  width: 150px;
  height: 220px;
  left: 20%;
  top: 55%;
  transform: translate(-50%, -50%) rotate(-8deg);
  z-index: 2;
}

.book-cover-3 {
  width: 140px;
  height: 210px;
  left: 75%;
  top: 45%;
  transform: translate(-50%, -50%) rotate(6deg);
  z-index: 2;
}

.book-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.book-placeholder--photo {
  padding: 0;
  position: relative;
}

.book-placeholder--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-placeholder--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.book-placeholder--hero-label .book-cover-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
  text-align: center;
}

.book-cover-label__title {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.book-cover-label__sub {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
}

.showcase-content h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.showcase-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #444;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: #fff;
}

/* ========================
   FEATURES ICONS SECTION
======================== */
.features-icons-section {
  padding: 70px 0;
  background: #fff;
}

.features-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-icon-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: 12px;
  transition: all 0.3s;
}

.feature-icon-item:hover {
  background: #ebf4f7;
  transform: translateY(-4px);
}

.feature-icon-circle {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(58, 124, 146, 0.1), rgba(71, 146, 169, 0.18));
  border: 2px solid rgba(58, 124, 146, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  transition: all 0.3s;
  overflow: hidden;
}

.feature-icon-item:hover .feature-icon-circle {
  background: linear-gradient(135deg, #3a7c92, #4792a9);
  border-color: #3a7c92;
  transform: scale(1.1);
}

.feature-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.feature-icon-item:hover .feature-icon-circle img {
  filter: brightness(1.08) contrast(1.05);
}

.feature-icon-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.feature-icon-item p {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.5;
}

/* ========================
   CTA BANNER
======================== */
.cta-banner {
  background: var(--navy);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(135deg, rgba(58, 124, 146, 0.9) 0%, rgba(30, 74, 88, 0.92) 100%),
    url("assets/covers/cta-wide.svg");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner .parallax-shape {
  z-index: 1;
}

.cta-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-banner h2 em {
  font-style: normal;
  color: var(--gold-light);
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: #1a3020;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

button.btn-gold {
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 24px rgba(254, 190, 16, 0.55), 0 0 0 3px rgba(254, 190, 16, 0.2);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.25s;
  display: inline-block;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: scale(1.04) translateY(-2px);
}

button.btn-outline-white {
  font-family: inherit;
  cursor: pointer;
}

.brand-partners {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  opacity: 0.7;
}

.brand-partners span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ========================
   SUCCESS MODEL
======================== */
.success-section {
  padding: 80px 0;
  background: var(--section-bg);
}

.success-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.success-photo {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #c8dfe6;
  box-shadow: 0 14px 36px rgba(58, 124, 146, 0.18);
}

.success-photo img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.success-content h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.success-content h2 em {
  font-style: normal;
  color: var(--gold);
}

.success-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.success-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.stat-box {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  border: 1px solid #c8dfe6;
  transition: all 0.3s;
}

.stat-box:hover {
  border-color: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(58, 124, 146, 0.15);
}

.stat-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-box p {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

.success-chart {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(58, 124, 146, 0.12);
  border: 1px solid #c8dfe6;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.donut-chart {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
}

.donut-svg circle {
  transition: stroke-dashoffset 1s ease;
}

.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--navy);
}

.donut-center .pct {
  font-size: 2rem;
}

.donut-center .lbl {
  font-size: 0.7rem;
  color: #888;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.legend-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-label {
  flex: 1;
  margin-left: 8px;
  color: #555;
}

.legend-value {
  font-weight: 700;
  color: var(--navy);
}

/* ========================
   PORTFOLIO SECTION
======================== */
.portfolio-section {
  padding: 80px 0;
  background: #fff;
}

/* Portfolio showcase — flat covers, marble-style bg (reference layout) */
.portfolio-section--showcase {
  padding: 72px 0 96px;
  overflow-x: visible;
  background-color: #e9ecef;
  background-image:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(255, 255, 255, 0.95) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 90%, rgba(160, 175, 190, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 88% 55%, rgba(140, 155, 170, 0.1) 0%, transparent 45%),
    linear-gradient(165deg, #f6f7f8 0%, #eceff1 35%, #e2e5e8 100%);
}

.portfolio-showcase-title {
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  color: #141414;
  margin: 0 0 14px;
  text-transform: uppercase;
  font-family: inherit;
}

.portfolio-showcase-sub {
  text-align: center;
  color: #4a4a4a;
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.portfolio-section--showcase .section-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.portfolio-grid--showcase {
  display: grid;
  /* Fixed-width columns so the whole row of covers packs to the right */
  grid-template-columns: repeat(4, minmax(0, 260px));
  justify-content: end;
  justify-items: stretch;
  gap: clamp(20px, 2.8vw, 32px);
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: 0;
  padding: 0 12px;
  box-sizing: border-box;
  /* Nudge entire row right (50px + 20px extra = 70px) */
  position: relative;
  left: 70px;
}

.portfolio-cover-card {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.14),
    0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1), box-shadow 0.35s ease;
  aspect-ratio: 2 / 3;
  background: #1a1a1a;
}

.portfolio-cover-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 28px 48px rgba(0, 0, 0, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.12);
}

.portfolio-cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.portfolio-item {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1), filter 0.35s ease;
  cursor: pointer;
  aspect-ratio: 2 / 3;
  position: relative;
  perspective: 900px;
  padding: 6px 4px 14px;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.22));
  z-index: 2;
}

/* eBook cover mockup — spine, gloss, typography */
.ebook-cover-mockup {
  --accent: #febe10;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 5px 11px 11px 5px;
  background: linear-gradient(
    155deg,
    var(--cover-a) 0%,
    var(--cover-b) 48%,
    var(--cover-deep) 100%
  );
  box-shadow:
    inset 7px 0 0 var(--spine),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 2px 0 rgba(0, 0, 0, 0.06),
    0 14px 32px rgba(0, 0, 0, 0.22),
    0 4px 10px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateY(-11deg) rotateX(1deg);
  transition: transform 0.45s cubic-bezier(0.34, 1.45, 0.64, 1);
}

.portfolio-item:hover .ebook-cover-mockup {
  transform: rotateY(-4deg) rotateX(0deg) translateY(-2px) scale(1.02);
}

.ebook-cover-mockup.ebook-cover-mockup--photo {
  background: none;
  background-color: #1a3038;
  background-image:
    linear-gradient(
      165deg,
      rgba(12, 28, 38, 0.45) 0%,
      rgba(45, 95, 115, 0.18) 38%,
      rgba(8, 18, 28, 0.72) 100%
    ),
    var(--cover-photo);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}

.ebook-cover-mockup--photo .ebook-cover-mockup__texture {
  opacity: 0.06;
}

.ebook-cover-mockup__texture {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.06) 2px,
    rgba(255, 255, 255, 0.06) 3px
  );
  pointer-events: none;
}

.ebook-cover-mockup__shine {
  position: absolute;
  top: -40%;
  left: -35%;
  width: 55%;
  height: 160%;
  background: linear-gradient(
    118deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 48%,
    transparent 58%
  );
  pointer-events: none;
  z-index: 1;
}

.ebook-cover-mockup__face {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 12% 9% 10%;
  box-sizing: border-box;
}

.ebook-cover-mockup__format {
  font-size: clamp(0.5rem, 1.9vw, 0.6rem);
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  margin-bottom: 10px;
}

.ebook-cover-mockup__rule {
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  margin-bottom: auto;
  opacity: 0.95;
  box-shadow: 0 0 12px rgba(254, 190, 16, 0.35);
}

.ebook-cover-mockup__title {
  margin: 0 0 6px;
  font-size: clamp(0.72rem, 3.4vw, 0.95rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.ebook-cover-mockup__sub {
  font-size: clamp(0.5rem, 2.2vw, 0.65rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ebook-cover-mockup__publisher {
  margin-top: auto;
  font-size: clamp(0.45rem, 2vw, 0.55rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ========================
   PROCESS SECTION
======================== */
.process-section {
  padding: 80px 0;
  background: var(--section-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 132px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 0;
}

.process-step-visual {
  margin: 0 auto 16px;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #c8dfe6;
  box-shadow: 0 8px 20px rgba(58, 124, 146, 0.12);
  line-height: 0;
}

.process-step-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 320 / 200;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px 14px 24px;
  border-radius: 12px;
  transition: all 0.3s;
}

.process-step:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 4px solid #ebf4f7;
  box-shadow: 0 4px 12px rgba(58, 124, 146, 0.35);
  transition: all 0.3s;
}

.process-step:hover .step-number {
  background: var(--gold);
  color: #1a3020;
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.6;
}

/* ========================
   TESTIMONIALS
======================== */
.testimonials-section {
  padding: 80px 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 24px;
  margin-top: 50px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #c8dfe6;
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 5rem;
  color: rgba(58, 124, 146, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px) rotateX(2deg);
  box-shadow: 0 16px 40px rgba(58, 124, 146, 0.15);
  border-color: var(--navy-light);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-avatar-img {
  display: block;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.author-role {
  font-size: 0.78rem;
  color: #888;
}

/* ========================
   FAQ SECTION
======================== */
.faq-section {
  padding: 80px 0;
  background: var(--section-bg);
}

.faq-section .section-inner.narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-inner.faq-inner--single {
  grid-template-columns: 1fr;
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid #c8dfe6;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--navy-light);
}

.faq-question {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  gap: 12px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #ebf4f7;
}

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 20px;
  font-size: 0.86rem;
  color: #666;
  line-height: 1.7;
}

.faq-answer.open {
  max-height: 320px;
  padding: 0 20px 18px;
}

.faq-form-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px 32px;
  color: #fff;
  position: sticky;
  top: 90px;
  overflow: hidden;
}

.faq-form-banner {
  margin: -36px -32px 20px;
  line-height: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-form-banner img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  opacity: 0.95;
}

.faq-form-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.faq-form-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
}

.faq-form-card .form-group input,
.faq-form-card .form-group textarea,
.faq-form-card .form-group select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.faq-form-card .form-group input::placeholder,
.faq-form-card .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.faq-form-card .form-group input:focus,
.faq-form-card .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(254, 190, 16, 0.3);
}

/* ========================
   FOOTER
======================== */
.site-footer {
  position: relative;
  color: #fff;
  padding: 52px 0 0;
  background: linear-gradient(168deg, #1e3d4d 0%, #142e3a 38%, #0d2430 100%);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.22);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 3.5vw, 44px);
  align-items: start;
}

.footer-brand h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 36em;
}

.footer-contact p {
  font-size: 0.82rem;
  margin: 0 0 10px;
  line-height: 1.5;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-contact-line {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin: 0 0 16px;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--gold), rgba(254, 190, 16, 0.15));
  border-radius: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Footer — Contact us column (replaces Platform links) */
.footer-col--contact .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col--contact .footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.footer-contact-list__icon {
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.footer-contact-list__text {
  max-width: 16rem;
}

.footer-col--contact a.footer-contact-list__link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(254, 190, 16, 0.28);
  transition: color 0.2s, border-color 0.2s;
}

.footer-col--contact a.footer-contact-list__link:hover {
  color: var(--gold-light);
  border-bottom-color: rgba(254, 190, 16, 0.65);
}

.footer-contact-cta {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-cta a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.footer-contact-cta a:hover {
  color: #fff;
}

.footer-bottom-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
  max-width: 52ch;
  line-height: 1.5;
}

.footer-bottom .legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-bottom .legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom .legal a:hover {
  color: var(--gold-light);
}

/* ========================
   ANIMATIONS / REVEAL
======================== */
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale {
  will-change: transform, opacity;
}

.parallax-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.06;
}

/* ========================
   MOBILE NAV
======================== */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.mobile-drawer {
  display: none;
  background: #fff;
  padding: 12px 24px;
  border-top: 1px solid #eee;
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer > a {
  display: block;
  padding: 10px 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-drawer > a:last-child {
  border-bottom: none;
}

.mobile-nav-dropdown {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  color: var(--navy);
  font-size: inherit;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.mobile-nav-dropdown-trigger:hover {
  color: var(--gold);
}

.mobile-nav-dropdown.is-open .mobile-nav-dropdown-trigger .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.mobile-nav-dropdown-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-nav-dropdown.is-open .mobile-nav-dropdown-panel {
  max-height: 520px;
}

.mobile-nav-dropdown-panel a {
  display: block;
  padding: 9px 0 9px 14px;
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #f5f5f5;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-nav-dropdown-panel a:hover {
  background-color: rgba(71, 146, 169, 0.16);
  color: #2a6275;
}

.creative-vision {
  background: #fff;
  padding: 56px 0;
}

.creative-vision-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.15fr);
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.creative-vision-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(58, 124, 146, 0.2);
  border: 1px solid #c8dfe6;
  line-height: 0;
}

.creative-vision-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 640 / 720;
}

.creative-vision-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--gold);
  color: #1a3020;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.creative-vision-copy {
  font-size: 1.05rem;
  color: #555;
  margin: 0;
  line-height: 1.8;
  text-align: left;
}

.creative-vision p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

.showcase-brands {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0.7;
}

.showcase-brands span {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1140px) {
  .portfolio-grid--showcase {
    grid-template-columns: repeat(2, minmax(0, min(280px, 42vw)));
    justify-content: end;
    justify-items: stretch;
    margin-left: auto;
    margin-right: 0;
    left: 70px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-section .hero-copy h1 {
    font-size: 2rem;
  }

  .showcase-inner {
    grid-template-columns: 1fr;
  }

  .success-inner {
    grid-template-columns: 1fr;
  }

  .faq-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .expert-highlight {
    grid-template-columns: 1fr;
  }

  .creative-vision-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .creative-vision-copy {
    text-align: center;
  }

  .header-top-bar {
    justify-content: center;
    text-align: center;
  }

  .faq-form-card {
    position: static;
  }
}

@media (max-width: 600px) {
  .header-cta-group {
    gap: 6px;
  }

  .header-cta {
    padding: 8px 12px;
    font-size: 12px;
  }

  .header-cta-livechat {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero-inner {
    gap: 30px;
    padding-top: 10px;
  }

  .hero-section .hero-copy h1 {
    font-size: 1.7rem;
  }

  .hero-form-card {
    padding: 24px 18px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-banner h2 {
    font-size: 1.65rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid--showcase {
    grid-template-columns: repeat(2, minmax(0, min(280px, 42vw)));
    justify-content: end;
    justify-items: stretch;
    margin-left: auto;
    margin-right: 0;
    gap: 22px;
    left: min(70px, 5vw);
  }

  .book-stack {
    height: 320px;
    min-height: 260px;
  }

  .book-cover-main {
    width: 140px;
    height: 200px;
  }

  .book-cover-2 {
    width: 120px;
    height: 176px;
    left: 15%;
  }

  .book-cover-3 {
    width: 110px;
    height: 168px;
    left: 82%;
  }
}

@media (max-width: 380px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid--showcase {
    grid-template-columns: minmax(0, min(300px, 88vw));
    justify-content: end;
    justify-items: stretch;
    margin-left: auto;
    margin-right: 0;
    max-width: 100%;
    left: min(70px, 4vw);
  }
}

/* ========================
   ABOUT PAGE — extended
======================== */
.hero-visual-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    0 2px 16px rgba(254, 190, 16, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 420px;
  object-fit: cover;
  background: var(--section-bg);
}

.hero-visual-caption {
  padding: 18px 24px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  border-top: 1px solid rgba(58, 124, 146, 0.12);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-timeline {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-timeline-item {
  position: relative;
  padding: 20px 0 20px 28px;
  border-left: 3px solid var(--navy-light);
}

.about-timeline-item:last-child {
  border-left-color: transparent;
}

.about-timeline-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 26px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--background);
}

.about-timeline-year {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--navy-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-timeline-item h4 {
  margin: 6px 0 8px;
  font-size: 1.05rem;
  color: var(--foreground);
}

.about-timeline-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #555;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Service pages: four feature cards in a 2×2 grid (stacks like .about-why-grid on small screens) */
.about-why-grid.about-why-grid--2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

/* Service pages: four strategy cards in one row (stacks on small screens) */
.marketing-strategies-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 992px) {
  .marketing-strategies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .marketing-strategies-grid {
    grid-template-columns: 1fr;
  }
}

.about-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s;
  box-shadow: 0 8px 28px rgba(58, 124, 146, 0.08);
  transform-style: preserve-3d;
}

.about-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(58, 124, 146, 0.16);
  border-color: rgba(71, 146, 169, 0.45);
}

.about-feature-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}

.about-feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--navy);
}

.about-feature-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #555;
}

.expertise-block {
  max-width: 720px;
  margin: 0 auto;
}

.expertise-row {
  margin-bottom: 22px;
}

.expertise-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.expertise-track {
  height: 12px;
  background: rgba(58, 124, 146, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.expertise-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  box-shadow: 0 0 12px rgba(254, 190, 16, 0.35);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 10px 36px rgba(58, 124, 146, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(58, 124, 146, 0.18);
}

.team-card img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid rgba(254, 190, 16, 0.55);
  box-shadow: 0 6px 20px rgba(58, 124, 146, 0.2);
}

.team-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--foreground);
}

.team-card .role {
  margin: 0;
  font-size: 0.82rem;
  color: var(--navy-light);
  font-weight: 600;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.about-stat-card {
  background: linear-gradient(145deg, #fff 0%, var(--section-bg) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 10px 32px rgba(58, 124, 146, 0.08);
}

.about-stat-card .stat-counter-num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}

.about-stat-card p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
}

.section-about-muted {
  background: var(--section-bg);
}

@media (max-width: 992px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-why-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .nav-links li a.is-current,
  .nav-links li .nav-dropdown-trigger.is-current {
    box-shadow: none;
  }
}

/* ========================
   CONTACT PAGE
======================== */
.contact-page-hero {
  position: relative;
  min-height: 300px;
  max-height: 360px;
  height: clamp(260px, 32vw, 340px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 40px;
  margin: 0;
  overflow: hidden;
  background: #0a1622;
}

.contact-page-hero__bg {
  position: absolute;
  inset: 0;
  background-color: #060d14;
  background-image:
    linear-gradient(180deg, rgba(10, 22, 34, 0.88) 0%, rgba(30, 74, 88, 0.82) 50%, rgba(13, 27, 40, 0.9) 100%),
    linear-gradient(90deg, rgba(10, 22, 34, 0.4) 0%, transparent 50%),
    url("https://images.unsplash.com/photo-1514565131-fce0801e5785?auto=format&fit=crop&w=1920&h=700&q=75");
  background-size: cover;
  background-position: center bottom;
  filter: saturate(0.55) brightness(0.45);
  transform: scale(1.02);
}

.contact-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.contact-page-hero__title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.contact-page-hero__sub {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .contact-page-hero {
    min-height: 240px;
    padding: calc(var(--site-header-offset) - 8px) 20px 36px;
  }
}

/* Contact / About — minimal black banner (replaces hero) */
.contact-page-banner,
.about-page-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: calc(var(--site-header-offset) + 48px) 24px 52px;
  margin: 0;
  background: #000000;
  border-bottom: 1px solid rgba(254, 190, 16, 0.2);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.contact-page-banner__title,
.about-page-banner__title {
  margin: 0;
  font-size: clamp(2.25rem, 6.5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.08;
  font-family: inherit;
}

@media (max-width: 600px) {
  .contact-page-banner,
  .about-page-banner {
    min-height: 180px;
    padding: calc(var(--site-header-offset) + 20px) 20px 40px;
  }

  .contact-page-banner__title,
  .about-page-banner__title {
    letter-spacing: 0.04em;
  }
}

.contact-reach-section {
  padding-bottom: 56px;
  background: var(--background);
}

.contact-reach-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: stretch;
  margin-top: 28px;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-tile {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(71, 146, 169, 0.28);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(58, 124, 146, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s;
}

.contact-info-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(58, 124, 146, 0.18);
  border-color: rgba(254, 190, 16, 0.45);
}

.contact-tile-title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-tile-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #444;
}

.contact-tile-text a {
  color: var(--navy-light);
  font-weight: 600;
  text-decoration: none;
}

.contact-tile-text a:hover {
  color: var(--gold-dark);
}

.contact-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 60px rgba(58, 124, 146, 0.22);
  background: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  align-self: start;
}

.contact-map-wrap:hover {
  transform: scale(1.012);
  box-shadow: 0 26px 72px rgba(58, 124, 146, 0.28);
}

.contact-map-iframe {
  display: block;
  width: 100%;
  height: min(440px, 58vh);
  min-height: 280px;
  border: 0;
}

.contact-form-section {
  padding: 64px 24px 80px;
}

.contact-form-section-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form-panel {
  margin-top: 28px;
  padding: 32px 28px 36px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(71, 146, 169, 0.22);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(58, 124, 146, 0.12);
}

.contact-page-form .form-group {
  margin-bottom: 18px;
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}

.contact-page-submit {
  margin-top: 6px;
}

@media (max-width: 992px) {
  .contact-reach-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-wrap {
    order: 2;
  }

  .contact-info-stack {
    order: 1;
  }
}
