/* ============================================================
   ONLY DIGITAL PR — styles.css
   ============================================================ */

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

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #0A0A0A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ---- SCROLL OFFSET FOR FIXED NAV ---- */
[id] { scroll-margin-top: 80px; }
#top { scroll-margin-top: 0; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION OPENER ---- */
.section-opener {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.green-rule {
  width: 40px;
  height: 2px;
  background: #00E676;
  flex-shrink: 0;
}
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0A0A0A;
}
.section-opener.dark .section-label {
  color: rgba(255,255,255,0.55);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid #E8ECF0;
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
}
.nav.scrolled {
  background: rgba(13,27,42,0.92);
  border-bottom-color: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-weight: 800;
  font-size: 20px;
  color: #0A0A0A;
  letter-spacing: -0.02em;
  transition: color 300ms ease;
}
.logo-dot {
  font-weight: 800;
  font-size: 20px;
  color: #00E676;
}
.nav.scrolled .logo-text { color: #FFFFFF; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #0A0A0A;
  transition: color 150ms ease;
}
.nav-links a:hover { color: #00E676; }
.nav.scrolled .nav-links a { color: rgba(255,255,255,0.7); }
.nav.scrolled .nav-links a:hover { color: #00E676; }

.btn-nav {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  background: #00E676;
  color: #0D1B2A;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms ease, transform 200ms ease;
}
.btn-nav:hover { background: #00FF85; transform: translateY(-2px); }

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  transition: color 300ms ease;
  padding: 4px;
}
.nav.scrolled .hamburger { color: #FFFFFF; }

/* ---- MOBILE NAV ---- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0D1B2A;
  padding: 32px;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-close {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-links {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-nav-links a {
  font-size: 28px;
  font-weight: 600;
  color: #FFFFFF;
}
.mobile-nav-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: #00E676;
  color: #0D1B2A;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}

/* ---- HERO ---- */
.hero {
  background: #0D1B2A;
  padding: 140px 24px 100px;
  text-align: center;
}
.hero-inner {
  max-width: 860px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00E676;
}
.hero-h1 {
  margin-top: 32px;
  font-size: 84px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
.hero-h1 .green { color: #00E676; }

.hero-sub {
  margin: 28px auto 40px;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  background: #00E676;
  color: #0D1B2A;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 200ms ease, transform 200ms ease;
}
.btn-hero:hover { background: #00FF85; transform: translateY(-2px); }

.hero-clutch img {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}
.hero-trust {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.hero-pubs {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-pubs img {
  height: 28px;
  width: 120px;
  object-fit: contain;
  opacity: 0.5;
  filter: invert(1) brightness(2);
  transition: opacity 200ms ease;
}
.hero-pubs img:hover { opacity: 0.9; }

/* ---- LOGO MARQUEE ---- */
.logo-marquee-section {
  background: #F7F8FA;
  padding: 48px 0;
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8892A0;
  margin-bottom: 28px;
}
.marquee-container {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 170px;
  padding: 0 24px;
  flex-shrink: 0;
}
.marquee-logo img {
  max-height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 200ms ease, filter 200ms ease;
}
.marquee-logo img:hover { opacity: 1; filter: grayscale(0%); }

/* ---- SERVICES ---- */
.services-section {
  background: #FFFFFF;
  padding: 60px 0 120px;
}
.services-h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #0A0A0A;
  letter-spacing: -0.02em;
  margin-top: 16px;
  max-width: 700px;
}
.services-rows {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.service-content {
  padding: 64px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 300ms ease;
}
.service-content:hover { background: #F7F8FA; }

.service-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00E676;
  width: fit-content;
}
.service-h3 {
  margin-top: 16px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  color: #0A0A0A;
}
.service-body {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: #8892A0;
  max-width: 420px;
}
.service-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #0D1B2A;
  transition: color 200ms ease;
}
.service-link:hover { color: #00E676; }

.service-image {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  padding: 16px;
}
.service-image img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: center top;
}

@media (min-width: 769px) {
  .service-row.reverse .service-image { order: -1; }
}

/* ---- SERVICES CTA BANNER ---- */
.services-cta-section {
  background: #FFFFFF;
  padding-bottom: 120px;
}
.services-cta-banner {
  background: #0D1B2A;
  border-radius: 12px;
  padding: 64px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.services-cta-banner::before {
  content: '';
  position: absolute;
  top: -96px;
  right: -96px;
  width: 320px;
  height: 320px;
  background: #00E676;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}
.services-cta-text h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.services-cta-text p {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.btn-cta-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  background: #00E676;
  color: #0D1B2A;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 200ms ease, transform 200ms ease;
}
.btn-cta-green:hover { background: #00FF85; transform: translateY(-2px); }

/* ---- PRICING ---- */
.pricing-section {
  background: #F7F8FA;
  padding: 120px 0;
}
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #E8ECF0;
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
  width: fit-content;
  margin: 32px auto 0;
}
.toggle-btn {
  padding: 8px 24px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #8892A0;
  transition: background 200ms, color 200ms;
}
.toggle-btn.active {
  background: #0D1B2A;
  color: #FFFFFF;
}
.pricing-h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #0A0A0A;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.pricing-sub {
  font-size: 18px;
  color: #8892A0;
  margin-top: 12px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pricing-card {
  background: #FFFFFF;
  border: 1px solid #E8ECF0;
  border-radius: 8px;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border: 2px solid #0D1B2A;
  box-shadow: 0 8px 40px rgba(13,27,42,0.1);
}
.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #0D1B2A;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 20px;
  border-radius: 8px;
  white-space: nowrap;
}
.pricing-tag {
  display: inline-block;
  padding: 4px 10px;
  background: #F7F8FA;
  border: 1px solid #E8ECF0;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  color: #8892A0;
}
.pricing-card.featured .pricing-tag {
  background: #F0FFF7;
  border-color: rgba(13,27,42,0.15);
  color: #0D1B2A;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 20px;
}
.pricing-amount {
  font-size: 52px;
  font-weight: 800;
  color: #0A0A0A;
  letter-spacing: -0.02em;
}
.pricing-card.featured .pricing-amount { color: #0D1B2A; }
.pricing-period {
  font-size: 14px;
  color: #8892A0;
}
.pricing-links-line {
  font-size: 15px;
  font-weight: 600;
  color: #0A0A0A;
  margin-top: 6px;
}
.pricing-card.featured .pricing-links-line { color: #0D1B2A; }
.pricing-divider {
  height: 1px;
  background: #E8ECF0;
  margin: 24px 0;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #1C2B3A;
  line-height: 1.5;
}
.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: #00E676;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  margin-top: 1px;
}
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 100%;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 28px;
  transition: background 200ms ease, transform 200ms ease;
  background: #FFFFFF;
  color: #0A0A0A;
  border: 1px solid #E8ECF0;
}
.pricing-cta:hover { transform: translateY(-2px); }
.pricing-card.featured .pricing-cta {
  background: #0D1B2A;
  color: #FFFFFF;
  border: none;
}
.pricing-card.featured .pricing-cta:hover { background: #162032; }
.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: #8892A0;
  max-width: 640px;
  margin: 24px auto 0;
  line-height: 1.6;
}

/* ---- PROCESS ---- */
.process-section {
  background: #0D1B2A;
  padding: 120px 0;
}
.process-h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.process-steps {
  position: relative;
  margin-top: 64px;
}
.process-line {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 27px;
  height: 2px;
  background: #00E676;
  z-index: 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  z-index: 1;
  gap: 8px;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #00E676;
  background: #0D1B2A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-num {
  font-size: 18px;
  font-weight: 800;
  color: #00E676;
}
.process-title {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 14px;
}
.process-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  max-width: 100px;
}

/* ---- CASE STUDIES ---- */
.case-studies-section {
  background: #FFFFFF;
  padding: 120px 0;
}
.case-h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #0A0A0A;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.case-card {
  border: 1px solid #E8ECF0;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 200ms ease;
  display: flex;
  flex-direction: column;
}
.case-card:hover { border-color: #00E676; }
.case-card-top { padding: 32px; }
.case-card:nth-child(1) .case-card-top { background: #00E676; }
.case-card:nth-child(2) .case-card-top { background: #3D2952; }
.case-card:nth-child(3) .case-card-top { background: #0D1B2A; }

.case-tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}
.case-card:nth-child(1) .case-tag {
  color: #0D1B2A;
  border-color: rgba(13,27,42,0.25);
}
.case-stats {
  display: flex;
  margin-top: 24px;
}
.case-stat { flex: 1; text-align: center; }
.case-stat + .case-stat { border-left: 1px solid rgba(255,255,255,0.1); }
.case-card:nth-child(1) .case-stat + .case-stat { border-left-color: rgba(13,27,42,0.15); }
.case-stat-value {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
}
.case-card:nth-child(1) .case-stat-value { color: #0D1B2A; }
.case-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.case-card:nth-child(1) .case-stat-label { color: rgba(13,27,42,0.7); }

.case-card-bottom {
  background: #FFFFFF;
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case-body {
  font-size: 15px;
  line-height: 1.65;
  color: #8892A0;
}
.case-pubs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.case-pub-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border: 1px solid #E8ECF0;
  border-radius: 8px;
  background: #FFFFFF;
}
.case-pub-logo img {
  height: 20px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
}

/* ---- REVIEWS ---- */
.reviews-section {
  background: #F7F8FA;
  padding: 120px 0;
}
.reviews-h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #0A0A0A;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.review-card {
  background: #FFFFFF;
  border: 1px solid #E8ECF0;
  border-radius: 8px;
  padding: 28px;
  transition: border-color 200ms ease;
}
.review-card:hover { border-color: #0D1B2A; }
.review-stars { font-size: 16px; color: #00E676; }
.review-quote {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #1C2B3A;
}
.review-divider { height: 1px; background: #E8ECF0; margin: 20px 0; }
.review-name { font-size: 14px; font-weight: 600; color: #0A0A0A; }
.review-company { font-size: 13px; color: #8892A0; margin-top: 3px; }

/* ---- GUARANTEES ---- */
.guarantees-section {
  background: #0D1B2A;
  padding: 120px 0;
}
.guarantees-layout {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 80px;
  margin-top: 48px;
  align-items: start;
}
.guarantees-left {
  position: relative;
}
.guarantees-left::before {
  content: '6';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 240px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.guarantees-left h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.guarantees-left h2 .green { color: #00E676; }
.guarantees-left p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
  margin-top: 24px;
}
.btn-guarantees {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  background: #00E676;
  border: none;
  color: #0D1B2A;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 32px;
  transition: background 200ms ease;
}
.btn-guarantees:hover { background: #00FF85; }
.guarantees-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.guarantee-card {
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 200ms ease, border-left-color 200ms ease, border-left-width 200ms ease;
}
.guarantee-card:hover {
  background: rgba(255,255,255,0.07);
  border-left: 2px solid #00E676;
}
.guarantee-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #00E676;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #00E676;
}
.guarantee-title { font-size: 16px; font-weight: 600; color: #FFFFFF; margin-top: 14px; }
.guarantee-body { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* ---- WHY CHOOSE US ---- */
.why-section {
  background: #FFFFFF;
  padding: 120px 0;
}
.why-h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #0A0A0A;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "c1 c1 c2"
    "c3 c4 c4";
  gap: 16px;
  margin-top: 56px;
}
.why-c1 { grid-area: c1; }
.why-c2 { grid-area: c2; }
.why-c3 { grid-area: c3; }
.why-c4 { grid-area: c4; }

.why-card-white {
  background: #FFFFFF;
  border: 1px solid #E8ECF0;
  border-radius: 8px;
  padding: 36px;
  transition: border-color 200ms ease;
}
.why-card-white:hover { border-color: #0D1B2A; }
.why-card-dark {
  background: #0D1B2A;
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
.why-card-green {
  background: #00E676;
  border-radius: 8px;
  padding: 36px;
}
.why-card-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8892A0;
}
.why-card-green .why-card-label { color: rgba(13,27,42,0.6); }
.why-card-white h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #0A0A0A;
  margin-top: 12px;
}
.why-card-white p { font-size: 15px; line-height: 1.65; color: #8892A0; margin-top: 12px; }
.why-stat {
  font-size: 55px;
  font-weight: 800;
  color: #00E676;
  line-height: 1;
}
.why-c3 .why-stat { font-size: 50px; }
.why-stat-label { font-size: 15px; color: rgba(255,255,255,0.55); margin-top: 12px; line-height: 1.5; }
.why-card-green h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0D1B2A;
  line-height: 1.3;
  margin-top: 8px;
}
.why-card-green p { font-size: 15px; color: rgba(13,27,42,0.65); margin-top: 10px; line-height: 1.6; }

/* ---- FAQ ---- */
.faq-section {
  background: #F7F8FA;
  padding: 120px 0;
}
.faq-h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #0A0A0A;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
}
.faq-item {
  background: #FFFFFF;
  border: 1px solid #E8ECF0;
  border-left: 1px solid #E8ECF0;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 8px;
  transition: border-color 200ms ease, background 200ms ease;
}
.faq-item.open {
  border-color: #00E676;
  border-left: 3px solid #00E676;
  background: #F0FFF7;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  font-family: 'Inter', sans-serif;
}
.faq-question-text { font-size: 15px; font-weight: 600; color: #0A0A0A; flex: 1; }
.faq-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #F7F8FA;
  color: #0D1B2A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: background 200ms ease, color 200ms ease;
  pointer-events: none;
}
.faq-item.open .faq-toggle { background: #0D1B2A; color: #FFFFFF; }
.faq-answer {
  display: none;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid #E8ECF0;
  font-size: 14px;
  line-height: 1.7;
  color: #8892A0;
}
.faq-item.open .faq-answer { display: block; }

/* ---- CONTACT ---- */
.contact-section {
  background: #0D1B2A;
  padding: 120px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.contact-h2 .green { color: #00E676; }
.contact-intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  max-width: 380px;
}
.contact-rows { margin-top: 44px; display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: flex; align-items: center; gap: 14px; }
.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00E676;
}
.contact-row-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.35); }
.contact-row-value { font-size: 14px; font-weight: 600; color: #FFFFFF; margin-top: 2px; }
.contact-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 36px 0; }
.contact-stars { display: flex; align-items: center; gap: 10px; }
.contact-stars-rating { font-size: 18px; color: #00E676; }
.contact-stars-text { font-size: 13px; color: rgba(255,255,255,0.4); }

/* Form card */
.form-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.form-header { padding: 32px 36px 24px; border-bottom: 1px solid #E8ECF0; }
.form-header h3 { font-size: 20px; font-weight: 700; color: #0A0A0A; }
.form-header p { font-size: 14px; color: #8892A0; margin-top: 6px; }
.form-body { padding: 28px 36px 36px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field { margin-bottom: 12px; }
.form-field:last-of-type { margin-bottom: 0; }

.input {
  width: 100%;
  height: 48px;
  border: 1px solid #E8ECF0;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #0A0A0A;
  background: #FFFFFF;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  appearance: none;
  -webkit-appearance: none;
}
.input::placeholder { color: #8892A0; }
.input:focus { border-color: #0D1B2A; box-shadow: 0 0 0 3px rgba(13,27,42,0.06); }

select.input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238892A0' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
  color: #0A0A0A;
}
select.input.has-value { color: #0A0A0A; }

textarea.input {
  height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 16px;
}
.checkbox-btn {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid #E8ECF0;
  border-radius: 4px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  margin-top: 2px;
  transition: background 150ms ease;
}
.checkbox-btn.checked { background: #0D1B2A; }
.form-checkbox-row span { font-size: 13px; color: #0A0A0A; line-height: 1.5; font-weight: 600; }

.btn-submit {
  width: 100%;
  height: 52px;
  background: #00E676;
  color: #0D1B2A;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 200ms ease;
}
.btn-submit:hover { background: #00FF85; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}
.form-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #8892A0; }
.form-trust-dot { color: #00E676; font-size: 8px; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 36px;
}
.form-success.visible { display: flex; }
.success-check {
  width: 64px;
  height: 64px;
  background: #00E676;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 auto;
}
.form-success h3 { font-size: 24px; font-weight: 700; color: #0A0A0A; margin-top: 24px; }
.form-success p { font-size: 16px; line-height: 1.65; color: #8892A0; margin-top: 12px; }

/* ---- FOOTER ---- */
.footer { background: #0D1B2A; padding: 72px 0 0; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
}
.footer-brand p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.45); margin-top: 16px; max-width: 260px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 24px; }
.footer-col-head { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); }
.footer-nav-links { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 150ms ease; }
.footer-nav-links a:hover { color: #FFFFFF; }
.footer-contact-email { font-size: 14px; color: rgba(255,255,255,0.55); display: block; margin-top: 16px; transition: color 150ms ease; }
.footer-contact-email:hover { color: #FFFFFF; }
.footer-cta-link { font-size: 14px; font-weight: 600; color: #00E676; display: block; margin-top: 8px; transition: opacity 150ms ease; }
.footer-cta-link:hover { opacity: 0.8; }
.footer-address { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.55); font-style: normal; display: block; margin-top: 16px; }
.footer-phone { font-size: 14px; color: rgba(255,255,255,0.55); display: block; margin-top: 4px; transition: color 150ms ease; }
.footer-phone:hover { color: #FFFFFF; }
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 20px 24px 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 150ms ease; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }
.footer-domain { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-h1 { font-size: 64px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantees-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-line { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 24px 64px; }
  .hero-h1 { font-size: 44px; margin-top: 20px; }
  .hero-sub { font-size: 16px; }
  .hero-pubs { gap: 24px; }
  .hero-pubs img { width: 80px; }

  .services-section { padding: 40px 0 64px; }
  .service-row { grid-template-columns: 1fr; border-top: 1px solid #E8ECF0; }
  .service-row:first-child { border-top: none; }
  .service-content { padding: 40px 24px; }
  .service-h3 { font-size: 26px; }
  .service-image { min-height: 200px; padding: 32px 24px; }
  .services-h2 { font-size: 30px; }

  .services-cta-section { padding-bottom: 64px; }
  .services-cta-banner { flex-direction: column; padding: 40px 28px; text-align: center; }
  .services-cta-text h3 { font-size: 22px; }

  .pricing-section { padding: 64px 0; }
  .pricing-h2 { font-size: 30px; }
  .pricing-cards { grid-template-columns: 1fr; }

  .process-section { padding: 64px 0; }
  .process-h2 { font-size: 30px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-line { display: none; }

  .case-studies-section { padding: 64px 0; }
  .case-h2 { font-size: 30px; }
  .case-cards { grid-template-columns: 1fr; }

  .reviews-section { padding: 64px 0; }
  .reviews-h2 { font-size: 30px; }
  .reviews-grid { grid-template-columns: 1fr; }

  .guarantees-section { padding: 64px 0; }
  .guarantees-layout { grid-template-columns: 1fr; gap: 48px; }
  .guarantees-left h2 { font-size: 32px; }
  .guarantees-cards { grid-template-columns: 1fr; }

  .why-section { padding: 64px 0; }
  .why-h2 { font-size: 30px; }
  .why-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "c1" "c2" "c3" "c4";
  }

  .faq-section { padding: 64px 0; }
  .faq-h2 { font-size: 30px; }

  .contact-section { padding: 64px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-h2 { font-size: 30px; }
  .form-header { padding: 24px 24px 20px; }
  .form-body { padding: 20px 24px 28px; }
  .form-row-2 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}
