*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #1A56DB;
  --orange-dark: #1447C5;
  --orange-light: #EBF5FF;
  --text-dark: #1a1a1a;
  --text-body: #444;
  --text-muted: #666;
  --border: #e8e8e8;
  --bg: #fff;
  --bg-light: #f9f9f9;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: #fff;
  font-size: 15px;
  line-height: 1.65;
}

/* ── TOP NAV ── */
.top-nav {
  background: #1a1a2e;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.footer-logo img { width: 250px; }

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon {
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon img { width: 160px; }

.top-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.top-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.top-links a:hover { color: white; }

.nav-cta {
  background: var(--orange);
  color: white !important;
  font-weight: 600;
  border-radius: 4px;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--orange-dark); color: white !important; }

/* ── HERO ── */
.hero {
  background: #fff;
  text-align: center;
  padding: 72px 40px 40px;
  position: relative;
  overflow: hidden;
}
.hero-tag {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.hero p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  position: relative;
  z-index: 2;
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); }

.hero-video-wrap {
  max-width: 780px;
  margin: 48px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}

/* ── HERO FLOATING ICONS ── */
.floating-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.floating-icon svg { width: 32px; height: 32px; }

/* LEFT gutter */
.fi-1  { top: 8%;   left: 1%;  animation: float1 3.8s ease-in-out infinite alternate; }
.fi-2  { top: 30%;  left: 3%;  animation: float2 4.4s ease-in-out infinite alternate; animation-delay: 0.5s; }
.fi-3  { top: 53%;  left: 1%;  animation: float1 3.5s ease-in-out infinite alternate; animation-delay: 1.0s; }
.fi-4  { top: 76%;  left: 2%;  animation: float2 4.0s ease-in-out infinite alternate; animation-delay: 0.3s; }
.fi-5  { top: 20%;  left: 8%;  animation: float1 4.2s ease-in-out infinite alternate; animation-delay: 1.3s; }

/* RIGHT gutter */
.fi-6  { top: 8%;   right: 1%;  animation: float2 3.9s ease-in-out infinite alternate; animation-delay: 0.2s; }
.fi-7  { top: 30%;  right: 3%;  animation: float1 4.5s ease-in-out infinite alternate; animation-delay: 0.7s; }
.fi-8  { top: 53%;  right: 1%;  animation: float2 3.6s ease-in-out infinite alternate; animation-delay: 1.1s; }
.fi-9  { top: 76%;  right: 2%;  animation: float1 4.1s ease-in-out infinite alternate; animation-delay: 0.4s; }
.fi-10 { top: 20%;  right: 8%;  animation: float2 3.7s ease-in-out infinite alternate; animation-delay: 1.4s; }

@keyframes float1 {
  from { transform: translateY(0px) rotate(-3deg); }
  to   { transform: translateY(-12px) rotate(3deg); }
}
@keyframes float2 {
  from { transform: translateY(0px) rotate(2deg); }
  to   { transform: translateY(-10px) rotate(-4deg); }
}

/* ── STICKY SECTION NAV ── */
.section-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 52px;
  z-index: 900;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.section-nav a {
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.section-nav a:hover { color: var(--orange); }
.section-nav a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  background: var(--orange-light);
  font-weight: 600;
}

/* ── SECTIONS ── */
section { scroll-margin-top: 110px; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.cta-visual img { width: 100%; }

/* ── WHAT IS ── */
#what {
  padding: 90px 0 80px;
  background: #fff;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

h2.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}
.section-body { color: var(--text-body); font-size: 15px; line-height: 1.75; }
.section-body p + p { margin-top: 16px; }
.section-body strong { color: var(--text-dark); }

.crm-visual img {
  height: 400px;
  background-size: cover;
  width: 100%;
  object-fit: cover;
}
.crm-visual {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 340px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.crm-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(249,115,22,0.06);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

/* ── WHY CHOOSE ── */
#why {
  padding: 90px 0;
  background: #fafafa;
}
#why .section-intro {
  text-align: center;
  margin-bottom: 60px;
}
#why .section-intro h2 { font-size: 32px; }
#why .section-intro p { color: var(--text-muted); max-width: 600px; margin: 12px auto 0; }

.why-feature {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-feature:last-child { margin-bottom: 0; }

/* FIX: flip layout — visual stays on right */
.why-feature.flip .feature-visual { order: 2; }

.why-feature img {
  height: 400px;
  width: 100%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.feature-text h3 {
  font-size: 30px;        /* FIX: was 36px with line-height 35px — broken */
  line-height: 1.25;      /* FIX: was hardcoded 35px */
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.feature-text p { color: var(--text-body); line-height: 1.75; font-size: 15px; }

.feature-visual img { height: 400px; width: 100%; object-fit: cover; }
.feature-visual {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── WHO CAN BENEFIT ── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.benefit-card {
  text-align: center;
  padding: 28px 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.benefit-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); transform: translateY(-3px); }
.benefit-icon { font-size: 36px; margin-bottom: 14px; }
.benefit-card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.benefit-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--orange);
  border-radius: 16px;
  padding: 56px 60px;
  text-align: center;
  margin: 80px 0;
}
.cta-banner h2 { font-size: 26px; font-weight: 800; color: white; margin-bottom: 14px; line-height: 1.3; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 15px; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.btn-white {
  display: inline-block;
  background: white;
  color: var(--orange);
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 15px;
  transition: transform .15s, box-shadow .15s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* ── KEY FEATURES ── */
#features {
  padding: 90px 0;
  background: #fff;
}
.features-intro { text-align: center; margin-bottom: 16px; }
.features-intro h2 { font-size: 32px; }
.features-intro p { color: var(--text-muted); max-width: 640px; margin: 14px auto 40px; font-size: 15px; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 30px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.09); transform: translateY(-2px); }
.feature-star { color: var(--orange); font-size: 22px; margin-bottom: 16px; display: block; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── INTEGRATIONS ── */
#integrations {
  padding: 80px 0;
  background: #fafafa;
}
#integrations h2 { font-size: 28px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
#integrations > .container > p { color: var(--text-muted); margin-bottom: 36px; font-size: 15px; max-width: 620px; }

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.integration-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: box-shadow .2s;
}
.integration-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.int-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.int-name { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.int-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.explore-all {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.explore-all:hover { text-decoration: underline; }

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 80px 0;
  background: #fff;
}
.testimonials-wrap { text-align: center; margin-bottom: 48px; }
.testimonials-wrap h2 { font-size: 28px; font-weight: 800; color: var(--text-dark); }

.testimonial-card {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;             /* FIX: was 60px — too much on tablet */
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.test-img {
  background: linear-gradient(135deg, #c8d8e8, #a8b8d8);
  border-radius: 10px;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.test-img img { width: 100%; height: 100%; object-fit: cover; }

blockquote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 18px;
  border: none;
  padding: 0;
}
blockquote::before { content: '\201C'; font-size: 40px; color: var(--orange); line-height: 0; vertical-align: -20px; margin-right: 4px; }
.test-author { font-weight: 700; color: var(--text-dark); font-size: 14px; }
.test-role { color: var(--text-muted); font-size: 13px; }
.test-link { color: var(--orange); font-weight: 600; font-size: 13px; text-decoration: none; margin-top: 14px; display: inline-block; }
.test-link:hover { text-decoration: underline; }

.test-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background .2s; }
.dot.active { background: var(--orange); }

/* ── FAQ ── */
#faq {
  padding: 80px 0;
  background: #fafafa;
}
#faq h2 { font-size: 28px; font-weight: 800; text-align: center; color: var(--text-dark); margin-bottom: 40px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  background: white;
  margin-bottom: 2px;
}
.faq-item:first-of-type { border-radius: 8px 8px 0 0; }
.faq-item:last-of-type { border-radius: 0 0 8px 8px; }

.faq-q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .2s;
  user-select: none;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; } /* FIX: was 200px — long answers get cut off */

/* ── CTA BOTTOM ── */
.cta-bottom {
  padding: 90px 0;
  background: white;
}
.cta-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-bottom h2 { font-size: 30px; font-weight: 800; color: var(--text-dark); line-height: 1.3; margin-bottom: 18px; }
.cta-bottom p { color: var(--text-muted); margin-bottom: 10px; line-height: 1.75; }
.cta-visual {
  background: linear-gradient(135deg, #f0f4ff, #e8efff);
  border-radius: 16px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ── FOOTER ── */
footer {
  background: #1a1a2e;
  color: #aaa;
  padding: 60px 40px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 3fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaa; text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: white; }

.footer-socials { display: flex; gap: 12px; margin-top: 6px; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: background .2s;
}
.social-btn:hover { background: var(--orange); }

.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer-bottom a { color: #aaa; text-decoration: none; }
.footer-odoo-note { color: #666; }
.footer-odoo-note a { color: var(--orange); }

/* ── LEAD CAPTURE FORM SECTION ── */
#contact-form {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #1a1a2e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#contact-form::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,86,219,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
#contact-form::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  border-radius: 50%;
  pointer-events: none;
}

.form-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.form-pitch { color: white; }
.form-pitch-tag {
  display: inline-block;
  background: rgba(26,86,219,0.35);
  border: 1px solid rgba(26,86,219,0.5);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.form-pitch h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: white;
}
.form-pitch h2 span { color: #60a5fa; }
.form-pitch p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 36px;
}

.social-proof-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.social-proof-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.sp-check {
  width: 22px; height: 22px;
  background: rgba(16,185,129,0.2);
  border: 1.5px solid #10b981;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: #10b981;
  flex-shrink: 0;
}

.form-card {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.form-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-card-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.form-group label .req { color: #ef4444; }

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group input.error,
.form-group select.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.form-group input::placeholder { color: #b0b0b0; }

.btn-form-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background .2s, transform .15s, box-shadow .2s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,86,219,0.3); }
.btn-form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.form-trust {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-trust::before { content: '🔒'; font-size: 13px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(16,185,129,0.35);
}
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Scroll fade in */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── NAV BURGER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
}

/* ======================================================
   RESPONSIVE BREAKPOINTS
   ====================================================== */

/* ── TABLET (≤900px) ── */
@media (max-width: 900px) {
  /* Layout switches */
  .two-col,
  .cta-bottom-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Why feature — all stack, no order tricks needed */
  .why-feature {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }
  .why-feature.flip .feature-visual { order: 0; } /* reset — images always on top when stacked */
  .why-feature img { height: 280px; }
  .feature-visual img { height: 280px; }
  .feature-visual { min-height: 200px; }

  /* Feature text */
  .feature-text h3 { font-size: 24px; }

  /* Testimonial */
  .testimonial-card { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
  .test-img { height: 200px; }

  /* Benefit grid */
  .benefit-grid { grid-template-columns: 1fr 1fr; }

  /* Integrations */
  .integrations-grid { grid-template-columns: 1fr 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-logo img { width: 180px; }

  /* Hero */
  .hero h1 { font-size: 32px; }
  .hero { padding: 56px 30px 32px; }

  /* CTA banner */
  .cta-banner { padding: 40px 36px; }

  /* Form */
  .form-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-pitch h2 { font-size: 26px; }

  /* Section nav */
  .section-nav { padding: 0 16px; overflow-x: auto; justify-content: flex-start; }
  .section-nav a { padding: 14px 14px; font-size: 13px; }

  /* crm visual */
  .crm-visual img { height: 280px; }
}

/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .top-links {
    display: none;
    position: absolute;
    top: 52px;
    left: 0; right: 0;
    background: #1a1a2e;
    flex-direction: column;
    padding: 10px 0 16px;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .top-links.open { display: flex; }
  .top-links li { width: 100%; }
  .top-links a { padding: 10px 20px !important; border-radius: 0; font-size: 14px !important; }
  .top-nav { position: fixed; padding: 8px 16px; flex-wrap: nowrap; }
  body { padding-top: 52px; }
  .section-nav { top: 52px; }

  /* Floating icons — hide to avoid cluttering small screens */
  .floating-icon { display: none; }

  .hero h1 { font-size: 26px; }
  .hero { padding: 40px 20px 28px; }

  .container { padding: 0 20px; }

  #what { padding: 56px 0; }
  #why { padding: 56px 0; }
  #integrations { padding: 56px 0; }
  #faq { padding: 56px 0; }

  .faq-q { font-size: 14px; padding: 16px 18px; }
  .faq-a { padding: 0 18px; }
  .faq-item.open .faq-a { padding: 0 18px 16px; }
}

/* ── SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
  .top-nav { padding: 8px 14px; }

  .hero { padding: 32px 16px 24px; }
  .hero h1 { font-size: 22px; }
  .hero p { font-size: 14px; }
  .hero-video-wrap { margin-top: 28px; border-radius: 8px; }

  .section-nav a { padding: 12px 10px; font-size: 11px; }

  .container { padding: 0 16px; }

  #what { padding: 40px 0; }
  #why { padding: 40px 0; }
  #integrations { padding: 40px 0; }
  #testimonials { padding: 48px 0; }
  #faq { padding: 40px 0; }
  .cta-bottom { padding: 40px 0; }

  /* Why feature */
  .why-feature { gap: 20px; margin-bottom: 40px; }
  .why-feature img { height: 220px; }
  .feature-visual img { height: 220px; }
  .feature-text h3 { font-size: 20px; }
  .feature-text p { font-size: 14px; }

  /* CRM visual */
  .crm-visual { min-height: 220px; }
  .crm-visual img { height: 220px; }

  /* Section title */
  h2.section-title { font-size: 22px; }
  #why .section-intro h2 { font-size: 22px; }

  /* Benefit grid — single column */
  .benefit-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }

  /* CTA banner */
  .cta-banner { padding: 28px 20px; margin: 36px 0; border-radius: 10px; }
  .cta-banner h2 { font-size: 18px; }
  .cta-banner p { font-size: 13px; margin-bottom: 20px; }

  /* CTA bottom */
  .cta-bottom h2 { font-size: 20px; }
  .cta-visual { height: 200px; }

  /* Integrations — single column */
  .integrations-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 20px 18px; }
  .features-intro h2 { font-size: 22px; }

  /* Testimonial */
  .testimonial-card { padding: 20px 16px; gap: 16px; }
  .test-img { height: 140px; }
  blockquote { font-size: 14px; }

  /* FAQ */
  #faq h2 { font-size: 22px; }
  .faq-q { font-size: 13px; padding: 14px 16px; }

  /* Form */
  #contact-form { padding: 40px 0; }
  .form-card { padding: 24px 16px; border-radius: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .form-pitch h2 { font-size: 20px; }
  .form-card-title { font-size: 17px; }
  .btn-form-submit { font-size: 14px; }

  /* Footer */
  footer { padding: 40px 16px 20px; }
  .footer-grid { gap: 20px; }
  .footer-logo img { width: 140px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-odoo-note { display: none; } /* hide on very small screens */
}
