/* ===== Fonts ===== */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(../fonts/dm-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(../fonts/dm-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url(../fonts/dm-sans-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url(../fonts/dm-sans-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13,148,136,0.04) 0%, transparent 70%) no-repeat #ffffff;
  color: #1a1f36;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== CSS Variables ===== */
:root {
  --bg: #ffffff;
  --card: #ffffff;
  --navy: #134e4a;
  --text: #1a1f36;
  --text-secondary: #5a6178;
  --accent: #0d9488;
  --accent-hover: #0a7c72;
  --accent-gradient: linear-gradient(135deg, #0d9488, #14b8a6);
  --green: #22c55e;
  --teal: #14b8a6;
  --magenta: #e946b9;
  --purple: #7c5cfc;
  --border: rgba(0,0,0,0.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1200px;
}

/* ===== Layout ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #9ca3af; margin-bottom: 16px;
}
.hero-pill {
  display: inline-block; color: var(--accent);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 24px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700;
  line-height: 1.2; margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 640px; line-height: 1.7;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; height: 80px; z-index: 1000;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.6);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.navbar-logo-img {
  height: 40px; width: auto; flex-shrink: 0;
}
.navbar-text { display: flex; flex-direction: column; }
.navbar-name { font-weight: 700; font-size: 1rem; line-height: 1.2; }
.navbar-tagline { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.2; }
.navbar-links {
  display: flex; align-items: center;
  gap: 24px; font-size: 0.85rem;
  margin-left: auto;
  padding-right: 20px;
}
.navbar-links a { color: var(--text-secondary); transition: color 0.2s; }
.navbar-links a:hover { color: var(--accent); }
.navbar-links .sep { color: #d0d3db; }
.btn-demo {
  background: var(--accent-gradient); color: #fff; border: none;
  padding: 12px 24px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-demo:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13,148,136,0.4);
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-gradient); color: #fff; border: 1px solid transparent;
  padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,148,136,0.4);
}

/* ===== Final CTA ===== */
.final-cta {
  padding: 80px 0;
}
.final-cta .container {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: var(--navy); border-radius: 20px;
  padding: 64px 48px; border: 1px solid rgba(255,255,255,0.06);
}
.final-cta .section-label { color: rgba(255,255,255,0.35); }
.final-cta .section-title {
  font-size: 2rem; margin-bottom: 16px; color: #fff;
}
.final-cta .section-subtitle {
  color: rgba(255,255,255,0.65); margin: 0 auto 36px; max-width: 520px;
}
.final-cta-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.final-cta-note {
  margin-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.4);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }

/* ===== FAQ Title (H3 inside button) ===== */
.faq-title {
  font-size: inherit; font-weight: inherit; margin: 0; color: inherit;
}

/* ===== Modal ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--card); border-radius: var(--radius); padding: 40px;
  max-width: 480px; width: 90%; position: relative;
  box-shadow: var(--shadow-lg); animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.modal-close {
  position: absolute; top: 16px; right: 16px; font-size: 1.5rem;
  color: var(--text-secondary); width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.05); }
.modal-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.modal p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; }
.form-group input {
  width: 100%; padding: 12px 16px; border: 1.5px solid #e0e2e8;
  border-radius: 10px; font-size: 0.95rem; font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus { outline: none; border-color: var(--accent); }
.form-submit { width: 100%; margin-top: 8px; }
.form-success { text-align: center; padding: 20px 0; }
.form-success .checkmark {
  width: 56px; height: 56px; border-radius: 50%; background: #e8faf0;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem;
}
.modal-footer { font-size: 0.82rem; color: var(--text-secondary); text-align: center; padding-top: 15px;}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 60px;
}
.footer .container {
  display: flex; flex-direction: column; align-items: center; gap: 50px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo-img {
  height: 40px; width: auto; flex-shrink: 0;
}
.footer-name { font-weight: 700; font-size: 1rem;  line-height: 1.2; }
.footer-tagline { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.2; }
.footer-links {
  display: flex; align-items: center;
  gap: 24px; font-size: 0.85rem;
}
.footer-links a { color: var(--text-secondary); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-links .sep { color: #d0d3db; }
.footer-love { font-size: 0.82rem; color: var(--text-secondary); }

/* ===== Cookie Consent ===== */
.cb{position:fixed;inset:0;z-index:9999;display:none;align-items:center;justify-content:center;font-family:'DM Sans',sans-serif;pointer-events:none}
.cb.show{display:flex}
.cb-card{background:#fff;border-radius:12px;padding:28px 32px;max-width:460px;width:90%;box-shadow:0 0 0 15px rgba(0,0,0,.25),0 8px 32px rgba(0,0,0,.18);pointer-events:auto}
.cb-main,.cb-prefs{display:none}
.cb-main.active,.cb-prefs.active{display:block}
.cb-text{font-size:.9rem;color:#374151;line-height:1.6;margin-bottom:20px}
.cb-text a{color:#0d9488;text-decoration:underline}
.cb-btns{display:flex;gap:10px;justify-content:flex-end}
.cb-btn{padding:8px 20px;border-radius:6px;font-size:.85rem;font-weight:500;cursor:pointer;border:1px solid #d1d5db;background:#fff;color:#374151;transition:background .15s}
.cb-btn:hover{background:#f3f4f6}
.cb-btn-accept{background:#0d9488;color:#fff;border-color:#0d9488}
.cb-btn-accept:hover{background:#0f766e}
.cb-prefs-title{font-size:1rem;font-weight:600;color:#111;margin-bottom:14px}
.cb-cat{display:flex;align-items:center;justify-content:space-between;padding:10px 0;border-bottom:1px solid #f3f4f6}
.cb-cat-info{display:flex;flex-direction:column;gap:2px}
.cb-cat-name{font-size:.9rem;font-weight:500;color:#111}
.cb-cat-desc{font-size:.8rem;color:#6b7280}
.cb-cat-status{font-size:.8rem;color:#6b7280;font-style:italic}
.cb-toggle{position:relative;width:42px;height:24px;flex-shrink:0}
.cb-toggle input{opacity:0;width:0;height:0}
.cb-toggle-slider{position:absolute;inset:0;background:#d1d5db;border-radius:12px;cursor:pointer;transition:background .2s}
.cb-toggle-slider::before{content:'';position:absolute;width:18px;height:18px;left:3px;bottom:3px;background:#fff;border-radius:50%;transition:transform .2s}
.cb-toggle input:checked+.cb-toggle-slider{background:#0d9488}
.cb-toggle input:checked+.cb-toggle-slider::before{transform:translateX(18px)}
.cb-prefs-btns{display:flex;gap:10px;justify-content:flex-end;margin-top:16px}

/* ===== Hamburger ===== */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 6px; cursor: pointer;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  position: fixed; top: 80px; left: 0; width: 100%; z-index: 999;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  padding: 16px 24px 20px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-10px); opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateY(0); opacity: 1; pointer-events: auto;
}
.mobile-menu a {
  display: block; padding: 12px 0; font-size: 0.95rem;
  color: var(--text-secondary); border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .navbar-tagline { display: none; }
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .footer-links {
    flex-direction: column; align-items: center; gap: 0;
  }
  .footer-links a {
    padding: 8px 0;
  }
  .footer-links .sep {
    color: #d0d3db; font-size: 0.75rem; line-height: 1;
  }
  .cb-card{width:82%;padding:22px 20px}
  .cb-btns,.cb-prefs-btns{justify-content:center;flex-wrap:wrap}
  .final-cta { padding: 48px 0; }
  .final-cta .container { padding: 40px 24px; }
}
