:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --text: #172033;
  --muted: #5a667a;
  --brand: #007f7a;
  --brand-strong: #015b58;
  --accent: #ff6a3d;
  --line: #d6deea;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(16, 29, 52, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, #e3fffb 0%, transparent 28%),
    radial-gradient(circle at 100% 10%, #ffe9df 0%, transparent 24%),
    var(--bg);
}
h1, h2, h3 { font-family: "Sora", sans-serif; line-height: 1.2; margin-top: 0; }
p { color: var(--muted); }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.section-gap { padding: 82px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 247, 251, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; min-height: 74px; }
.brand { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.24rem; }
.top-nav { display: flex; align-items: center; gap: 1.08rem; }
.top-nav a { color: var(--muted); font-weight: 700; }
.top-nav a:hover { color: var(--text); }
.nav-dropdown {
  position: relative;
}

@media (max-width: 760px) {
  .seo-concept-metrics {
    padding: 6px 0;
  }

  .seo-concept-metrics-grid {
    gap: 0;
  }

  .seo-concept-metric {
    gap: 6px;
    padding: 12px 12px 11px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
  }

  .seo-concept-metric:nth-child(2n) {
    border-right: none;
  }

  .seo-concept-metric:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .seo-concept-metric::before {
    left: 12px;
    width: 34px;
  }

  .seo-concept-metric-icon {
    width: 24px;
    height: 24px;
  }

  .seo-concept-metric-icon svg {
    width: 12px;
    height: 12px;
  }

  .seo-concept-metric strong,
  .seo-concept-metric-value {
    font-size: clamp(1.45rem, 6vw, 1.75rem);
  }

  .seo-concept-metric-label {
    font-size: 0.74rem;
  }
}

@media (max-width: 560px) {
  .seo-concept-metrics-grid {
    grid-template-columns: 1fr;
  }

  .seo-concept-metric {
    padding: 11px 10px 10px;
    border-right: none;
  }

  .seo-concept-metric:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .seo-concept-metric:last-child {
    border-bottom: none;
  }
}

@media (max-width: 760px) {
  .seo-concept-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .seo-concept-metric {
    gap: 7px;
    padding: 13px 12px;
    border-radius: 18px;
  }

  .seo-concept-metric-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .seo-concept-metric-icon svg {
    width: 14px;
    height: 14px;
  }

  .seo-concept-metric-tag {
    padding: 5px 8px;
    font-size: 0.56rem;
  }

  .seo-concept-metric strong,
  .seo-concept-metric-value {
    font-size: clamp(1.6rem, 6.6vw, 1.95rem);
  }

  .seo-concept-metric-label {
    font-size: 0.78rem;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .seo-concept-metrics {
    padding: 14px 0;
  }

  .seo-concept-metrics-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .seo-concept-metric {
    padding: 12px 12px 11px;
  }

  .seo-concept-metric strong,
  .seo-concept-metric-value {
    font-size: clamp(1.5rem, 8vw, 1.82rem);
  }

  .seo-concept-metric-label {
    font-size: 0.74rem;
  }
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-dropdown-menu,
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 120;
  display: grid;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(15, 33, 58, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}

.nav-dropdown-menu {
  min-width: 260px;
  padding: 12px;
  gap: 4px;
}

.mega-menu {
  width: min(1000px, 94vw);
  padding: 32px;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.mega-menu-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mega-menu-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--brand-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.mega-menu-heading svg {
  color: var(--accent);
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.mega-menu-list a:hover,
.mega-menu-list a.active {
  color: var(--text);
  transform: translateX(4px);
}

.mega-menu-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(var(--line-rgb), 0.1);
}

.all-services-link {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
}

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

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.94rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: #eef4fb;
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 8px 12px;
  font-weight: 700;
}

.mobile-header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), #ff975d);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 24px 40px rgba(255, 106, 61, 0.35); }
.btn-sm { padding: 8px 14px; box-shadow: none; }
.btn-secondary {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: none;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--brand-strong);
  font-weight: 800;
}
.section-head { margin-bottom: 34px; }
.section-head h2 { max-width: 720px; margin-bottom: 0; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); margin-bottom: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 28px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.metric-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  transition: transform 0.25s ease;
}
.metric-card h3 { color: var(--brand-strong); margin-bottom: 4px; font-size: 1.6rem; }

.hero-media { position: relative; min-height: 520px; }
.hero-image-wrap {
  height: 100%;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: imagePulse 10s ease-in-out infinite;
}
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
}
.floating-card strong { color: var(--brand-strong); font-family: "Sora", sans-serif; }
.floating-card span { font-size: 0.85rem; color: var(--muted); }
.floating-card.one { left: -30px; top: 52px; animation: floatUp 5s ease-in-out infinite; }
.floating-card.two { right: -20px; bottom: 52px; animation: floatUp 6s ease-in-out infinite reverse; }

.hero-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.33;
}
.orb-1 { background: #67efe5; top: -120px; left: -80px; animation: drift 10s linear infinite; }
.orb-2 { background: #ffb08e; bottom: -140px; right: -70px; animation: drift 12s linear infinite reverse; }

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}
.marquee {
  width: 100%;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  white-space: nowrap;
  padding: 16px 0;
  animation: scrollX 28s linear infinite;
}
.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #d7e2ee;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(14, 32, 54, 0.08);
}
.partner-pill img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.partner-pill span {
  font-family: "Sora", sans-serif;
  color: #334156;
  font-size: 0.9rem;
  font-weight: 700;
}

.service-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card,
.price-card,
.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover,
.price-card:hover,
.case-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.split-bg { background: linear-gradient(180deg, #edf2f8 0%, #f7f9fc 100%); }
.case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.case-card { padding: 0; overflow: hidden; }
.case-card img { width: 100%; height: 210px; object-fit: cover; }
.case-card div { padding: 18px; }

.price { font-family: "Sora", sans-serif; font-size: 2rem; margin: 8px 0 14px; }
.price span { font-size: 1rem; color: var(--muted); }
.price-card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.price-card.featured {
  border: 2px solid var(--brand);
  background: linear-gradient(180deg, #f7fffe, #ffffff);
}

.final-cta { color: #eff8fb; }
.final-cta-inner {
  border-radius: 24px;
  padding: 36px;
  background:
    radial-gradient(circle at top left, rgba(126, 255, 238, 0.2), transparent 30%),
    linear-gradient(120deg, #0c1930, #0d857f);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.final-cta p { color: #c8d9ec; }

.site-footer { padding: 24px 0; border-top: 1px solid var(--line); background: #edf3f8; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.about-page { max-width: 780px; }

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.show { opacity: 1; transform: translateY(0) scale(1); }

.tilt { transform-style: preserve-3d; }

@keyframes drift {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(16px) translateX(10px); }
  100% { transform: translateY(0) translateX(0); }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes imagePulse {
  0%, 100% { transform: scale(1.05); }
  50% { transform: scale(1.09); }
}
@keyframes scrollX {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 1000px) {
  .hero-grid,
  .service-grid,
  .case-grid,
  .pricing-grid { grid-template-columns: 1fr 1fr; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 420px; }
  .hero-image-wrap { min-height: 420px; }
  .floating-card.one { left: 18px; }
  .floating-card.two { right: 18px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-block; }
  .top-nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 4%;
    min-width: 220px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .top-nav.open { display: flex; }
  .nav-dropdown-menu,
  .mega-menu {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    min-width: 0;
    padding: 8px 0 0;
    background: transparent;
    backdrop-filter: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-dropdown.active .nav-dropdown-menu,
  .nav-dropdown.active .mega-menu {
    display: block;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px 0;
  }

  .mega-menu-col {
    gap: 12px;
  }

  .mega-menu-heading {
    font-size: 0.9rem;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .mega-menu-list {
    padding-left: 10px;
  }

  .mega-menu-footer {
    display: none;
  }

  .hero-metrics,
  .service-grid,
  .case-grid,
  .pricing-grid { grid-template-columns: 1fr; }

  .section-gap { padding: 64px 0; }
  .hero-image-wrap,
  .hero-media { min-height: 340px; }
  .floating-card { position: static; margin-top: 12px; }
  .final-cta-inner { padding: 24px; }
}

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

.top-nav a.active {
  color: var(--text);
  position: relative;
}

.top-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(120deg, var(--accent), #ff975d);
}

.about-hero {
  padding-top: 92px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.about-hero-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-stats article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.about-stats h3 {
  margin-bottom: 6px;
  color: var(--brand-strong);
}

@media (max-width: 1000px) {
  .about-hero-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .about-values,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .top-nav a.active::after {
    display: none;
  }
}

.card-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--brand-strong);
  font-weight: 800;
  font-size: 0.95rem;
}

.card-link:hover {
  color: var(--accent);
}

.footer-contact {
  max-width: 460px;
}

.footer-contact p {
  margin: 4px 0;
}

.footer-contact a {
  color: var(--brand-strong);
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  .brand-logo {
    height: 36px;
  }

  .brand span {
    display: none;
  }
}

.site-footer {
  margin-top: 20px;
  padding: 0;
  border-top: 0;
  background: linear-gradient(140deg, #0e1b32, #122947);
  color: #d7e2ef;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 24px;
  padding: 52px 0 30px;
}

.footer-brand-block p,
.footer-contact-col p {
  color: #b8c8dc;
}

.footer-col h4 {
  margin: 0 0 12px;
  color: #f3f7fb;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-col a,
.footer-contact-col a {
  color: #c6d8ed;
}

.footer-col a:hover,
.footer-contact-col a:hover {
  color: #7be8dd;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e6f5ff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: #0d857f;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-brand-block .brand {
  margin-bottom: 16px;
}

.footer-brand-block p {
  line-height: 1.7;
  max-width: 320px;
}

.footer-phone {
  font-size: 1.1rem;
  font-weight: 800 !important;
  color: #fff !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: #9ab1cb;
}

.footer-bottom-links a:hover {
  color: #7be8dd;
}

.footer-bottom p {
  margin: 0;
  color: #9ab1cb;
}

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 40px 0 24px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--brand-strong);
  font-weight: 700;
}

.contact-form-wrap {
  max-width: 820px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #bdeeea;
  border-color: var(--brand);
}

.contact-form button {
  justify-self: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}




.hero-copy h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-main-line {
  display: block;
}

.typewriter-wrap {
  display: block;
  min-height: 1.35em;
  margin-top: 12px;
}

.typewriter-text {
  color: var(--brand-strong);
  border-right: 3px solid var(--brand-strong);
  padding-right: 6px;
  white-space: nowrap;
  animation: typingCursor 0.8s step-end infinite;
}

@keyframes typingCursor {
  50% {
    border-color: transparent;
  }
}

.hero-copy p {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .typewriter-wrap {
    min-height: 1.6em;
    margin-top: 8px;
  }

  .typewriter-text {
    white-space: normal;
    border-right-width: 2px;
  }
}

.btn-whatsapp {
  background: linear-gradient(120deg, #25d366, #1da851);
  color: #fff;
}

.btn-whatsapp:hover {
  box-shadow: 0 24px 40px rgba(37, 211, 102, 0.32);
}

.mobile-sticky-bar {
  display: none;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(12, 25, 48, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
  }

  .sticky-btn {
    min-height: 44px;
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }

  .sticky-call {
    background: linear-gradient(120deg, var(--accent), #ff975d);
  }

  .sticky-whatsapp {
    background: linear-gradient(120deg, #25d366, #1da851);
  }
}

.services-hero {
  padding-top: 94px;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.services-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.services-points span {
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.86rem;
}

.services-hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.services-hero-media img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.services-hero-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 10px 14px;
  color: #0f2748;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.services-modern {
  background: linear-gradient(180deg, #f5f8fc, #eef5fb);
}

.services-cards-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-modern {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(15, 33, 58, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 46px rgba(10, 36, 68, 0.16);
  border-color: #bfd3eb;
}

.service-card-media {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-card-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 27, 49, 0.62) 100%);
  pointer-events: none;
}

.service-card-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-card-modern:hover .service-card-media img {
  transform: scale(1.06);
}

.service-chip {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 800;
  background: rgba(2, 126, 122, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.service-card-body {
  padding: 18px;
}

.service-card-body h3 {
  margin-bottom: 7px;
  font-size: 1.15rem;
}

.service-card-body p {
  margin: 0;
}

.service-card-body .card-link {
  margin-top: 12px;
}

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

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

@media (max-width: 760px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
  }

  .services-hero {
    padding-top: 78px;
  }

  .services-hero-media img {
    min-height: 300px;
  }
}

/* Mobile optimization layer */
html,
body {
  overflow-x: hidden;
}

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

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1000px) {
  .hero,
  .about-hero,
  .services-hero {
    padding-top: 72px;
  }

  .section-gap {
    padding: 64px 0;
  }

  .container {
    width: min(1120px, 94%);
  }

  .hero-copy h1,
  .about-hero h1,
  .services-hero h1 {
    font-size: clamp(1.9rem, 5.8vw, 2.7rem);
    line-height: 1.15;
  }

  .hero-actions {
    margin: 20px 0 22px;
  }

  .hero-actions .btn,
  .final-cta-inner .btn {
    min-height: 46px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .floating-card {
    max-width: 220px;
  }

  .about-hero-media img,
  .services-hero-media img {
    min-height: 320px;
  }

  .service-card-body,
  .card,
  .price-card,
  .contact-card,
  .case-card div {
    padding: 16px;
  }
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(244, 247, 251, 0.98);
  }

  .nav-wrap {
    position: relative;
    min-height: 64px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .brand {
    gap: 8px;
    font-size: 1.06rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 0.94rem;
    color: var(--text);
    box-shadow: 0 10px 24px rgba(15, 33, 58, 0.08);
  }

  .mobile-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 100%;
    max-width: 190px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0a2540 0%, #3b82f6 55%, #06b6d4 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    box-shadow: 0 14px 26px rgba(59, 130, 246, 0.22);
  }

  .top-nav {
    top: calc(100% + 10px);
    left: 3%;
    right: 3%;
    min-width: 0;
    width: auto;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
    padding: 14px;
    gap: 8px;
    border-radius: 20px;
    box-shadow: 0 20px 44px rgba(15, 33, 58, 0.16);
  }

  .nav-dropdown {
    display: grid;
    gap: 6px;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 13px 14px;
    border-radius: 14px;
  }

  .nav-dropdown.active .nav-dropdown-toggle,
  .nav-dropdown-toggle:hover {
    background: #eef4fb;
    color: var(--text);
  }

  .nav-dropdown-menu a {
    padding: 11px 14px 11px 24px;
    border-radius: 12px;
    font-size: 0.93rem;
  }

  .top-nav a {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 0.98rem;
  }

  .top-nav a.btn {
    width: 100%;
  }

  .top-nav a:hover,
  .top-nav a.active {
    background: #eef4fb;
  }

  .hero,
  .about-hero,
  .services-hero {
    padding-top: 70px;
  }

  .section-gap {
    padding: 52px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .hero-copy h1,
  .about-hero h1,
  .services-hero h1 {
    font-size: clamp(1.78rem, 8vw, 2.2rem);
    margin-bottom: 12px;
  }

  .hero-copy p,
  .about-hero p,
  .services-hero p,
  p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .typewriter-wrap {
    min-height: 1.85em;
    margin-top: 8px;
  }

  .typewriter-text {
    display: inline;
    white-space: normal;
    word-break: break-word;
  }

  .hero-actions {
    gap: 10px;
    margin: 18px 0 18px;
  }

  .hero-actions .btn,
  .final-cta-inner .btn,
  .btn-whatsapp {
    width: 100%;
  }

  .hero-metrics,
  .about-values,
  .about-stats,
  .contact-grid,
  .service-grid,
  .services-cards-grid,
  .case-grid,
  .pricing-grid {
    gap: 12px;
  }

  .metric-card h3 {
    font-size: 1.35rem;
  }

  .hero-media,
  .hero-image-wrap {
    min-height: 280px;
  }

  .hero-image-wrap img {
    animation-duration: 14s;
  }

  .floating-card {
    position: static;
    margin-top: 10px;
    max-width: none;
  }

  .case-card img,
  .service-card-media img {
    height: 190px;
  }

  .final-cta-inner {
    padding: 22px;
  }

  .footer-top {
    gap: 18px;
    padding: 32px 0 20px;
  }

  .footer-col,
  .footer-contact-col,
  .footer-brand-block {
    gap: 6px;
  }

  .footer-bottom {
    padding-bottom: 10px;
  }

  body {
    padding-bottom: 78px;
  }

  .mobile-sticky-bar {
    gap: 6px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  }

  .sticky-btn {
    min-height: 42px;
    font-size: 0.93rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: 95%;
  }

  .mobile-header-cta {
    max-width: 150px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.75rem;
  }

  .menu-toggle {
    font-size: 0.85rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-copy h1,
  .about-hero h1,
  .services-hero h1 {
    font-size: 1.62rem;
  }

  .btn,
  .btn-secondary,
  .btn-whatsapp {
    min-height: 44px;
    font-size: 0.95rem;
  }

  .case-card img,
  .service-card-media img {
    height: 176px;
  }

  .services-points span {
    font-size: 0.8rem;
    padding: 7px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Logo-only header/footer tuning */
.brand {
  font-size: 0;
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  .brand-logo {
    height: 44px;
  }
}

/* DG icon logo sizing */
.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .brand-logo {
    width: 42px;
    height: 42px;
  }
}

/* Home FAQ section */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  box-shadow: 0 10px 24px rgba(15, 33, 58, 0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  padding-right: 28px;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-strong);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 0 16px;
}

@media (max-width: 760px) {
  .faq-item {
    padding: 0 14px;
  }

  .faq-item summary {
    font-size: 0.96rem;
    padding: 14px 0;
  }

  .faq-item p {
    padding-bottom: 14px;
  }
}

/* Why choose section */
.why-choose-section {
  background:
    radial-gradient(circle at 16% 0%, rgba(103, 239, 229, 0.22), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(255, 176, 142, 0.18), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.why-choose-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 4px;
}

.why-choose-highlights span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #c9d8ea;
  background: rgba(255, 255, 255, 0.8);
  color: #13426d;
  font-weight: 700;
  font-size: 0.84rem;
}

.why-choose-side {
  display: grid;
  gap: 12px;
}

.why-stat-card {
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #c9d9ed;
  background: linear-gradient(135deg, #0f2240, #0c6d7a);
  color: #e8f4ff;
  box-shadow: 0 16px 32px rgba(6, 29, 57, 0.2);
}

.why-stat-card h3 {
  margin: 0 0 4px;
  color: #a5fff1;
  font-size: 2rem;
}

.why-stat-card p {
  margin: 0;
  color: #d2e3f5;
}

.why-choose-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-card {
  border-radius: 16px;
  border: 1px solid #cfdaea;
  background: rgba(255, 255, 255, 0.86);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(18, 36, 60, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(10, 30, 57, 0.14);
}

.why-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: #fff;
  background: linear-gradient(120deg, var(--brand), #3eb4ad);
  margin-bottom: 10px;
}

.why-card h3 {
  margin-bottom: 6px;
  font-size: 1.06rem;
}

.why-card p {
  margin: 0;
}

@media (max-width: 1100px) {
  .why-choose-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .why-choose-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-stat-card,
  .why-card {
    padding: 16px;
  }

  .why-stat-card h3 {
    font-size: 1.7rem;
  }
}

/* Home services image cards */
.home-services-modern {
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fc 100%);
}

.home-services-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-service-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ccd9ea;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 33, 58, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 33, 58, 0.16);
}

.home-service-media {
  position: relative;
  display: block;
  overflow: hidden;
}

.home-service-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56%;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 29, 53, 0.62) 100%);
}

.home-service-media img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.home-service-card:hover .home-service-media img {
  transform: scale(1.08);
}

.home-service-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 800;
  background: rgba(2, 126, 122, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.home-service-body {
  padding: 16px;
}

.home-service-body h3 {
  margin-bottom: 7px;
  font-size: 1.1rem;
}

.home-service-body p {
  margin: 0;
}

.home-service-body .card-link {
  margin-top: 12px;
}

.home-service-card-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(103, 239, 229, 0.22), transparent 26%),
    linear-gradient(145deg, #0a2540 0%, #13406f 58%, #0d857f 100%);
  border: 1px solid rgba(10, 37, 64, 0.08);
}

.home-service-card-cta .home-service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 24px;
}

.home-service-card-cta h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.45rem;
}

.home-service-card-cta p {
  color: rgba(230, 241, 255, 0.86);
}

.home-service-card-cta .btn {
  align-self: flex-start;
  margin-top: auto;
  box-shadow: none;
}

@media (max-width: 1060px) {
  .home-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-service-media img {
    height: 190px;
  }

  .home-service-card-cta .home-service-body {
    padding: 20px;
  }
}

/* Home testimonials section */
.testimonials-section {
  background:
    radial-gradient(circle at 0% 20%, rgba(103, 239, 229, 0.18), transparent 30%),
    radial-gradient(circle at 100% 90%, rgba(255, 176, 142, 0.16), transparent 26%),
    #f7fbff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  border-radius: 16px;
  border: 1px solid #cedaea;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(14, 32, 54, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(14, 32, 54, 0.14);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.rating {
  color: #f7a321;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.platform {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-strong);
  background: #e9fbf8;
  border: 1px solid #c8ece6;
  border-radius: 999px;
  padding: 5px 9px;
}

.testimonial-card p {
  margin: 0 0 14px;
}

.testimonial-user {
  display: grid;
  gap: 2px;
}

.testimonial-user strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.testimonial-user span {
  font-size: 0.9rem;
  color: #5e6d83;
}

@media (max-width: 1060px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 16px;
  }
}

/* Digital Growth Execution Framework */
.growth-framework-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(103, 239, 229, 0.2), transparent 28%),
    radial-gradient(circle at 94% 92%, rgba(255, 176, 142, 0.18), transparent 28%),
    linear-gradient(180deg, #f6fbff 0%, #edf4fc 100%);
}

.framework-head p {
  max-width: 860px;
}

.framework-flow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  align-items: stretch;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x proximity;
}

.framework-flow::-webkit-scrollbar {
  height: 8px;
}

.framework-flow::-webkit-scrollbar-thumb {
  background: #cddbed;
  border-radius: 999px;
}

.framework-step {
  border-radius: 16px;
  border: 1px solid #cfdcec;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(13, 31, 53, 0.1);
  padding: 16px;
  min-height: 100%;
  scroll-snap-align: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.framework-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(13, 31, 53, 0.15);
}

.step-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand), #40b7af);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.framework-step h3 {
  margin: 10px 0 7px;
  font-size: 1.04rem;
}

.framework-step p {
  margin: 0;
  font-size: 0.94rem;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.step-tags span {
  border-radius: 999px;
  border: 1px solid #cfe6ef;
  background: #effcf9;
  color: #0e5e68;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 8px;
}

.framework-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3a5c84;
  font-size: 1.6rem;
  font-weight: 800;
  opacity: 0.65;
}

@media (max-width: 760px) {
  .framework-flow {
    grid-auto-columns: minmax(260px, 82vw);
    gap: 8px;
  }

  .framework-step {
    padding: 14px;
  }

  .framework-arrow {
    font-size: 1.3rem;
  }
}

/* Visual infographic override for growth framework */
.visual-head h2 {
  margin-bottom: 0;
}

.growth-framework-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(77, 230, 215, 0.2), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(255, 145, 105, 0.2), transparent 34%),
    linear-gradient(180deg, #f6fbff 0%, #ebf3fc 100%);
}

.visual-flow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 2px 10px;
  scroll-snap-type: x proximity;
}

.flow-node {
  position: relative;
  min-height: 164px;
  border-radius: 22px;
  padding: 18px 14px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border: 1px solid #ccdaec;
  background:
    radial-gradient(circle at 20% 20%, rgba(106, 245, 227, 0.24), transparent 36%),
    linear-gradient(155deg, #ffffff 0%, #f2f8ff 100%);
  box-shadow: 0 16px 34px rgba(12, 31, 56, 0.12);
  scroll-snap-align: start;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.flow-node:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: #9ed8d2;
  box-shadow: 0 22px 40px rgba(8, 34, 64, 0.16);
}

.flow-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #077e84, #00b0a6);
  box-shadow: 0 8px 18px rgba(0, 127, 122, 0.28);
  margin-bottom: 10px;
}

.flow-node h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.35;
}

.flow-connector {
  min-width: 48px;
  height: 2px;
  position: relative;
  border-radius: 999px;
  background: linear-gradient(90deg, #8fd7d1, #74a9d6);
  opacity: 0.9;
}

.flow-connector::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #74a9d6;
  border-right: 2px solid #74a9d6;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 760px) {
  .visual-flow {
    grid-auto-columns: minmax(180px, 64vw);
    gap: 8px;
  }

  .flow-node {
    min-height: 150px;
    padding: 14px 10px;
  }

  .flow-icon {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .flow-node h3 {
    font-size: 0.9rem;
  }

  .flow-connector {
    min-width: 34px;
  }
}

/* Professional DGEF visual flow */
.dgef-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(91, 229, 214, 0.2), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(255, 152, 119, 0.16), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #edf4fc 100%);
}

.dgef-head h2 {
  margin-bottom: 0;
}

.dgef-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scroll-snap-type: x proximity;
}

.dgef-track::-webkit-scrollbar {
  height: 8px;
}

.dgef-track::-webkit-scrollbar-thumb {
  background: #c7d8eb;
  border-radius: 999px;
}

.dgef-step {
  border: 1px solid #cddced;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 16%, rgba(107, 243, 226, 0.22), transparent 30%),
    linear-gradient(155deg, #ffffff 0%, #f3f8ff 100%);
  box-shadow: 0 14px 30px rgba(9, 30, 56, 0.1);
  min-height: 150px;
  padding: 14px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dgef-step:hover {
  transform: translateY(-6px);
  border-color: #9dcfd2;
  box-shadow: 0 20px 36px rgba(9, 30, 56, 0.14);
}

.dgef-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(120deg, #077f83, #0fb0a8);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.dgef-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(120deg, #ff7b4f, #ff9e67);
  box-shadow: 0 0 0 6px rgba(255, 123, 79, 0.18);
  margin-bottom: 10px;
}

.dgef-step h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.dgef-link {
  min-width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #89d8d1, #7ea8d6);
  position: relative;
}

.dgef-link::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #7ea8d6;
  border-right: 2px solid #7ea8d6;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 760px) {
  .dgef-track {
    grid-auto-columns: minmax(200px, 70vw);
    gap: 8px;
  }

  .dgef-step {
    min-height: 136px;
    padding: 12px;
  }

  .dgef-step h3 {
    font-size: 0.92rem;
  }

  .dgef-link {
    min-width: 30px;
  }
}

/* Intent framework redesign */
.intent-framework {
  background:
    radial-gradient(circle at 12% 8%, rgba(100, 235, 222, 0.18), transparent 32%),
    radial-gradient(circle at 92% 92%, rgba(255, 160, 124, 0.16), transparent 30%),
    linear-gradient(180deg, #f6fbff 0%, #edf4fb 100%);
}

.intent-framework-head p {
  max-width: 760px;
}

.intent-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  grid-template-areas:
    "topL core topR"
    "botL core botR";
  gap: 18px;
  align-items: stretch;
}

.intent-card,
.intent-core {
  position: relative;
  border: 1px solid #cddcec;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(12, 31, 56, 0.1);
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.intent-card:hover,
.intent-core:hover {
  transform: translateY(-6px);
  border-color: #9cced1;
  box-shadow: 0 20px 42px rgba(12, 31, 56, 0.15);
}

.intent-card h3,
.intent-core h3 {
  margin: 10px 0 8px;
  font-size: 1.08rem;
}

.intent-card p,
.intent-core p {
  margin: 0;
}

.intent-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(130deg, #0b7d84, #12b4aa);
}

.intent-card-top-left { grid-area: topL; }
.intent-card-top-right { grid-area: topR; }
.intent-card-bottom-left { grid-area: botL; }
.intent-card-bottom-right { grid-area: botR; }
.intent-core {
  grid-area: core;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 20% 14%, rgba(104, 241, 224, 0.2), transparent 34%),
    linear-gradient(155deg, #ffffff 0%, #f2f8ff 100%);
}

.core-chip {
  display: inline-block;
  justify-self: start;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0e5f68;
  font-weight: 800;
  background: #eafbf8;
  border: 1px solid #c8ece6;
}

/* Connector lines */
.intent-card-top-left::after,
.intent-card-bottom-left::after,
.intent-card-top-right::after,
.intent-card-bottom-right::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, #7fc7cf, #88a8d8);
}

.intent-card-top-left::after,
.intent-card-bottom-left::after {
  right: -45px;
}

.intent-card-top-right::after,
.intent-card-bottom-right::after {
  left: -45px;
}

.intent-card-top-right::after,
.intent-card-bottom-right::after {
  transform: scaleX(-1);
}

.intent-card-top-left::before,
.intent-card-bottom-left::before,
.intent-card-top-right::before,
.intent-card-bottom-right::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f73d2;
}

.intent-card-top-left::before,
.intent-card-bottom-left::before {
  right: -49px;
}

.intent-card-top-right::before,
.intent-card-bottom-right::before {
  left: -49px;
}

.intent-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(120deg, #3e72e6, #4f8cf0);
  box-shadow: 0 8px 18px rgba(56, 102, 196, 0.3);
}

.tag-a { top: -10px; left: 35%; }
.tag-b { top: 34%; right: -6px; }
.tag-c { bottom: 34%; left: -6px; }
.tag-d { bottom: -12px; right: 30%; }

@media (max-width: 1080px) {
  .intent-map {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "core core"
      "topL topR"
      "botL botR";
  }

  .intent-card::after,
  .intent-card::before {
    display: none;
  }

  .tag-b,
  .tag-c {
    display: none;
  }

  .tag-a { top: -8px; left: 14px; }
  .tag-d { bottom: -8px; right: 14px; }
}

@media (max-width: 760px) {
  .intent-map {
    grid-template-columns: 1fr;
    grid-template-areas:
      "core"
      "topL"
      "topR"
      "botL"
      "botR";
    gap: 12px;
  }

  .intent-card,
  .intent-core {
    padding: 15px;
  }

  .intent-card h3,
  .intent-core h3 {
    font-size: 1rem;
  }

  .intent-tag {
    display: none;
  }
}

/* Intent framework icon + smooth motion polish */
.intent-card,
.intent-core {
  backdrop-filter: blur(2px);
}

.intent-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.intent-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(130deg, #0b7d84, #12b4aa);
  box-shadow: 0 10px 20px rgba(11, 125, 132, 0.28);
}

.intent-glyph {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #346dd8;
  background: #ffffff;
  border: 1px solid #d8e3f2;
  box-shadow: 0 8px 16px rgba(28, 57, 93, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.intent-glyph svg {
  width: 20px;
  height: 20px;
}

.intent-card:hover .intent-glyph {
  transform: translateY(-2px) scale(1.05);
  color: #0f8f8a;
  box-shadow: 0 12px 20px rgba(13, 62, 114, 0.2);
}

.intent-core::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(33, 173, 163, 0.9), rgba(78, 127, 229, 0.65));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

.intent-card::after,
.intent-card::before {
  animation: linkPulse 3.2s ease-in-out infinite;
}

.intent-card-top-right::after,
.intent-card-bottom-right::after {
  animation-delay: 0.3s;
}

.intent-card-bottom-left::after,
.intent-card-bottom-left::before {
  animation-delay: 0.6s;
}

.intent-card-bottom-right::after,
.intent-card-bottom-right::before {
  animation-delay: 0.9s;
}

.intent-tag {
  animation: floatTag 4.5s ease-in-out infinite;
}

.tag-b { animation-delay: 0.6s; }
.tag-c { animation-delay: 1.2s; }
.tag-d { animation-delay: 1.8s; }

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

@keyframes linkPulse {
  0%, 100% { opacity: 0.62; }
  50% { opacity: 1; }
}

@media (max-width: 760px) {
  .intent-num,
  .intent-glyph {
    width: 36px;
    height: 36px;
  }

  .intent-glyph svg {
    width: 18px;
    height: 18px;
  }
}



@media (max-width: 760px) {
  .marquee-track {
    gap: 0.8rem;
    padding: 14px 0;
  }

  .partner-pill {
    padding: 10px 14px;
    gap: 10px;
  }

  .partner-pill img {
    width: 20px;
    height: 20px;
  }

  .partner-pill span {
    font-size: 0.84rem;
  }
}



/* Sample homepage redesign */
body {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.btn,
.eyebrow,
.partner-pill span {
  font-family: "Poppins", sans-serif;
}

.site-header {
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
}

.top-nav {
  gap: 1.25rem;
}

.top-nav a {
  font-size: 0.95rem;
}

.top-nav .btn {
  background: linear-gradient(135deg, #0a2540, #3b82f6);
  box-shadow: 0 16px 34px rgba(10, 37, 64, 0.18);
}

.sample-home {
  color: #1f2937;
}

.sample-home .section-gap {
  padding: 96px 0;
}

.sample-section-head {
  text-align: center;
}

.sample-section-head h2,
.sample-section-head p {
  margin-left: auto;
  margin-right: auto;
}

.sample-section-head p {
  max-width: 760px;
}

.sample-hero {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  background:
    radial-gradient(circle at 10% 15%, rgba(59, 130, 246, 0.22), transparent 22%),
    radial-gradient(circle at 88% 20%, rgba(6, 182, 212, 0.18), transparent 22%),
    linear-gradient(180deg, #eef6ff 0%, #f8fafc 48%, #ffffff 100%);
}

.sample-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 37, 64, 0.04), transparent 38%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.sample-hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
  opacity: 0.45;
}

.sample-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.sample-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #0a2540;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(59, 130, 246, 0.16);
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.08);
}

.sample-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #06b6d4;
  box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.14);
}

.sample-hero-copy h1 {
  max-width: 12ch;
  margin: 18px 0 16px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: #0a2540;
}

.sample-hero-copy p {
  max-width: 600px;
  font-size: 1.05rem;
  color: #4b5a6a;
}

.sample-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.sample-home .btn {
  background: linear-gradient(135deg, #0a2540, #3b82f6);
}

.sample-home .btn:hover {
  box-shadow: 0 22px 40px rgba(59, 130, 246, 0.22);
}

.sample-home .btn-secondary {
  color: #0a2540;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 37, 64, 0.1);
}

.sample-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sample-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 37, 64, 0.08);
  color: #21405f;
  font-size: 0.9rem;
  font-weight: 600;
}

.sample-badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.sample-hero-panel {
  position: relative;
  min-height: 560px;
}

.sample-panel-shell {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  padding: 28px;
  color: #e5f0ff;
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.24), transparent 26%),
    linear-gradient(145deg, #0a2540 0%, #133a63 55%, #1e4f7f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(10, 37, 64, 0.22);
}

.sample-panel-top {
  display: grid;
  gap: 10px;
}

.sample-chip {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #bcecff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sample-panel-top strong {
  font-size: 1.35rem;
}

.sample-chart-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  min-height: 200px;
  margin: 28px 0;
}

.sample-chart-bars span {
  display: block;
  border-radius: 18px 18px 6px 6px;
  background: linear-gradient(180deg, #5be3ff 0%, #3b82f6 100%);
  box-shadow: 0 10px 24px rgba(91, 227, 255, 0.18);
  animation: sampleBarRise 4.8s ease-in-out infinite;
}

.sample-chart-bars span:nth-child(2n) {
  animation-delay: 0.35s;
}

.sample-panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sample-panel-metrics article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sample-panel-metrics strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.28rem;
  color: #ffffff;
}

.sample-panel-metrics span {
  color: #c8dbef;
  font-size: 0.88rem;
}

.sample-floating-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 18px 34px rgba(15, 33, 58, 0.14);
}

.sample-floating-note strong {
  color: #0a2540;
  font-size: 0.96rem;
}

.sample-floating-note span {
  font-size: 0.84rem;
  color: #5f7081;
}

.note-one {
  top: 58px;
  left: -24px;
  animation: floatUp 5s ease-in-out infinite;
}

.note-two {
  right: -12px;
  bottom: 74px;
  animation: floatUp 5.8s ease-in-out infinite reverse;
}

.sample-logo-row {
  border-top: 1px solid rgba(10, 37, 64, 0.06);
  border-bottom: 1px solid rgba(10, 37, 64, 0.06);
  background: rgba(255, 255, 255, 0.88);
}

.sample-logo-strip {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
}

.sample-logo-strip > span {
  color: #57697b;
  font-weight: 500;
}

.sample-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.sample-logo-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(10, 37, 64, 0.08);
  color: #0a2540;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.06);
}

.sample-services {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.sample-services-grid,
.sample-case-grid,
.sample-stats-grid {
  display: grid;
  gap: 18px;
}

.sample-services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sample-service-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 18px 40px rgba(15, 33, 58, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.sample-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.26);
  box-shadow: 0 22px 46px rgba(15, 33, 58, 0.12);
}

.sample-service-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #0a2540;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(6, 182, 212, 0.2));
  margin-bottom: 18px;
}

.sample-service-icon svg {
  width: 24px;
  height: 24px;
}

.sample-service-card h3 {
  margin-bottom: 10px;
  color: #0a2540;
}

.sample-process {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.sample-process-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.sample-step {
  border-radius: 22px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 16px 34px rgba(15, 33, 58, 0.08);
  scroll-snap-align: start;
}

.sample-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0a2540, #3b82f6);
}

.sample-step h3 {
  margin: 16px 0 8px;
}

.sample-step-arrow {
  align-self: center;
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.25), #3b82f6);
  position: relative;
}

.sample-step-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #3b82f6;
  border-right: 2px solid #3b82f6;
  transform: translateY(-50%) rotate(45deg);
}

.sample-case-studies {
  background: #ffffff;
}

.sample-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sample-case-card {
  padding: 28px;
  border-radius: 24px;
  color: #e5eef8;
  background: linear-gradient(160deg, #0a2540 0%, #14385d 100%);
  box-shadow: 0 20px 46px rgba(10, 37, 64, 0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.sample-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(10, 37, 64, 0.24);
}

.sample-case-header {
  display: grid;
  gap: 10px;
}

.sample-case-header strong {
  font-size: 1.25rem;
  color: #ffffff;
}

.sample-case-tag {
  display: inline-flex;
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #bfe9ff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sample-case-card p {
  color: #cbd9e8;
}

.sample-case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.sample-case-metrics span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
}

.sample-trust {
  background: linear-gradient(180deg, #eef6ff 0%, #f8fafc 100%);
}

.sample-trust-grid,
.sample-audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.sample-trust-list {
  margin: 22px 0 0;
  padding-left: 18px;
  color: #4f6276;
}

.sample-trust-list li + li {
  margin-top: 10px;
}

.sample-trust-cards {
  display: grid;
  gap: 16px;
}

.sample-trust-cards article,
.sample-stat-card,
.sample-testimonial-card,
.sample-audit-form {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 18px 40px rgba(15, 33, 58, 0.08);
}

.sample-trust-cards article {
  padding: 22px;
}

.sample-trust-cards strong {
  display: block;
  margin-bottom: 6px;
  color: #0a2540;
  font-size: 1.2rem;
}

.sample-stats {
  padding-top: 0;
}

.sample-stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sample-stat-card {
  padding: 26px 20px;
  text-align: center;
}

.sample-stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #0a2540;
}

.sample-stat-card span {
  color: #5f7184;
}

.sample-testimonials {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.sample-testimonials-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.sample-testimonials-head h2 {
  max-width: 640px;
  margin-bottom: 0;
}

.sample-slider-controls {
  display: flex;
  gap: 10px;
}

.sample-slider-btn {
  min-width: 88px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  background: #ffffff;
  color: #0a2540;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.sample-slider-btn:hover {
  border-color: rgba(59, 130, 246, 0.3);
  color: #3b82f6;
}

.sample-testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
}

.sample-testimonial-card {
  padding: 26px;
  scroll-snap-align: start;
}

.sample-quote-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #3b82f6;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.1);
}

.sample-testimonial-card p {
  margin-bottom: 18px;
  color: #506273;
}

.sample-testimonial-card strong {
  display: block;
  color: #0a2540;
}

.sample-testimonial-card span:last-child {
  color: #708296;
  font-size: 0.92rem;
}

.sample-audit {
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.16), transparent 25%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.sample-audit-copy h2 {
  margin-bottom: 14px;
}

.sample-audit-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.sample-audit-points span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 37, 64, 0.08);
  color: #0a2540;
  font-weight: 600;
}

.sample-audit-form {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.sample-audit-form label {
  display: grid;
  gap: 8px;
}

.sample-audit-form span {
  color: #0a2540;
  font-size: 0.92rem;
  font-weight: 600;
}

.sample-audit-form input,
.sample-audit-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  background: #ffffff;
  font: inherit;
  color: #1f2937;
}

.sample-audit-form input:focus,
.sample-audit-form textarea:focus {
  outline: 3px solid rgba(59, 130, 246, 0.14);
  border-color: #3b82f6;
}

.site-footer {
  background: linear-gradient(160deg, #091d33, #0a2540 55%, #10345a);
}

.footer-col h4,
.footer-brand-block p,
.footer-contact-col p,
.footer-bottom p,
.footer-col a,
.footer-contact-col a {
  color: #d5e3f1;
}

.footer-col a:hover,
.footer-contact-col a:hover {
  color: #7dd3fc;
}

@keyframes sampleBarRise {
  0%, 100% { transform: scaleY(1); opacity: 0.9; }
  50% { transform: scaleY(1.06); opacity: 1; }
}

@media (max-width: 1100px) {
  .sample-hero-grid,
  .sample-logo-strip,
  .sample-trust-grid,
  .sample-audit-grid {
    grid-template-columns: 1fr;
  }

  .sample-services-grid,
  .sample-case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sample-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sample-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sample-hero-panel {
    min-height: auto;
  }

  .note-one {
    left: 12px;
  }

  .note-two {
    right: 12px;
  }
}

@media (max-width: 760px) {
  .sample-home .section-gap {
    padding: 72px 0;
  }

  .sample-hero {
    padding-top: 92px;
  }

  .sample-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .sample-hero-panel {
    min-height: auto;
  }

  .sample-panel-shell,
  .sample-service-card,
  .sample-case-card,
  .sample-step,
  .sample-testimonial-card,
  .sample-audit-form {
    padding: 20px;
  }

  .sample-panel-metrics,
  .sample-services-grid,
  .sample-case-grid,
  .sample-stats-grid,
  .sample-logo-grid {
    grid-template-columns: 1fr;
  }

  .sample-floating-note {
    position: static;
    margin-top: 14px;
  }

  .sample-testimonials-head {
    flex-direction: column;
    align-items: stretch;
  }

  .sample-slider-controls {
    justify-content: flex-start;
  }

  .sample-testimonial-track,
  .sample-process-track {
    grid-auto-columns: minmax(86vw, 1fr);
  }

  .sample-step-arrow {
    display: none;
  }

  .sample-hero-actions,
  .sample-hero-badges,
  .sample-audit-points {
    gap: 10px;
  }
}

/* Sample homepage enhancement layer */
.sample-hero-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.3;
  pointer-events: none;
}

.sample-hero-orb.orb-a {
  top: -80px;
  right: 8%;
  background: rgba(59, 130, 246, 0.4);
  animation: drift 12s ease-in-out infinite;
}

.sample-hero-orb.orb-b {
  bottom: -90px;
  left: -40px;
  background: rgba(6, 182, 212, 0.3);
  animation: drift 14s ease-in-out infinite reverse;
}

.sample-panel-shell::before,
.sample-service-card::before,
.sample-case-card::before,
.sample-trust-featured::before,
.sample-testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(59, 130, 246, 0.12), rgba(6, 182, 212, 0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.sample-panel-shell,
.sample-service-card,
.sample-case-card,
.sample-trust-featured,
.sample-testimonial-card {
  position: relative;
  overflow: hidden;
}

.sample-panel-media {
  position: relative;
  margin-bottom: 22px;
  border-radius: 22px;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sample-panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 37, 64, 0.22) 100%);
}

.sample-panel-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transform: scale(1.04);
}

.sample-panel-media-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
}

.sample-panel-media-badge span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0a2540;
  font-size: 0.82rem;
  font-weight: 700;
}

.sample-badge,
.sample-proof-row span,
.sample-service-label {
  backdrop-filter: blur(12px);
}

.sample-logo-grid span {
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sample-logo-grid span:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.18);
  box-shadow: 0 16px 28px rgba(10, 37, 64, 0.1);
}

.sample-logo-grid img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.sample-service-media {
  margin: -28px -28px 20px;
  min-height: 180px;
  overflow: hidden;
  border-radius: 24px 24px 20px 20px;
}

.sample-service-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.sample-service-card:hover .sample-service-media img {
  transform: scale(1.08);
}

.sample-service-label {
  display: inline-flex;
  justify-self: start;
  padding: 7px 11px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: #21538b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sample-step {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sample-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(15, 33, 58, 0.12);
}

.sample-case-card {
  padding: 0;
}

.sample-case-media {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.sample-case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(10, 37, 64, 0.2) 100%);
}

.sample-case-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.sample-case-card:hover .sample-case-media img {
  transform: scale(1.08);
}

.sample-case-header,
.sample-case-card > p,
.sample-case-metrics {
  padding-left: 28px;
  padding-right: 28px;
}

.sample-case-header {
  padding-top: 24px;
}

.sample-case-metrics {
  padding-bottom: 28px;
}

.sample-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.sample-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 37, 64, 0.08);
  color: #0a2540;
  font-size: 0.88rem;
  font-weight: 600;
}

.sample-proof-row img {
  width: 18px;
  height: 18px;
}

.sample-trust-featured {
  padding: 0;
}

.sample-trust-featured-media {
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.sample-trust-featured-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sample-trust-featured-body {
  padding: 22px;
}

.sample-trust-featured-body strong {
  display: block;
  margin-bottom: 8px;
}

.sample-testimonial-card {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.96);
}

.sample-testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.sample-testimonial-person img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.12);
}

.sample-testimonial-person strong {
  margin-bottom: 2px;
}

.sample-testimonial-person span {
  color: #708296;
  font-size: 0.9rem;
}

.sample-audit-form {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.97);
}

.sample-audit-form .btn {
  margin-top: 6px;
}

@media (max-width: 760px) {
  .sample-service-media {
    margin: -20px -20px 18px;
  }

  .sample-case-header,
  .sample-case-card > p,
  .sample-case-metrics {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sample-case-metrics {
    padding-bottom: 20px;
  }

  .sample-panel-media,
  .sample-panel-media img {
    min-height: 200px;
  }
}

body {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --text: #0a2540;
  --muted: #5f7184;
  --brand: #3b82f6;
  --brand-strong: #133a63;
  --accent: #3b82f6;
  --line: rgba(10, 37, 64, 0.1);
  --shadow: 0 24px 50px rgba(10, 37, 64, 0.12);
  background:
    radial-gradient(circle at 12% 8%, rgba(59, 130, 246, 0.14) 0%, transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(6, 182, 212, 0.14) 0%, transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

body .site-header {
  background: rgba(248, 251, 255, 0.84);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

body .menu-toggle,
body .btn-secondary,
body .metric-card,
body .why-card,
body .why-stat-card,
body .intent-card,
body .intent-core,
body .home-service-card,
body .testimonial-card,
body .price-card,
body .faq-item,
body .floating-card,
body .partner-pill,
body .case-card {
  border-color: rgba(10, 37, 64, 0.08);
}

body .btn {
  background: linear-gradient(135deg, #0a2540 0%, #3b82f6 55%, #06b6d4 100%);
  box-shadow: 0 22px 40px rgba(59, 130, 246, 0.24);
}

body .btn:hover,
body .sticky-call:hover {
  box-shadow: 0 26px 46px rgba(59, 130, 246, 0.3);
}

body .btn-secondary {
  color: #0a2540;
  background: rgba(255, 255, 255, 0.84);
}

body .top-nav a.active::after,
body .sticky-call {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

body .hero {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.16), transparent 22%);
}

body .orb-1 {
  background: rgba(59, 130, 246, 0.42);
}

body .orb-2 {
  background: rgba(6, 182, 212, 0.32);
}

body .metric-card,
body .why-card,
body .why-stat-card,
body .intent-card,
body .home-service-card,
body .testimonial-card,
body .price-card,
body .faq-item,
body .case-card {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(15, 33, 58, 0.08);
}

body .home-service-card-cta {
  background:
    radial-gradient(circle at top right, rgba(103, 239, 229, 0.22), transparent 26%),
    linear-gradient(145deg, #0a2540 0%, #13406f 58%, #0d857f 100%);
}

body .home-service-card-cta h3 {
  color: #ffffff;
}

body .home-service-card-cta p {
  color: rgba(230, 241, 255, 0.86);
}

body .hero-image-wrap,
body .home-service-card,
body .case-card,
body .testimonial-card,
body .price-card.featured,
body .why-card,
body .intent-core {
  box-shadow: 0 24px 50px rgba(10, 37, 64, 0.12);
}

body .metric-card h3,
body .floating-card strong,
body .card-link,
body .price,
body .why-icon,
body .intent-num,
body .rating,
body .faq-item summary,
body .testimonial-user strong {
  color: #0a2540;
}

body .trust-strip {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(10, 37, 64, 0.08);
}

body .partner-pill {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(10, 37, 64, 0.08);
}

body .partner-pill span {
  color: #21405f;
}

body .why-choose-section,
body .home-services-modern,
body .testimonials-section,
body #pricing {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

body .intent-framework,
body .split-bg,
body .faq-section {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

body .intent-core,
body .price-card.featured,
body .final-cta-inner {
  color: #e5f0ff;
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.2), transparent 28%),
    linear-gradient(145deg, #0a2540 0%, #133a63 55%, #1e4f7f 100%);
}

body .intent-core p,
body .price-card.featured ul,
body .final-cta p {
  color: #c8dbef;
}

body .intent-tag,
body .home-service-chip,
body .why-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #21538b;
}

body .intent-glyph,
body .home-service-chip {
  border-color: rgba(59, 130, 246, 0.18);
}

body .card-link:hover {
  color: #3b82f6;
}

body .site-footer {
  background: linear-gradient(160deg, #091d33, #0a2540 55%, #10345a);
}

body .footer-col a:hover,
body .footer-contact-col a:hover,
body .footer-socials a:hover {
  color: #7dd3fc;
}

body .footer-socials a:hover {
  background: #133a63;
}


/* Global color-schema consistency layer */
:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --text: #0a2540;
  --muted: #5f7184;
  --brand: #3b82f6;
  --brand-strong: #133a63;
  --accent: #3b82f6;
  --line: rgba(10, 37, 64, 0.1);
  --shadow: 0 24px 50px rgba(10, 37, 64, 0.12);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(59, 130, 246, 0.14) 0%, transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(6, 182, 212, 0.14) 0%, transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.site-header {
  background: rgba(248, 251, 255, 0.84);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.btn {
  background: linear-gradient(135deg, #0a2540 0%, #3b82f6 55%, #06b6d4 100%);
  box-shadow: 0 22px 40px rgba(59, 130, 246, 0.24);
}

.btn:hover,
.sticky-call:hover {
  box-shadow: 0 26px 46px rgba(59, 130, 246, 0.3);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.16), transparent 22%);
}

.orb-1 {
  background: rgba(59, 130, 246, 0.42);
}

.orb-2 {
  background: rgba(6, 182, 212, 0.32);
}

.split-bg,
.services-modern,
.home-services-modern,
.why-choose-section,
.testimonials-section,
.growth-framework-section,
.faq-section {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.testimonials-section {
  background:
    radial-gradient(circle at 0% 20%, rgba(59, 130, 246, 0.12), transparent 30%),
    radial-gradient(circle at 100% 90%, rgba(6, 182, 212, 0.12), transparent 26%),
    #f7fbff;
}

.platform,
.step-tags span,
.services-points span,
.services-hero-badge,
.home-service-chip,
.service-chip,
.intent-tag,
.why-icon {
  border-color: rgba(59, 130, 246, 0.18);
}

.platform,
.step-tags span,
.services-points span,
.services-hero-badge {
  background: rgba(59, 130, 246, 0.08);
  color: #21538b;
}

.home-service-chip,
.service-chip,
.why-icon,
.step-count,
.sticky-call {
  color: #ffffff;
  background: linear-gradient(135deg, #0a2540, #3b82f6);
}

.price-card.featured,
.final-cta-inner,
.intent-core {
  color: #e5f0ff;
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.2), transparent 28%),
    linear-gradient(145deg, #0a2540 0%, #133a63 55%, #1e4f7f 100%);
}

.price-card.featured ul,
.final-cta p,
.intent-core p {
  color: #c8dbef;
}

.contact-form input,
.contact-form textarea,
.sample-audit-form input,
.sample-audit-form textarea {
  border-color: rgba(10, 37, 64, 0.12);
}

.contact-form input:focus,
.contact-form textarea:focus,
.sample-audit-form input:focus,
.sample-audit-form textarea:focus {
  outline: 3px solid rgba(59, 130, 246, 0.14);
  border-color: #3b82f6;
}

.rating {
  color: #3b82f6;
}

.footer-socials a:hover {
  color: #7dd3fc;
  background: #133a63;
}

.footer-col a:hover,
.footer-contact-col a:hover,
.card-link:hover {
  color: #3b82f6;
}

.about-hero-grid-lg {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
}

.about-hero-copy {
  max-width: 640px;
}

.about-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-hero-pills span,
.about-values-list li {
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: #21538b;
  font-weight: 700;
}

.about-hero-pills span {
  padding: 9px 14px;
  font-size: 0.86rem;
}

.about-hero-stack {
  display: grid;
  gap: 16px;
}

.about-hero-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-hero-notes article,
.about-team-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 33, 58, 0.08);
}

.about-hero-notes strong {
  display: block;
  margin-bottom: 6px;
  color: #0a2540;
  font-family: "Sora", sans-serif;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.about-overview-cards,
.about-choose-grid,
.about-team-grid {
  display: grid;
  gap: 18px;
}

.about-overview-cards,
.about-team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-stats-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-values-list-card {
  overflow: hidden;
}

.about-values-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.about-values-list li {
  padding: 10px 12px;
  font-size: 0.92rem;
}

.about-framework-flow {
  grid-auto-columns: minmax(230px, 1fr);
}

.about-choose-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a2540, #3b82f6);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.about-team-card h3 {
  margin: 16px 0 6px;
}

.about-team-role {
  margin-bottom: 10px;
  color: #21538b;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .about-hero-grid-lg,
  .about-overview-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-wide,
  .about-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .about-hero-notes,
  .about-overview-cards,
  .about-team-grid,
  .about-stats-wide,
  .about-choose-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-pills {
    gap: 8px;
  }

  .about-hero-pills span,
  .about-values-list li {
    font-size: 0.84rem;
  }
}

.about-overview-grid-pro {
  grid-template-columns: 0.96fr 1.04fr;
}

.about-overview-media-wrap {
  display: grid;
  gap: 16px;
}

.about-overview-media,
.about-team-feature-media {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 24px 50px rgba(10, 37, 64, 0.12);
}

.about-overview-media img,
.about-team-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-overview-badge {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 18px 40px rgba(15, 33, 58, 0.08);
}

.about-overview-badge strong {
  display: block;
  margin-bottom: 6px;
  color: #0a2540;
  font-family: "Sora", sans-serif;
}

.about-team-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 26px;
  align-items: start;
}

.about-team-intro {
  display: grid;
  gap: 14px;
}

.about-team-intro p {
  max-width: 520px;
}

@media (max-width: 1100px) {
  .about-overview-grid-pro,
  .about-team-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-overview-media img,
  .about-team-feature-media img {
    min-height: 240px;
  }
}

.about-modern-page {
  position: relative;
}

.about-modern-hero {
  position: relative;
  overflow: hidden;
  padding-top: 98px;
}

.about-modern-hero-grid,
.about-modern-story-grid,
.about-modern-testimonials-head {
  display: grid;
}

.about-modern-hero-grid {
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.about-modern-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.about-modern-copy p,
.about-modern-story-copy p,
.about-modern-step p,
.about-modern-feature p,
.about-testimonial-card p {
  font-size: 1rem;
}

.about-modern-actions {
  margin-bottom: 20px;
}

.about-modern-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-modern-badges span,
.about-modern-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.16);
  background: rgba(255, 255, 255, 0.86);
  color: #21538b;
  font-weight: 700;
}

.about-modern-badges span {
  padding: 10px 14px;
  font-size: 0.86rem;
}

.about-modern-visual {
  position: relative;
  min-height: 560px;
}

.about-modern-dashboard {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  padding: 26px;
  color: #e5f0ff;
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.22), transparent 28%),
    linear-gradient(145deg, #0a2540 0%, #133a63 55%, #1e4f7f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(10, 37, 64, 0.18);
}

.about-modern-dashboard-media {
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 20px;
  min-height: 210px;
}

.about-modern-dashboard-media img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  transform: scale(1.03);
}

.about-modern-dashboard-top {
  display: grid;
  gap: 10px;
}

.about-modern-chip {
  justify-self: start;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
  color: #c9ebff;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-modern-dashboard-top strong {
  font-size: 1.3rem;
}

.about-modern-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  min-height: 180px;
  margin: 24px 0;
}

.about-modern-bars span {
  display: block;
  border-radius: 18px 18px 6px 6px;
  background: linear-gradient(180deg, #5be3ff 0%, #3b82f6 100%);
  box-shadow: 0 10px 24px rgba(91, 227, 255, 0.18);
  animation: sampleBarRise 4.8s ease-in-out infinite;
}

.about-modern-bars span:nth-child(2n) {
  animation-delay: 0.35s;
}

.about-modern-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-modern-mini-stats article,
.about-modern-floating,
.about-modern-stats article,
.about-modern-feature,
.about-modern-step,
.about-testimonial-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 18px 40px rgba(15, 33, 58, 0.08);
}

.about-modern-mini-stats article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.about-modern-mini-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.2rem;
}

.about-modern-mini-stats span {
  color: #c9dbef;
  font-size: 0.88rem;
}

.about-modern-floating {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 16px;
}

.about-modern-floating strong,
.about-overview-badge strong,
.about-testimonial-person strong {
  color: #0a2540;
}

.about-modern-floating span,
.about-overview-badge span,
.about-testimonial-person span {
  color: #5f7184;
  font-size: 0.9rem;
}

.float-one {
  left: -18px;
  top: 74px;
  animation: floatUp 5s ease-in-out infinite;
}

.float-two {
  right: -12px;
  bottom: 60px;
  animation: floatUp 5.8s ease-in-out infinite reverse;
}

.about-modern-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.28;
  pointer-events: none;
}

.about-modern-orb.orb-a {
  top: -80px;
  right: 8%;
  background: rgba(59, 130, 246, 0.4);
  animation: drift 12s ease-in-out infinite;
}

.about-modern-orb.orb-b {
  bottom: -90px;
  left: -50px;
  background: rgba(6, 182, 212, 0.28);
  animation: drift 14s ease-in-out infinite reverse;
}

.about-modern-story,
.about-modern-testimonials {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.about-modern-story-grid {
  grid-template-columns: 0.98fr 1.02fr;
  gap: 28px;
  align-items: center;
}

.about-modern-story-side,
.about-modern-story-copy,
.about-modern-testimonials-head,
.about-modern-cta-actions {
  display: grid;
  gap: 18px;
}

.about-modern-story-media,
.about-testimonial-person img {
  overflow: hidden;
}

.about-modern-story-media {
  border-radius: 28px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 24px 50px rgba(10, 37, 64, 0.12);
}

.about-modern-story-media img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-modern-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-modern-stats article,
.about-modern-feature,
.about-modern-step,
.about-testimonial-card {
  padding: 22px;
}

.about-modern-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #0a2540;
}

.about-modern-stats span {
  color: #5f7184;
  font-size: 0.92rem;
}

.about-modern-why,
.about-modern-process {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.about-modern-head h2 {
  max-width: 680px;
}

.about-modern-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-modern-feature {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-modern-feature:hover,
.about-modern-step:hover,
.about-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 33, 58, 0.12);
}

.about-modern-feature-icon,
.about-modern-step-num {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #0a2540, #3b82f6);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  margin-bottom: 14px;
}

.about-modern-process-track,
.about-testimonial-track {
  display: grid;
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.about-modern-process-track {
  grid-auto-columns: minmax(240px, 1fr);
}

.about-modern-step,
.about-testimonial-card {
  scroll-snap-align: start;
}

.about-modern-step-arrow {
  align-self: center;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.25), #3b82f6);
  position: relative;
}

.about-modern-step-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #3b82f6;
  border-right: 2px solid #3b82f6;
  transform: translateY(-50%) rotate(45deg);
}

.about-modern-testimonials-head {
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 24px;
}

.about-testimonial-track {
  grid-auto-columns: minmax(340px, 1fr);
  scroll-behavior: smooth;
}

.about-slider-controls {
  display: flex;
  gap: 10px;
}

.about-slider-btn {
  min-width: 88px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  background: #ffffff;
  color: #0a2540;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.about-slider-btn:hover {
  border-color: rgba(59, 130, 246, 0.32);
  color: #3b82f6;
}

.about-testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.about-testimonial-person img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.12);
}

.about-modern-cta-wrap {
  padding-top: 0;
}

.about-modern-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.about-modern-cta-actions {
  min-width: 220px;
}

.about-modern-cta .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1100px) {
  .about-modern-hero-grid,
  .about-modern-story-grid,
  .about-modern-features,
  .about-modern-stats,
  .about-modern-testimonials-head,
  .about-modern-cta {
    grid-template-columns: 1fr;
  }

  .about-modern-features {
    grid-template-columns: 1fr 1fr;
  }

  .about-modern-visual {
    min-height: auto;
  }

  .float-one {
    left: 12px;
  }

  .float-two {
    right: 12px;
  }
}

@media (max-width: 760px) {
  .about-modern-hero {
    padding-top: 82px;
  }

  .about-modern-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about-modern-badges,
  .about-modern-mini-stats,
  .about-modern-stats,
  .about-modern-features,
  .about-modern-testimonials-head,
  .about-modern-cta-actions {
    grid-template-columns: 1fr;
  }

  .about-modern-badges {
    display: grid;
  }

  .about-modern-dashboard,
  .about-modern-step,
  .about-testimonial-card {
    padding: 20px;
  }

  .about-modern-floating {
    position: static;
    margin-top: 14px;
  }

  .about-modern-step-arrow {
    display: none;
  }

  .about-modern-process-track,
  .about-testimonial-track {
    grid-auto-columns: minmax(86vw, 1fr);
  }

  .about-modern-testimonials-head {
    gap: 14px;
  }

  .about-slider-controls {
    justify-content: flex-start;
  }

  .about-modern-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

.seo-concept-page {
  background:
    radial-gradient(circle at top left, rgba(0, 127, 122, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(255, 106, 61, 0.08), transparent 18%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 46%, #f7fbff 100%);
}

.seo-concept-page .section-gap {
  padding: 72px 0;
}

.seo-concept-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 52px;
  background: #081321;
  color: #eef4fb;
}

.seo-concept-hero-media,
.seo-concept-hero-overlay {
  position: absolute;
  inset: 0;
}

.seo-concept-hero-media {
  overflow: hidden;
}

.seo-concept-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48) saturate(0.72);
  transform: scale(1.02);
}

.seo-concept-hero-overlay {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 127, 122, 0.14), transparent 20%),
    radial-gradient(circle at 80% 16%, rgba(255, 106, 61, 0.12), transparent 16%),
    linear-gradient(180deg, rgba(8, 19, 33, 0.24), rgba(8, 19, 33, 0.72));
}

.seo-concept-breadcrumb,
.seo-concept-hero-grid {
  position: relative;
  z-index: 2;
}

.seo-concept-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.74rem;
  color: rgba(232, 241, 250, 0.6);
}

.seo-concept-breadcrumb a {
  color: inherit;
}

.seo-concept-breadcrumb strong {
  color: #7ce5de;
}

.seo-concept-hero-grid,
.seo-concept-tools-grid,
.seo-concept-faq-grid,
.seo-concept-section-split {
  display: grid;
  gap: 28px;
}

.seo-concept-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0;
}

.seo-concept-copy {
  max-width: 660px;
}

.seo-concept-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(124, 229, 222, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #7ce5de;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.seo-concept-copy h1,
.seo-concept-section-head h2,
.seo-concept-section-split h2,
.seo-concept-tools-copy h2 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.seo-concept-copy h1 {
  max-width: 520px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(2.3rem, 4.8vw, 4.15rem);
  line-height: 1;
  font-weight: 700;
}

.seo-concept-copy h1 em {
  color: #7ce5de;
  font-style: normal;
  font-weight: 500;
}

.seo-concept-copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(232, 241, 250, 0.75);
  font-size: 0.96rem;
  line-height: 1.7;
}

.seo-concept-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.seo-concept-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.seo-concept-hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 241, 250, 0.78);
  font-size: 0.74rem;
  font-weight: 600;
}

.seo-concept-actions .btn-secondary {
  color: #eef4fb;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.seo-concept-metrics {
  position: relative;
  overflow: hidden;
  padding: 4px 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(124, 229, 222, 0.14), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(255, 106, 61, 0.12), transparent 18%),
    linear-gradient(180deg, #0d1f34 0%, #112947 100%);
}

.seo-concept-metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  pointer-events: none;
}

.seo-concept-services,
.seo-concept-process,
.seo-concept-tools,
.seo-concept-results,
.seo-concept-pricing,
.seo-concept-testimonials,
.seo-concept-faq,
.seo-concept-cta-wrap {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.seo-concept-metrics-grid,
.seo-concept-card-grid,
.seo-concept-process-grid,
.seo-concept-results-grid,
.seo-concept-pricing-grid,
.seo-concept-testimonial-grid {
  display: grid;
  gap: 18px;
}

.seo-concept-metrics-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-concept-metric {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 100%;
  padding: 11px 14px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform 0.2s ease;
}

.seo-concept-metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: auto;
  height: 2px;
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7ce5de 0%, #ff8f62 100%);
  transform: scaleX(0.6);
  transform-origin: left center;
  opacity: 0.85;
  transition: transform 0.8s ease, opacity 0.3s ease;
}

.seo-concept-metric::after {
  display: none;
}

@keyframes seoMetricPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  50% {
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 10px 22px rgba(124, 229, 222, 0.08);
  }
}

.seo-concept-metric:hover {
  transform: translateY(-2px);
}

.seo-concept-metric:hover::before,
.seo-concept-metric.metric-live::before {
  transform: scaleX(1);
}

.seo-concept-metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.seo-concept-metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(124, 229, 222, 0.1);
  border: none;
  color: #7ce5de;
  animation: seoMetricPulse 4.5s ease-in-out infinite;
}

.seo-concept-metric-icon svg {
  width: 12px;
  height: 12px;
}

.seo-concept-metric-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: rgba(232, 241, 250, 0.74);
  font-family: "Sora", sans-serif;
  font-size: 0.53rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.seo-concept-metric strong,
.seo-concept-metric-value {
  display: block;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.48rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.seo-concept-metric-suffix {
  display: inline;
  margin-left: 2px;
  color: #7ce5de;
  font-size: 0.74em;
  font-weight: 600;
}

.seo-concept-metric-label {
  display: block;
  color: #f4f8fc;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.15;
  max-width: 12ch;
}

.seo-concept-metric:last-child {
  border-right: none;
}

.seo-concept-section-head,
.seo-concept-section-split {
  margin-bottom: 28px;
}

.seo-concept-section-head h2,
.seo-concept-section-split h2,
.seo-concept-tools-copy h2 {
  max-width: 760px;
  margin-bottom: 10px;
  color: #102743;
  font-size: clamp(1.9rem, 3.8vw, 2.95rem);
  line-height: 1.08;
}

.seo-concept-section-head p,
.seo-concept-section-split p,
.seo-concept-tools-copy p,
.seo-concept-faq-copy p {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.8;
}

.seo-concept-service-card,
.seo-concept-step,
.seo-concept-plan,
.seo-concept-testimonial,
.seo-concept-faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(1, 91, 88, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(16, 29, 52, 0.08);
}

.seo-concept-services {
  background:
    radial-gradient(circle at top left, rgba(0, 127, 122, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 106, 61, 0.08), transparent 18%),
    linear-gradient(180deg, #f7fbff 0%, #edf6fb 100%);
}

.seo-concept-services-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.84fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.seo-concept-services-intro {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.seo-concept-carousel-stage {
  position: relative;
  margin: 0 -8px;
  padding: 14px 0 20px;
}

.seo-concept-carousel-stage::before,
.seo-concept-carousel-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  pointer-events: none;
  z-index: 2;
}

.seo-concept-carousel-stage::before {
  left: 0;
  background: linear-gradient(90deg, rgba(237, 246, 251, 0.98), rgba(237, 246, 251, 0));
}

.seo-concept-carousel-stage::after {
  right: 0;
  background: linear-gradient(270deg, rgba(237, 246, 251, 0.98), rgba(237, 246, 251, 0));
}

.seo-concept-services-head h2,
.seo-concept-services-head p {
  color: var(--text);
}

.seo-concept-services-head h2 {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: clamp(2.05rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.seo-concept-services-head h2 span {
  display: block;
  color: var(--brand-strong);
  font-style: normal;
  font-weight: 700;
}

.seo-concept-services-head p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.seo-concept-card-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(340px, 31vw, 410px);
  gap: 24px;
  overflow-x: auto;
  padding: 12px 18px 18px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 18px;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.seo-concept-card-grid::-webkit-scrollbar {
  display: none;
}

.seo-concept-carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.seo-concept-carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 127, 122, 0.14);
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.seo-concept-carousel-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(0, 127, 122, 0.24);
}

.seo-concept-service-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #ffffff 100%);
  border: 1px solid rgba(1, 91, 88, 0.1);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(16, 29, 52, 0.12);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.seo-concept-service-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: rgba(0, 127, 122, 0.2);
  box-shadow: 0 30px 72px rgba(16, 29, 52, 0.16);
}

.seo-concept-service-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) saturate(0.96);
  transform: scale(1.03);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.seo-concept-service-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.98) saturate(1.02);
}

.seo-concept-service-body {
  padding: 26px 22px 22px;
}

.seo-concept-service-body span,
.seo-concept-case-content span,
.seo-concept-case-small-content span,
.seo-concept-plan-icon {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(0, 127, 122, 0.08);
  color: var(--brand-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-concept-service-body h3,
.seo-concept-step h3,
.seo-concept-case-content h3,
.seo-concept-case-small-content h3,
.seo-concept-plan h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.seo-concept-service-body p,
.seo-concept-step p,
.seo-concept-case-content p,
.seo-concept-case-small-content p,
.seo-concept-plan p,
.seo-concept-testimonial p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.seo-concept-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(0, 127, 122, 0.08);
  border: 1px solid rgba(0, 127, 122, 0.18);
  color: var(--brand-strong);
}

.seo-concept-service-icon svg {
  width: 20px;
  height: 20px;
}

.seo-concept-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.seo-concept-service-tags span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 127, 122, 0.06);
  border: 1px solid rgba(0, 127, 122, 0.1);
  color: #617286;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.seo-concept-process {
  position: relative;
  background: linear-gradient(180deg, #0e1b2d 0%, #13243a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-concept-process-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 58px;
}

.seo-concept-process-title h2,
.seo-concept-process-intro,
.seo-concept-process-kicker,
.seo-concept-step h3,
.seo-concept-step p,
.seo-concept-step-badge,
.seo-concept-step-node {
  color: #eef4fb;
}

.seo-concept-process-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #2ce0a3;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-concept-process-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.seo-concept-process-title h2 {
  max-width: 520px;
  margin-bottom: 0;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.seo-concept-process-title h2 span {
  display: block;
  color: #7ce5de;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.seo-concept-process-intro {
  max-width: 420px;
  margin: 0;
  color: rgba(232, 241, 250, 0.58);
  font-size: 1rem;
  line-height: 1.85;
}

.seo-concept-process-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.seo-concept-process-grid::before {
  content: "";
  position: absolute;
  top: 21px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 1px;
  background: linear-gradient(90deg, #2ce0a3, rgba(44, 224, 163, 0.22));
}

.seo-concept-step {
  position: relative;
  padding: 0 18px;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.seo-concept-step-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 2px solid #2ce0a3;
  background: #13243a;
  color: #2ce0a3;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.seo-concept-step h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.seo-concept-step p {
  color: rgba(232, 241, 250, 0.55);
  font-size: 0.92rem;
  line-height: 1.75;
}

.seo-concept-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(44, 224, 163, 0.08);
  border: 1px solid rgba(44, 224, 163, 0.18);
  color: #2ce0a3;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-concept-tools-grid,
.seo-concept-faq-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.seo-concept-tools-media {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.14);
}

.seo-concept-tools-media img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.seo-concept-tools-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(8, 19, 33, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.seo-concept-tools-overlay strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
}

.seo-concept-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-concept-pills span,
.seo-concept-tool-list article {
  border-radius: 999px;
}

.seo-concept-pills span {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(232, 241, 250, 0.86);
  font-size: 0.76rem;
}

.seo-concept-tool-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.seo-concept-tool-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(239, 247, 250, 0.86) 100%);
  border: 1px solid rgba(0, 127, 122, 0.12);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.seo-concept-tool-list article:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 127, 122, 0.2);
  box-shadow: 0 16px 32px rgba(16, 29, 52, 0.1);
}

.seo-concept-tool-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  line-height: 0;
  border-radius: 14px;
  border: 1px solid rgba(16, 29, 52, 0.06);
  background: #ffffff;
  color: var(--brand-strong);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 18px rgba(16, 29, 52, 0.06);
}

.seo-concept-tool-icon::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 10px;
  border: 1px solid currentColor;
  opacity: 0.14;
}

.seo-concept-tool-list article:hover .seo-concept-tool-icon {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 24px rgba(16, 29, 52, 0.09);
}

.seo-concept-tool-icon svg {
  position: relative;
  z-index: 1;
  display: block;
  flex: none;
  margin: 0;
  width: 20px;
  height: 20px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-concept-tool-icon.ahrefs {
  color: #ff6a3d;
  border-color: rgba(255, 106, 61, 0.22);
  background: rgba(255, 250, 247, 0.98);
}

.seo-concept-tool-icon.gsc {
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.22);
  background: rgba(245, 250, 255, 0.98);
}

.seo-concept-tool-icon.frog {
  color: #0f8f64;
  border-color: rgba(15, 143, 100, 0.22);
  background: rgba(245, 255, 251, 0.98);
}

.seo-concept-tool-icon.semrush {
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.22);
  background: rgba(255, 249, 244, 0.98);
}

.seo-concept-tool-icon.ga4 {
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(248, 245, 255, 0.98);
}

.seo-concept-tool-icon.brightlocal {
  color: #0891b2;
  border-color: rgba(8, 145, 178, 0.2);
  background: rgba(244, 252, 255, 0.98);
}

.seo-concept-tool-list strong,
.seo-concept-tool-list span {
  display: block;
}

.seo-concept-tool-list strong {
  color: #102743;
  font-size: 0.98rem;
  line-height: 1.2;
}

.seo-concept-tool-list span {
  color: #667788;
  font-size: 0.84rem;
  line-height: 1.35;
}

.seo-concept-results {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 61, 0.08), transparent 18%),
    linear-gradient(180deg, #0f2238 0%, #13304c 100%);
}

.seo-concept-results .seo-concept-section-split h2,
.seo-concept-results .seo-concept-section-split p,
.seo-concept-results .eyebrow {
  color: #eef4fb;
}

.seo-concept-results .eyebrow {
  color: #7ce5de;
}

.seo-concept-results-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.95fr);
  gap: 16px;
}

.seo-concept-case-large,
.seo-concept-case-small {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.seo-concept-case-large {
  min-height: 460px;
}

.seo-concept-case-stack {
  display: grid;
  gap: 18px;
}

.seo-concept-case-small {
  min-height: 220px;
}

.seo-concept-case-large img,
.seo-concept-case-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.seo-concept-case-content,
.seo-concept-case-small-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 19, 33, 0.88) 62%);
}

.seo-concept-case-content h3,
.seo-concept-case-small-content h3,
.seo-concept-case-content span,
.seo-concept-case-small-content span {
  color: #ffffff;
}

.seo-concept-case-content span,
.seo-concept-case-small-content span {
  background: rgba(124, 229, 222, 0.16);
  color: #7ce5de;
}

.seo-concept-case-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.seo-concept-case-stats article strong,
.seo-concept-case-small-content strong {
  display: block;
  color: #7ce5de;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
}

.seo-concept-case-stats article span {
  display: block;
  margin-top: 4px;
  padding: 0;
  background: none;
  color: rgba(232, 241, 250, 0.62);
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: none;
}

.seo-concept-pricing-grid,
.seo-concept-testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-concept-testimonials {
  background:
    radial-gradient(circle at top left, rgba(0, 127, 122, 0.07), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 106, 61, 0.07), transparent 22%),
    linear-gradient(180deg, #f9fcff 0%, #eef6fb 100%);
}

.seo-concept-testimonials-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.seo-concept-testimonials-head h2 {
  margin-bottom: 0;
}

.seo-concept-testimonials-intro {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.seo-concept-testimonials-intro p {
  margin: 0;
  max-width: 480px;
  color: var(--muted);
  line-height: 1.78;
}

.seo-concept-testimonial-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 127, 122, 0.12);
  box-shadow: 0 14px 36px rgba(16, 29, 52, 0.06);
}

.seo-concept-testimonial-proof strong {
  color: var(--brand-strong);
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.seo-concept-testimonial-proof span {
  color: #607286;
  font-size: 0.84rem;
  line-height: 1.5;
}

.seo-concept-plan {
  position: relative;
  padding: 24px;
}

.seo-concept-plan.featured {
  background: linear-gradient(180deg, rgba(0, 127, 122, 0.08), rgba(255, 255, 255, 0.98));
  border-color: rgba(0, 127, 122, 0.22);
}

.seo-concept-plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-concept-plan strong {
  position: relative;
  display: block;
  margin-bottom: 12px;
  color: #102743;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}

.seo-concept-pricing-grid .seo-concept-plan:nth-child(1) > strong,
.seo-concept-pricing-grid .seo-concept-plan:nth-child(2) > strong {
  color: transparent;
}

.seo-concept-pricing-grid .seo-concept-plan:nth-child(1) > strong::before,
.seo-concept-pricing-grid .seo-concept-plan:nth-child(2) > strong::before {
  position: absolute;
  inset: 0 auto auto 0;
  color: #102743;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}

.seo-concept-pricing-grid .seo-concept-plan:nth-child(1) > strong::before {
  content: "\20B9 24,999";
}

.seo-concept-pricing-grid .seo-concept-plan:nth-child(2) > strong::before {
  content: "\20B9 59,999";
}

.seo-concept-plan strong span {
  color: #697a8e;
  font-size: 0.9rem;
  font-weight: 500;
}

.seo-concept-plan ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.seo-concept-plan li {
  position: relative;
  padding-left: 20px;
  color: #59697e;
  font-size: 0.92rem;
  line-height: 1.6;
}

.seo-concept-plan li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.seo-concept-pricing-stage {
  position: relative;
}

.seo-concept-testimonial-grid {
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  align-items: stretch;
}

.seo-concept-testimonial-stage {
  position: relative;
}

.seo-concept-testimonial {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(1, 91, 88, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(16, 29, 52, 0.08);
}

.seo-concept-testimonial-featured {
  background: linear-gradient(180deg, rgba(0, 127, 122, 0.08), rgba(255, 255, 255, 0.98));
  border-color: rgba(0, 127, 122, 0.2);
  box-shadow: 0 22px 56px rgba(16, 29, 52, 0.1);
}

.seo-concept-testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.seo-concept-stars {
  color: #ff9f1a;
  font-size: 0;
  letter-spacing: 0;
}

.seo-concept-stars::before {
  content: "\2605\2605\2605\2605\2605";
  font-size: 0.88rem;
  letter-spacing: 0.18em;
}

.seo-concept-result-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 127, 122, 0.1);
  color: var(--brand-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-concept-testimonial p {
  margin: 0;
  color: #42556b;
}

.seo-concept-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(1, 91, 88, 0.08);
}

.seo-concept-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 127, 122, 0.2), rgba(21, 120, 176, 0.18));
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.seo-concept-author {
  display: grid;
  gap: 3px;
}

.seo-concept-author strong {
  display: block;
  color: #102743;
  font-size: 1rem;
}

.seo-concept-author span {
  color: #7a8b9f;
  font-size: 0.84rem;
}

.seo-concept-faq-list {
  display: grid;
  gap: 14px;
}

.seo-concept-faq-copy {
  align-self: start;
}

.seo-concept-faq-cta {
  margin-top: 22px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 61, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 248, 251, 0.96) 100%);
  border: 1px solid rgba(1, 91, 88, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(16, 29, 52, 0.08);
}

.seo-concept-faq-cta-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 127, 122, 0.08);
  color: var(--brand-strong);
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.seo-concept-faq-cta h3 {
  margin: 14px 0 10px;
  color: #102743;
  font-size: 1.28rem;
  line-height: 1.2;
}

.seo-concept-faq-cta p {
  margin: 0;
  max-width: none;
}

.seo-concept-faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.seo-concept-faq-cta-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.78);
}

.seo-concept-faq-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.seo-concept-faq-cta-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(16, 39, 67, 0.04);
  color: #506278;
  font-size: 0.78rem;
  font-weight: 700;
}

.seo-concept-faq-cta-points span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 4px rgba(0, 127, 122, 0.08);
}

.seo-concept-faq-item {
  padding: 0 20px;
}

.seo-concept-faq-item summary {
  cursor: pointer;
  padding: 20px 0;
  color: #102743;
  font-weight: 700;
  list-style: none;
}

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

.seo-concept-faq-item p {
  padding: 0 0 20px;
  color: #59697e;
  line-height: 1.75;
}

.seo-concept-cta-wrap {
  padding-top: 0;
}

.seo-concept-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 1100px) {
  .seo-concept-hero-grid,
  .seo-concept-tools-grid,
  .seo-concept-testimonials-head,
  .seo-concept-faq-grid,
  .seo-concept-results-grid,
  .seo-concept-pricing-grid,
  .seo-concept-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .seo-concept-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-concept-services-head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .seo-concept-card-grid {
    grid-auto-columns: minmax(320px, 360px);
  }

  .seo-concept-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .seo-concept-process-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 44px;
  }

  .seo-concept-process-intro {
    max-width: none;
  }

  .seo-concept-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-concept-metric:nth-child(2) {
    border-right: none;
  }

  .seo-concept-hero {
    padding-top: 72px;
  }

  .seo-concept-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .seo-concept-hero {
    padding: 58px 0 34px;
  }

  .seo-concept-breadcrumb {
    flex-wrap: wrap;
    margin-bottom: 14px;
    font-size: 0.7rem;
  }

  .seo-concept-hero-grid,
  .seo-concept-tools-grid,
  .seo-concept-faq-grid,
  .seo-concept-section-split {
    gap: 20px;
  }

  .seo-concept-copy {
    max-width: none;
  }

  .seo-concept-copy h1 {
    max-width: none;
    font-size: clamp(1.95rem, 10vw, 2.7rem);
    line-height: 1.04;
  }

  .seo-concept-kicker {
    margin-bottom: 14px;
  }

  .seo-concept-copy p,
  .seo-concept-process-intro,
  .seo-concept-services-head p,
  .seo-concept-testimonials-intro p,
  .seo-concept-faq-copy p {
    max-width: none;
  }

  .seo-concept-copy p,
  .seo-concept-section-head p,
  .seo-concept-section-split p,
  .seo-concept-tools-copy p,
  .seo-concept-faq-copy p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .seo-concept-section-head h2,
  .seo-concept-section-split h2,
  .seo-concept-services-head h2,
  .seo-concept-process-title h2,
  .seo-concept-tools-copy h2,
  .seo-concept-testimonials-head h2,
  .seo-concept-faq-copy h2,
  .seo-concept-cta h2 {
    font-size: clamp(1.78rem, 8.5vw, 2.35rem);
    line-height: 1.08;
  }

  .seo-concept-section-head,
  .seo-concept-section-split,
  .seo-concept-services-head,
  .seo-concept-process-head,
  .seo-concept-testimonials-head {
    margin-bottom: 24px;
  }

  .seo-concept-actions .btn,
  .seo-concept-plan .btn,
  .seo-concept-cta .btn {
    width: 100%;
  }

  .seo-concept-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 18px;
  }

  .seo-concept-hero-points {
    gap: 7px;
    margin-top: 14px;
  }

  .seo-concept-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .seo-concept-process-grid {
    grid-template-columns: 1fr;
  }

  .seo-concept-tool-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .seo-concept-metric {
    gap: 10px;
    padding: 18px 14px 16px;
  }

  .seo-concept-metric-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .seo-concept-metric-icon svg {
    width: 18px;
    height: 18px;
  }

  .seo-concept-metric-tag {
    padding: 6px 9px;
    font-size: 0.64rem;
  }

  .seo-concept-metric strong,
  .seo-concept-metric-value {
    font-size: clamp(1.9rem, 7vw, 2.35rem);
  }

  .seo-concept-metric-label {
    font-size: 0.88rem;
    max-width: none;
  }

  .seo-concept-service-body h3,
  .seo-concept-step h3,
  .seo-concept-case-content h3,
  .seo-concept-case-small-content h3,
  .seo-concept-plan h3 {
    font-size: 1rem;
  }

  .seo-concept-service-body p,
  .seo-concept-step p,
  .seo-concept-case-content p,
  .seo-concept-case-small-content p,
  .seo-concept-plan p,
  .seo-concept-testimonial p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .seo-concept-card-grid {
    grid-auto-columns: minmax(300px, 82vw);
    gap: 18px;
    padding: 10px 14px 14px;
  }

  .seo-concept-pricing-stage {
    margin: 0 -6px;
    padding: 10px 0 14px;
  }

  .seo-concept-pricing-stage::before,
  .seo-concept-pricing-stage::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24px;
    pointer-events: none;
    z-index: 2;
  }

  .seo-concept-pricing-stage::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
  }

  .seo-concept-pricing-stage::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
  }

  .seo-concept-pricing-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(284px, 82vw);
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 14px 12px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 14px;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .seo-concept-pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .seo-concept-testimonial-stage {
    margin: 0 -6px;
    padding: 10px 0 14px;
  }

  .seo-concept-testimonial-stage::before,
  .seo-concept-testimonial-stage::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24px;
    pointer-events: none;
    z-index: 2;
  }

  .seo-concept-testimonial-stage::before {
    left: 0;
    background: linear-gradient(90deg, rgba(238, 246, 251, 0.98), rgba(238, 246, 251, 0));
  }

  .seo-concept-testimonial-stage::after {
    right: 0;
    background: linear-gradient(270deg, rgba(238, 246, 251, 0.98), rgba(238, 246, 251, 0));
  }

  .seo-concept-testimonial-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(284px, 82vw);
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 14px 12px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 14px;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .seo-concept-testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .seo-concept-carousel-stage {
    margin: 0 -6px;
    padding: 10px 0 14px;
  }

  .seo-concept-carousel-stage::before,
  .seo-concept-carousel-stage::after {
    width: 26px;
  }

  .seo-concept-tool-list article {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 13px 14px;
    min-width: 0;
  }

  .seo-concept-tool-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .seo-concept-tool-icon::before {
    inset: 4px;
    border-radius: 9px;
  }

  .seo-concept-tool-icon svg {
    width: 18px;
    height: 18px;
  }

  .seo-concept-tool-list strong {
    font-size: 0.92rem;
    word-break: break-word;
  }

  .seo-concept-tool-list span {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .seo-concept-process-grid {
    gap: 22px;
  }

  .seo-concept-process-grid::before {
    display: none;
  }

  .seo-concept-step {
    padding: 0;
  }

  .seo-concept-process-title h2 {
    font-size: clamp(1.95rem, 9vw, 2.7rem);
  }

  .seo-concept-metric {
    border-bottom: none;
  }

  .seo-concept-metric:last-child {
    border-bottom: none;
  }

  .seo-concept-tools-media,
  .seo-concept-tools-media img {
    min-height: 240px;
  }

  .seo-concept-case-large {
    min-height: 300px;
  }

  .seo-concept-case-small {
    min-height: 180px;
  }

  .seo-concept-case-content,
  .seo-concept-case-small-content,
  .seo-concept-plan,
  .seo-concept-testimonial {
    padding: 22px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100%;
    box-shadow: 0 18px 42px rgba(16, 29, 52, 0.1);
  }

  .seo-concept-testimonial-proof {
    width: 100%;
  }

  .seo-concept-testimonial-proof {
    padding: 10px 12px;
    gap: 10px;
  }

  .seo-concept-case-stats {
    gap: 12px;
  }

  .seo-concept-case-stats article strong,
  .seo-concept-case-small-content strong {
    font-size: 1.28rem;
  }

  .seo-concept-faq-item {
    padding: 0 18px;
  }

  .seo-concept-faq-cta {
    padding: 20px;
  }

  .seo-concept-faq-cta h3 {
    font-size: 1.16rem;
  }

  .seo-concept-faq-item summary {
    padding: 18px 0;
    font-size: 0.98rem;
  }

  .seo-concept-faq-item p {
    line-height: 1.65;
  }

}

@media (max-width: 560px) {
  .seo-concept-kicker {
    font-size: 0.68rem;
  }

  .seo-concept-page .section-gap {
    padding: 52px 0;
  }

  .seo-concept-hero {
    padding: 54px 0 30px;
  }

  .seo-concept-service-body {
    padding: 22px 18px 18px;
  }

  .seo-concept-copy h1 {
    font-size: clamp(1.82rem, 10vw, 2.4rem);
  }

  .seo-concept-copy p,
  .seo-concept-section-head p,
  .seo-concept-section-split p,
  .seo-concept-tools-copy p,
  .seo-concept-testimonials-intro p,
  .seo-concept-faq-copy p {
    font-size: 0.9rem;
  }

  .seo-concept-card-grid {
    grid-auto-columns: minmax(270px, 86vw);
  }

  .seo-concept-metrics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .seo-concept-metric {
    padding: 16px 14px;
  }

  .seo-concept-metric strong,
  .seo-concept-metric-value {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
  }

  .seo-concept-metric-label {
    font-size: 0.82rem;
  }

  .seo-concept-pricing-grid {
    grid-auto-columns: minmax(258px, 86vw);
  }

  .seo-concept-testimonial-grid {
    grid-auto-columns: minmax(258px, 86vw);
  }

  .seo-concept-faq-cta {
    padding: 18px;
    border-radius: 20px;
  }

  .seo-concept-faq-cta-actions {
    flex-direction: column;
  }

  .seo-concept-faq-cta-actions .btn {
    width: 100%;
  }

  .seo-concept-faq-cta-points {
    gap: 7px;
  }

  .seo-concept-faq-cta-points span {
    font-size: 0.72rem;
    padding: 6px 10px;
  }

  .seo-concept-tool-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .seo-concept-tool-list article {
    grid-template-columns: 36px 1fr;
    gap: 11px;
    padding: 12px 13px;
    min-width: 0;
  }

  .seo-concept-tool-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .seo-concept-tool-icon::before {
    inset: 4px;
    border-radius: 8px;
  }

  .seo-concept-tool-icon svg {
    width: 16px;
    height: 16px;
  }

  .seo-concept-tool-list strong {
    font-size: 0.88rem;
    word-break: break-word;
  }

  .seo-concept-tool-list span {
    font-size: 0.77rem;
    line-height: 1.28;
  }

  .seo-concept-service-card img {
    height: 210px;
  }

  .seo-concept-testimonial-top,
  .seo-concept-testimonial-meta {
    align-items: flex-start;
  }

  .seo-concept-avatar {
    width: 42px;
    height: 42px;
  }

  .seo-concept-testimonial-proof strong {
    font-size: 1rem;
  }

  .seo-concept-testimonial-proof span {
    font-size: 0.78rem;
  }

  .seo-concept-carousel-controls {
    width: 100%;
  }

  .seo-concept-carousel-btn {
    flex: 1;
  }

  .seo-concept-case-stats {
    gap: 14px;
  }

  .seo-concept-hero-points span {
    font-size: 0.7rem;
  }
}

.seo-modern-page {
  position: relative;
}

.seo-modern-hero {
  position: relative;
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 56px;
  color: #f4f8fc;
  background:
    radial-gradient(circle at 15% 20%, rgba(139, 61, 255, 0.18), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(118, 52, 228, 0.14), transparent 22%),
    radial-gradient(circle at 78% 88%, rgba(61, 163, 255, 0.1), transparent 22%),
    #040608;
}

.seo-modern-hero-grid,
.seo-modern-results-grid,
.seo-modern-why-grid {
  display: grid;
  gap: 18px;
}

.seo-modern-hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.seo-modern-copy {
  position: relative;
  max-width: 470px;
}

.seo-modern-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(139, 61, 255, 0.2);
  background: rgba(56, 33, 95, 0.34);
  color: #c8a8ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.seo-modern-kicker svg {
  width: 15px;
  height: 15px;
  color: #a970ff;
}

.seo-modern-copy h1 {
  max-width: 460px;
  margin-bottom: 16px;
  color: #f6fbff;
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.seo-modern-copy h1 span {
  background: linear-gradient(135deg, #b56cff 0%, #7e35ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.seo-modern-copy p {
  max-width: 450px;
  margin-bottom: 0;
  color: rgba(215, 224, 236, 0.86);
  font-size: 0.98rem;
  line-height: 1.7;
}

.seo-modern-actions {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0 20px;
}

.seo-modern-cta-btn {
  min-width: 198px;
  min-height: 50px;
  padding: 12px 24px;
  font-size: 1rem;
  background: linear-gradient(135deg, #612bff 0%, #a046ff 100%);
  box-shadow: 0 20px 40px rgba(120, 52, 228, 0.3);
}

.seo-modern-cta-btn:hover {
  box-shadow: 0 24px 46px rgba(120, 52, 228, 0.38);
}

.seo-modern-divider {
  width: min(100%, 250px);
  height: 1px;
  margin: 0 0 18px;
  background: linear-gradient(90deg, rgba(213, 224, 238, 0.82), rgba(213, 224, 238, 0));
}

.seo-modern-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.seo-modern-proof article {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(243, 248, 255, 0.92);
}

.seo-proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(27, 42, 68, 0.96);
  border: 1px solid rgba(139, 61, 255, 0.22);
  color: #b589ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.seo-proof-icon svg {
  width: 15px;
  height: 15px;
}

.seo-modern-proof strong {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.seo-modern-visual {
  position: relative;
  min-height: 430px;
}

.seo-modern-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 28px;
  padding: 14px;
  color: #eef5ff;
  background:
    linear-gradient(180deg, rgba(18, 21, 29, 0.96), rgba(12, 15, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38);
}

.seo-modern-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.seo-modern-panel-head {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.seo-modern-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(240, 245, 252, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.seo-modern-panel-media {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #06090f;
}

.seo-modern-panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 4, 8, 0.2) 0%, rgba(2, 4, 8, 0.08) 40%, rgba(2, 4, 8, 0.36) 100%);
}

.seo-modern-panel-media img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: 0.9;
}

.seo-modern-gridlines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 18% 100%, 100% 20%;
  opacity: 0.22;
}

.seo-modern-chart {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  border-radius: 999px;
  z-index: 2;
}

.seo-chart-one {
  top: 42%;
  background: linear-gradient(90deg, transparent 0%, #33d9ff 10%, #33d9ff 100%);
  clip-path: polygon(0 86%, 8% 12%, 18% 72%, 30% 30%, 42% 45%, 55% 22%, 67% 52%, 80% 16%, 100% 38%, 100% 100%, 0 100%);
  box-shadow: 0 0 18px rgba(51, 217, 255, 0.55);
}

.seo-chart-two {
  top: 66%;
  background: linear-gradient(90deg, transparent 0%, #a970ff 14%, #a970ff 100%);
  clip-path: polygon(0 72%, 12% 48%, 24% 54%, 36% 40%, 48% 44%, 62% 36%, 75% 52%, 88% 46%, 100% 50%, 100% 100%, 0 100%);
  box-shadow: 0 0 18px rgba(169, 112, 255, 0.46);
}

.seo-modern-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.seo-modern-mini-stats article,
.seo-modern-note,
.seo-modern-result-card {
  border-radius: 20px;
}

.seo-modern-mini-stats article {
  padding: 10px 12px;
  background: rgba(15, 30, 43, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.seo-modern-mini-stats span {
  display: block;
  margin-bottom: 3px;
  color: rgba(176, 194, 216, 0.78);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.seo-modern-mini-stats strong {
  display: block;
  color: #e9f3ff;
  font-size: 0.94rem;
  line-height: 1.2;
}

.seo-modern-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  min-width: 118px;
  padding: 14px 16px;
  background: rgba(10, 12, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-radius: 18px;
}

.seo-modern-note strong {
  color: #9b5cff;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1;
}

.seo-modern-note span {
  color: rgba(210, 219, 230, 0.82);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-modern-note.note-one {
  left: -14px;
  bottom: 18px;
  animation: floatUp 5s ease-in-out infinite;
}

.seo-modern-services,
.seo-modern-results {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.seo-modern-head p {
  max-width: 760px;
}

.seo-modern-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.seo-modern-process {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.seo-modern-process-flow {
  grid-auto-columns: minmax(240px, 1fr);
}

.seo-modern-results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-modern-result-card {
  padding: 26px 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 18px 40px rgba(15, 33, 58, 0.08);
}

.seo-modern-result-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #0a2540;
}

.seo-modern-result-card span {
  color: #5f7184;
}

.seo-modern-why {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.seo-modern-why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-modern-cta-wrap {
  padding-top: 0;
}

.seo-modern-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

@media (max-width: 1200px) {
  .seo-modern-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .seo-modern-hero-grid,
  .seo-modern-results-grid,
  .seo-modern-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .seo-modern-hero-grid {
    grid-template-columns: 1fr;
  }

  .seo-modern-copy,
  .seo-modern-copy p {
    max-width: 100%;
  }

  .seo-modern-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .seo-modern-visual {
    min-height: auto;
    max-width: 720px;
    width: 100%;
  }

  .seo-modern-note.note-one {
    left: 12px;
    bottom: 12px;
  }
}

@media (max-width: 760px) {
  .seo-modern-hero {
    padding-top: 34px;
    padding-bottom: 40px;
  }

  .seo-modern-hero-grid {
    gap: 24px;
  }

  .seo-modern-copy h1 {
    font-size: clamp(2rem, 11vw, 2.9rem);
    line-height: 1;
  }

  .seo-modern-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .seo-modern-copy p {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .seo-modern-panel {
    padding: 12px;
  }

  .seo-modern-mini-stats,
  .seo-modern-cards,
  .seo-modern-results-grid,
  .seo-modern-why-grid {
    grid-template-columns: 1fr;
  }

  .seo-modern-proof {
    gap: 12px;
  }

  .seo-modern-panel-media img {
    height: 220px;
  }

  .seo-modern-panel-media {
    min-height: 220px;
  }

  .seo-modern-note {
    position: static;
    margin-top: 12px;
    justify-self: start;
  }

  .seo-modern-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .seo-modern-kicker {
    font-size: 0.68rem;
  }

  .seo-proof-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .seo-modern-mini-stats {
    grid-template-columns: 1fr;
  }

  .seo-modern-divider {
    width: 100%;
  }
}


.seo-process-board {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(140, 183, 255, 0.22);
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 18%, rgba(34, 211, 238, 0.16), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(96, 165, 250, 0.18), transparent 22%),
    linear-gradient(135deg, #0b2341 0%, #123968 48%, #f3f8ff 48.2%, #eef6ff 100%);
  box-shadow: 0 24px 60px rgba(15, 33, 58, 0.12);
}

.seo-process-board::before,
.seo-process-board::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.seo-process-board::before {
  width: 220px;
  height: 220px;
  right: -70px;
  top: -90px;
  background: rgba(34, 211, 238, 0.12);
  filter: blur(10px);
}

.seo-process-board::after {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: -70px;
  background: rgba(96, 165, 250, 0.12);
  filter: blur(12px);
}

.seo-process-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.seo-process-head h2 {
  margin-bottom: 10px;
}

.seo-process-head p {
  max-width: 700px;
  margin: 0 auto;
}

.seo-process-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.seo-process-summary-card {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  color: #eaf3ff;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.seo-process-summary-card span {
  display: block;
  margin-bottom: 6px;
  color: rgba(234, 243, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-process-summary-card strong {
  font-size: 0.97rem;
  line-height: 1.5;
}

.seo-process-journey {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.seo-process-track {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 36px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(34, 211, 238, 0.75), rgba(59, 130, 246, 0.75), rgba(255, 255, 255, 0.2));
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.18);
}

.seo-flow-step {
  position: relative;
  z-index: 1;
}

.seo-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -16px;
  width: 14px;
  height: 14px;
  border-top: 2px solid rgba(34, 211, 238, 0.7);
  border-right: 2px solid rgba(34, 211, 238, 0.7);
  transform: rotate(45deg);
}

.seo-flow-step:nth-child(2n + 2) {
  padding-top: 34px;
}

.seo-flow-node {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.seo-flow-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0a2540, #2563eb 72%, #22d3ee 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 33, 58, 0.2);
}

.seo-flow-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.24), rgba(34, 211, 238, 0));
  z-index: -1;
}

.seo-flow-icon svg {
  width: 24px;
  height: 24px;
}

.seo-flow-card {
  padding: 20px 18px;
  border-radius: 24px;
  border: 1px solid rgba(163, 202, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(15, 33, 58, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.seo-flow-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.26);
  box-shadow: 0 24px 42px rgba(15, 33, 58, 0.16);
}

.seo-flow-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  color: #3667a5;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-flow-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.seo-flow-card p {
  margin: 0 0 14px;
  font-size: 0.93rem;
  line-height: 1.68;
}

.seo-flow-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(34, 211, 238, 0.12));
  color: #21456d;
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .seo-process-board {
    background:
      radial-gradient(circle at 14% 18%, rgba(34, 211, 238, 0.12), transparent 24%),
      linear-gradient(180deg, #0b2341 0%, #123968 28%, #f3f8ff 28.2%, #eef6ff 100%);
  }

  .seo-process-summary,
  .seo-process-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-process-track,
  .seo-flow-step::after {
    display: none;
  }

  .seo-flow-step:nth-child(2n + 2) {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .seo-process-board {
    padding: 22px 18px;
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 26%),
      linear-gradient(180deg, #0b2341 0%, #123968 24%, #f3f8ff 24.2%, #eef6ff 100%);
  }

  .seo-process-head {
    margin-bottom: 18px;
    text-align: left;
  }

  .seo-process-head p {
    margin: 0;
  }

  .seo-process-summary,
  .seo-process-journey {
    grid-template-columns: 1fr;
  }

  .seo-process-summary-card {
    padding: 14px 16px;
  }

  .seo-flow-node {
    margin-bottom: 12px;
  }

  .seo-flow-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .seo-flow-card {
    padding: 17px 16px;
    border-radius: 18px;
  }
}


.seo-process-board {
  background:
    radial-gradient(circle at 14% 18%, rgba(34, 211, 238, 0.2), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(96, 165, 250, 0.22), transparent 20%),
    linear-gradient(180deg, #0b2341 0%, #123968 40%, #eef6ff 40.2%, #eef6ff 100%);
}

.seo-process-head .eyebrow {
  color: #8fdcff;
}

.seo-process-head h2,
.seo-process-head p {
  color: #f4f9ff;
}

.seo-process-head h2 {
  text-shadow: 0 8px 24px rgba(10, 37, 64, 0.24);
}

.seo-process-summary-card {
  border: 1px solid rgba(173, 216, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 30px rgba(7, 24, 44, 0.18);
}

.seo-process-summary-card strong {
  color: #ffffff;
}

.seo-process-track {
  top: 42px;
  background: linear-gradient(90deg, rgba(143, 220, 255, 0.45), rgba(34, 211, 238, 0.95), rgba(59, 130, 246, 0.95), rgba(143, 220, 255, 0.45));
}

.seo-flow-step:not(:last-child)::after {
  top: 36px;
  border-top-color: rgba(143, 220, 255, 0.9);
  border-right-color: rgba(143, 220, 255, 0.9);
}

.seo-flow-icon {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 30px rgba(15, 33, 58, 0.22), 0 0 0 10px rgba(34, 211, 238, 0.08);
}

.seo-flow-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 100%);
}

.seo-flow-card h3 {
  color: #0a2540;
}

.seo-flow-card p {
  color: #52667d;
}

.seo-flow-note {
  border: 1px solid rgba(59, 130, 246, 0.1);
}

@media (max-width: 1100px) {
  .seo-process-board {
    background:
      radial-gradient(circle at 14% 18%, rgba(34, 211, 238, 0.14), transparent 24%),
      linear-gradient(180deg, #0b2341 0%, #123968 30%, #eef6ff 30.2%, #eef6ff 100%);
  }
}

@media (max-width: 760px) {
  .seo-process-board {
    background:
      radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 24%),
      linear-gradient(180deg, #0b2341 0%, #123968 26%, #eef6ff 26.2%, #eef6ff 100%);
  }

  .seo-process-summary-card {
    background: rgba(255, 255, 255, 0.16);
  }
}


.why-choose-section .why-stat-card {
  border-color: rgba(13, 45, 79, 0.08);
  background: linear-gradient(135deg, #0f2240, #124b84 58%, #12a7cf 100%);
  color: #eaf4ff;
  box-shadow: 0 18px 36px rgba(10, 37, 64, 0.18);
}

.why-choose-section .why-stat-card h3 {
  color: #8ff3e6;
}

.why-choose-section .why-stat-card p {
  color: rgba(234, 244, 255, 0.92);
}


.intent-framework .intent-core {
  color: #eaf4ff;
  background:
    radial-gradient(circle at 18% 14%, rgba(34, 211, 238, 0.18), transparent 28%),
    linear-gradient(145deg, #0a2540 0%, #133a63 55%, #1e4f7f 100%);
  box-shadow: 0 24px 50px rgba(10, 37, 64, 0.18);
}

.intent-framework .intent-core h3 {
  color: #f5fbff;
}

.intent-framework .intent-core p {
  color: #d6e7f7;
}

.intent-framework .core-chip {
  color: #0f5f72;
  background: linear-gradient(135deg, #f4fffd 0%, #dff8f4 100%);
  border: 1px solid rgba(143, 243, 230, 0.35);
  box-shadow: 0 10px 22px rgba(5, 24, 45, 0.14);
}

.intent-framework .intent-tag {
  color: #1f4f86;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(59, 130, 246, 0.14);
  box-shadow: 0 10px 24px rgba(16, 41, 73, 0.12);
}

.intent-framework .intent-card h3 {
  color: #0a2540;
}

.intent-framework .intent-card p {
  color: #5f7184;
}


.testimonials-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.testimonials-copy p {
  max-width: 680px;
}

.testimonials-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.testimonials-proof article {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(15, 33, 58, 0.08);
}

.testimonials-proof strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #0a2540;
}

.testimonials-proof span {
  color: #5f7184;
  font-size: 0.92rem;
  line-height: 1.6;
}

.testimonials-grid-pro {
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(15, 33, 58, 0.09);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(59, 130, 246, 0.12), rgba(6, 182, 212, 0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.testimonial-card-featured {
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.98) 100%);
  transform-origin: center;
}

.testimonial-quote-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.98), rgba(59, 130, 246, 0.9));
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 14px 26px rgba(15, 33, 58, 0.14);
}

.testimonial-card p {
  margin: 0 0 16px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #5a6d83;
}

.testimonial-metric {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  color: #25528a;
  font-size: 0.8rem;
  font-weight: 700;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a2540, #3b82f6);
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(15, 33, 58, 0.14);
}

.testimonial-user strong {
  display: block;
  margin-bottom: 3px;
}

@media (max-width: 1060px) {
  .testimonials-head,
  .testimonials-proof,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .testimonials-head {
    gap: 18px;
  }

  .testimonials-proof article,
  .testimonial-card {
    padding: 18px;
    border-radius: 20px;
  }

  .testimonial-card p {
    font-size: 0.98rem;
  }
}


.sample-video-shell {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  padding: 18px;
  color: #e5f0ff;
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.2), transparent 24%),
    linear-gradient(145deg, #0a2540 0%, #133a63 55%, #1e4f7f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(10, 37, 64, 0.22);
}

.sample-video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(59, 130, 246, 0.12), rgba(6, 182, 212, 0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.sample-video-frame {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a2540;
}

.sample-hero-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transform: scale(1.04);
}

.sample-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 37, 0.08) 0%, rgba(7, 21, 37, 0.2) 34%, rgba(6, 18, 35, 0.72) 100%),
    linear-gradient(90deg, rgba(10, 37, 64, 0.48) 0%, rgba(10, 37, 64, 0.08) 52%, rgba(10, 37, 64, 0.36) 100%);
}

.sample-video-badge,
.sample-video-head {
  position: absolute;
  left: 22px;
  right: 22px;
  z-index: 1;
}

.sample-video-badge {
  top: 20px;
}

.sample-video-badge span {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0a2540;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(10, 37, 64, 0.16);
}

.sample-video-head {
  bottom: 22px;
  display: grid;
  gap: 10px;
}

.sample-video-head strong {
  max-width: 11ch;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.05;
  color: #ffffff;
}

.sample-video-head p {
  max-width: 420px;
  margin: 0;
  color: rgba(229, 240, 255, 0.86);
}

.sample-video-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.sample-video-stats article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.sample-video-stats strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.28rem;
  color: #ffffff;
}

.sample-video-stats span {
  color: #c8dbef;
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .sample-video-frame,
  .sample-hero-video {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .sample-video-shell {
    padding: 14px;
    border-radius: 22px;
  }

  .sample-video-frame,
  .sample-hero-video {
    min-height: 300px;
  }

  .sample-video-badge,
  .sample-video-head {
    left: 16px;
    right: 16px;
  }

  .sample-video-head strong,
  .sample-video-head p {
    max-width: none;
  }

  .sample-video-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


.sample-hero-video-bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #091a2f;
}

.sample-hero-video-wrap,
.sample-hero-bg-video,
.sample-hero-video-layer,
.sample-hero-video-grid {
  position: absolute;
  inset: 0;
}

.sample-hero-video-wrap {
  overflow: hidden;
}

.sample-hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.sample-hero-video-layer {
  background:
    linear-gradient(90deg, rgba(7, 19, 34, 0.88) 0%, rgba(7, 19, 34, 0.68) 36%, rgba(7, 19, 34, 0.36) 64%, rgba(7, 19, 34, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 14, 26, 0.16) 0%, rgba(5, 14, 26, 0.56) 100%);
}

.sample-hero-video-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 100%);
  opacity: 0.26;
}

.sample-hero-grid-full {
  min-height: calc(100vh - 110px);
  grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.45fr);
  gap: 20px;
  align-items: end;
}

.sample-hero-copy-full {
  position: relative;
  z-index: 2;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(9, 29, 51, 0.76), rgba(9, 29, 51, 0.36));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(3, 11, 21, 0.28);
}

.sample-hero-copy-full .sample-kicker {
  color: #d6ecff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.sample-hero-copy-full h1,
.sample-hero-copy-full p {
  color: #f3f9ff;
}

.sample-hero-copy-full p {
  color: rgba(233, 243, 255, 0.84);
}

.sample-hero-copy-full .btn-secondary {
  color: #f4f9ff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.sample-hero-copy-full .sample-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: #eef6ff;
}

.sample-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.sample-hero-stats article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sample-hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: #ffffff;
}

.sample-hero-stats span {
  color: rgba(221, 234, 248, 0.86);
  font-size: 0.9rem;
}

.sample-hero-floating {
  position: relative;
  z-index: 2;
  min-height: 100%;
}

.sample-hero-floating .sample-floating-note {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 36px rgba(8, 22, 40, 0.18);
}

.sample-hero-floating .note-one {
  left: auto;
  right: 16px;
  top: 14%;
}

.sample-hero-floating .note-two {
  right: 24px;
  bottom: 10%;
}

@media (max-width: 1100px) {
  .sample-hero-video-bg {
    min-height: auto;
  }

  .sample-hero-grid-full {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .sample-hero-floating {
    min-height: auto;
  }

  .sample-hero-floating .note-one,
  .sample-hero-floating .note-two {
    position: static;
    margin-top: 14px;
  }
}

@media (max-width: 760px) {
  .sample-hero-video-bg {
    min-height: auto;
  }

  .sample-hero-copy-full {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .sample-hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sample-hero-grid-full {
    min-height: auto;
  }
}


.sample-hero-video-bg {
  background: #081525;
}

.sample-hero-video-layer {
  background:
    linear-gradient(90deg, rgba(6, 16, 28, 0.9) 0%, rgba(6, 16, 28, 0.62) 34%, rgba(6, 16, 28, 0.22) 62%, rgba(6, 16, 28, 0.78) 100%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.18) 0%, rgba(4, 10, 18, 0.62) 100%);
}

.sample-hero-video-grid,
.sample-hero-orb,
.sample-hero-noise {
  opacity: 0.14;
}

.sample-hero-grid-full {
  grid-template-columns: minmax(0, 0.92fr) minmax(180px, 0.28fr);
  gap: 14px;
}

.sample-hero-copy-full {
  max-width: 720px;
  padding: 28px 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(7, 21, 36, 0.58), rgba(7, 21, 36, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(2, 8, 16, 0.22);
}

.sample-hero-copy-full .sample-kicker {
  padding: 8px 12px;
  color: rgba(235, 244, 255, 0.86);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.sample-hero-copy-full h1 {
  max-width: 11ch;
  margin: 16px 0 14px;
  font-size: clamp(2.9rem, 5vw, 5.1rem);
  letter-spacing: -0.05em;
}

.sample-hero-copy-full p {
  max-width: 560px;
  font-size: 1rem;
  color: rgba(228, 238, 249, 0.78);
}

.sample-hero-actions {
  margin: 24px 0 20px;
}

.sample-hero-copy-full .btn {
  box-shadow: none;
}

.sample-hero-copy-full .btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.sample-hero-badges-minimal {
  gap: 8px;
}

.sample-hero-badges-minimal .sample-badge {
  padding: 8px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.sample-hero-badges-minimal .sample-badge img {
  display: none;
}

.sample-hero-stats {
  gap: 10px;
  margin-top: 22px;
}

.sample-hero-stats article {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.sample-hero-stats strong {
  margin-bottom: 4px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.sample-hero-stats span {
  font-size: 0.84rem;
  color: rgba(220, 232, 245, 0.72);
}

.sample-hero-floating {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.sample-floating-note-minimal {
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(6, 18, 33, 0.12);
}

.sample-hero-floating .note-one.sample-floating-note-minimal {
  right: 8px;
  top: auto;
  bottom: 36px;
}

@media (max-width: 1100px) {
  .sample-hero-grid-full {
    grid-template-columns: 1fr;
  }

  .sample-hero-copy-full {
    max-width: none;
  }

  .sample-hero-copy-full h1,
  .sample-hero-copy-full p {
    max-width: none;
  }

  .sample-hero-floating {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .sample-hero-copy-full {
    padding: 20px 18px;
  }

  .sample-hero-copy-full h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .sample-floating-note-minimal {
    max-width: none;
  }
}


.sample-hero.sample-hero-luxe {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #07131f;
}

.sample-hero-luxe .sample-hero-video-wrap,
.sample-hero-luxe .sample-hero-bg-video,
.sample-hero-luxe .sample-hero-video-layer {
  position: absolute;
  inset: 0;
}

.sample-hero-luxe .sample-hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.sample-hero-luxe .sample-hero-video-layer {
  background:
    linear-gradient(90deg, rgba(5, 13, 22, 0.84) 0%, rgba(5, 13, 22, 0.56) 40%, rgba(5, 13, 22, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 13, 22, 0.12) 0%, rgba(5, 13, 22, 0.55) 100%);
}

.sample-hero-luxe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.08), transparent 20%);
  pointer-events: none;
}

.sample-hero-luxe .sample-hero-orb,
.sample-hero-luxe .sample-hero-noise,
.sample-hero-luxe .sample-hero-grid,
.sample-hero-luxe .sample-hero-grid-full,
.sample-hero-luxe .sample-hero-floating,
.sample-hero-luxe .sample-hero-badges,
.sample-hero-luxe .sample-hero-stats {
  display: none;
}

.sample-hero-luxe-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.42fr);
  gap: 28px;
  align-items: end;
}

.sample-hero-luxe-copy {
  max-width: 700px;
}

.sample-kicker.sample-kicker-luxe {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(236, 244, 255, 0.88);
}

.sample-hero-luxe-copy h1 {
  margin: 18px 0 12px;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: #ffffff;
}

.sample-hero-luxe-copy p {
  max-width: 560px;
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.7;
  color: rgba(227, 237, 248, 0.82);
}

.sample-hero-actions.sample-hero-actions-luxe {
  margin: 28px 0 0;
  gap: 12px;
}

.sample-hero-luxe .btn {
  box-shadow: none;
}

.sample-hero-luxe .btn-secondary {
  color: #eef6ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.sample-hero-proof {
  display: grid;
  gap: 12px;
}

.sample-hero-proof article {
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(3, 10, 18, 0.18);
}

.sample-hero-proof strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  color: #ffffff;
}

.sample-hero-proof span {
  color: rgba(223, 235, 248, 0.74);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .sample-hero.sample-hero-luxe {
    min-height: auto;
  }

  .sample-hero-luxe-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .sample-hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .sample-hero.sample-hero-luxe {
    min-height: auto;
  }

  .sample-hero-luxe-inner {
    gap: 18px;
  }

  .sample-hero-luxe-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .sample-hero-luxe-copy p {
    font-size: 0.96rem;
  }

  .sample-hero-actions.sample-hero-actions-luxe {
    margin-top: 22px;
  }

  .sample-hero-proof {
    grid-template-columns: 1fr;
  }

  .sample-hero-proof article {
    padding: 16px;
    border-radius: 18px;
  }
}

@media (min-width: 761px) {
  .top-nav {
    flex-wrap: nowrap;
    align-items: center;
  }

  .nav-dropdown {
    position: relative;
    display: block;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 200;
    display: grid;
    gap: 4px;
    min-width: 260px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 18px;
    box-shadow: 0 22px 44px rgba(15, 33, 58, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
  }

  .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-toggle {
    width: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-dropdown-menu a {
    padding: 10px 12px;
    border-radius: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .seo-concept-metrics {
    padding: 2px 0;
  }

  .seo-concept-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .seo-concept-metric {
    gap: 4px;
    padding: 9px 9px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
  }

  .seo-concept-metric:nth-child(2n) {
    border-right: none;
  }

  .seo-concept-metric:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .seo-concept-metric::before {
    left: 9px;
    width: 24px;
  }

  .seo-concept-metric-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
  }

  .seo-concept-metric-icon svg {
    width: 10px;
    height: 10px;
  }

  .seo-concept-metric-tag {
    padding: 2px 0;
    font-size: 0.49rem;
  }

  .seo-concept-metric strong,
  .seo-concept-metric-value {
    font-size: clamp(1.18rem, 6vw, 1.46rem);
  }

  .seo-concept-metric-label {
    font-size: 0.65rem;
    line-height: 1.15;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .seo-concept-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-concept-metric {
    padding: 8px 8px 7px;
  }

  .seo-concept-metric strong,
  .seo-concept-metric-value {
    font-size: clamp(1.08rem, 6.4vw, 1.34rem);
  }

  .seo-concept-metric-label {
    font-size: 0.62rem;
  }
}

.aio-concept-page {
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.08), transparent 18%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 46%, #f7fbff 100%);
}

.aio-concept-page .seo-concept-hero-overlay {
  background:
    radial-gradient(circle at 18% 18%, rgba(45, 212, 191, 0.16), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(96, 165, 250, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(8, 19, 33, 0.26), rgba(8, 19, 33, 0.76));
}

.aio-concept-page .seo-concept-kicker,
.aio-concept-page .seo-concept-copy h1 em,
.aio-concept-page .seo-concept-breadcrumb strong,
.aio-concept-page .seo-concept-results .eyebrow {
  color: #8cf5eb;
}

.aio-concept-page .seo-concept-kicker {
  border-color: rgba(140, 245, 235, 0.28);
}

.aio-concept-page .seo-concept-services,
.aio-concept-page .seo-concept-tools {
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.06), transparent 24%),
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.06), transparent 18%),
    linear-gradient(180deg, #f7fbff 0%, #edf6fb 100%);
}

.aio-intent-framework {
  background:
    radial-gradient(circle at 12% 10%, rgba(96, 165, 250, 0.16), transparent 28%),
    radial-gradient(circle at 90% 90%, rgba(45, 212, 191, 0.14), transparent 24%),
    linear-gradient(180deg, #f4f9ff 0%, #eaf3fb 100%);
}

.aio-intent-framework .intent-core {
  background:
    radial-gradient(circle at 18% 14%, rgba(45, 212, 191, 0.16), transparent 28%),
    linear-gradient(145deg, #0a2540 0%, #133a63 55%, #175585 100%);
}

.aio-intent-framework .core-chip {
  color: #0a5f72;
  background: linear-gradient(135deg, #f2fffd 0%, #dcfaf5 100%);
  border-color: rgba(140, 245, 235, 0.34);
}

.aio-intent-framework .intent-tag {
  color: #16518a;
  background: rgba(255, 255, 255, 0.9);
}

.aio-concept-page .seo-concept-tools-overlay {
  background:
    linear-gradient(180deg, rgba(7, 18, 32, 0.08) 0%, rgba(7, 18, 32, 0.76) 100%);
}

/* Audit Bar Styles */
.audit-bar-section {
  background: var(--brand-strong);
  padding: 40px 0;
  color: #fff;
  margin-top: -1px;
}

.audit-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.audit-bar-info {
  flex-shrink: 0;
}

.audit-bar-info h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.6rem;
}

.audit-bar-info p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.audit-bar-form {
  display: flex;
  gap: 14px;
  flex: 1;
  max-width: 900px;
}

.audit-bar-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: inherit;
  transition: all 0.3s ease;
}

.audit-bar-form input:focus {
  outline: none;
  background: rgba(255,255,255,0.12);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(255,106,61,0.15);
}

.audit-bar-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.audit-bar-form .btn {
  white-space: nowrap;
  min-width: 160px;
}

@media (max-width: 1100px) {
  .audit-bar {
    gap: 30px;
  }
}

@media (max-width: 980px) {
  .audit-bar {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .audit-bar-form {
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .audit-bar-form .btn {
    width: 100%;
  }
}
