/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a2e;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== VARIABLES ===== */
:root {
  --primary: #0a1628;
  --primary-light: #162544;
  --accent: #1a73e8;
  --accent-hover: #1557b0;
  --cta-bg: #00b341;
  --cta-hover: #009935;
  --gold: #f5a623;
  --gold-glow: rgba(245,166,35,0.15);
  --white: #ffffff;
  --light-bg: #f5f7fa;
  --text-dark: #1a1a2e;
  --text-muted: #5a6377;
  --border: #e2e8f0;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-pop: 0 6px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --radius: 14px;
  --radius-sm: 8px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  padding: 0.75rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cta-bg);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--cta-hover);
  transform: scale(1.03);
}

.header-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,115,232,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cta-bg);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,179,65,0.4);
  position: relative;
  animation: pulse-cta 2s infinite;
}

.cta-button:hover {
  background: var(--cta-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(0,179,65,0.5);
}

.cta-button svg {
  width: 24px;
  height: 24px;
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,179,65,0.4); }
  50% { box-shadow: 0 4px 30px rgba(0,179,65,0.6); }
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof-bar {
  background: var(--primary-light);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.85rem 0;
  overflow: hidden;
}

.proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.proof-item strong {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.95rem;
}

.proof-item svg {
  flex-shrink: 0;
}

.proof-item svg[fill="#f5a623"] {
  filter: none;
}

.proof-item svg:not([fill="#f5a623"]) {
  color: var(--cta-bg);
}

.proof-sep {
  margin: 0 0.15rem;
  opacity: 0.5;
}

@media (max-width: 599px) {
  .proof-items {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .proof-sep {
    display: none;
  }
}

/* ===== SECTION COMMON ===== */
section {
  padding: 3.5rem 0;
}

.section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}

/* ===== REVIEWS — THE STAR OF THE SHOW ===== */
.reviews-section {
  background: linear-gradient(180deg, #f0f4ff 0%, var(--white) 100%);
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-pop);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
}

/* Big decorative quote mark */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -0.15rem;
  left: 1.25rem;
  font-size: 4.5rem;
  color: var(--accent);
  opacity: 0.12;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1;
  pointer-events: none;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 2px rgba(245,166,35,0.3));
}

.review-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
  letter-spacing: -0.1px;
}

.review-author {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.2px;
}

.review-source {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  background: rgba(26,115,232,0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.review-source svg {
  width: 13px;
  height: 13px;
  color: var(--accent);
}

/* ===== SERVICES ===== */
.services {
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--accent), #4a9af5);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.service-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.service-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== WHY CHOOSE US ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(26,115,232,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.why-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.why-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--light-bg);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.step .step-phone {
  color: var(--accent);
  font-weight: 700;
}

/* ===== ABOUT ===== */
.about {
  background: var(--light-bg);
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
}

.cta-banner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-text {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact h3,
.footer-links h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--accent);
}

.footer-links ul li {
  margin-bottom: 0.4rem;
}

.footer-links ul li a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
}

/* ===== STICKY MOBILE CTA ===== */
.mobile-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--cta-bg);
  padding: 0.85rem;
  text-align: center;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
}

.mobile-cta svg {
  width: 22px;
  height: 22px;
}

body {
  padding-bottom: 60px;
}

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

/* Tablet */
@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 960px) {
  .hero h1 {
    font-size: 2.75rem;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
  }

  .cta-button {
    font-size: 1.4rem;
    padding: 1.15rem 3rem;
  }

  section {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 2.25rem;
  }

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

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .review-card {
    padding: 2.25rem 2rem 2rem;
  }

  .review-text {
    font-size: 1.1rem;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .mobile-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .proof-items {
    gap: 2.5rem;
    flex-wrap: nowrap;
  }

  .proof-item {
    font-size: 0.88rem;
  }
}

/* Large desktop */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3.25rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .cta-button {
    animation: none;
  }
  .review-card {
    transition: none;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Print */
@media print {
  .site-header,
  .mobile-cta,
  .cta-banner,
  .social-proof-bar {
    display: none;
  }
}
