/* ========================================
   Auditeo - Site Vitrine CSS
   ======================================== */

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

:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --primary-light: #eef2ff;
  --primary-50: #e0e7ff;
  --dark: #111827;
  --darker: #030712;
  --text: #111827;
  --text-2: #4b5563;
  --text-3: #9ca3af;
  --bg: #ffffff;
  --bg-2: #f9fafb;
  --border: #e5e7eb;
  --green: #059669;
  --orange: #d97706;
  --red: #dc2626;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-1: 0 1px 2px rgba(0,0,0,.05);
  --shadow-2: 0 4px 6px -1px rgba(0,0,0,.07);
  --shadow-3: 0 10px 15px -3px rgba(0,0,0,.08);
  --shadow-4: 0 20px 25px -5px rgba(0,0,0,.1);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --ease: .2s ease;
  --max-w: 1140px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.15; color: var(--text); letter-spacing: -.025em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); font-weight: 800; }
h3 { font-size: 1.15rem; }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: .85rem 0; background: transparent; transition: all var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border); padding: .6rem 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.navbar-brand {
  display: flex; align-items: center; gap: .45rem;
  font-size: 1.35rem; font-weight: 900; color: #fff; letter-spacing: -.04em;
}
.navbar-brand:hover { color: #fff; }
.navbar.scrolled .navbar-brand { color: var(--dark); }

.brand-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); display: inline-block; flex-shrink: 0;
}
.brand-text { font-weight: 900; }

.navbar-nav { display: flex; align-items: center; gap: 1.75rem; }
.navbar-nav a {
  color: rgba(255,255,255,.75); font-weight: 500; font-size: .875rem; transition: color var(--ease);
}
.navbar-nav a:hover { color: #fff; }
.navbar.scrolled .navbar-nav a { color: var(--text-2); }
.navbar.scrolled .navbar-nav a:hover { color: var(--primary); }
.navbar-nav a.active { color: #fff; }
.navbar.scrolled .navbar-nav a.active { color: var(--primary); }

.navbar-cta { display: flex; align-items: center; gap: .75rem; }
.navbar-cta .btn-login { color: rgba(255,255,255,.8); font-weight: 500; font-size: .875rem; }
.navbar.scrolled .navbar-cta .btn-login { color: var(--text-2); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none;
}
.hamburger span { width: 20px; height: 2px; background: #fff; display: block; border-radius: 2px; transition: all var(--ease); }
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .6rem 1.35rem; border-radius: var(--r-sm); font-family: var(--font);
  font-weight: 600; font-size: .875rem; cursor: pointer; transition: all var(--ease);
  border: 1.5px solid transparent; text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(79,70,229,.35); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: #f3f4f6; color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.btn-lg { padding: .8rem 1.75rem; font-size: .925rem; }
.btn-sm { padding: .4rem 1rem; font-size: .8rem; }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 0 5rem; overflow: hidden;
  background: var(--darker);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79,70,229,.25), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(79,70,229,.1), transparent);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto; text-align: center;
}

.hero-badge {
  display: inline-block; padding: .3rem .85rem; margin-bottom: 1.75rem;
  background: rgba(79,70,229,.12); color: #a5b4fc; border: 1px solid rgba(79,70,229,.2);
  border-radius: 50px; font-size: .78rem; font-weight: 600; letter-spacing: .02em;
}

.hero h1 { color: #fff; margin-bottom: 1.25rem; line-height: 1.1; }
.hero h1 .highlight {
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,.5); font-size: 1.05rem; margin-bottom: 2.5rem;
  max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7;
}

/* Hero Audit Form */
.hero-audit-box { max-width: 520px; margin: 0 auto 2.5rem; }

.hero-audit-form {
  display: flex; gap: .5rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); padding: .4rem;
}

.hero-audit-form input {
  flex: 1; padding: .7rem 1rem; background: transparent; border: none;
  color: #fff; font-family: var(--font); font-size: .95rem; outline: none;
  min-width: 0;
}
.hero-audit-form input::placeholder { color: rgba(255,255,255,.35); }

.hero-audit-form .btn { flex-shrink: 0; border-radius: var(--r-sm); }

.hero-audit-note {
  text-align: center; margin-top: .75rem;
  color: rgba(255,255,255,.3); font-size: .75rem;
}

/* Hero Trust */
.hero-trust {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
}
.hero-trust-item {
  display: flex; flex-direction: column; align-items: center; gap: .1rem;
  color: rgba(255,255,255,.4); font-size: .75rem;
}
.hero-trust-number { color: #fff; font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; }
.hero-trust-sep { width: 1px; height: 32px; background: rgba(255,255,255,.1); }

/* ========================================
   SECTIONS
   ======================================== */
.section { padding: 5rem 0; }
.section-light { background: var(--bg-2); }
.section-white { background: var(--bg); }

.section-header { text-align: center; max-width: 540px; margin: 0 auto 3rem; }
.section-header .overline {
  display: inline-block; color: var(--primary); font-weight: 600; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: .6rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--text-2); font-size: .95rem; line-height: 1.7; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   PROBLEM CARDS
   ======================================== */
.problems-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

.problem-card {
  background: var(--bg); border-radius: var(--r-lg); padding: 2rem 1.5rem;
  border: 1px solid var(--border); transition: all var(--ease);
}
.problem-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-3); border-color: transparent; }

.problem-stat {
  font-size: 2.5rem; font-weight: 900; letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: .75rem; line-height: 1;
}

.problem-card h3 { margin-bottom: .5rem; }
.problem-card p { color: var(--text-2); font-size: .875rem; line-height: 1.65; }

/* ========================================
   STEPS
   ======================================== */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; position: relative; }

.steps-grid::before {
  content: ''; position: absolute; top: 32px; left: calc(16.66% + .75rem); right: calc(16.66% + .75rem);
  height: 2px; background: linear-gradient(90deg, var(--primary), var(--primary-50)); z-index: 0;
}

.step-card { text-align: center; position: relative; z-index: 1; }

.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary); color: #fff; font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; box-shadow: 0 4px 14px rgba(79,70,229,.3);
}

.step-card h3 { margin-bottom: .5rem; }
.step-card p { color: var(--text-2); font-size: .875rem; max-width: 240px; margin: 0 auto; line-height: 1.65; }

/* ========================================
   STATS
   ======================================== */
.stats-section { background: var(--dark); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 900;
  color: #818cf8; line-height: 1; margin-bottom: .3rem;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.45); font-weight: 500; }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

.testimonial-card {
  background: var(--bg); border-radius: var(--r-lg); padding: 1.5rem;
  border: 1px solid var(--border); transition: all var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-2); border-color: transparent; }

.testimonial-stars { color: #f59e0b; font-size: .9rem; margin-bottom: .6rem; letter-spacing: .03em; }

.testimonial-text {
  color: var(--text-2); font-size: .875rem; line-height: 1.7; margin-bottom: 1.25rem;
}

.testimonial-author { display: flex; align-items: center; gap: .6rem; }

.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .7rem; flex-shrink: 0;
}

.testimonial-info strong { display: block; font-size: .8rem; }
.testimonial-info span { color: var(--text-3); font-size: .7rem; }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner { background: var(--primary); padding: 3.5rem 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: .6rem; }
.cta-banner p {
  color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 1.5rem;
  max-width: 440px; margin-left: auto; margin-right: auto;
}

/* ========================================
   SERVICES
   ======================================== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

.service-card {
  background: var(--bg); border-radius: var(--r-lg); padding: 1.75rem 1.5rem;
  border: 1px solid var(--border); transition: all var(--ease);
}
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-3); border-color: var(--primary); }

.service-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1rem;
}

.service-card h3 { margin-bottom: .5rem; }
.service-card .service-desc { color: var(--text-2); font-size: .875rem; margin-bottom: .75rem; line-height: 1.6; }

.service-checks { margin-bottom: 1rem; }
.service-checks li {
  padding: .2rem 0; color: var(--text-2); font-size: .8rem;
  display: flex; align-items: center; gap: .4rem;
}
.service-checks li::before { content: "\2713"; color: var(--green); font-weight: 700; font-size: .7rem; }

.service-price {
  font-size: .8rem; color: var(--primary); font-weight: 600;
  padding-top: .6rem; border-top: 1px solid var(--border);
}

/* ========================================
   PRICING
   ======================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; align-items: start; }

.pricing-card {
  background: var(--bg); border-radius: var(--r-xl); padding: 2rem;
  box-shadow: var(--shadow-2); border: 1.5px solid var(--border);
  transition: all var(--ease); position: relative;
}
.pricing-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-4); }

.pricing-card.featured { border-color: var(--primary); transform: scale(1.02); }
.pricing-card.featured:hover { transform: scale(1.02) translateY(-2px); }

.pricing-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; padding: .2rem .9rem;
  border-radius: 50px; font-size: .7rem; font-weight: 600;
}

.pricing-header { text-align: center; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); margin-bottom: 1.25rem; }
.pricing-header h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.pricing-header .level { color: var(--text-3); font-size: .75rem; margin-bottom: .6rem; display: block; }
.pricing-amount { font-size: 2.25rem; font-weight: 900; color: var(--text); letter-spacing: -.03em; }
.pricing-amount .currency { font-size: 1rem; vertical-align: super; }
.pricing-from { font-size: .75rem; color: var(--text-3); }

.pricing-features { margin-bottom: 1.5rem; }
.pricing-features li {
  padding: .35rem 0; display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--text-2);
}
.pricing-features li .check { color: var(--green); font-weight: 700; }
.pricing-features li .cross { color: var(--text-3); }

.pricing-card .btn { width: 100%; text-align: center; }

.comparison-table {
  width: 100%; border-collapse: collapse; margin-top: 3rem;
  background: var(--bg); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2);
}
.comparison-table th, .comparison-table td {
  padding: .75rem 1rem; text-align: center; border-bottom: 1px solid var(--border); font-size: .8rem;
}
.comparison-table thead th { background: var(--dark); color: #fff; font-weight: 600; }
.comparison-table tbody td:first-child { text-align: left; font-weight: 500; }
.comparison-table tbody tr:hover { background: var(--bg-2); }
.table-check { color: var(--green); font-weight: 700; }
.table-cross { color: var(--text-3); }

/* ========================================
   AUDIT FORM (page)
   ======================================== */
.audit-form-wrapper { max-width: 540px; margin: 0 auto; text-align: center; }

.audit-input-group { display: flex; gap: .5rem; margin-top: 1.5rem; }

.audit-input-group input {
  flex: 1; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font); font-size: .9rem; outline: none; transition: border-color var(--ease), box-shadow var(--ease);
}
.audit-input-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.audit-input-group .btn { white-space: nowrap; }

.audit-results { display: none; margin-top: 2.5rem; animation: fadeIn .4s ease; }
.audit-results.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.score-circle { width: 150px; height: 150px; margin: 0 auto 1.5rem; position: relative; }
.score-circle svg { transform: rotate(-90deg); width: 150px; height: 150px; }
.score-circle .bg { fill: none; stroke: var(--border); stroke-width: 10; }
.score-circle .progress { fill: none; stroke-width: 10; stroke-linecap: round; transition: stroke-dashoffset 1.5s ease; }
.score-value {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 2rem; font-weight: 900; color: var(--text);
}
.score-value small { font-size: .85rem; font-weight: 400; color: var(--text-3); }

.module-bars { max-width: 460px; margin: 0 auto; }
.module-bar { margin-bottom: .85rem; }
.module-bar-header { display: flex; justify-content: space-between; margin-bottom: .3rem; font-size: .8rem; font-weight: 500; }
.module-bar-track { height: 7px; background: var(--border); border-radius: 7px; overflow: hidden; }
.module-bar-fill { height: 100%; border-radius: 7px; transition: width 1s ease; width: 0; }
.bar-green { background: var(--green); }
.bar-orange { background: var(--orange); }
.bar-red { background: var(--red); }

.audit-issues { max-width: 540px; margin: 1.5rem auto 0; }
.audit-issue {
  background: var(--bg-2); border-radius: var(--r-sm); padding: .85rem 1rem;
  margin-bottom: .5rem; border-left: 3px solid var(--red);
}
.audit-issue h4 { font-size: .85rem; margin-bottom: .2rem; }
.audit-issue p { color: var(--text-2); font-size: .78rem; }

.audit-loading { display: none; text-align: center; padding: 2rem 0; }
.audit-loading.active { display: block; }

.spinner {
  width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--primary);
  border-radius: 50%; animation: spin .7s linear infinite; margin: 0 auto .6rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========================================
   CONTACT
   ======================================== */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.5rem; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: .8rem; margin-bottom: .3rem; color: var(--text); }
.form-group input, .form-group textarea {
  width: 100%; padding: .65rem .85rem; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font); font-size: .875rem; outline: none; transition: border-color var(--ease), box-shadow var(--ease); background: var(--bg);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,70,229,.08); }
.form-group textarea { min-height: 130px; resize: vertical; }

.contact-info-card { background: var(--bg-2); border-radius: var(--r-lg); padding: 1.75rem; }
.contact-info-item { display: flex; gap: .75rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-info-icon {
  width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.contact-info-item h4 { font-size: .85rem; margin-bottom: .1rem; }
.contact-info-item p { color: var(--text-2); font-size: .8rem; }

/* ========================================
   ABOUT
   ======================================== */
.about-hero { background: var(--darker); padding: 10rem 0 3.5rem; text-align: center; }
.about-hero h1 { color: #fff; margin-bottom: .75rem; }
.about-hero p { color: rgba(255,255,255,.5); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.team-card { text-align: center; padding: 1.5rem; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 700; margin: 0 auto .85rem;
}
.team-card h3 { font-size: 1rem; margin-bottom: .2rem; }
.team-card .role { color: var(--primary); font-size: .75rem; font-weight: 600; margin-bottom: .5rem; display: block; }
.team-card p { color: var(--text-2); font-size: .8rem; line-height: 1.6; }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.value-card {
  text-align: center; padding: 1.5rem 1rem; background: var(--bg);
  border-radius: var(--r-lg); border: 1px solid var(--border); transition: all var(--ease);
}
.value-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: transparent; }
.value-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin: 0 auto .6rem;
}
.value-card h3 { font-size: .9rem; margin-bottom: .35rem; }
.value-card p { color: var(--text-2); font-size: .78rem; line-height: 1.6; }

/* ========================================
   PAGE HERO (inner)
   ======================================== */
.page-hero { background: var(--darker); padding: 10rem 0 3.5rem; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: .6rem; }
.page-hero p { color: rgba(255,255,255,.5); font-size: 1rem; max-width: 480px; margin: 0 auto; }

/* ========================================
   FLASH
   ======================================== */
.flash-success {
  background: #ecfdf5; color: #065f46; padding: .75rem 1rem; border-radius: var(--r-sm);
  margin-bottom: 1rem; border: 1px solid #a7f3d0; font-size: .85rem;
}
.flash-error {
  background: #fef2f2; color: #991b1b; padding: .75rem 1rem; border-radius: var(--r-sm);
  margin-bottom: 1rem; border: 1px solid #fecaca; font-size: .85rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--darker); color: rgba(255,255,255,.5); padding: 3rem 0 1.25rem; }

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

.footer-brand {
  font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: .6rem;
  display: flex; align-items: center; gap: .35rem; letter-spacing: -.03em;
}
.footer-brand .brand-dot { background: var(--primary); }
.footer-desc { font-size: .8rem; line-height: 1.7; max-width: 260px; }

.footer h4 { color: #fff; font-size: .85rem; margin-bottom: .85rem; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: rgba(255,255,255,.4); font-size: .8rem; transition: color var(--ease); }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: #fff; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .problems-grid, .steps-grid, .testimonials-grid, .services-grid, .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-2px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid, .team-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar-nav, .navbar-cta {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); flex-direction: column; padding: 1rem; gap: 0; box-shadow: var(--shadow-3);
  }
  .navbar-nav.active, .navbar-cta.active { display: flex; }
  .navbar-nav a, .navbar.scrolled .navbar-nav a {
    color: var(--text); padding: .6rem 0; display: block; border-bottom: 1px solid var(--border);
  }
  .navbar-cta .btn-login, .navbar.scrolled .navbar-cta .btn-login { color: var(--text); padding: .6rem 0; display: block; }
  .navbar-cta .btn { width: 100%; text-align: center; margin-top: .4rem; }

  .hero { min-height: auto; padding: 7rem 0 3rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero-sub { font-size: .9rem; }
  .hero-audit-form { flex-direction: column; }
  .hero-audit-form .btn { width: 100%; }
  .hero-trust { flex-wrap: wrap; gap: 1rem; }
  .hero-trust-sep { display: none; }

  .problems-grid, .steps-grid, .testimonials-grid, .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .audit-input-group { flex-direction: column; }
  .audit-input-group .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .comparison-table { font-size: .7rem; }
  .comparison-table th, .comparison-table td { padding: .4rem .5rem; }
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
}
