/* =============================================
   INTERVOX — Global Stylesheet
   ============================================= */

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

:root {
  --green: #1E4530;
  --amber: #C4873A;
  --bg: #F7F5F0;
  --text: #1A1A1A;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --border: #e0ddd8;
  --green-light: #2a5c40;
  --amber-hover: #b3762f;
  --shadow: 0 4px 24px rgba(30,69,48,0.08);
  --shadow-lg: 0 8px 40px rgba(30,69,48,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.22s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { line-height: 1.7; }

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

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

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(247,245,240,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800; color: var(--green);
  letter-spacing: -0.03em;
}
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-light); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-cta {
  background: var(--amber); color: var(--white);
  padding: 10px 24px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--amber-hover); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: 1rem;
  transition: all var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--amber); color: var(--white); }
.btn-primary:hover { background: var(--amber-hover); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(196,135,58,0.35); }
.btn-secondary { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-secondary:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-outline-amber { background: transparent; color: var(--amber); border: 2px solid var(--amber); }
.btn-outline-amber:hover { background: var(--amber); color: var(--white); }

/* ── Section labels ── */
.section-label {
  display: inline-block;
  background: rgba(30,69,48,0.08);
  color: var(--green);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 16px;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #f0ede6 0%, #e8f0eb 50%, #f7f5f0 100%);
  padding: 120px 0 96px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,69,48,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { color: var(--green); margin-bottom: 24px; }
.hero-content h1 span { color: var(--amber); }
.hero-content p { font-size: 1.15rem; color: var(--text-light); margin-bottom: 40px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.phone-mockup {
  width: 260px; height: 520px;
  background: var(--green);
  border-radius: 36px;
  box-shadow: 0 32px 80px rgba(30,69,48,0.3);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-screen {
  flex: 1; margin: 12px;
  background: linear-gradient(160deg, #2a5c40, #1E4530);
  border-radius: 28px; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  padding: 24px;
}
.phone-logo { font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.phone-logo span { color: var(--amber); }
.phone-wave {
  display: flex; gap: 4px; align-items: flex-end; height: 48px;
}
.phone-wave .bar {
  width: 6px; background: var(--amber);
  border-radius: 4px; opacity: 0.8;
  animation: wave 1.2s ease-in-out infinite alternate;
}
.phone-wave .bar:nth-child(2) { animation-delay: 0.1s; }
.phone-wave .bar:nth-child(3) { animation-delay: 0.2s; }
.phone-wave .bar:nth-child(4) { animation-delay: 0.3s; }
.phone-wave .bar:nth-child(5) { animation-delay: 0.2s; }
.phone-wave .bar:nth-child(6) { animation-delay: 0.1s; }
@keyframes wave {
  from { height: 12px; } to { height: 44px; }
}
.phone-text { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-align: center; }
.phone-badge {
  position: absolute; top: 24px; right: -16px;
  background: var(--white); border-radius: 12px;
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  font-size: 0.8rem; font-weight: 600; color: var(--green);
  white-space: nowrap;
}
.phone-badge2 {
  position: absolute; bottom: 48px; left: -24px;
  background: var(--amber); border-radius: 12px;
  padding: 10px 14px; box-shadow: var(--shadow-lg);
  font-size: 0.78rem; font-weight: 600; color: var(--white);
  white-space: nowrap;
}

/* ── Problem Section ── */
.problem { background: var(--white); }
.problem h2 { text-align: center; margin-bottom: 16px; }
.problem .subtitle { text-align: center; color: var(--text-light); margin-bottom: 56px; font-size: 1.05rem; }
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.problem-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.problem-icon {
  width: 56px; height: 56px;
  background: rgba(30,69,48,0.08);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.problem-icon svg { width: 28px; height: 28px; color: var(--green); }
.problem-card .stat { font-size: 2rem; font-weight: 800; color: var(--amber); margin-bottom: 4px; }
.problem-card h3 { margin-bottom: 12px; color: var(--green); }
.problem-card p { color: var(--text-light); font-size: 0.95rem; }

/* ── Solution Section ── */
.solution { background: var(--bg); }
.solution .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.solution-text h2 { margin-bottom: 20px; }
.solution-text p { color: var(--text-light); margin-bottom: 36px; font-size: 1.05rem; }
.feature-pills { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.pill {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.pill-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(196,135,58,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.pill-icon svg { width: 20px; height: 20px; color: var(--amber); }
.pill h4 { font-size: 0.95rem; margin-bottom: 2px; }
.pill p { font-size: 0.85rem; color: var(--text-light); }
.solution-visual {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
}
.solution-visual h3 { margin-bottom: 24px; opacity: 0.9; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.infra-stack { display: flex; flex-direction: column; gap: 12px; }
.infra-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem;
}
.infra-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }

/* ── How It Works ── */
.how { background: var(--white); }
.how h2 { text-align: center; margin-bottom: 16px; }
.how .subtitle { text-align: center; color: var(--text-light); margin-bottom: 56px; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1px solid var(--border);
  position: relative;
  transition: box-shadow var(--transition);
}
.step:hover { box-shadow: var(--shadow); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-size: 0.85rem; font-weight: 700; margin-bottom: 16px;
}
.step h3 { color: var(--green); margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-light); }
.how-note {
  text-align: center; margin-top: 40px;
  padding: 16px 24px;
  background: rgba(30,69,48,0.05);
  border-radius: var(--radius); border: 1px solid rgba(30,69,48,0.12);
  font-size: 0.9rem; color: var(--green); font-weight: 500;
}

/* ── Who It's For ── */
.for-who { background: var(--bg); }
.for-who h2 { text-align: center; margin-bottom: 56px; }
.industries { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.industry-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 24px; text-align: center; border: 1px solid var(--border);
  transition: all var(--transition);
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.industry-icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  background: rgba(30,69,48,0.06); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
}
.industry-icon svg { width: 36px; height: 36px; color: var(--green); }
.industry-card h3 { margin-bottom: 10px; color: var(--green); }
.industry-card p { font-size: 0.88rem; color: var(--text-light); }

/* ── Trust ── */
.trust { background: var(--green); color: var(--white); }
.trust h2 { text-align: center; margin-bottom: 16px; }
.trust .subtitle { text-align: center; opacity: 0.75; margin-bottom: 56px; font-size: 1.05rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.trust-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  transition: background var(--transition);
}
.trust-item:hover { background: rgba(255,255,255,0.12); }
.trust-item svg { width: 40px; height: 40px; color: var(--amber); margin-bottom: 16px; }
.trust-item h3 { margin-bottom: 10px; }
.trust-item p { font-size: 0.9rem; opacity: 0.75; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--amber), #b3762f);
  padding: 80px 0; text-align: center; color: var(--white);
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { font-size: 1.1rem; opacity: 0.88; margin-bottom: 36px; }
.cta-banner .btn-white {
  background: var(--white); color: var(--amber); font-weight: 700;
}
.cta-banner .btn-white:hover { background: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* ── Footer ── */
footer {
  background: #0f2418; color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em; margin-bottom: 12px; }
.footer-brand .logo span { color: var(--amber); }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; max-width: 260px; }
.footer-contact a { display: block; font-size: 0.88rem; color: var(--amber); margin-top: 4px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.9rem; margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--amber); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green), #2a5c40);
  padding: 80px 0; color: var(--white); text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; opacity: 0.85; max-width: 560px; margin: 0 auto; }

/* ── Pricing ── */
.pricing-table { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 2px solid var(--border); padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.pricing-card.featured { border-color: var(--green); position: relative; }
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 5px 16px; border-radius: 100px;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-icon { font-size: 2rem; margin-bottom: 16px; }
.plan-name { font-size: 1.3rem; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.plan-price { font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.plan-price small { font-size: 1rem; font-weight: 500; color: var(--text-light); }
.plan-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.plan-features { flex: 1; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.plan-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem;
}
.plan-feature .check { color: var(--green); font-weight: 700; }
.plan-feature .cross { color: #ccc; }

/* ── Comparison table ── */
.comparison-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.comparison-table th { background: var(--green); color: var(--white); font-weight: 600; }
.comparison-table th:first-child { border-radius: var(--radius) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.comparison-table tr:nth-child(even) td { background: rgba(30,69,48,0.03); }
.comparison-table td:first-child { font-weight: 500; }
.check-yes { color: var(--green); font-weight: 700; }
.check-no { color: #ccc; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; color: var(--text); cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--green); }
.faq-q svg { flex-shrink: 0; transition: transform var(--transition); color: var(--amber); }
.faq-q.open svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-a.open { max-height: 300px; padding-bottom: 24px; }
.faq-a p { color: var(--text-light); line-height: 1.7; }

/* ── About ── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 32px 24px; text-align: center;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #2a5c40);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem; font-weight: 800; color: var(--white);
}
.team-card h3 { margin-bottom: 4px; }
.team-card .title { font-size: 0.85rem; color: var(--amber); font-weight: 600; margin-bottom: 8px; }
.team-card .cred { font-size: 0.82rem; color: var(--text-light); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.value-card {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; border: 1px solid var(--border);
}
.value-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(196,135,58,0.1); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 32px; height: 32px; color: var(--amber); }
.value-card h3 { margin-bottom: 10px; color: var(--green); font-size: 1rem; }
.value-card p { font-size: 0.85rem; color: var(--text-light); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 36px; font-size: 1.05rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(30,69,48,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--green); }
.contact-detail h4 { font-size: 0.85rem; color: var(--text-light); margin-bottom: 2px; }
.contact-detail a, .contact-detail p { font-size: 0.95rem; font-weight: 500; color: var(--green); }
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 36px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text);
  background: var(--bg); transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; padding: 16px; background: rgba(30,69,48,0.08);
  border-radius: 8px; color: var(--green); font-weight: 500;
  text-align: center; margin-top: 16px;
}

/* ── Privacy ── */
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-section { margin-bottom: 48px; }
.privacy-section h2 { font-size: 1.4rem; margin-bottom: 16px; color: var(--green); }
.privacy-section p, .privacy-section li { color: var(--text-light); margin-bottom: 12px; font-size: 0.97rem; }
.privacy-section ul { padding-left: 24px; }
.privacy-section li { margin-bottom: 8px; }
.privacy-highlight {
  background: rgba(30,69,48,0.05);
  border-left: 4px solid var(--green);
  padding: 16px 20px; border-radius: 0 8px 8px 0;
  margin: 20px 0;
}
.privacy-highlight p { color: var(--green); font-weight: 500; margin: 0; }

/* ── Cookie Consent ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0f2418; color: rgba(255,255,255,0.88);
  padding: 20px 32px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%); transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 0.9rem; flex: 1; min-width: 240px; }
#cookie-banner a { color: var(--amber); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept, .cookie-decline {
  padding: 10px 24px; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem; cursor: pointer; border: none;
}
.cookie-accept { background: var(--amber); color: var(--white); }
.cookie-decline { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.cookie-accept:hover { background: var(--amber-hover); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .industries { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }
  .hero .container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-content p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .cards-3 { grid-template-columns: 1fr; }
  .solution .container { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .pricing-table { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: block; position: fixed; inset: 0; z-index: 999;
    background: var(--bg); padding: 96px 32px 32px;
    transform: translateX(100%); transition: transform var(--transition);
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { display: block; font-size: 1.2rem; font-weight: 600; padding: 16px 0; border-bottom: 1px solid var(--border); color: var(--text); }
  .mobile-menu .nav-cta { display: inline-flex; margin-top: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .industries { grid-template-columns: 1fr 1fr; }
}

/* ── Utilities ── */
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }
.text-light { color: var(--text-light); }
.text-green { color: var(--green); }
.text-amber { color: var(--amber); }
