@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap');

:root {
  --green: #4cab47;
  --green-bright: #64d45f;
  --green-soft: #eaf7e9;
  --ink: #121212;
  --ink-2: #212121;
  --paper: #f4f4f4;
  --white: #ffffff;
  --muted: #686d6a;
  --line: #dfe3df;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Sora", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--green); color: var(--white); }

.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 200; background: var(--white); color: var(--ink); padding: 12px 18px; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.1); }
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 139px; display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { display: block; width: 100%; height: auto; object-fit: contain; }
.site-header nav { display: flex; gap: 34px; align-items: center; margin-left: auto; }
.site-header nav a { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 500; transition: color .2s; }
.site-header nav a:hover { color: var(--white); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 54px; padding: 0 25px; border: 1px solid var(--green); border-radius: 5px; background: var(--green); color: var(--white); font-size: 13px; font-weight: 600; cursor: pointer; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { background: #439c3f; border-color: #439c3f; transform: translateY(-2px); }
.button > span, .text-link > span { display: inline-block; }
@keyframes arrow-float { from { transform: translate(0, 0); } to { transform: translate(4px, -4px); } }
@media (hover: hover) {
  .button:hover > span, .text-link:hover > span { animation: arrow-float .55s ease-in-out infinite alternate; }
}
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 0 18px; font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 22px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.3); padding: 0 0 10px; font-size: 13px; font-weight: 500; }

.hero { position: relative; min-height: 820px; overflow: hidden; background: var(--ink); color: var(--white); display: flex; align-items: center; padding: 142px 0 78px; }
.hero::before { content: ""; position: absolute; width: 580px; height: 580px; right: -140px; top: 80px; border-radius: 50%; background: rgba(76,171,71,.14); filter: blur(100px); }
.hero-grid { position: absolute; inset: 0; opacity: .09; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, transparent 0, #000 30%, #000 100%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .82fr; align-items: center; gap: 78px; }
.eyebrow { margin: 0 0 24px; text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 11px; }
.eyebrow span { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(76,171,71,.12); }
@keyframes green-pulse { 0%, 100% { opacity: .42; box-shadow: 0 0 0 3px rgba(76,171,71,.08); } 50% { opacity: 1; box-shadow: 0 0 0 7px rgba(76,171,71,.16), 0 0 16px rgba(76,171,71,.55); } }
.eyebrow > span, .pulse { animation: green-pulse 1.75s ease-in-out infinite; }
.eyebrow.dark { color: #626762; }
.hero h1 { max-width: 700px; margin: 0; font-size: clamp(44px, 5.1vw, 72px); line-height: 1.05; letter-spacing: -.055em; font-weight: 600; }
.hero h1 em { color: var(--green-bright); font-style: normal; }
.hero-lead { max-width: 620px; color: rgba(255,255,255,.66); font-size: 17px; line-height: 1.8; margin: 28px 0 0; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 32px; }
.hero-checks { list-style: none; padding: 0; margin: 32px 0 0; display: flex; gap: 24px; flex-wrap: wrap; color: rgba(255,255,255,.56); font-size: 11px; }
.hero-checks li::before { content: "✓"; color: var(--green-bright); margin-right: 7px; }

.search-visual { position: relative; border: 1px solid rgba(255,255,255,.13); background: rgba(31,34,31,.78); box-shadow: 0 28px 90px rgba(0,0,0,.4); backdrop-filter: blur(18px); border-radius: 16px; padding: 22px; transform: rotate(1.5deg); }
.search-visual::after { content: ""; position: absolute; inset: 10px -12px -14px 12px; z-index: -1; border: 1px solid rgba(76,171,71,.22); border-radius: 18px; }
.visual-top { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.55); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.visual-top strong { margin-left: auto; color: var(--green-bright); font-weight: 500; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 5px rgba(100,212,95,.1); }
.search-bar { height: 52px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; display: flex; align-items: center; gap: 12px; margin: 22px 0 14px; padding: 0 16px; color: rgba(255,255,255,.4); font-size: 11px; }
.search-bar > span:first-child { color: var(--green-bright); font-size: 24px; line-height: 1; }
.ranking-card { display: flex; align-items: center; gap: 15px; border-radius: 10px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); padding: 17px; }
.rank-number { color: var(--green-bright); font-size: 25px; font-weight: 700; letter-spacing: -.08em; }
.ranking-card strong, .mini-card strong { display: block; font-size: 12px; font-weight: 500; }
.ranking-card small, .mini-card small { display: block; color: rgba(255,255,255,.4); font-size: 9px; margin-top: 4px; }
.trend { margin-left: auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--green); }
.visual-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.mini-card { padding: 18px; min-height: 115px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); }
.meter { height: 4px; display: block; background: rgba(255,255,255,.09); border-radius: 4px; margin-top: 20px; overflow: hidden; }
.meter i { display: block; width: 82%; height: 100%; background: var(--green-bright); }
.meter.alt i { width: 70%; }
.visual-foot { display: flex; justify-content: space-between; margin-top: 18px; padding: 0 3px; color: rgba(255,255,255,.28); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }

.trust-strip { overflow: hidden; background: var(--white); border-bottom: 1px solid var(--line); }
.trust-marquee { min-height: 112px; display: flex; align-items: center; overflow: hidden; }
.trust-track { width: max-content; display: flex; align-items: center; will-change: transform; }
.trust-group { display: flex; align-items: center; flex: none; }
.trust-group > * { position: relative; display: inline-flex; align-items: center; gap: 9px; min-width: max-content; padding: 0 48px; color: var(--muted); font-size: 11px; white-space: nowrap; }
.trust-group > *::after { content: ""; position: absolute; right: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px var(--green-soft); }
.trust-group i { color: var(--ink); font-style: normal; font-size: 14px; font-weight: 600; }
.trust-group a i { color: var(--green); }
.trust-group a:hover { color: var(--green); }
@keyframes trust-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@supports (animation-timeline: scroll()) {
  .trust-track { animation: trust-scroll linear both; animation-timeline: scroll(root block); animation-range: 0% 100%; }
}

.section { padding: 120px 0; }
.section-heading h2, .cta-copy h2 { font-size: clamp(35px, 4vw, 54px); line-height: 1.12; letter-spacing: -.05em; font-weight: 600; margin: 0; }
.section-heading > p, .split-heading > p { color: var(--muted); line-height: 1.8; font-size: 14px; }
.split-heading { display: grid; grid-template-columns: 1.5fr .65fr; gap: 80px; align-items: end; }
.split-heading > p { margin: 0 0 4px; }
.reviews-section { background: var(--paper); }
.reviews-grid { display: grid; grid-template-columns: 1.45fr .55fr; gap: 18px; margin-top: 58px; }
.review-featured { margin: 0; position: relative; min-height: 360px; padding: 55px; display: flex; flex-direction: column; justify-content: space-between; background: var(--white); border: 1px solid var(--line); }
.review-featured::before { content: ""; position: absolute; left: 0; top: 0; width: 5px; height: 72px; background: var(--green); }
.quote-mark { position: absolute; top: 28px; right: 40px; color: var(--green-soft); font-size: 120px; line-height: 1; font-weight: 700; }
.review-featured > p { position: relative; z-index: 1; max-width: 770px; font-size: clamp(23px, 3vw, 36px); line-height: 1.42; letter-spacing: -.035em; margin: 25px 0; }
.review-featured footer { display: flex; justify-content: space-between; gap: 30px; align-items: end; border-top: 1px solid var(--line); padding-top: 25px; }
.review-featured footer strong, .review-featured footer span { display: block; }
.review-featured footer div > span { color: var(--muted); font-size: 10px; margin-top: 5px; }
.stars { color: var(--green); letter-spacing: 3px; font-size: 14px; }
.review-score { padding: 42px; background: var(--ink); color: var(--white); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.score { color: var(--green-bright); font-size: 74px; line-height: 1; font-weight: 600; letter-spacing: -.08em; }
.review-score .stars { margin: 16px 0 26px; }
.review-score strong { font-size: 15px; }
.review-score p { color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.6; }
.review-score a { margin-top: 18px; font-size: 11px; padding-bottom: 8px; border-bottom: 1px solid var(--green); }

.method-section { background: var(--white); }
.centered { text-align: center; max-width: 880px; margin: 0 auto; }
.centered .eyebrow { justify-content: center; }
.centered > p:last-child { max-width: 660px; margin: 22px auto 0; }
.method-grid { list-style: none; padding: 0; margin: 70px 0 0; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.method-grid li { position: relative; padding: 48px 30px 12px 0; border-right: 1px solid var(--line); transition: transform .3s ease, background .3s ease, box-shadow .3s ease; }
.method-grid li:not(:first-child) { padding-left: 30px; }
.method-grid li:last-child { border-right: 0; }
.method-grid li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.method-grid li:not(:first-child)::before { left: 30px; }
.method-grid li > span { color: var(--green); font-size: 11px; font-weight: 600; }
.method-grid h3 { margin: 20px 0 12px; font-size: 20px; }
.method-grid p { color: var(--muted); font-size: 12px; line-height: 1.75; margin: 0; }
@media (hover: hover) {
  .method-grid li:hover { z-index: 2; transform: translateY(-2px); background: rgba(76,171,71,.025); box-shadow: 0 8px 20px rgba(27,75,25,.045); }
  .method-grid li:hover > span { color: #2f8f2b; }
}

.differentials-section {
  color: var(--white);
  background-color: #0c0f0d;
  background-image: linear-gradient(rgba(12,15,13,.6), rgba(12,15,13,.72)), url('./assets/seo-agency-background.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}
.light-heading > p { color: rgba(255,255,255,.48); }
.differentials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); margin-top: 60px; }
.differentials-grid article { position: relative; min-height: 280px; padding: 42px; background: rgba(12,15,13,.8); backdrop-filter: blur(1px); transition: background .25s; }
.differentials-grid article:hover { background: rgba(27,32,28,.78); }
.card-index { position: absolute; right: 30px; top: 25px; color: rgba(255,255,255,.25); font-size: 10px; }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--green-bright); background: rgba(76,171,71,.07); border: 1px solid rgba(76,171,71,.35); border-radius: 50%; font-size: 21px; line-height: 1; transition: transform .3s ease, background .3s ease, border-color .3s ease; }
.differentials-grid article:hover .card-icon { transform: translateY(-4px) rotate(-5deg); background: rgba(76,171,71,.14); border-color: rgba(100,212,95,.7); }
.differentials-grid h3 { font-size: 20px; margin: 42px 0 12px; }
.differentials-grid p { color: rgba(255,255,255,.5); max-width: 470px; font-size: 12px; line-height: 1.8; margin: 0; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.faq-intro { position: sticky; top: 40px; }
.faq-intro h2 { font-size: clamp(35px, 3.7vw, 50px); line-height: 1.16; letter-spacing: -.05em; margin: 0; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); font-size: 13px; line-height: 1.7; margin: 24px 0; }
.dark-link { color: var(--ink); border-color: #aaa; }
.faq-list { border-top: 1px solid #cfd3cf; }
.faq-list details { border-bottom: 1px solid #cfd3cf; }
.faq-list summary { list-style: none; cursor: pointer; min-height: 91px; display: grid; grid-template-columns: 40px 1fr 30px; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--green); font-size: 10px; }
.faq-list summary i { font-style: normal; font-size: 24px; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { color: var(--muted); font-size: 12px; line-height: 1.8; margin: -6px 42px 28px 52px; }

.cta-section { position: relative; overflow: hidden; background: #171a17; color: var(--white); padding: 120px 0; }
.cta-glow { position: absolute; width: 620px; height: 620px; left: -200px; bottom: -330px; border-radius: 50%; background: rgba(76,171,71,.25); filter: blur(120px); }
.cta-layout { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.cta-copy h2 { font-size: clamp(40px, 5vw, 64px); }
.cta-copy > p:not(.eyebrow) { color: rgba(255,255,255,.56); font-size: 14px; line-height: 1.8; margin: 28px 0; }
.cta-contact { border-top: 1px solid rgba(255,255,255,.13); padding-top: 25px; display: flex; flex-direction: column; gap: 8px; font-size: 11px; }
.cta-contact span { color: rgba(255,255,255,.4); }
.cta-contact a { color: var(--green-bright); }
.contact-form { position: relative; background: var(--white); color: var(--ink); padding: 42px; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.24); }
.form-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; gap: 20px; }
.form-head strong { font-size: 19px; }
.form-head span { color: var(--green); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 10px; font-weight: 600; margin: 0 0 8px; }
.field input, .field select { width: 100%; height: 50px; border: 1px solid #d9ddd9; background: #fafafa; color: var(--ink); border-radius: 4px; padding: 0 14px; font-size: 12px; }
.field input::placeholder { color: #a4a8a4; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #b83232; }
.field small, .consent-error, .form-error { display: block; color: #a42d2d; font-size: 9px; margin-top: 5px; }
.consent { display: flex; align-items: flex-start; gap: 9px; color: #777c78; font-size: 9px; line-height: 1.55; margin: 5px 0 17px; }
.consent input { margin: 2px 0 0; accent-color: var(--green); }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.form-button { width: 100%; border: 0; }
.form-status { min-height: 16px; margin: 9px 0 0; color: var(--green); font-size: 9px; text-align: center; }
.privacy-note { margin: 8px 0 0; color: #8b908c; font-size: 8px; line-height: 1.5; text-align: center; }

.site-footer { background: #0d0e0d; color: var(--white); padding: 70px 0 25px; }
.footer-main { display: grid; grid-template-columns: 1.5fr .6fr 1fr .6fr; gap: 65px; padding-bottom: 55px; }
.footer-main > div { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-main > div:first-child p { color: rgba(255,255,255,.4); font-size: 11px; line-height: 1.7; max-width: 290px; margin: 8px 0 0; }
.footer-brand { width: 169px; }
.footer-main strong { color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; margin-bottom: 8px; }
.footer-main a, .footer-main span { color: rgba(255,255,255,.67); font-size: 10px; }
.footer-main a:hover { color: var(--green-bright); }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); padding-top: 23px; color: rgba(255,255,255,.28); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 960px) {
  .site-header nav { display: none; }
  .hero { min-height: auto; }
  .hero-layout, .cta-layout { grid-template-columns: 1fr; }
  .hero-layout { gap: 60px; }
  .search-visual { max-width: 620px; }
  .split-heading, .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { position: static; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .method-grid li:nth-child(2) { border-right: 0; }
  .method-grid li:nth-child(3) { padding-left: 0; }
  .method-grid li:nth-child(3)::before { left: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-score { min-height: 290px; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > div:last-child { display: none; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 30px, 1180px); }
  .header-inner { height: 72px; }
  .button-small { display: none; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: 42px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: stretch; }
  .hero-checks { gap: 12px 18px; }
  .search-visual { padding: 14px; transform: none; }
  .visual-row { grid-template-columns: 1fr; }
  .trust-marquee { min-height: 92px; }
  .trust-group > * { padding: 0 30px; font-size: 9px; }
  .trust-group i { font-size: 12px; }
  .section, .cta-section { padding: 82px 0; }
  .section-heading h2, .cta-copy h2 { font-size: 37px; }
  .review-featured { padding: 32px 26px; }
  .review-featured > p { font-size: 23px; }
  .review-featured footer { align-items: flex-start; flex-direction: column; }
  .review-score { padding: 34px 26px; }
  .method-grid { grid-template-columns: 1fr; border-top: 0; }
  .method-grid li, .method-grid li:not(:first-child), .method-grid li:nth-child(3) { padding: 34px 0; border-right: 0; border-top: 1px solid var(--line); }
  .method-grid li:not(:first-child)::before, .method-grid li:nth-child(3)::before { left: 0; }
  .differentials-grid { grid-template-columns: 1fr; }
  .differentials-grid article { padding: 32px 27px; }
  .faq-list summary { min-height: 82px; grid-template-columns: 30px 1fr 22px; font-size: 13px; }
  .faq-list details p { margin-left: 42px; }
  .cta-layout { gap: 55px; }
  .contact-form { padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-head { align-items: flex-start; flex-direction: column; gap: 6px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-main > div:last-child { display: flex; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
