*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green-900: #0b3d2e;
  --green-800: #0f5132;
  --green-700: #146c43;
  --green-600: #198754;
  --green-500: #20a96a;
  --green-400: #3dd68c;
  --green-100: #d1f5e0;
  --green-50: #eefbf3;
  --silver-900: #2c2f33;
  --silver-700: #52575d;
  --silver-500: #8a8f95;
  --silver-400: #adb2b8;
  --silver-300: #c4c8cc;
  --silver-200: #dcdfe2;
  --silver-100: #eef0f2;
  --silver-50: #f7f8f9;
  --white: #ffffff;
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--silver-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.admin-bar .navbar {
  top: 32px;
}

.highview-ranking-page {
  background: var(--white);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--silver-200);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--green-800);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo svg {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--silver-700);
  font-size: 0.925rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-600);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--green-700);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green-700);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--green-800);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver-900);
  margin: 6px 0;
  transition: 0.3s;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #041f15;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 60px;
}

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(20, 108, 67, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(15, 81, 50, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 10%, rgba(61, 214, 140, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 90% 60% at 90% 30%, rgba(61, 214, 140, 0.08) 0%, transparent 50%);
  animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% { filter: hue-rotate(0deg) brightness(1); }
  50% { filter: hue-rotate(5deg) brightness(1.1); }
  100% { filter: hue-rotate(-3deg) brightness(1.05); }
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(61, 214, 140, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 214, 140, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-glow-orb--1 {
  width: 400px;
  height: 400px;
  top: -10%;
  right: 5%;
  background: rgba(61, 214, 140, 0.15);
}

.hero-glow-orb--2 {
  width: 300px;
  height: 300px;
  bottom: 5%;
  left: -5%;
  background: rgba(20, 108, 67, 0.2);
  animation-delay: -4s;
  animation-direction: alternate-reverse;
}

.hero-glow-orb--3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 45%;
  background: rgba(61, 214, 140, 0.08);
  animation-delay: -2s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 214, 140, 0.1);
  border: 1px solid rgba(61, 214, 140, 0.2);
  border-radius: 100px;
  padding: 7px 18px 7px 12px;
  font-size: 0.8rem;
  color: var(--green-400);
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  letter-spacing: 0.02em;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
  background: var(--green-400);
}

.hero-badge-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--green-400);
  animation: pingDot 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingDot {
  0% { transform: scale(1); opacity: 0.7; }
  75%, 100% { transform: scale(2); opacity: 0; }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--green-400) 0%, #6feaa8 40%, var(--green-400) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(196, 200, 204, 0.9);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  background: linear-gradient(135deg, var(--green-400), #2ecc71);
  color: var(--green-900);
  padding: 15px 34px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(61, 214, 140, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(61, 214, 140, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  filter: brightness(1.08);
}

.btn-primary .btn-arrow {
  display: inline-flex;
  transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-avatars {
  display: flex;
}

.hero-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #041f15;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -10px;
}

.hero-avatars span:first-child {
  margin-left: 0;
}

.hero-avatars span:nth-child(1) { background: var(--green-700); z-index: 4; }
.hero-avatars span:nth-child(2) { background: #0d6efd; z-index: 3; }
.hero-avatars span:nth-child(3) { background: #6f42c1; z-index: 2; }
.hero-avatars span:nth-child(4) { background: var(--green-500); z-index: 1; }

.hero-proof-text {
  font-size: 0.825rem;
  color: var(--silver-400);
  line-height: 1.4;
}

.hero-proof-text strong {
  color: var(--white);
  font-weight: 700;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.hero-stat {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
  position: relative;
}

.hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--silver-500);
  margin-top: 4px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.hero-dashboard {
  width: 100%;
  max-width: 480px;
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(61, 214, 140, 0.05);
  position: relative;
  z-index: 2;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.hero-card-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.hero-card-sub {
  color: var(--silver-500);
  font-size: 0.75rem;
  margin-top: 2px;
}

.hero-card-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green-400);
  background: rgba(61, 214, 140, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(61, 214, 140, 0.2);
}

.hero-card-live-dot {
  width: 6px;
  height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.rank-bar {
  margin-bottom: 14px;
}

.rank-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.rank-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rank-bar-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--white);
}

.rank-bar-icon--google { background: #4285f4; }
.rank-bar-icon--bing { background: #00809d; }
.rank-bar-icon--ai { background: #8b5cf6; }
.rank-bar-icon--voice { background: #f59e0b; }

.rank-bar-label {
  color: var(--silver-300);
  font-size: 0.82rem;
  font-weight: 500;
}

.rank-bar-value {
  color: var(--green-400);
  font-weight: 800;
  font-size: 0.82rem;
  font-family: var(--font-heading);
}

.rank-bar-track {
  height: 7px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
}

.rank-bar-fill {
  height: 100%;
  border-radius: 100px;
  width: 0;
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fill-google { background: linear-gradient(90deg, #4285f4, var(--green-400)); }
.fill-bing { background: linear-gradient(90deg, #00809d, var(--green-400)); }
.fill-ai { background: linear-gradient(90deg, #8b5cf6, var(--green-400)); }
.fill-voice { background: linear-gradient(90deg, #f59e0b, var(--green-400)); }

.hero-float-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card--traffic {
  top: -15px;
  right: -30px;
}

.hero-float-card--keywords {
  bottom: 30px;
  left: -35px;
  animation-delay: -3s;
}

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

.float-card-label {
  font-size: 0.68rem;
  color: var(--silver-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.float-card-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.float-card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.float-card-badge--up {
  background: rgba(61, 214, 140, 0.15);
  color: var(--green-400);
}

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

.hero-platform-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--silver-400);
  font-weight: 500;
}

.hero-platform-pill--active {
  border-color: rgba(61, 214, 140, 0.3);
  color: var(--green-400);
}

.logos-bar {
  background: var(--silver-50);
  padding: 40px 24px;
  border-top: 1px solid var(--silver-200);
  border-bottom: 1px solid var(--silver-200);
}

.logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.logos-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--silver-500);
  margin-bottom: 24px;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.logos-grid span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--silver-700);
  white-space: nowrap;
}

section {
  padding: 100px 24px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-600);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--green-900);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--silver-700);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.about {
  background: var(--white);
}

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

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  transition: background 0.2s;
}

.about-feat:hover {
  background: var(--green-50);
}

.about-feat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}

.about-feat h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--green-900);
}

.about-feat p {
  font-size: 0.9rem;
  color: var(--silver-700);
}

.about-image {
  background: linear-gradient(135deg, var(--green-50), var(--silver-100));
  border-radius: 20px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  border: 1px solid var(--silver-200);
}

.about-image-icon {
  width: 80px;
  height: 80px;
  background: var(--green-700);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.about-image h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 8px;
}

.about-image p {
  color: var(--silver-700);
  font-size: 0.95rem;
  max-width: 280px;
}

.services {
  background: var(--silver-50);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--green-400));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--green-400);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green-700);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--silver-700);
  line-height: 1.65;
}

.process {
  background: var(--white);
}

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

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--silver-300) 0, var(--silver-300) 6px, transparent 6px, transparent 12px);
}

.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--green-700);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-900);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--silver-700);
  max-width: 220px;
  margin: 0 auto;
}

.why-us {
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--white);
}

.why-us .section-label {
  color: var(--green-400);
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-desc {
  color: var(--silver-300);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(61, 214, 140, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--silver-300);
  line-height: 1.65;
}

.testimonials {
  background: var(--silver-50);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.test-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #f5a623;
}

.test-quote {
  font-size: 0.95rem;
  color: var(--silver-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green-700);
  font-size: 1rem;
}

.test-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-900);
}

.test-role {
  font-size: 0.8rem;
  color: var(--silver-500);
}

.faq {
  background: var(--white);
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--silver-200);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-900);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--green-600);
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.925rem;
  color: var(--silver-700);
  line-height: 1.7;
}

.contact {
  background: var(--silver-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 12px;
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--silver-700);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--green-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}

.contact-detail h4 {
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--green-900);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.875rem;
  color: var(--silver-700);
}

.contact-detail a {
  color: var(--green-700);
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--silver-200);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--silver-300);
  border-radius: 10px;
  font-size: 0.925rem;
  font-family: var(--font-body);
  color: var(--silver-900);
  background: var(--white);
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--green-700);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--green-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 81, 50, 0.25);
}

.form-response {
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.form-response h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green-900);
  margin-bottom: 8px;
}

.form-response p {
  color: var(--silver-700);
  font-size: 0.95rem;
}

.form-response-success {
  text-align: center;
  padding: 40px 20px;
}

.form-response-icon {
  width: 64px;
  height: 64px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-response-error {
  background: #fff4e5;
  border: 1px solid #f3d19c;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  padding: 80px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--silver-300);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  font-size: 1.05rem;
  padding: 16px 40px;
}

.footer {
  background: var(--green-900);
  color: var(--silver-400);
  padding: 64px 24px 32px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--silver-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--green-400);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-400);
  transition: all 0.2s;
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--green-700);
  color: var(--white);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { margin-top: 48px; }
  .hero-float-card--traffic { right: -10px; }
  .hero-float-card--keywords { left: -10px; }
  .hero-dashboard { max-width: 440px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 782px) {
  body.admin-bar .navbar {
    top: 46px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--silver-200);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  .nav-links.open .nav-cta { text-align: center; }
  .services-grid, .why-grid, .test-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; }
  .hero-float-card--traffic { right: 5px; top: -10px; }
  .hero-float-card--keywords { left: 5px; bottom: 50px; }
  .hero-platforms { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
