/* ============================================================
   Volboo Landing Page — light & dark themes
   ============================================================ */

:root {
  /* Brand */
  --mint: #34d399;
  --mint-strong: #2fc78d;
  --green-deep: #0c4534;
  --green-hero: #10241b;

  /* Light theme */
  --bg: #ffffff;
  --text: #131a16;
  --text-muted: #5f6d64;
  --nav-pill: #d8dcd8;
  --nav-text: #17241d;
  --btn-create-bg: #f4f5f4;
  --btn-create-text: #10241b;
  --btn-create-border: #10241b;
  --features-panel: #e9ece9;
  --feature-card: #d5e5da;
  --feature-title: #17352a;
  --feature-text: #58695f;
  --security-card: #cbe6c8;
  --stats-card: #f8ecca;
  --lavender: #ded8f1;
  --testimonial-card: #e3e8e3;
  --faq-row: #e8ebe8;
  --frame-border: #aeb3ae;
  --footer-bg: #191d1b;
  --dropdown-bg: #ffffff;
  --dropdown-shadow: 0 18px 40px rgba(10, 30, 20, 0.16);
}

[data-theme="dark"] {
  --bg: #151a16;
  --text: #eef1ee;
  --text-muted: #98a49b;
  --nav-pill: #0f1f17;
  --nav-text: #e8ece9;
  --btn-create-bg: var(--mint);
  --btn-create-text: #0d241a;
  --btn-create-border: transparent;
  --features-panel: #181f19;
  --feature-card: #1c2b21;
  --feature-title: #e9efe9;
  --feature-text: #93a096;
  --security-card: #26331f;
  --stats-card: #362b18;
  --lavender: #261c40;
  --testimonial-card: #1b221c;
  --faq-row: #1a211b;
  --frame-border: #333b34;
  --footer-bg: #141815;
  --dropdown-bg: #1b231c;
  --dropdown-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  transition: background-color .35s ease, color .35s ease;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.container {
  width: min(1240px, 92vw);
  margin-inline: auto;
}

/* Theme-dependent images */
.theme-dark-only { display: none; }
[data-theme="dark"] .theme-dark-only { display: block; }
[data-theme="dark"] .theme-light-only { display: none; }

/* Page loader (markup from includes/loader.php) */
.loader-overlay {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .4s;
}
.loader-overlay.fade-out { opacity: 0; pointer-events: none; }
.loader-logo { width: 40px; animation: loader-pulse 1.5s ease infinite; }
@keyframes loader-pulse {
  0%, 100% { opacity: .6; transform: scale(.95); }
  50% { opacity: 1; transform: scale(1); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  margin: 14px;
  border-radius: 44px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(52, 211, 153, 0.10), transparent 55%),
    var(--green-hero);
  color: #fff;
  overflow: hidden;
  /* extra top padding compensates for the fixed header */
  padding: 90px clamp(16px, 4vw, 56px) 0;
}

/* Fixed floating pill nav — stays put while scrolling */
.site-header {
  position: fixed;
  top: 40px;
  left: 14px;
  right: 14px;
  z-index: 100;
  padding-inline: clamp(16px, 4vw, 56px);
}
.site-header.scrolled .nav-pill {
  box-shadow: 0 12px 34px rgba(5, 20, 12, 0.28);
}

/* keep anchored sections clear of the fixed nav */
section[id], footer[id] { scroll-margin-top: 130px; }

.nav-pill {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--nav-pill);
  color: var(--nav-text);
  border-radius: 999px;
  padding: 10px 14px 10px 22px;
  max-width: 1360px;
  margin-inline: auto;
  transition: background-color .35s ease;
}

[data-theme="dark"] .nav-pill { border: 1px solid rgba(255, 255, 255, 0.07); }

.brand { display: flex; align-items: center; gap: 2px; font-weight: 700; }
.brand-mark { width: 34px; height: 34px; object-fit: contain; }
.brand-word { font-size: 1.45rem; letter-spacing: -0.02em; margin-left: -3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 30px);
  margin-inline: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 8px 6px;
  opacity: .92;
}
.nav-link:hover { opacity: 1; }
.caret { width: 14px; height: 14px; transition: transform .25s ease; }
.has-menu { position: relative; }
.has-menu:hover .caret, .has-menu:focus-within .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
  min-width: 200px;
  background: var(--dropdown-bg);
  color: var(--text);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--dropdown-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 40;
}
.has-menu:hover .dropdown, .has-menu:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: none;
}
.dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
}
.dropdown a:hover { background: rgba(52, 211, 153, 0.14); color: var(--mint-strong); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.55);
  transition: background-color .3s ease, transform .3s ease;
}
[data-theme="dark"] .theme-toggle { background: #24312a; color: #e8f4ec; }
.theme-toggle:hover { transform: rotate(15deg); }
.theme-toggle svg { width: 21px; height: 21px; }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn:active { transform: translateY(0); }

.btn-login {
  background: var(--mint);
  color: #0d241a;
  padding: 11px 30px;
}
[data-theme="dark"] .btn-login { background: #143528; color: #eafff4; }

.btn-create {
  background: var(--btn-create-bg);
  color: var(--btn-create-text);
  border: 1.6px solid var(--btn-create-border);
  padding: 11px 26px;
}

.hero-body {
  text-align: center;
  padding-top: clamp(48px, 8vw, 110px);
}

.hero-title {
  font-size: clamp(2.8rem, 7.6vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

/* staggered entrance for each headline line */
.title-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(34px);
  animation: title-rise .9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.title-line + br + .title-line { animation-delay: .18s; }

@keyframes title-rise {
  to { opacity: 1; transform: none; }
}

/* solid mint accent word */
.title-accent {
  color: var(--mint);
  animation-delay: .18s;
}

/* subtitle and CTA follow the headline in */
.hero-sub, .hero-body .btn-cta {
  opacity: 0;
  transform: translateY(22px);
  animation: title-rise .8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-sub { animation-delay: .4s; }
.hero-body .btn-cta { animation-delay: .55s; }

@media (prefers-reduced-motion: reduce) {
  .title-line, .title-accent, .hero-sub, .hero-body .btn-cta {
    opacity: 1; transform: none; animation: none;
  }
}

.hero-sub {
  max-width: 640px;
  margin: 28px auto 38px;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  color: #c2cdc6;
}

.btn-cta {
  background: var(--mint);
  color: #0d241a;
  font-size: 1.12rem;
  padding: 16px 42px;
  box-shadow: 0 6px 18px rgba(52, 211, 153, 0.22), inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.dash-frame {
  width: min(1220px, 92%);
  /* px cap keeps the crop consistent on ultra-wide screens */
  margin: clamp(48px, 7vw, 88px) auto max(-28%, -372px);
  border: 9px solid var(--frame-border);
  border-radius: 26px;
  overflow: hidden;
  background: var(--frame-border);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}
.dash-frame img { width: 100%; }

/* ============================================================
   TRUSTED / DOWNLOAD APP / PROOF CARDS
   ============================================================ */

.trusted { padding: clamp(60px, 8vw, 110px) 0 20px; }

.trusted-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.trusted-heading {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 480px;
  color: var(--text);
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  margin: 34px 0 44px;
}

.partner-logo { width: auto; }

/* muted gray treatment, like the mockup */
.partner-bellmonie {
  height: 30px;
  /* green source logo → gray on light background */
  filter: grayscale(1) opacity(0.55);
}
[data-theme="dark"] .partner-bellmonie {
  filter: grayscale(1) brightness(1.6);
  opacity: 0.5;
}

.partner-9psb {
  height: 52px;
  /* full-color source logo → gray on light background */
  filter: grayscale(1) opacity(0.55);
}
[data-theme="dark"] .partner-9psb {
  filter: grayscale(1) brightness(1.25);
  opacity: 0.55;
}

.download-card {
  background: var(--lavender);
  border-radius: 34px;
  padding: clamp(30px, 4vw, 48px);
  max-width: 460px;
  transition: background-color .35s ease;
}
.download-card h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-bottom: 26px;
}
[data-theme="dark"] .download-card h3 { color: #f0ecfa; }

.store-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  color: #17241d;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  max-width: 260px;
  margin-bottom: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20, 20, 40, 0.15); }
.store-ic { width: 22px; height: 22px; flex: none; }

.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 30px;
}
.phone-backdrop {
  position: absolute;
  inset: 34% 0 0 0;
  background: var(--green-hero);
  border-radius: 40px;
}
[data-theme="dark"] .phone-backdrop { background: #0d1f17; border: 1px solid rgba(255,255,255,0.05); }
.phone-img {
  position: relative;
  z-index: 2;
  width: min(400px, 74%);
  /* rises from below once the stage scrolls into view */
  transform: translateY(160px);
  opacity: 0;
  transition:
    transform 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s,
    opacity 0.7s ease 0.15s;
}
.phone-stage.in-view .phone-img {
  transform: none;
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .phone-img { transform: none; opacity: 1; transition: none; }
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: clamp(18px, 2.6vw, 34px);
  margin-top: clamp(28px, 4vw, 48px);
}

.security-card {
  position: relative;
  background: var(--security-card);
  border-radius: 34px;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  transition: background-color .35s ease;
}
.security-card img {
  width: min(560px, 88%);
  object-fit: contain;
  object-position: bottom;
}
.security-badge {
  position: absolute;
  top: 30px; left: 34px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #14241c;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  box-shadow: 0 8px 26px rgba(10, 40, 25, 0.18);
}
.badge-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-deep);
  display: grid; place-items: center;
}
.badge-dot svg { width: 15px; height: 15px; }

.stats-card {
  background: var(--stats-card);
  border-radius: 34px;
  padding: clamp(30px, 4vw, 46px);
  overflow: hidden;
  transition: background-color .35s ease;
}
.stat-number {
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label { font-size: 1.15rem; font-weight: 600; margin: 8px 0 26px; }

.mini-notification {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.9);
  color: #1a2420;
  border-radius: 18px;
  padding: 13px 16px;
  box-shadow: 0 14px 34px rgba(60, 45, 10, 0.14);
  margin-right: -12%;
  animation: floaty 5s ease-in-out infinite;
}
[data-theme="dark"] .mini-notification { background: rgba(255, 255, 255, 0.94); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) { .mini-notification { animation: none; } }

.mini-logo {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(160deg, #eafff5, #cff3e2);
  display: grid; place-items: center;
}
.mini-logo img { width: 24px; height: 24px; object-fit: contain; }
.mini-copy { font-size: 0.92rem; line-height: 1.4; }
.mini-copy strong { display: block; font-size: 1rem; margin-bottom: 2px; }

/* ============================================================
   FEATURES
   ============================================================ */

.features { padding: clamp(28px, 3vw, 44px) 0; }

/* Full-bleed panel with the same edge margins as the hero, like the mockup */
.features-panel {
  margin: 0 14px;
  background: var(--features-panel);
  border-radius: 44px;
  padding: clamp(40px, 6vw, 90px) clamp(18px, 3.5vw, 56px);
  transition: background-color .35s ease;
}
[data-theme="dark"] .features-panel { border: 1px solid rgba(255, 255, 255, 0.04); }

.features-inner {
  max-width: 1400px;
  margin-inline: auto;
}

.section-title {
  text-align: center;
  font-size: clamp(2.2rem, 4.8vw, 4.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}
.features .section-title { margin-bottom: clamp(36px, 5vw, 64px); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.feature-card {
  font-family: "Sora", "Inter", sans-serif;
  background: var(--feature-card);
  border-radius: 26px;
  padding: 42px 34px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background-color .35s ease, transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(10, 45, 30, 0.12); }

.feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #dff3e8;
  display: grid; place-items: center;
  margin-bottom: 24px;
}
[data-theme="dark"] .feature-icon { background: #0e5138; }
.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 {
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--feature-title);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.feature-card p {
  color: var(--feature-text);
  font-size: 1.02rem;
  font-weight: 300;
  margin-bottom: 18px;
}
.learn-more {
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--feature-text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color .2s ease;
}
.learn-more:hover { color: var(--mint-strong); }

/* ============================================================
   AUTOMATED BANK TRANSFER
   ============================================================ */

.bank-transfer {
  position: relative;
  min-height: clamp(480px, 62vw, 900px);
  background: var(--green-hero);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

/* photo lives in the HTML (more reliable than a CSS background on some hosts) */
.bt-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bt-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 20, 14, 0.55) 0%, rgba(8, 20, 14, 0.18) 45%, transparent 70%);
}

.bt-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(48px, 9vw, 130px);
}
.bt-content h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.bt-content p {
  color: #e8ede9;
  max-width: 360px;
  margin-top: 14px;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
}

.bt-notification {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 21vw, 22%);
  top: 58%;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: min(480px, 86vw);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 16px 20px;
  color: #17241d;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.bt-note-copy { font-size: 1rem; line-height: 1.45; width: 100%; }
.bt-note-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 2px; }
.bt-note-head strong { font-size: 1.05rem; }
.bt-note-head time { font-size: 0.8rem; color: #3c4a42; }

/* ============================================================
   DEVELOPER FRIENDLY
   ============================================================ */

.dev { padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 6vw, 70px); }

.dev-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.dev-copy p {
  max-width: 420px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* Dev image bleeds to the left viewport edge, like the mockup */
.dev-grid {
  display: grid;
  grid-template-columns: minmax(0, 45%) 1fr;
  gap: clamp(30px, 9vw, 190px);
  align-items: start;
  margin-top: clamp(36px, 5vw, 64px);
}

.dev-img { width: 100%; }

.support-col {
  max-width: 380px;
  padding-right: 4vw;
}
.support-img { width: 100%; margin-bottom: 30px; }
.support-col h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 700; }
.support-col p { color: var(--text-muted); margin-top: 10px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.experience { padding: clamp(60px, 8vw, 110px) 0; }

.experience .section-title { color: #12291f; }
[data-theme="dark"] .experience .section-title { color: #f0f4f0; }

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  margin-top: 10px;
}
[data-theme="dark"] .section-sub { color: #5a655c; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(36px, 5vw, 60px);
}

.testimonial {
  font-family: "Sora", "Inter", sans-serif;
  background: var(--testimonial-card);
  border-radius: 26px;
  padding: 28px 30px 30px;
  transition: background-color .35s ease, transform .3s ease;
}
.testimonial:hover { transform: translateY(-4px); }

.quote-mark {
  font-family: Georgia, serif;
  font-size: 3.4rem;
  line-height: 0.6;
  display: block;
  color: #9fb0a5;
  margin: 14px 0 20px;
}
[data-theme="dark"] .quote-mark { color: #46524a; }

.testimonial blockquote {
  color: var(--feature-text);
  font-weight: 300;
  font-size: 1rem;
}
.testimonial figcaption { margin-top: 20px; }
.testimonial figcaption strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--feature-title);
  letter-spacing: -0.01em;
}
.testimonial figcaption span {
  display: block;
  font-size: 0.82rem;
  color: var(--feature-text);
  margin-top: 4px;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq { padding: 20px 0 clamp(80px, 10vw, 140px); }
.faq-wrap { max-width: 1080px; }
.faq .section-title { color: #12291f; }
[data-theme="dark"] .faq .section-title { color: #f0f4f0; }

.accordion { margin-top: clamp(30px, 4vw, 50px); display: grid; gap: 16px; }

.faq-item {
  background: var(--faq-row);
  border-radius: 16px;
  transition: background-color .35s ease;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding: 22px 28px;
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  position: relative;
  flex: none;
  width: 18px; height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s ease;
}
.faq-icon::before { inset: 8px 0; }
.faq-icon::after { inset: 0 8px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }

.faq-item p {
  padding: 0 28px 24px;
  color: var(--text-muted);
  max-width: 900px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--footer-bg);
  color: #cfd6d1;
  padding: clamp(50px, 7vw, 90px) 0 36px;
}

.footer-brand { margin-bottom: 40px; }
.footer-brand .brand-word { color: #fff; font-size: 2rem; }
.footer-brand .brand-mark { width: 46px; height: 46px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
}

.footer-about p { max-width: 340px; font-size: 0.95rem; color: #aab3ad; }

.socials { display: flex; gap: 16px; margin: 24px 0 34px; }
.socials a {
  width: 26px; height: 26px;
  color: #97a09a;
  transition: color .2s ease, transform .2s ease;
}
.socials a:hover { color: var(--mint); transform: translateY(-2px); }
.socials svg { width: 100%; height: 100%; }

.security-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a938d;
  margin-bottom: 10px;
}
.security-seal {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--mint);
  border-radius: 12px;
  padding: 6px 10px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.security-seal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(52, 211, 153, 0.25);
}
.security-seal img {
  height: 58px;
  width: auto;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a, .footer-col address {
  display: block;
  font-style: normal;
  color: #aab3ad;
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--mint); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.disclaimer { max-width: 560px; font-size: 0.85rem; color: #8a938d; }
.copyright { font-size: 0.9rem; color: #aab3ad; white-space: nowrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  width: 22px; height: 2.4px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

@keyframes menu-item-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .nav-pill { flex-wrap: wrap; }
  .nav-actions { order: 2; margin-left: auto; }
  .nav-burger { display: flex; order: 3; margin-left: 0; }
  .btn-login, .btn-create { padding: 9px 18px; font-size: 0.9rem; }
  /* Open mobile menu: pill becomes a rounded panel with tidy rows */
  .nav-pill { transition: background-color .35s ease, border-radius .3s ease; }
  .nav-pill.menu-open { border-radius: 26px; }

  .nav-links {
    display: none;
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-top: 10px;
    padding: 14px 4px 10px;
    border-top: 1px solid rgba(10, 30, 20, 0.10);
  }
  [data-theme="dark"] .nav-links { border-top-color: rgba(255, 255, 255, 0.08); }
  .nav-links.open { display: flex; }

  .nav-links.open > li {
    animation: menu-item-in .38s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
  .nav-links.open > li:nth-child(2) { animation-delay: .06s; }
  .nav-links.open > li:nth-child(3) { animation-delay: .12s; }
  .nav-links.open > li:nth-child(4) { animation-delay: .18s; }

  .nav-links .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 13px 16px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
  }
  .nav-links .nav-link:hover { background: rgba(52, 211, 153, 0.12); }

  .dropdown {
    position: static;
    translate: none;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    background: transparent;
    display: none;
    padding: 2px 0 6px 14px;
  }
  .has-menu:hover .dropdown, .has-menu:focus-within .dropdown { display: block; }
  .dropdown a {
    padding: 10px 16px;
    font-size: 0.98rem;
    color: inherit;
    opacity: .85;
  }

  .feature-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .trusted-grid { grid-template-columns: 1fr; }
  .phone-stage { max-width: 560px; margin-inline: auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .hero { margin: 8px; border-radius: 28px; padding-top: 92px; }
  .site-header { top: 16px; left: 8px; right: 8px; padding-inline: 12px; }
  .nav-pill { padding: 8px 10px 8px 14px; gap: 10px; }
  .brand-mark { width: 28px; height: 28px; }
  .brand-word { font-size: 1.2rem; }
  .theme-toggle { width: 38px; height: 38px; }
  .btn-login { padding: 9px 20px; font-size: 0.88rem; }
  .nav-actions .btn-create { display: none; }
  .feature-grid, .testimonial-grid, .proof-grid { grid-template-columns: 1fr; }
  .dev-grid { grid-template-columns: 1fr; gap: 40px; }
  .support-col { max-width: none; padding-inline: 4vw; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .bt-notification { left: 4vw; top: auto; bottom: 8%; }
  .dash-frame { border-width: 5px; margin-bottom: -16%; }
  .mini-notification { margin-right: 0; }
}
