/* =========================
   Global Theme
========================= */
:root {
  --primary: #3C8787;
  --primary-light: #4B9999;
  --primary-dark: #2F6F73;
  --soft-bg: #EAF4F4;
  --white: #FFFFFF;
  --dark: #1F2933;
  --gray: #5F6B73;
  --border: rgba(31, 41, 51, 0.12);
  --shadow: 0 18px 50px rgba(14, 52, 55, 0.14);
  --shadow-soft: 0 12px 35px rgba(14, 52, 55, 0.10);
  --radius: 22px;
  --font-heading: "Bebas Neue", "Inter", sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-padding { padding: 95px 0; }

.section-dark {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--dark);
  color: var(--white);
  padding: 10px 16px;
  z-index: 99999;
}

.skip-link:focus { left: 12px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

.services-section .btn-primary,
.spotlight-section .btn-primary,
.lead-card .btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(255,255,255,.55);
  color: var(--white);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.btn-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
}

.btn-full { width: 100%; }
.center { justify-content: center; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}

.site-header.scrolled,
.site-header.nav-open {
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 30px rgba(17, 44, 47, .10);
  backdrop-filter: blur(14px);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.logo img {
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
}

.logo-text {
  color: var(--white);
  line-height: 1;
  font-size: 17px;
}

.logo-text span {
  display: block;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}

.site-header.scrolled .logo-text,
.site-header.nav-open .logo-text { color: var(--dark); }

.main-nav { margin-left: auto; }

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a,
.dropdown-toggle {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px 0;
}

.site-header.scrolled .main-nav a,
.site-header.scrolled .dropdown-toggle,
.site-header.nav-open .main-nav a,
.site-header.nav-open .dropdown-toggle { color: var(--dark); }

.main-nav a:hover,
.dropdown-toggle:hover,
.main-nav a.active { color: #d9ffff; }

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .dropdown-toggle:hover,
.site-header.scrolled .main-nav a.active { color: var(--primary); }

.has-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 560px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  color: var(--dark) !important;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
}

.dropdown-menu a:hover {
  background: var(--soft-bg);
  color: var(--primary-dark) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
}

.site-header.scrolled .phone-link,
.site-header.nav-open .phone-link { color: var(--primary-dark); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--white);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--primary-dark);
  margin: 5px 0;
}

/* Hero */
.hero {
  min-height: 650px;
  padding: 118px 0 58px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(32, 105, 108, .91), rgba(32, 105, 108, .94)),
    radial-gradient(circle at 16% 18%, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(120deg, rgba(255,255,255,.06) 0 25%, transparent 25% 100%);
  z-index: 0;
}

.hero::after {
  content: "PUBLISH";
  position: absolute;
  left: -30px;
  top: 70px;
  font-family: var(--font-heading);
  font-size: 145px;
  letter-spacing: .05em;
  color: rgba(255,255,255,.045);
  z-index: 1;
}

.hero-bg-shape {
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  z-index: 1;
  pointer-events: none;
}

.hero-shape-one {
  width: 360px;
  height: 360px;
  border-radius: 48%;
  left: -120px;
  top: 90px;
}

.hero-shape-two {
  width: 280px;
  height: 420px;
  right: -80px;
  top: 80px;
  transform: rotate(25deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 38px;
  align-items: center;
}

.hero-right {
  position: relative;
  min-height: 500px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-books {
  position: absolute;
  top: -18px;
  right: 18px;
  width: min(285px, 52%);
  opacity: .95;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.18));
  animation: floatSoft 4s ease-in-out infinite;
}

.hero-form-badge {
  position: absolute;
  left: 8px;
  top: 34px;
  z-index: 3;
  background: rgba(255,255,255,.94);
  color: var(--primary-dark);
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
  font-weight: 900;
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-form-badge span {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

@keyframes floatSoft {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.eyebrow {
  display: inline-block;
  color: rgba(255,255,255,.90);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .16em;
  margin-bottom: 14px;
}

.eyebrow.dark { color: var(--primary-dark); }

.hero h1,
.section-heading h2,
.spotlight-copy h2,
.final-cta h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: .98;
  margin: 0;
  letter-spacing: .02em;
}

.hero h1 {
  font-size: clamp(44px, 5.6vw, 68px);
  max-width: 760px;
}

.hero p {
  max-width: 590px;
  margin: 18px 0 0;
  font-size: 16.5px;
  color: rgba(255,255,255,.88);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
  font-size: 13px;
}

/* Lead Form */
.lead-card {
  position: relative;
  z-index: 2;
  width: min(410px, 100%);
  background: var(--white);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 20px 55px rgba(0,0,0,.18);
}

.lead-card h2 {
  margin: 0;
  font-size: 24px;
  color: var(--primary-dark);
}

.lead-card p {
  margin: 6px 0 16px;
  color: var(--gray);
  font-size: 15px;
}

.form-row { margin-bottom: 10px; }

.form-row label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--dark);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 13px;
  color: var(--dark);
  background: #FBFCFC;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(60, 135, 135, .13);
}

.hp-field { display: none !important; }

/* Stats */
.stats-section {
  padding: 38px 0;
  background: var(--white);
  position: relative;
  z-index: 5;
}

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

.stat-card {
  background: var(--soft-bg);
  border: 1px solid rgba(60,135,135,.14);
  border-radius: 20px;
  padding: 26px 20px;
  text-align: center;
}

.stat-card strong,
.stat-card span {
  color: var(--primary-dark);
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}

.stat-card p {
  margin: 8px 0 0;
  color: var(--gray);
  font-weight: 800;
}

/* Section Heading */
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-heading h2,
.spotlight-copy h2,
.final-cta h2 {
  color: var(--dark);
  font-size: clamp(42px, 5vw, 64px);
}

.section-heading p {
  margin: 16px auto 0;
  color: var(--gray);
  font-size: 17px;
}

.section-heading.light h2,
.section-heading.light p { color: var(--white); }

.section-heading.light p { color: rgba(255,255,255,.88); }

/* Services */
.services-section { background: #FBFFFF; }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 260px;
  box-shadow: 0 8px 24px rgba(30, 74, 77, .05);
  transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(60,135,135,.30);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--soft-bg);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 21px;
  margin-bottom: 18px;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 20px;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--gray);
  font-size: 15px;
}

.service-card a {
  font-weight: 900;
  color: var(--primary-dark);
}

/* Genre Section */
.genre-section {
  position: relative;
  overflow: hidden;
}

.genre-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(255,255,255,.12), transparent 25%),
    radial-gradient(circle at 92% 12%, rgba(255,255,255,.10), transparent 22%),
    linear-gradient(135deg, rgba(255,255,255,.05), transparent 55%);
  pointer-events: none;
}

.pattern-line {
  position: absolute;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 40px;
  pointer-events: none;
}

.pattern-left {
  width: 300px;
  height: 300px;
  left: -100px;
  top: 70px;
}

.pattern-right {
  width: 300px;
  height: 420px;
  right: -90px;
  bottom: 50px;
  transform: rotate(-20deg);
}

.genre-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.genre-card {
  min-height: 225px;
  background: var(--white);
  color: var(--dark);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 115px;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.genre-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 44px rgba(0,0,0,.14);
}

.genre-copy h3 {
  margin: 0 0 10px;
  color: #006b6b;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.genre-copy p {
  margin: 0;
  color: #4d5b63;
  font-size: 15px;
  line-height: 1.55;
}

.genre-book {
  width: 105px;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.22));
  transform: rotate(8deg);
  transition: transform .25s ease;
}

.genre-card:hover .genre-book {
  transform: rotate(3deg) scale(1.04);
}

/* Process */
.process-section { background: var(--white); }

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

.process-card {
  background: var(--soft-bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(60,135,135,.13);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 20px;
}

.process-card h3 {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 20px;
}

.process-card p {
  margin: 0;
  color: var(--gray);
  font-size: 15px;
}

/* Spotlight */
.spotlight-section {
  background: linear-gradient(180deg, #FBFFFF, var(--soft-bg));
}

.spotlight-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.spotlight-visual img {
  filter: drop-shadow(0 25px 35px rgba(14, 52, 55, .18));
}

.spotlight-copy p {
  color: var(--gray);
  font-size: 17px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--dark);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-dark);
  font-weight: 900;
}

/* Final CTA */
.final-cta {
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 { color: var(--white); }

.final-cta p {
  margin: 16px auto 0;
  max-width: 620px;
  color: rgba(255,255,255,.86);
}

/* Footer */
.site-footer {
  background: #173b3e;
  color: rgba(255,255,255,.78);
  padding: 70px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
}

.footer-logo .logo-text { color: var(--white); }

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 18px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.site-footer a:hover { color: var(--white); }

.footer-brand p { max-width: 360px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 44px;
  padding-top: 20px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.disclaimer {
  max-width: 580px;
  text-align: right;
}

/* Floating Buttons */
.mobile-call { display: none; }

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: .15s; }

/* Responsive */
@media (max-width: 1120px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .genre-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .header-actions { display: none; }
}

@media (max-width: 920px) {
  .container { width: min(100% - 28px, 1180px); }

  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .main-nav a,
  .dropdown-toggle {
    display: block;
    width: 100%;
    text-align: left;
    color: var(--dark) !important;
    padding: 12px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    padding: 6px 0 6px 14px;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 12px;
    background: var(--soft-bg);
  }

  .hero {
    padding: 110px 0 58px;
  }

  .hero-grid,
  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .hero-books {
    position: static;
    margin: 0 auto -8px;
    width: min(330px, 88%);
  }

  .hero-form-badge {
    display: none;
  }

  .lead-card {
    position: static;
    width: 100%;
  }

  .hero::after { font-size: 120px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .disclaimer { text-align: left; }
}

@media (max-width: 620px) {
  .section-padding { padding: 70px 0; }
  .hero { min-height: auto; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 16px; }
  .lead-card { padding: 24px; }

  .stats-grid,
  .services-grid,
  .genre-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .genre-card {
    grid-template-columns: 1fr 88px;
    min-height: 190px;
    padding: 22px;
  }

  .genre-book { width: 82px; }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn { width: 100%; }

  .mobile-call {
    display: block;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 1000;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    font-weight: 900;
    border-radius: 999px;
    padding: 13px 18px;
    box-shadow: var(--shadow);
  }

  .scroll-top { bottom: 75px; }
}


/* =========================
   Dropdown Fixes
   - Desktop hover bridge
   - Mobile accordion dropdown
========================= */
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dropdown-arrow {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  transition: transform .25s ease;
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown:focus-within .dropdown-arrow,
.has-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

/* Invisible bridge prevents dropdown from hiding while moving cursor down */
.has-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 22px;
  display: block;
}

.dropdown-menu {
  top: calc(100% + 8px);
}

/* JS class also keeps menu open on click */
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 920px) {
  .has-dropdown::after {
    display: none;
  }

  .dropdown-toggle {
    justify-content: space-between;
    align-items: center;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--soft-bg);
    border-radius: 14px;
    padding: 0;
    margin: 0 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease, margin .3s ease;
  }

  .has-dropdown.open .dropdown-menu {
    max-height: 720px;
    padding: 8px;
    margin: 4px 0 8px 0;
  }

  .dropdown-menu a {
    padding: 11px 12px;
    border-radius: 10px;
  }

  .has-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }
}


/* =========================
   Compact Reference-Style Services Section
========================= */
.services-compact {
  background: #ffffff;
  padding-top: 82px;
  padding-bottom: 82px;
}

.services-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 54px;
}

.services-title span {
  height: 4px;
  background: #f39a18;
  display: block;
}

.services-title h2 {
  margin: 0;
  text-align: center;
  color: #070707;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 400;
  white-space: nowrap;
}

.services-title h2 em {
  color: #f39a18;
  font-style: normal;
  font-size: .58em;
  letter-spacing: .05em;
  vertical-align: middle;
  font-family: var(--font-body);
  font-weight: 800;
}

.services-tile-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: stretch;
  gap: 0;
}

.service-tile {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 24px 16px;
  background: #ffffff;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.service-tile:nth-child(1),
.service-tile:nth-child(3),
.service-tile:nth-child(5),
.service-tile:nth-child(8),
.service-tile:nth-child(10),
.service-tile:nth-child(12) {
  background: #fbf5ee;
}

.service-tile img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  transition: transform .25s ease;
}

.service-tile h3 {
  margin: 0;
  max-width: 170px;
  color: #070707;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .01em;
}

.service-tile:hover {
  background: #fff8ef;
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(22, 59, 61, .10);
  z-index: 2;
}

.service-tile:hover img {
  transform: translateY(-3px) scale(1.04);
}

/* Hide old card style influence if cached CSS exists */
.services-compact .section-heading,
.services-compact .service-card,
.services-compact .service-icon {
  all: unset;
}

@media (max-width: 1180px) {
  .services-tile-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-tile {
    min-height: 190px;
  }
}

@media (max-width: 820px) {
  .services-compact {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .services-title {
    grid-template-columns: 46px 1fr 46px;
    gap: 12px;
    margin-bottom: 34px;
  }

  .services-title h2 {
    white-space: normal;
    font-size: 34px;
  }

  .services-title h2 em {
    display: block;
    margin-top: 5px;
    font-size: 15px;
  }

  .services-tile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .service-tile {
    min-height: 138px;
    padding: 18px 10px;
    gap: 10px;
    border-radius: 10px;
  }

  .service-tile img {
    width: 46px;
    height: 46px;
  }

  .service-tile h3 {
    font-size: 14px;
    line-height: 1.16;
    max-width: 130px;
  }
}

@media (max-width: 390px) {
  .services-tile-grid {
    gap: 6px;
  }

  .service-tile {
    min-height: 128px;
  }

  .service-tile h3 {
    font-size: 13px;
  }
}


/* =========================
   Hero Final Polish
   - Smaller hero
   - Book visual as low-opacity background
   - Compact form
   - Better mobile first fold
========================= */
.hero {
  min-height: 610px;
  padding-top: 108px;
  padding-bottom: 48px;
}

.hero::after {
  content: "";
  position: absolute;
  left: auto;
  right: 3%;
  top: 82px;
  width: min(560px, 44vw);
  height: 390px;
  background: url("../images/hero-books.svg") center / contain no-repeat;
  opacity: .105;
  z-index: 1;
  pointer-events: none;
  font-size: 0;
  letter-spacing: 0;
}

.hero-grid {
  grid-template-columns: 1.08fr .82fr;
  gap: 34px;
}

.hero h1 {
  font-size: clamp(42px, 5.2vw, 64px);
  max-width: 650px;
}

.hero p {
  max-width: 560px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.55;
}

.hero-buttons {
  margin-top: 22px;
}

.hero-trust {
  margin-top: 20px;
}

.hero-trust span {
  padding: 7px 11px;
  font-size: 12px;
}

.hero-right {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-books,
.hero-form-badge {
  display: none !important;
}

.lead-card {
  position: relative;
  width: min(372px, 100%);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
}

.lead-card h2 {
  font-size: 21px;
  line-height: 1.15;
}

.lead-card p {
  margin: 5px 0 13px;
  font-size: 13px;
  line-height: 1.45;
}

.lead-card .contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.lead-card .form-row {
  margin-bottom: 0;
}

.lead-card .form-row label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.lead-card .form-row input,
.lead-card .form-row select,
.lead-card .form-row textarea {
  min-height: 40px;
  border-radius: 11px;
  padding: 9px 12px;
  font-size: 14px;
}

.lead-card .form-row textarea {
  min-height: 58px;
  resize: vertical;
}

.lead-card .btn-full {
  min-height: 41px;
  padding: 10px 15px;
  font-size: 14px;
}

/* Desktop can use 2 columns inside form for compact height */
@media (min-width: 921px) {
  .lead-card .contact-form {
    grid-template-columns: 1fr 1fr;
  }

  .lead-card .form-row:nth-child(1),
  .lead-card .form-row:nth-child(5),
  .lead-card .btn-full,
  .lead-card .hp-field {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 36px;
  }

  .hero::after {
    left: 50%;
    right: auto;
    top: 86px;
    width: 360px;
    height: 260px;
    transform: translateX(-50%);
    opacity: .075;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 46px);
    max-width: 520px;
    margin-inline: auto;
  }

  .hero p {
    max-width: 470px;
    margin: 10px auto 0;
    font-size: 14.5px;
    line-height: 1.5;
  }

  .hero-buttons {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 40px;
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero-trust {
    justify-content: center;
    margin-top: 14px;
    gap: 7px;
  }

  .hero-trust span {
    padding: 6px 9px;
    font-size: 11px;
  }

  .hero-right {
    position: relative;
    z-index: 3;
    display: block;
  }

  .lead-card {
    width: min(340px, 100%);
    margin: 14px auto 0;
    padding: 15px;
    border-radius: 16px;
  }

  .lead-card h2 {
    font-size: 19px;
    text-align: center;
  }

  .lead-card p {
    display: none;
  }

  .lead-card .contact-form {
    gap: 7px;
  }

  .lead-card .form-row input,
  .lead-card .form-row select,
  .lead-card .form-row textarea {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 13.5px;
  }

  .lead-card .message-row {
    display: none;
  }

  .lead-card .btn-full {
    min-height: 39px;
    font-size: 13.5px;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 86px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 13.5px;
  }

  .lead-card {
    width: 100%;
    padding: 14px;
  }
}


/* =========================
   Mobile Hero Reference Layout + Teal Services Theme
   Added after earlier hero fixes so this block wins.
========================= */

/* Services tile section now follows website teal/sky-blue theme */
.services-title span {
  background: var(--primary);
}

.services-title h2 em {
  color: var(--primary);
}

.service-tile:nth-child(1),
.service-tile:nth-child(3),
.service-tile:nth-child(5),
.service-tile:nth-child(8),
.service-tile:nth-child(10),
.service-tile:nth-child(12) {
  background: var(--soft-bg);
}

.service-tile:hover {
  background: #f0fbfb;
}

.service-tile img {
  filter: hue-rotate(155deg) saturate(70%) brightness(.82);
}

.service-tile h3 {
  color: var(--dark);
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    padding: 96px 0 36px;
    align-items: flex-start;
  }

  .hero::before {
    background:
      linear-gradient(rgba(23, 77, 80, .94), rgba(23, 77, 80, .96)),
      radial-gradient(circle at 82% 18%, rgba(255,255,255,.16), transparent 26%),
      radial-gradient(circle at 20% 82%, rgba(255,255,255,.09), transparent 28%);
  }

  .hero::after {
    top: 126px;
    left: 50%;
    right: auto;
    width: min(430px, 96vw);
    height: 310px;
    transform: translateX(-50%);
    opacity: .085;
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column;
    gap: 26px;
    align-items: stretch;
  }

  .hero-content {
    width: 100%;
    text-align: left;
    padding-top: 10px;
  }

  .hero .eyebrow {
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: .18em;
    max-width: 300px;
    margin-bottom: 12px;
  }

  .hero h1 {
    max-width: 360px;
    margin: 0;
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.02;
    text-align: left;
  }

  .hero p {
    max-width: 345px;
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.55;
    text-align: left;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 345px;
    margin-top: 20px;
  }

  .hero-buttons .btn {
    min-height: 44px;
    padding: 11px 12px;
    border-radius: 12px;
    font-size: 13px;
  }

  .hero-trust {
    justify-content: flex-start;
    max-width: 345px;
    margin-top: 16px;
    gap: 8px;
  }

  .hero-trust span {
    padding: 7px 10px;
    font-size: 11px;
    border-radius: 12px;
  }

  .hero-right {
    width: 100%;
    display: block;
  }

  .lead-card {
    position: relative !important;
    width: 100% !important;
    max-width: 430px;
    margin: 0;
    padding: 22px 18px 18px;
    border-radius: 22px 22px 0 0;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 42px rgba(0,0,0,.16);
  }

  .lead-card h2 {
    text-align: center;
    font-size: 22px;
    line-height: 1.05;
    margin-bottom: 6px;
  }

  .lead-card p {
    display: block;
    text-align: center;
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--gray);
  }

  .lead-card .contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lead-card .form-row label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip-path: none;
    white-space: normal;
    font-size: 12px;
    margin-bottom: 4px;
  }

  .lead-card .form-row input,
  .lead-card .form-row select,
  .lead-card .form-row textarea {
    min-height: 42px;
    border-radius: 13px;
    padding: 10px 12px;
    font-size: 14px;
    background: #ffffff;
  }

  .lead-card .message-row {
    display: block;
  }

  .lead-card .form-row textarea {
    min-height: 72px;
  }

  .lead-card .btn-full {
    min-height: 44px;
    border-radius: 999px;
    font-size: 14px;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 0;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero h1 {
    font-size: 42px;
    max-width: 315px;
  }

  .hero p {
    max-width: 315px;
    font-size: 13.5px;
  }

  .hero-buttons {
    max-width: 315px;
  }

  .hero-trust {
    max-width: 315px;
  }

  .lead-card {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    border-radius: 24px 24px 0 0;
  }

  .services-title {
    grid-template-columns: 34px 1fr 34px;
  }

  .services-title h2 {
    font-size: 30px;
  }

  .service-tile {
    background: #ffffff;
    border: 1px solid rgba(60,135,135,.12);
  }

  .service-tile:nth-child(odd) {
    background: var(--soft-bg);
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero-buttons .btn {
    font-size: 12px;
    padding-inline: 8px;
  }
}


/* =========================
   Final Cleanup Requested
   - Remove heavy motion feeling
   - Teal services sync
   - Better CTA
   - Bottom spotlight form
   - Reference-style footer/disclaimer
========================= */

/* Reduce animations and hover intensity */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .25s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.btn:hover,
.service-tile:hover,
.genre-card:hover,
.service-card:hover {
  transform: none !important;
}

.genre-card:hover .genre-book,
.service-tile:hover img {
  transform: none !important;
}

.btn,
.service-tile,
.genre-card,
.service-card,
.genre-book,
.service-tile img {
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

/* Services tile section full teal sync */
.services-title span {
  background: var(--primary) !important;
}

.services-title h2 em {
  color: var(--primary) !important;
}

.services-tile-grid {
  gap: 0;
}

.service-tile {
  background: #ffffff !important;
  border: 1px solid rgba(60, 135, 135, .09);
  box-shadow: none;
}

.service-tile:nth-child(odd),
.service-tile:nth-child(1),
.service-tile:nth-child(3),
.service-tile:nth-child(5),
.service-tile:nth-child(8),
.service-tile:nth-child(10),
.service-tile:nth-child(12) {
  background: var(--soft-bg) !important;
}

.service-tile:hover {
  background: #f7ffff !important;
  box-shadow: 0 8px 18px rgba(22, 59, 61, .06);
}

.service-tile img {
  filter: none !important;
}

.service-tile h3 {
  color: var(--dark);
}

@media (max-width: 820px) {
  .services-tile-grid {
    gap: 8px;
  }

  .service-tile {
    border-radius: 12px;
    background: #ffffff !important;
  }

  .service-tile:nth-child(odd) {
    background: var(--soft-bg) !important;
  }

  .service-tile:nth-child(even) {
    background: #ffffff !important;
  }
}

/* Beautified CTA */
.final-cta-polished {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.18), transparent 25%),
    radial-gradient(circle at 84% 80%, rgba(255,255,255,.11), transparent 26%),
    linear-gradient(135deg, #2F6F73, #3C8787);
  padding: 86px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.final-cta-polished::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  pointer-events: none;
}

.final-cta-card {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.cta-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.final-cta-polished h2 {
  color: var(--white);
  max-width: 820px;
  margin-inline: auto;
}

.final-cta-polished p {
  color: rgba(255,255,255,.88);
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 17px;
}

.final-cta-polished .hero-buttons {
  margin-top: 28px;
}

/* Bottom Spotlight Contact Form Section */
.spotlight-contact-section {
  background:
    linear-gradient(180deg, #ffffff, #f2fafa);
  position: relative;
  overflow: hidden;
}

.spotlight-contact-section::before {
  content: "SPOTLIGHT";
  position: absolute;
  left: -35px;
  top: 30px;
  font-family: var(--font-heading);
  font-size: 150px;
  letter-spacing: .06em;
  color: rgba(60,135,135,.045);
  pointer-events: none;
}

.spotlight-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.spotlight-contact-copy h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(46px, 5vw, 76px);
  line-height: .96;
  letter-spacing: .02em;
  margin: 0;
  color: var(--dark);
}

.spotlight-contact-copy p {
  max-width: 610px;
  color: var(--gray);
  font-size: 17px;
  margin: 20px 0 28px;
}

.spotlight-points {
  display: grid;
  gap: 13px;
  max-width: 520px;
}

.spotlight-points div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(60,135,135,.08);
  border: 1px solid rgba(60,135,135,.12);
}

.spotlight-points strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
}

.spotlight-points span {
  font-weight: 800;
  color: var(--dark);
}

.spotlight-form-card {
  background: var(--white);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 22px 55px rgba(14, 52, 55, .14);
  border: 1px solid rgba(60,135,135,.12);
}

.spotlight-form-card h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 30px;
}

.spotlight-form-card p {
  margin: 6px 0 22px;
  color: var(--gray);
}

.spotlight-form-card .contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.spotlight-form-card .form-row {
  margin-bottom: 0;
}

.spotlight-form-card .form-row:nth-child(1),
.spotlight-form-card .form-row:nth-child(5),
.spotlight-form-card .btn-full,
.spotlight-form-card .hp-field {
  grid-column: 1 / -1;
}

/* Footer reference style */
.footer-reference {
  position: relative;
  background: #050505;
  color: rgba(255,255,255,.86);
  padding: 66px 0 46px;
  overflow: hidden;
}

.footer-reference::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.84), rgba(0,0,0,.92)),
    radial-gradient(circle at 20% 12%, rgba(255,255,255,.08), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.05), transparent 28%);
  pointer-events: none;
}

.footer-reference .container {
  position: relative;
  z-index: 2;
}

.footer-top-reference {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: start;
}

.footer-reference .footer-logo img {
  width: 58px;
  height: 58px;
  box-shadow: none;
}

.footer-reference .logo-text {
  color: #fff;
}

.footer-reference .footer-brand p {
  max-width: 540px;
  margin-top: 26px;
  color: #fff;
  font-size: 16px;
  line-height: 1.45;
}

.footer-contact-block {
  display: grid;
  gap: 14px;
  padding-top: 14px;
}

.footer-contact-block p {
  margin: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  color: #fff;
  font-size: 16px;
}

.footer-contact-icon {
  width: 26px;
  color: #fff;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.55);
  margin-top: 38px;
  margin-bottom: 70px;
}

.footer-links-reference {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  color: #fff;
  font-size: 15px;
}

.footer-links-reference a:hover {
  color: #d9ffff;
}

.footer-copyright {
  text-align: center;
  margin-top: 20px;
  color: #fff;
}

.footer-disclaimer {
  max-width: 1040px;
  text-align: center;
  margin-top: 32px;
}

.footer-disclaimer h3 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 24px;
}

.footer-disclaimer p {
  margin: 0 auto;
  color: #fff;
  line-height: 1.45;
  font-size: 15.5px;
}

/* Remove old footer layout conflicts */
.footer-reference .footer-grid,
.footer-reference .footer-bottom {
  display: none !important;
}

@media (max-width: 920px) {
  .spotlight-contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .spotlight-contact-section::before {
    font-size: 90px;
  }

  .spotlight-contact-copy h2 {
    font-size: 44px;
  }

  .spotlight-form-card {
    padding: 24px;
    border-radius: 24px;
  }

  .spotlight-form-card .contact-form {
    grid-template-columns: 1fr;
  }

  .spotlight-form-card .form-row,
  .spotlight-form-card .form-row:nth-child(1),
  .spotlight-form-card .form-row:nth-child(5),
  .spotlight-form-card .btn-full {
    grid-column: auto;
  }

  .footer-top-reference {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-divider {
    margin-top: 30px;
    margin-bottom: 44px;
  }
}

@media (max-width: 620px) {
  .final-cta-polished {
    padding: 64px 0;
  }

  .final-cta-polished::before {
    inset: 10px;
    border-radius: 22px;
  }

  .final-cta-polished p {
    font-size: 14.5px;
  }

  .spotlight-contact-copy h2 {
    font-size: 38px;
  }

  .spotlight-contact-copy p {
    font-size: 14.5px;
  }

  .spotlight-points div {
    grid-template-columns: 46px 1fr;
    padding: 11px 12px;
  }

  .spotlight-points strong {
    width: 36px;
    height: 36px;
  }

  .spotlight-points span {
    font-size: 14px;
  }

  .footer-reference {
    padding: 50px 0 38px;
  }

  .footer-links-reference {
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-disclaimer h3 {
    font-size: 21px;
  }

  .footer-disclaimer p {
    font-size: 13.5px;
  }
}


/* =========================
   CTA + Strategy Process Update
========================= */

/* Reference style CTA with our teal theme */
.skills-cta-section {
  background:
    linear-gradient(rgba(93, 164, 176, .88), rgba(93, 164, 176, .88)),
    radial-gradient(circle at 10% 25%, rgba(255,255,255,.22), transparent 27%),
    radial-gradient(circle at 84% 22%, rgba(255,255,255,.15), transparent 24%),
    linear-gradient(135deg, #5DA4B0, #3C8787);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.skills-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.09) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,.07) 25%, transparent 25%);
  background-size: 120px 120px;
  opacity: .24;
  pointer-events: none;
}

.skills-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

.skills-cta-copy h2 {
  margin: 0;
  max-width: 680px;
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: .01em;
}

.skills-cta-copy p {
  max-width: 610px;
  margin: 16px 0 22px;
  color: rgba(255,255,255,.95);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 600;
}

.skills-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-dark {
  background: #050505;
  color: #fff;
  border-color: #050505;
  min-width: 178px;
}

.cta-glass {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.65);
  min-width: 178px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.skills-cta-visual {
  display: flex;
  justify-content: center;
}

.skills-cta-visual img {
  width: min(200px, 100%);
  height: min(100px, 100%);
  filter: drop-shadow(0 22px 28px rgba(14,52,55,.24));
}

/* Strategy process section */
.strategy-process {
  background: #ffffff;
  padding-top: 82px;
}

.strategy-title {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  gap: 22px;
  align-items: start;
  margin-bottom: 54px;
}

.strategy-title span {
  height: 4px;
  background: var(--primary);
  margin-top: 25px;
}

.strategy-title h2 {
  margin: 0;
  max-width: 980px;
  color: #050505;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: .96;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.strategy-title h2 em {
  color: var(--primary);
  font-style: normal;
}

.strategy-process-grid {
  max-width: 990px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 96px;
}

.strategy-card {
  min-height: 214px;
  background: #ffffff;
  border: 1px solid rgba(31,41,51,.10);
  box-shadow: 0 8px 22px rgba(14,52,55,.08);
  padding: 34px 36px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.strategy-card-featured {
  background: rgba(60,135,135,.10);
  border-color: rgba(60,135,135,.12);
  color: var(--dark);
}

.strategy-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.strategy-card h3 {
  margin: 2px 0 16px;
  color: #050505;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 900;
  font-family: Georgia, "Times New Roman", serif;
}

.strategy-card p {
  margin: 0;
  color: #39464d;
  font-size: 16px;
  line-height: 1.55;
}

/* Remove hover from process boxes */
.strategy-card,
.process-card {
  transition: none !important;
}

.strategy-card:hover,
.process-card:hover {
  transform: none !important;
  box-shadow: 0 8px 22px rgba(14,52,55,.08) !important;
}

/* Also keep service tile hover calm */
.service-tile:hover {
  transform: none !important;
  box-shadow: 0 8px 18px rgba(22, 59, 61, .05) !important;
}

/* services mobile color final sync */
@media (max-width: 820px) {
  .service-tile,
  .service-tile:nth-child(even) {
    background: #ffffff !important;
    border-color: rgba(60,135,135,.14) !important;
  }

  .service-tile:nth-child(odd) {
    background: var(--soft-bg) !important;
  }

  .services-title span {
    background: var(--primary) !important;
  }

  .services-title h2 em {
    color: var(--primary) !important;
  }
}

@media (max-width: 920px) {
  .skills-cta-section {
    padding: 58px 0;
  }

  .skills-cta-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: left;
  }

  .skills-cta-copy h2 {
    font-size: 34px;
  }

  .skills-cta-copy p {
    font-size: 16px;
  }

  .skills-cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 360px;
  }

  .skills-cta-buttons .btn {
    min-width: 0;
    width: 100%;
  }

  .skills-cta-visual {
    justify-content: center;
  }

  .skills-cta-visual img {
    max-width: 330px;
  }

  .strategy-title {
    grid-template-columns: 42px 1fr 42px;
    gap: 12px;
    margin-bottom: 34px;
  }

  .strategy-title h2 {
    font-size: 44px;
  }

  .strategy-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strategy-card {
    min-height: auto;
    padding: 25px 22px;
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .strategy-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .strategy-card p {
    font-size: 14.5px;
  }
}

@media (max-width: 620px) {
  .skills-cta-section {
    padding: 48px 0;
  }

  .skills-cta-copy h2 {
    font-size: 30px;
  }

  .skills-cta-copy p {
    font-size: 14.5px;
  }

  .skills-cta-buttons {
    grid-template-columns: 1fr;
  }

  .skills-cta-visual img {
    max-width: 285px;
  }

  .strategy-title {
    grid-template-columns: 30px 1fr 30px;
  }

  .strategy-title h2 {
    font-size: 34px;
  }

  .strategy-card {
    grid-template-columns: 1fr;
  }
}


/* =========================
   Process Box Color + Hover Final
========================= */
.strategy-card,
.strategy-card-featured {
  background: #ffffff !important;
  border: 1px solid rgba(60, 135, 135, .16) !important;
  box-shadow: 0 8px 22px rgba(14, 52, 55, .07) !important;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease !important;
}

.strategy-card:hover,
.strategy-card-featured:hover {
  background: var(--soft-bg) !important;
  border-color: rgba(60, 135, 135, .34) !important;
  transform: translateY(-7px) !important;
  box-shadow: 0 18px 42px rgba(14, 52, 55, .14) !important;
}

.strategy-card:hover .strategy-icon img {
  transform: scale(1.05);
}

.strategy-icon img {
  transition: transform .22s ease;
}

@media (max-width: 920px) {
  .strategy-card:hover,
  .strategy-card-featured:hover {
    transform: translateY(-4px) !important;
  }
}
