:root {
  --teal: #0eb8a4;
  --teal-dark: #09907f;
  --teal-light: #e0f7f5;
  --orange: #f97316;
  --navy: #0f1f38;
  --navy-mid: #1a3352;
  --slate: #3d556e;
  --muted: #7a93aa;
  --bg: #f8fbfc;
  --white: #ffffff;
  --border: #dde8ef;
  --shadow: 0 4px 24px rgba(15,31,56,0.09);
  --shadow-lg: 0 16px 60px rgba(15,31,56,0.15);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--navy); overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; }
 
/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; display: flex; align-items: center; justify-content: space-between; padding: 0 6vw; height: 68px; background: rgba(248,251,252,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(221,232,239,0.7); transition: box-shadow .3s; }
nav.scrolled { box-shadow: var(--shadow); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo span { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--navy); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--slate); font-size: .92rem; font-weight: 500; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.nav-contact-btn { background: transparent; color: var(--slate); border: 1.5px solid var(--border); border-radius: 10px; padding: .45rem 1rem; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .85rem; cursor: pointer; transition: all .2s; }
.nav-contact-btn:hover { border-color: var(--teal); color: var(--teal); }
.nav-cta { background: var(--teal); color: #fff; border: none; border-radius: 10px; padding: .55rem 1.4rem; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .9rem; cursor: pointer; transition: background .2s, transform .1s; }
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }
 
/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 6vw 80px; position: relative; overflow: hidden; background: linear-gradient(135deg, #f0faf9 0%, #f8fbfc 55%, #fff4ed 100%); }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(14,184,164,.12) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 70%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5vw; align-items: center; max-width: 1280px; margin: 0 auto; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--teal-light); color: var(--teal-dark); border-radius: 100px; padding: .35rem 1rem .35rem .5rem; font-size: .82rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-badge span.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero h1 {  font-size: 37px; font-weight: 800; line-height: 1.1; color: var(--navy); margin-bottom: 1.3rem; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero p.sub { font-size: 1.1rem; color: var(--slate); line-height: 1.65; max-width: 520px; margin-bottom: .8rem; }
.hero-trial-note { display: inline-flex; align-items: center; gap: .5rem; background: var(--teal-light); color: var(--teal-dark); border-radius: 8px; padding: .5rem 1rem; font-size: .88rem; font-weight: 600; margin-bottom: 1.8rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--teal); color: #fff; border: none; border-radius: 12px; padding: .85rem 2rem; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all .2s; box-shadow: 0 4px 20px rgba(14,184,164,.35); text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(14,184,164,.4); }
.btn-secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--border); border-radius: 12px; padding: .85rem 2rem; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }
.hero-trust { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; font-size: .85rem; color: var(--muted); }
.hero-trust span { display: flex; align-items: center; gap: .35rem; }
.hero-trust svg { width: 16px; height: 16px; fill: var(--teal); }
 
/* Hero Video Mockup */
.hero-visual { position: relative; }
.hero-video-mockup { background: var(--navy); border-radius: 20px; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(14,184,164,.12); overflow: hidden; transform: perspective(1200px) rotateY(-6deg) rotateX(3deg); transition: transform .5s ease; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:perspective(1200px) rotateY(-6deg) rotateX(3deg) translateY(0)} 50%{transform:perspective(1200px) rotateY(-6deg) rotateX(3deg) translateY(-12px)} }
.hero-video-mockup:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); animation: none; }
.hero-video-bar { background: var(--navy); padding: .65rem 1rem; display: flex; align-items: center; gap: .5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero-video-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-video-bar .dot:nth-child(1){background:#ff5f56} .hero-video-bar .dot:nth-child(2){background:#ffbe2e} .hero-video-bar .dot:nth-child(3){background:#27c93f}
.hero-video-bar .url { background: rgba(255,255,255,.12); border-radius: 6px; flex:1; height: 22px; margin-left: .5rem; display: flex; align-items: center; padding: 0 .7rem; font-size: .7rem; color: rgba(255,255,255,.5); }
.hero-video-mockup iframe { display: block; width: 100%; border: none; aspect-ratio: 812 / 374; }
.floating-badge { position: absolute; top: -80px; right: -16px; background: #fff; border-radius: 14px; padding: .8rem 1rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .6rem; font-size: .82rem; font-weight: 600; color: var(--navy); animation: float2 5s ease-in-out infinite; }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.floating-badge .icon { width: 32px; height: 32px; background: var(--teal-light); border-radius: 8px; display:grid; place-items:center; font-size: 1rem; }
.floating-badge2 { position: absolute; bottom: 24px; left: -28px; background: #fff; border-radius: 14px; padding: .7rem 1rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 600; color: var(--navy); animation: float3 7s ease-in-out infinite; }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.floating-badge2 .green-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }
 
/* SECTION COMMON */
section { padding: 100px 6vw; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label { font-size: 23px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: .7rem; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--slate); line-height: 1.65; max-width: 560px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
 
/* TRUST STRIP */
.trust-strip { padding: 30px 6vw; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-label { font-size: .82rem; color: var(--muted); font-weight: 500; white-space: nowrap; margin-right: 1rem; }
.trust-logos { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; }
.trust-logo { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: #bcc8d4; letter-spacing: .04em; }
 
/* PROBLEM */
#problem { background: var(--white); }
.problem-grid { 
  display: grid; 
  grid-template-columns: 1fr; /* Mobile default */
  gap: 1.5rem; 
  margin-top: 3rem; 
}
 
/* Tablet */
@media (min-width: 768px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}
 
/* Desktop */
@media (min-width: 1024px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
}
 
.problem-card { 
  background: #ffffff; 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  padding: 1.5rem; 
  transition: transform .2s, box-shadow .2s; 
  box-shadow: 0 4px 12px rgba(15,31,56,0.02);
}
.problem-card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow); 
}
.problem-icon { 
  font-size: 1.8rem; 
  margin-bottom: 1rem; 
  /* Subtle highlight instead of bright red */
  text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.problem-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.problem-card p { font-size: .88rem; color: var(--slate); line-height: 1.6; }
 
/* SOLUTION */
#solution { background: var(--bg); }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; align-items: start; margin-top: 3rem; }
.solution-list { display: flex; flex-direction: column; gap: 1.2rem; }
.solution-item { display: flex; gap: 1rem; }
.solution-item .icon-box { width: 46px; height: 46px; background: var(--teal-light); border-radius: 12px; display:grid; place-items:center; flex-shrink:0; font-size: 1.2rem; }
.solution-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.solution-item p { font-size: .87rem; color: var(--slate); line-height: 1.6; }
.solution-visual { border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--border); position: relative; }
.solution-visual img { display: block; width: 100%; height: auto; object-fit: cover; }
.solution-visual-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(15,31,56,.85) 0%, transparent 100%); padding: 1.5rem 1.2rem .9rem; display: flex; align-items: center; justify-content: space-between; }
.solution-visual-caption span { color: #fff; font-size: .82rem; font-weight: 600; background: rgba(14,184,164,.3); border: 1px solid rgba(14,184,164,.5); border-radius: 100px; padding: .25rem .75rem; }
.solution-website-note { 
  margin-top: 3rem; 
  width: 100%; 
  background: #fff; 
  border-radius: 14px; 
  padding: 1.5rem; 
  border: 1.5px solid var(--border); 
  display: flex; 
  gap: 1rem; 
  align-items: flex-start; 
}
.solution-website-note .swn-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.solution-website-note h5 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.solution-website-note p { font-size: .83rem; color: var(--slate); line-height: 1.55; }
 
/* FEATURES */
#features { background: var(--white); }
.features-tabs { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.ftab { padding: .55rem 1.3rem; border-radius: 100px; font-size: .88rem; font-weight: 600; border: 1.5px solid var(--border); background: #fff; color: var(--slate); cursor: pointer; transition: all .2s; }
.ftab.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.ftab:hover:not(.active) { border-color: var(--teal); color: var(--teal); }
.features-grid { 
  display: grid; 
  grid-template-columns: 1fr; /* Mobile default */
  gap: 1.4rem; 
}
@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}
.feat-card { background: var(--bg); border-radius: 18px; padding: 1.6rem; border: 1.5px solid var(--border); transition: transform .2s, box-shadow .2s, border-color .2s; }
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(14,184,164,.3); }
.feat-card .icon { font-size: 1.8rem; margin-bottom: 1rem; }
.feat-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.feat-card p { font-size: .87rem; color: var(--slate); line-height: 1.6; }
 
/* HOW IT WORKS */
#how { background: linear-gradient(135deg, #0f1f38 0%, #1a3352 100%); }
#how .section-title { color: #fff; }
#how .section-label { color: var(--teal); }
#how .section-sub { color: rgba(255,255,255,.6); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 38px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: .3; }
.step-card { text-align: center; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; display: grid; place-items: center; margin: 0 auto 1.2rem; box-shadow: 0 6px 24px rgba(14,184,164,.4); }
.step-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .6rem; }
.step-card p { font-size: .87rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.step-pill-list { display: flex; flex-direction: column; gap: .35rem; margin-top: .7rem; }
.step-pill { background: rgba(14,184,164,.15); color: var(--teal); border-radius: 100px; padding: .28rem .8rem; font-size: .75rem; font-weight: 600; display: inline-block; }
 
/* VIDEO SECTION */
#video { background: var(--bg); }
.video-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); max-width: 900px; margin: 3rem auto 0; border: 1px solid var(--border); }
.video-wrapper iframe { display: block; width: 100%; aspect-ratio: 812 / 374; border: none; }
.demo-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.btn-demo-live { background: var(--orange); color: #fff; border: none; border-radius: 12px; padding: .8rem 1.8rem; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .95rem; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; box-shadow: 0 4px 20px rgba(249,115,22,.3); }
.btn-demo-live:hover { background: #e8620a; transform: translateY(-2px); }
.btn-demo-access { background: transparent; color: var(--navy); border: 1.5px solid var(--border); border-radius: 12px; padding: .8rem 1.8rem; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .95rem; cursor: pointer; transition: all .2s; }
.btn-demo-access:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
 
/* AUTOMATION */
#automation { background: var(--white); }
.auto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; margin-top: 3rem; }
.auto-list { display: flex; flex-direction: column; gap: 1.5rem; }
.auto-item { display: flex; align-items: flex-start; gap: 1rem; }
.auto-item .check { width: 28px; height: 28px; border-radius: 50%; background: var(--teal); display:grid; place-items:center; flex-shrink:0; margin-top: 2px; }
.auto-item .check svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2.5; }
.auto-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.auto-item p { font-size: .87rem; color: var(--slate); line-height: 1.6; }
.auto-visual { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); border-radius: 24px; padding: 2rem; box-shadow: 0 20px 60px rgba(14,184,164,.3); }
.auto-visual h3 { color: #fff; font-size: 1.3rem; margin-bottom: 1.5rem; font-weight: 700; }
.flow-step { background: rgba(255,255,255,.15); border-radius: 12px; padding: .9rem 1rem; margin-bottom: .7rem; display: flex; align-items: center; gap: .8rem; color: #fff; }
.flow-step .fs-icon { font-size: 1.1rem; }
.flow-step .fs-text { font-size: .88rem; font-weight: 500; }
.flow-step .fs-badge { margin-left: auto; background: rgba(255,255,255,.2); font-size: .7rem; font-weight: 700; padding: .2rem .55rem; border-radius: 100px; color: rgba(255,255,255,.9); }
.flow-arrow { text-align: center; color: rgba(255,255,255,.4); font-size: .9rem; margin: .3rem 0; }
 
/* STATS */
#stats { background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.stat-card { background: #fff; border-radius: 18px; padding: 1.8rem 1.5rem; border: 1.5px solid var(--border); text-align: center; transition: transform .2s, box-shadow .2s; }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-card .icon { font-size: 2rem; margin-bottom: .8rem; }
.stat-card .number { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--teal); }
.stat-card .desc { font-size: .88rem; color: var(--slate); margin-top: .4rem; }
.analytics-screenshot { margin-top: 3rem; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.analytics-screenshot img { display: block; width: 100%; height: auto; }
.analytics-screenshot-caption { background: #fff; padding: .9rem 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.analytics-screenshot-caption span { font-size: .82rem; color: var(--muted); font-weight: 600; }
.analytics-screenshot-caption .live-badge { background: var(--teal-light); color: var(--teal-dark); border-radius: 100px; padding: .2rem .7rem; font-size: .75rem; font-weight: 700; }
 
/* MULTILINGUAL */
#multi { background: var(--white); }
.lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; margin-top: 3rem; }
.lang-flags { display: flex; flex-wrap: wrap; gap: .8rem; }
.lang-flag { background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px; padding: .5rem .9rem; font-size: .85rem; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: .4rem; transition: all .2s; }
.lang-flag:hover { border-color: var(--teal); background: var(--teal-light); }
.flex-features { display: flex; flex-direction: column; gap: 1rem; }
.flex-feat { display: flex; align-items: center; gap: .8rem; font-size: .92rem; color: var(--slate); }
.flex-feat::before { content: '✓'; color: var(--teal); font-weight: 700; }
 
/* SOCIAL PROOF */
#proof { background: var(--bg); }
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.tcard { background: #fff; border-radius: 18px; padding: 1.8rem; border: 1.5px solid var(--border); transition: transform .2s, box-shadow .2s; }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tcard .stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; }
.tcard p { font-size: .9rem; color: var(--slate); line-height: 1.65; font-style: italic; margin-bottom: 1.2rem; }
.tcard-author { display: flex; align-items: center; gap: .8rem; }
.tcard-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); display:grid; place-items:center; color: #fff; font-weight: 800; font-size: .9rem; }
.tcard-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.tcard-role { font-size: .78rem; color: var(--muted); }
 
/* FINAL CTA */
#cta { background: linear-gradient(135deg, #0f1f38 0%, #1a3352 60%, #0e3040 100%); padding: 120px 6vw; text-align: center; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(14,184,164,.15) 0%, transparent 70%); }
#cta .section-title { color: #fff; max-width: 700px; margin: 0 auto 1rem; }
#cta .section-sub { color: rgba(255,255,255,.6); margin: 0 auto 1.5rem; }
#cta .btn-primary { font-size: 1.1rem; padding: 1rem 2.8rem; }
.cta-note { margin-top: 1.2rem; font-size: .83rem; color: rgba(255,255,255,.4); }
.cta-trial-chip { display: inline-flex; align-items: center; gap: .5rem; background: rgba(14,184,164,.15); border: 1px solid rgba(14,184,164,.3); border-radius: 100px; padding: .4rem 1.2rem; color: var(--teal); font-size: .9rem; font-weight: 600; margin-bottom: 1.2rem; }
 
/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 60px 6vw 30px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .87rem; line-height: 1.65; max-width: 260px; }
.footer-brand-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand-logo img { height: 34px; width: auto; }
.footer-brand-logo span { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff; }
.footer-col h5 { color: #fff; font-family: 'Syne', sans-serif; font-size: .88rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { color: rgba(255,255,255,.5); font-size: .85rem; text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--teal); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; font-size: .82rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--teal); }
 
/* FLOATING CONTACT BUTTON */
.float-contact-btn { position: fixed; bottom: 28px; right: 28px; z-index: 998; width: 52px; height: 52px; border-radius: 50%; background: var(--teal); color: #fff; border: none; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(14,184,164,.45); cursor: pointer; transition: all .2s; font-size: 1.3rem; }
.float-contact-btn:hover { background: var(--teal-dark); transform: scale(1.08); }
 
/* MODAL */
.modal-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(15,31,56,.65); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity .3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: #fff; border-radius: 24px; padding: 2.5rem; width: 100%; max-width: 480px; position: relative; box-shadow: var(--shadow-lg); transform: translateY(20px); transition: transform .3s; }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--bg); border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; color: var(--slate); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.modal-close:hover { background: #f0f0f0; color: var(--navy); }
.modal-badge { display: inline-flex; align-items: center; gap: .4rem; background: var(--teal-light); color: var(--teal-dark); border-radius: 100px; padding: .3rem .9rem; font-size: .78rem; font-weight: 700; margin-bottom: 1rem; }
.modal-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
.modal-box p.modal-sub { font-size: .9rem; color: var(--slate); line-height: 1.55; margin-bottom: 1.5rem; }
.modal-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.modal-tab { flex: 1; padding: .55rem; border-radius: 10px; border: 1.5px solid var(--border); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .82rem; cursor: pointer; background: #fff; color: var(--slate); transition: all .2s; text-align: center; }
.modal-tab.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.modal-panel { display: none; }
.modal-panel.active { display: block; }
.modal-field { margin-bottom: 1rem; }
.modal-field label { display: block; font-size: .8rem; font-weight: 600; color: var(--slate); margin-bottom: .4rem; }
.modal-field input, .modal-field textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 10px; padding: .7rem 1rem; font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--navy); background: #fff; transition: border-color .2s; outline: none; }
.modal-field input:focus, .modal-field textarea:focus { border-color: var(--teal); }
.modal-field textarea { min-height: 90px; resize: vertical; }
.modal-submit { width: 100%; background: var(--teal); color: #fff; border: none; border-radius: 12px; padding: .9rem; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all .2s; margin-top: .5rem; box-shadow: 0 4px 16px rgba(14,184,164,.3); }
.modal-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }
.modal-note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: .8rem; }
.modal-admin-link { display: block; text-align: center; margin-top: 1rem; font-size: .85rem; color: var(--teal); font-weight: 600; text-decoration: none; }
.modal-admin-link:hover { text-decoration: underline; }
.modal-success { text-align: center; padding: 1rem 0; }
.modal-success .success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.modal-success h4 { font-size: 1.2rem; color: var(--navy); margin-bottom: .5rem; }
.modal-success p { font-size: .9rem; color: var(--slate); }
 
/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
 
/* HAMBURGER BUTTON */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  transition: border-color .2s;
  flex-shrink: 0;
}
.nav-hamburger:hover { border-color: var(--teal); }
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
/* MOBILE DROPDOWN MENU */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(248,251,252,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(15,31,56,.12);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.22,1,.36,1);
}
.nav-mobile-menu.open {
  max-height: 480px;
}
.nav-mobile-menu ul {
  list-style: none;
  padding: .75rem 0 1rem;
}
.nav-mobile-menu ul li {
  border-bottom: 1px solid rgba(221,232,239,.55);
}
.nav-mobile-menu ul li:last-child { border-bottom: none; }
.nav-mobile-link {
  display: block;
  padding: .85rem 6vw;
  font-family: 'DM Sans', sans-serif;
  font-size: .97rem;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: color .2s, background .2s;
}
.nav-mobile-link:hover,
.nav-mobile-link:active { color: var(--teal); background: var(--teal-light); }
.nav-mobile-cta {
  margin: .6rem 6vw 0;
  display: block;
  text-align: center;
  background: var(--teal);
  color: #fff !important;
  border-radius: 12px;
  padding: .85rem !important;
  font-weight: 700 !important;
  transition: background .2s !important;
}
.nav-mobile-cta:hover { background: var(--teal-dark) !important; }
 
/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner, .solution-grid, .auto-grid, .lang-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: block; }
}
@media (max-width: 600px) {
  section { padding: 70px 5vw; }
  .footer-grid { grid-template-columns: 1fr; }
}
 
/* --- VIDEO TRIGGER OVERLAYS --- */
.video-modal-trigger { position: relative; cursor: pointer; display: block; }
.video-modal-trigger img { display: block; width: 100%; transition: transform 0.4s ease; }
.video-modal-trigger:hover img { transform: scale(1.02); }
.play-overlay { position: absolute; inset: 0; background: transparent; display: flex; align-items: center; justify-content: center; z-index: 2; }
.play-icon { width: 70px; height: 70px; background: rgba(255,255,255,0.85); backdrop-filter: blur(6px); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--teal); box-shadow: 0 8px 32px rgba(15,31,56,0.15); padding-left: 6px; transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease; }
.video-modal-trigger:hover .play-icon { transform: scale(1.12); background: #ffffff; box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
 
.video-modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(10,15,25,0.92); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; padding: 2rem; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.video-modal-overlay.open { opacity: 1; pointer-events: all; }
 
.video-modal-content { width: 100%; max-width: 960px; position: relative; transform: translateY(30px) scale(0.95); opacity: 0; transition: transform 0.35s cubic-bezier(.22,1,.36,1), opacity 0.35s ease; }
.video-modal-overlay.open .video-modal-content { transform: translateY(0) scale(1); opacity: 1; }
 
.video-wrapper-inner { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 18px; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.video-wrapper-inner iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
 
/* NEW CLOSE BUTTON */
.modal-close { position: fixed; top: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: #fff; border: none; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; cursor: pointer; z-index: 3000; box-shadow: 0 8px 24px rgba(0,0,0,0.25); transition: all 0.2s ease; }
.modal-close:hover { background: #ffffff; color: #ff4d4f; font-weight: 800; box-shadow: 0 12px 35px rgba(0,198,183,0.5), 0 0 12px rgba(0,198,183,0.6); transform: scale(1.1); }

/* ============================================================
   ENROLLYCA — PRICING SECTION CSS
   Append to your existing style.css
   ============================================================ */

/* ----- Section Shell ----- */
#pricing {
  background: linear-gradient(160deg, #f0faf9 0%, #f8fbfc 50%, #fff4ed 100%);
  position: relative;
  overflow: hidden;
}
#pricing::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,184,164,.10) 0%, transparent 70%);
  pointer-events: none;
}
#pricing::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.07) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ----- Header ----- */
.pricing-header {
  margin-bottom: 2.5rem;
}

/* ----- Billing Toggle ----- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.toggle-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  color: var(--muted);
  transition: color .2s, font-weight .2s;
}
.toggle-switch {
  position: relative;
  width: 48px; height: 26px;
  background: var(--border);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s;
  padding: 0;
}
.toggle-switch.active { background: var(--teal); }
.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  transition: transform .25s;
}
.toggle-switch.active .toggle-knob { transform: translateX(22px); }
.toggle-save-badge {
  background: #fff3e0;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 100px;
  letter-spacing: .03em;
  opacity: .55;
  transition: opacity .25s;
}

/* ----- Main Card ----- */
.pricing-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 70px rgba(15,31,56,.12), 0 0 0 1px rgba(14,184,164,.10);
  overflow: hidden;
  transition: box-shadow .3s;
}
.pricing-card:hover {
  box-shadow: 0 28px 90px rgba(15,31,56,.16), 0 0 0 1.5px rgba(14,184,164,.18);
}

/* ----- Recommended Badge ----- */
.pricing-recommended-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: .3rem .85rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(14,184,164,.35);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  animation: pulse 2s infinite;
}

/* =====================
   LEFT SIDE
   ===================== */
.pricing-left {
  padding: 2.8rem 2.4rem;
  border-right: 1px solid var(--border);
}

.pricing-plan-name {
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
}

.pricing-price-block {
  margin-bottom: 1.2rem;
}
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: .2rem;
  line-height: 1;
}
.pricing-price .currency {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: .35rem;
}
.pricing-price .amount {
  font-family: 'Syne', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  transition: all .2s;
}
.pricing-price .period {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 500;
  padding-bottom: .5rem;
}
.pricing-annual-note {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .5rem;
  transition: color .2s;
}
.pricing-annual-note.note--saving {
  color: var(--teal-dark);
  font-weight: 600;
}

.pricing-value-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

/* ----- Feature Groups ----- */
.pricing-feature-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2rem;
}
.pfg { }
.pfg-title {
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .7rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.pfg-icon { font-size: .95rem; }
.pfg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.pfg-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .85rem;
  color: var(--slate);
  line-height: 1.4;
}
.pfg-list li svg.check {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* Last group spans full width */
.pfg--highlight {
  grid-column: 1 / -1;
  background: var(--teal-light);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}
.pfg--highlight .pfg-title { color: var(--teal-dark); }
.pfg-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.pfg-pill {
  background: #fff;
  color: var(--teal-dark);
  font-size: .76rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 100px;
  border: 1px solid rgba(14,184,164,.25);
}

/* =====================
   RIGHT SIDE
   ===================== */
.pricing-right {
  background: linear-gradient(180deg, #f9fdfc 0%, #f8fbfc 100%);
  padding: 2.8rem 2.2rem;
}
.pricing-right-sticky {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

/* ----- Trial Box ----- */
.pricing-trial-box {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
}
.ptb-headline {
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .8rem;
}
.ptb-price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-bottom: .3rem;
}
.ptb-price span:first-child {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  transition: all .2s;
}
.ptb-price span:last-child {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 500;
}
.ptb-free {
  font-size: .82rem;
  color: var(--teal-dark);
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.pricing-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: .95rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 22px rgba(14,184,164,.38);
  transition: all .22s;
  letter-spacing: .01em;
}
.pricing-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(14,184,164,.48);
  background: linear-gradient(135deg, var(--teal-dark) 0%, #077a6b 100%);
}
.pricing-cta-btn:active { transform: translateY(0); }

.ptb-notes {
  display: flex;
  flex-direction: column;
  gap: .38rem;
  margin-top: 1rem;
  margin-bottom: .8rem;
}
.ptb-notes span {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--slate);
}
.ptb-setup {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: .8rem;
  margin-top: .3rem;
}

/* ----- Steps ----- */
.pricing-steps {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
}
.ps-title {
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ps-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(221,232,239,.55);
  position: relative;
}
.ps-item:last-child { border-bottom: none; }
.ps-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: .75rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.ps-num--done {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
}
.ps-content {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.ps-content strong {
  font-size: .87rem;
  color: var(--navy);
  font-weight: 600;
}
.ps-content span {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.35;
}
.ps-item--done .ps-content strong { color: var(--teal-dark); }
.ps-demo-note {
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--teal-dark);
  background: var(--teal-light);
  border-radius: 8px;
  padding: .55rem .75rem;
  line-height: 1.4;
  font-weight: 500;
}

/* ----- Trust Bar ----- */
.pricing-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
  flex-wrap: wrap;
}
.pricing-trust-bar svg { flex-shrink: 0; }
.ptb-sep { opacity: .4; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-card {
    grid-template-columns: 1fr;
  }
  .pricing-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .pricing-right-sticky {
    position: static;
  }
  .pricing-feature-groups {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pricing-left,
  .pricing-right {
    padding: 1.8rem 1.4rem;
  }
  .pricing-feature-groups {
    grid-template-columns: 1fr;
  }
  .pricing-price .amount {
    font-size: 3rem;
  }
  .pricing-recommended-badge {
    top: 14px; right: 14px;
  }
}