@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --purple: #7C3AED;
  --purple-light: #A78BFA;
  --purple-pale: #EDE9FE;
  --purple-deep: #4C1D95;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --black: #0A0A0F;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(124,58,237,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(124,58,237,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(124,58,237,0.18), 0 8px 24px rgba(0,0,0,0.08);
}

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

html { scroll-behavior: smooth; }

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

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { font-size: 1.0625rem; color: var(--gray-600); line-height: 1.7; }
a { text-decoration: none; color: inherit; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124,58,237,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--black);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--purple); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--purple); }
.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--purple-deep) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 68px;
  background: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(124,58,237,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(167,139,250,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-pale);
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--purple); border-radius: 50%; }
.hero-title {
  margin-bottom: 24px;
  color: var(--black);
  letter-spacing: -0.03em;
}
.hero-title em {
  font-style: normal;
  color: var(--purple);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  border-radius: 2px;
}
.hero-desc { font-size: 1.125rem; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary { background: var(--purple); color: var(--white); box-shadow: 0 4px 14px rgba(124,58,237,0.35); }
.btn-primary:hover { background: var(--purple-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,0.4); }
.btn-outline { background: transparent; color: var(--purple); border: 1.5px solid var(--purple); }
.btn-outline:hover { background: var(--purple-pale); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
}
.stat-num span { color: var(--purple); }
.stat-label { font-size: 0.8rem; color: var(--gray-400); font-weight: 500; margin-top: 2px; }
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 420px; }
.reputation-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.card-brand { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.card-badge {
  background: #DCFCE7; color: #15803D;
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
}
.card-score {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.card-score-label { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 16px; }
.score-bar { height: 6px; background: var(--gray-100); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--purple), var(--purple-light)); border-radius: 3px; transition: width 1s ease; }
.platform-row { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--gray-600); }
.floating-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.fb-1 { top: -20px; right: -30px; animation: float 5s ease-in-out infinite 1s; }
.fb-2 { bottom: -20px; left: -30px; animation: float 7s ease-in-out infinite 2s; }
.fb-dot { width: 8px; height: 8px; border-radius: 50%; }
.fb-dot.green { background: #22C55E; }
.fb-dot.purple { background: var(--purple); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-block;
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 { color: var(--black); letter-spacing: -0.03em; margin-bottom: 16px; }
.section-header p { font-size: 1.0625rem; }

/* ── SERVICES ── */
#services { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  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(--purple), var(--purple-light));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--purple-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.service-card h3 { margin-bottom: 10px; color: var(--black); font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; line-height: 1.6; }

/* ── REVIEW PLATFORMS ── */
#platforms { background: var(--white); }
.platforms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.platform-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
}
.platform-card:hover { border-color: var(--purple-light); background: var(--purple-pale); transform: translateY(-3px); box-shadow: var(--shadow); }
.platform-logo { font-size: 2rem; margin-bottom: 12px; }
.platform-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--black); }
.platform-card p { font-size: 0.85rem; }
.platform-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--purple-pale); color: var(--purple);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 3px 8px; border-radius: 100px;
}

/* ── PRICING ── */
#pricing { background: var(--gray-50); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.08), var(--shadow-lg);
  transform: scale(1.03);
}
.featured-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--purple); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}
.pricing-card:hover:not(.featured) { border-color: var(--purple-light); box-shadow: var(--shadow); transform: translateY(-4px); }
.pricing-tier {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: var(--black); letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup { font-size: 1.5rem; vertical-align: top; margin-top: 8px; }
.pricing-tat { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--gray-600);
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-features li:last-child { border-bottom: none; }
.check { color: var(--purple); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── HOW IT WORKS ── */
#process { background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), var(--purple), var(--purple-light), transparent);
}
.step-item { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.1rem;
  color: var(--purple);
  position: relative; z-index: 1;
  background: var(--white);
}
.step-item h3 { font-size: 1rem; margin-bottom: 8px; color: var(--black); }
.step-item p { font-size: 0.85rem; }

/* ── CTA SECTION ── */
#cta {
  background: var(--black);
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(124,58,237,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 40px; }
.cta-contacts {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.contact-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.contact-pill:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-2px); }
.contact-pill svg { width: 18px; height: 18px; }
.cta-note { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-family: var(--font-display); font-weight: 800; color: var(--white); font-size: 1rem; }
.footer-logo span { color: var(--purple-light); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--purple-light); }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.25); }

/* ── ORDER MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(20px); transition: transform 0.3s;
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--gray-100); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gray-600); transition: background 0.2s;
}
.modal-close:hover { background: var(--gray-200); }
.modal h3 { font-size: 1.4rem; margin-bottom: 6px; color: var(--black); }
.modal-sub { font-size: 0.9rem; color: var(--gray-400); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,0.1); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success {
  display: none; text-align: center; padding: 32px 0;
}
.form-success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h4 { font-size: 1.2rem; margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--gray-800); color: var(--white);
  padding: 12px 24px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 500;
  z-index: 9999; transition: transform 0.3s;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid, .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: scale(1); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 24px;
    display: none; flex-direction: column; gap: 4px;
    z-index: 99;
    box-shadow: var(--shadow);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 12px 0;
    font-weight: 500;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .services-grid, .platforms-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .cta-contacts { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
}
/* =====================================================
   ADDITIONAL COMPONENTS FOR ORM EXPERTS AGENCY
   ===================================================== */

/* TRUST LOGO STRIP */

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.logo-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all .25s ease;
  box-shadow: var(--shadow-sm);
}

.logo-item:hover {
  transform: translateY(-3px);
  border-color: var(--purple-light);
  color: var(--purple);
  box-shadow: var(--shadow);
}

/* CASE STUDIES */

#case-studies {
  background: var(--gray-50);
}

/* TESTIMONIALS */

#testimonials {
  background: var(--white);
}

#testimonials .service-card {
  position: relative;
}

#testimonials .service-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 4rem;
  line-height: 1;
  opacity: .08;
  color: var(--purple);
  font-family: serif;
}

/* FAQ */

#faq {
  background: var(--gray-50);
}

#faq .service-card h3 {
  margin-bottom: 12px;
  color: var(--black);
}

/* CONTACT CTA ENHANCEMENTS */

.cta-inner .btn {
  margin-bottom: 24px;
}

.contact-pill {
  min-width: 180px;
  justify-content: center;
}

/* FLOATING WHATSAPP BUTTON */

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;

  background: #25D366;
  color: white;

  width: 64px;
  height: 64px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: .8rem;
  font-weight: 700;

  box-shadow:
    0 10px 25px rgba(37,211,102,.35);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 35px rgba(37,211,102,.45);
}

/* BETTER MODAL SCROLLBAR */

.modal::-webkit-scrollbar {
  width: 8px;
}

.modal::-webkit-scrollbar-thumb {
  background: var(--purple-light);
  border-radius: 999px;
}

/* FORM IMPROVEMENTS */

.form-group input,
.form-group textarea,
.form-group select {
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

/* PREMIUM HOVER EFFECTS */

.service-card,
.platform-card,
.pricing-card {
  will-change: transform;
}

/* HERO CARD GLOW */

.reputation-card {
  position: relative;
}

.reputation-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,.15),
      transparent,
      rgba(167,139,250,.15)
    );
  z-index: -1;
}

/* SECTION SPACING TWEAKS */

#trusted {
  padding-top: 70px;
  padding-bottom: 70px;
}

#services,
#platforms,
#pricing,
#case-studies,
#testimonials,
#process,
#faq {
  scroll-margin-top: 90px;
}

/* MOBILE IMPROVEMENTS */

@media (max-width: 768px) {

  .logo-strip {
    gap: 12px;
  }

  .logo-item {
    font-size: .8rem;
    padding: 10px 16px;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    bottom: 18px;
    right: 18px;
    font-size: .7rem;
  }

  .cta-contacts {
    width: 100%;
  }

  .contact-pill {
    width: 100%;
    max-width: 320px;
  }

  .pricing-price {
    font-size: 2.3rem;
  }

  .hero-stats {
    gap: 20px;
  }
}

/* LARGE SCREEN POLISH */

@media (min-width: 1200px) {

  .hero-grid {
    gap: 90px;
  }

  .services-grid {
    gap: 28px;
  }

  .platforms-grid {
    gap: 24px;
  }

  .pricing-grid {
    gap: 28px;
  }
}
