
/* ═══════════════════════════════════════════════
   DALFAST  —  Global Stylesheet
   Brand colours extracted from official logo:
   Deep Teal  #0B7EA8   Cyan  #4DCFE0   Light #A8EBF2
═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

:root {
  /* Brand */
  --teal:        #0B7EA8;
  --teal-dark:   #08618A;
  --teal-deeper: #065070;
  --cyan:        #4DCFE0;
  --cyan-light:  #A8EBF2;
  --cyan-glow:   rgba(77,207,224,0.15);
  --teal-glow:   rgba(11,126,168,0.12);

  /* Neutrals */
  --ink:         #0A0F14;
  --ink-soft:    #2E3A44;
  --ink-muted:   #6B7A84;
  --surface:     #FFFFFF;
  --surface-2:   #F4F8FA;
  --surface-3:   #E8F4F8;
  --border:      rgba(11,126,168,0.12);
  --border-md:   rgba(11,126,168,0.20);
  --border-str:  rgba(11,126,168,0.30);

  /* Semantic */
  --green:       #0F9966;
  --red:         #DC2626;

  /* Radius */
  --r-xs: 6px;  --r-sm: 10px;
  --r-md: 16px; --r-lg: 24px; --r-xl: 32px;

  /* Shadows */
  --sh-sm:   0 1px 4px rgba(11,126,168,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --sh-md:   0 4px 20px rgba(11,126,168,0.12), 0 2px 6px rgba(0,0,0,0.06);
  --sh-lg:   0 20px 60px rgba(11,126,168,0.14), 0 4px 16px rgba(0,0,0,0.07);
  --sh-teal: 0 8px 32px rgba(11,126,168,0.28);
  --sh-cyan: 0 8px 32px rgba(77,207,224,0.30);

  /* Type */
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w: 1180px;
  --ease:  cubic-bezier(0.4,0,0.2,1);
  --t:     0.22s;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--surface); color: var(--ink); overflow-x: hidden; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── LOGO ── */
.logo-mark { height: 36px; width: auto; display: block; }
.logo-mark-sm { height: 28px; width: auto; }
.logo-lockup { display: flex; align-items: center; gap: 0.625rem; }
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink);
  line-height: 1;
}
.logo-wordmark span { color: var(--teal); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 70px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease);
}
.nav.scrolled { box-shadow: var(--sh-md); }
.nav-links { display: flex; align-items: center; gap: 1.875rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--ink-soft);
  transition: color var(--t); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 2px;
  transform: scaleX(0); transition: transform var(--t) var(--ease);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--teal); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
/* Language/currency switcher: shown on desktop, hidden on mobile via media query.
   Controlled here (not inline) so the responsive rules always win. */
.dalfast-switcher { position: relative; display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.65rem 1.4rem; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 600;
  transition: all var(--t) var(--ease);
  white-space: nowrap; cursor: pointer; border: none; font-family: inherit;
}
.btn-primary {
  background: var(--teal); color: white; box-shadow: var(--sh-teal);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(11,126,168,0.38); }
.btn-cyan {
  background: linear-gradient(135deg, #4DCFE0, #2BB8CC);
  color: white; font-weight: 700; box-shadow: var(--sh-cyan);
}
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(77,207,224,0.42); }
.btn-outline {
  border: 2px solid var(--border-str); color: var(--teal);
}
.btn-outline:hover { background: var(--teal-glow); border-color: var(--teal); }
.btn-ghost { color: var(--ink-soft); }
.btn-ghost:hover { color: var(--teal); }
.btn-ink { background: var(--ink); color: white; }
.btn-ink:hover { background: #1a2832; transform: translateY(-1px); }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; border-radius: var(--r-md); }
.btn-xl { padding: 1.05rem 2.5rem; font-size: 1.0625rem; border-radius: var(--r-md); }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--t); }
.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--border);
  padding: 1.5rem 5vw; z-index: 199;
  flex-direction: column; gap: 0.25rem;
  box-shadow: var(--sh-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem; font-weight: 500; color: var(--ink-soft);
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav a:last-child { border-bottom: none; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 86px 5vw 0.75rem; font-size: 0.8125rem; color: var(--ink-soft); background: var(--surface-2); border-bottom: 1px solid var(--border); }
.breadcrumb-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; gap: 0.5rem; flex-wrap: nowrap; overflow: hidden; }
.breadcrumb a { color: var(--ink-soft); transition: color var(--t); white-space: nowrap; flex-shrink: 0; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { color: var(--cyan); flex-shrink: 0; }
.breadcrumb #bcName { color: var(--ink); font-weight: 600; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── SECTION COMMONS ── */
.section-eyebrow {
  display: inline-block; padding: 0.3rem 0.875rem;
  background: var(--cyan-glow); border: 1px solid var(--border-md);
  border-radius: 100px; font-size: 0.73rem; font-weight: 700;
  color: var(--teal); text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 0.875rem;
}
.section-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.08; color: var(--ink);
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--ink);
}
.section-h3 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2vw, 1.875rem);
  font-weight: 800; letter-spacing: -0.025em; color: var(--ink);
}
.section-sub {
  font-size: 1.0625rem; color: var(--ink-soft); line-height: 1.75; max-width: 560px;
}
.section-sub.wide { max-width: 680px; }
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ── TAGS & BADGES ── */
.tag {
  display: inline-block; padding: 0.25rem 0.7rem;
  border-radius: 100px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.tag-teal    { background: var(--cyan-glow); color: var(--teal); border: 1px solid var(--border-md); }
.tag-ai      { background: rgba(77,207,224,0.12); color: var(--teal-deeper); border: 1px solid rgba(77,207,224,0.25); }
.tag-biz     { background: rgba(11,126,168,0.08); color: var(--teal-dark); border: 1px solid rgba(11,126,168,0.18); }
.tag-career  { background: rgba(168,235,242,0.30); color: var(--teal-deeper); border: 1px solid rgba(77,207,224,0.20); }
.tag-finance { background: rgba(6,80,112,0.08); color: var(--teal-deeper); border: 1px solid rgba(6,80,112,0.16); }
.tag-prod    { background: rgba(77,207,224,0.08); color: var(--teal-dark); border: 1px solid rgba(77,207,224,0.18); }
.tag-free    { background: rgba(11,126,168,0.10); color: var(--teal); border: 1px solid rgba(11,126,168,0.20); }
.tag-income  { background: rgba(168,235,242,0.25); color: var(--teal-deeper); border: 1px solid rgba(77,207,224,0.22); }
.tag-mkt     { background: rgba(77,207,224,0.10); color: var(--teal-dark); border: 1px solid rgba(77,207,224,0.20); }
.tag-doc     { background: rgba(11,126,168,0.07); color: var(--teal); border: 1px solid rgba(11,126,168,0.15); }
.badge-best  { background: linear-gradient(135deg,#0B7EA8,#4DCFE0); color: white; font-size: 0.68rem; font-weight: 700; padding: 0.22rem 0.6rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.badge-new   { background: var(--cyan-glow); color: var(--teal); font-size: 0.68rem; font-weight: 700; padding: 0.22rem 0.6rem; border-radius: 100px; border: 1px solid var(--border-md); text-transform: uppercase; }
.badge-hot   { background: rgba(11,126,168,0.10); color: var(--teal-darker,#065070); font-size: 0.68rem; font-weight: 700; padding: 0.22rem 0.6rem; border-radius: 100px; text-transform: uppercase; }

/* ── PRODUCT CARD ── */
.product-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all var(--t) var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--border-md); }
.product-card-img {
  width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.product-card-body { padding: 1.375rem; flex: 1; display: flex; flex-direction: column; }
.product-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.625rem; gap: 0.5rem; }
.product-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 0.5rem; }
.product-card-desc { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: auto; padding-bottom: 1.25rem; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.125rem; border-top: 1px solid var(--border); gap: 0.75rem; }
.product-price { font-family: var(--font-display); font-size: 1.375rem; font-weight: 800; color: var(--ink); }
.product-price-from { font-size: 0.72rem; color: var(--ink-muted); display: block; margin-bottom: -3px; }
.stars { color: var(--cyan); font-size: 0.875rem; }
.rating-sm { font-size: 0.8rem; color: var(--ink-muted); }

/* ── PRODUCT CARD BG GRADIENTS ── */
.bg-ai   { background: linear-gradient(135deg,#E0F7FA,#A8EBF2); }
.bg-biz  { background: linear-gradient(135deg,#E8F6FB,#C2E8F4); }
.bg-car  { background: linear-gradient(135deg,#D6F2F8,#A8EBF2); }
.bg-fin  { background: linear-gradient(135deg,#CBE9F5,#9DD8EE); }
.bg-prod { background: linear-gradient(135deg,#E0F7FA,#B2EBF2); }
.bg-free { background: linear-gradient(135deg,#D0EEF8,#A8DFF0); }
.bg-inc  { background: linear-gradient(135deg,#E8F6FB,#C8E9F5); }
.bg-mkt  { background: linear-gradient(135deg,#D4EFF8,#A8E2F0); }
.bg-doc  { background: linear-gradient(135deg,#E0F5FA,#B8E8F4); }
.bg-teal { background: linear-gradient(135deg,#C8EAF5,#A0D8EC); }
.bg-dlp  { background: linear-gradient(135deg,#D8F0F8,#B0E0F0); }
.bg-bundle { background: linear-gradient(135deg,#0B7EA8,#065070); }

/* ── INSTANT BADGE ── */
.instant-badge { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.72rem; font-weight: 600; color: var(--green); }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--teal-deeper); overflow: hidden; padding: 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; padding: 1rem 0; }
.marquee-item { display: flex; align-items: center; gap: 0.875rem; padding: 0 2rem; font-size: 0.825rem; font-weight: 600; color: rgba(255,255,255,0.55); white-space: nowrap; }
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── STAT BOXES ── */
.stats-strip { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.stat-item { background: white; padding: 2.25rem 1.5rem; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--teal); margin-bottom: 0.4rem; }
.stat-lbl { font-size: 0.875rem; color: var(--ink-muted); font-weight: 500; }

/* ── TESTIMONIAL CARD ── */
.testimonial-card { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; transition: all var(--t) var(--ease); }
.testimonial-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: var(--border-md); }
.t-stars { color: var(--cyan); font-size: 0.9rem; margin-bottom: 0.875rem; }
.t-text { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.375rem; font-style: italic; }
.t-text::before { content: '\201C'; color: var(--teal); font-size: 1.5rem; font-weight: 800; font-style: normal; line-height: 0; vertical-align: -0.4rem; margin-right: 2px; }
.t-text::after  { content: '\201D'; color: var(--teal); font-size: 1.5rem; font-weight: 800; font-style: normal; line-height: 0; vertical-align: -0.4rem; margin-left: 2px; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 800; color: white; flex-shrink: 0; }
.av1{background:linear-gradient(135deg,#0B7EA8,#4DCFE0);}
.av2{background:linear-gradient(135deg,#065070,#0B7EA8);}
.av3{background:linear-gradient(135deg,#4DCFE0,#A8EBF2);color:var(--teal-deeper)!important;}
.av4{background:linear-gradient(135deg,#08618A,#4DCFE0);}
.av5{background:linear-gradient(135deg,#065070,#4DCFE0);}
.av6{background:linear-gradient(135deg,#0B7EA8,#065070);}
.t-name { font-weight: 700; font-size: 0.875rem; color: var(--ink); }
.t-role { font-size: 0.775rem; color: var(--ink-muted); }

/* ── FAQ ── */
.faq-item { background: white; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color var(--t); }
.faq-item:hover { border-color: var(--border-md); }
.faq-item.open { border-color: var(--border-str); }
.faq-q { padding: 1.125rem 1.5rem; font-weight: 600; font-size: 0.9375rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--ink); }
.faq-toggle { width: 26px; height: 26px; border-radius: 50%; background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; color: var(--teal); flex-shrink: 0; transition: all var(--t) var(--ease); border: 1px solid var(--border); }
.faq-item.open .faq-toggle { background: var(--teal); color: white; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── PRICE BOX ── */
.price-box { background: white; border: 2px solid var(--border-str); border-radius: var(--r-lg); padding: 1.875rem; box-shadow: var(--sh-lg); position: sticky; top: 82px; }
.price-box-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--ink); margin-bottom: 0.25rem; }
.price-box-sub { font-size: 0.8125rem; color: var(--ink-muted); margin-bottom: 1.5rem; }
.pstats { display: flex; border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; margin-bottom: 1.5rem; }
.pstat { flex: 1; padding: 0.75rem 0.5rem; text-align: center; }
.pstat + .pstat { border-left: 1px solid var(--border); }
.pstat-num { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 0.15rem; }
.pstat-lbl { font-size: 0.65rem; color: var(--ink-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.price-tiers { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.price-tier { border: 2px solid var(--border); border-radius: var(--r-md); padding: 1rem 1.125rem; cursor: pointer; transition: all var(--t) var(--ease); position: relative; }
.price-tier:hover { border-color: var(--border-str); }
.price-tier.selected { border-color: var(--teal); background: var(--teal-glow); }
.pt-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.25rem; }
.pt-name { font-weight: 700; font-size: 0.9375rem; color: var(--ink); }
.pt-price { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--teal); }
.pt-desc { font-size: 0.8rem; color: var(--ink-muted); line-height: 1.45; }
.pt-badge { position: absolute; top: -10px; right: 12px; background: linear-gradient(135deg,#0B7EA8,#4DCFE0); color: white; font-size: 0.67rem; font-weight: 800; padding: 0.2rem 0.55rem; border-radius: 100px; text-transform: uppercase; }
.pt-items { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.2rem; }
.pt-item { font-size: 0.78rem; color: var(--ink-soft); display: flex; align-items: center; gap: 0.4rem; }
.pt-item::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.buy-btn { width: 100%; padding: 1rem 1.5rem; font-size: 1.0625rem; border-radius: var(--r-md); justify-content: center; margin-bottom: 0.875rem; letter-spacing: -0.01em; }
.instant-line { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--ink-muted); margin-bottom: 1.25rem; }
.instant-line .bolt { color: var(--green); }
.guarantee { background: var(--surface-2); border-radius: var(--r-sm); padding: 0.9rem 1rem; display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.125rem; }
.guarantee-title { font-weight: 700; font-size: 0.875rem; color: var(--ink); margin-bottom: 0.1rem; }
.guarantee-text { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.5; }
.pay-row { display: flex; align-items: center; justify-content: center; gap: 0.4rem; flex-wrap: wrap; }
.pay-chip { padding: 0.22rem 0.6rem; border: 1px solid var(--border-md); border-radius: 5px; font-size: 0.68rem; font-weight: 700; color: var(--ink-muted); }

/* ── INCLUDES LIST ── */
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem 1.5rem; }
.inc { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--ink-soft); padding: 0.3rem 0; }
.inc-check { color: var(--teal); flex-shrink: 0; margin-top: 2px; font-weight: 700; }

/* ── WHY CARD ── */
.why-card { background: var(--surface-2); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; transition: all var(--t) var(--ease); }
.why-card:hover { border-color: var(--teal); box-shadow: var(--sh-teal); transform: translateY(-3px); }
.why-icon { width: 48px; height: 48px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.375rem; margin-bottom: 1rem; background: white; border: 1px solid var(--border); box-shadow: var(--sh-sm); }
.why-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.why-desc { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.65; }

/* ── UPSELL STRIP ── */
.upsell-strip { background: var(--teal-deeper); color: white; padding: 64px 5vw; position: relative; overflow: hidden; }
.upsell-strip::before { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(77,207,224,0.12) 0%, transparent 70%); pointer-events: none; }
.upsell-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1; }
.upsell-text h3 { font-family: var(--font-display); font-size: 1.625rem; font-weight: 800; margin-bottom: 0.5rem; }
.upsell-text p { font-size: 0.9375rem; color: rgba(255,255,255,0.65); max-width: 480px; }
.upsell-right { display: flex; align-items: center; gap: 2rem; flex-shrink: 0; flex-wrap: wrap; }
.upsell-pricing .old { font-size: 0.875rem; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.upsell-pricing .new-p { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; color: var(--cyan-light); line-height: 1; }
.upsell-pricing .save { font-size: 0.8rem; color: #4ADE80; font-weight: 600; margin-top: 0.2rem; }

/* ── FOOTER ── */
.footer { background: #05151D; color: rgba(255,255,255,0.5); padding: 4rem 5vw 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem; }
.footer-logo-wordmark { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: white; letter-spacing: -0.02em; }
.footer-logo-wordmark span { color: var(--cyan); }
.footer-brand-desc { font-size: 0.875rem; line-height: 1.7; margin: 0.875rem 0 0; max-width: 280px; }
.footer-col-title { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.125rem; }
.footer-links-col { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links-col a { font-size: 0.875rem; transition: color var(--t); }
.footer-links-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8125rem; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { transition: color var(--t); }
.footer-legal a:hover { color: white; }

/* ── MISC ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; }
.pad-section { padding: 88px 5vw; }
.pad-section-sm { padding: 64px 5vw; }
.max-w { max-width: var(--max-w); margin: 0 auto; }

/* ── FADE-UP ── */
.fu { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fu.visible { opacity: 1; transform: translateY(0); }
.fu-d1 { transition-delay: 0.08s; } .fu-d2 { transition-delay: 0.16s; }
.fu-d3 { transition-delay: 0.24s; } .fu-d4 { transition-delay: 0.32s; }

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  /* Mobile nav bar: logo (left) + compact language/currency switchers + menu (right).
     The switchers STAY visible (essential for international users) but shrink to
     flag/symbol only so they never overlap the logo. Full names still show in
     the dropdowns. The redundant Bundles button is hidden (it's in the menu). */
  .nav-cta .btn { display: none !important; }
  .nav-cta { gap: 0.4rem !important; }
  .dalfast-switcher { gap: 0.3rem; }
  .switcher-btn { padding: 0.3rem 0.45rem !important; font-size: 0.85rem !important; gap: 0.2rem !important; }
  /* Hide the text label inside the switcher button, keep the flag/symbol */
  .switcher-btn .switcher-label { display: none; }
  .switcher-btn svg { width: 9px; height: 9px; }
  .logo-mark { height: 30px; }
  .logo-wordmark { font-size: 1.05rem; }
}
@media(max-width:400px) {
  /* Extra-narrow phones (Xiaomi etc.): tighten further so nothing wraps */
  .logo-wordmark { font-size: 0.95rem; }
  .switcher-btn { padding: 0.28rem 0.38rem !important; }
  .nav { padding: 0 3vw; }
}
@media(max-width:680px) {
  .pad-section { padding: 60px 5vw; }
  .pad-section-sm { padding: 48px 5vw; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .upsell-inner { flex-direction: column; align-items: flex-start; }
  .upsell-right { flex-direction: column; align-items: flex-start; }
  /* Breadcrumb on phones: slightly smaller text */
  .breadcrumb { font-size: 0.78rem; }
}
@media(prefers-reduced-motion:reduce){ .marquee-track{animation:none;} *{transition-duration:0.01ms!important;} }
