/* ============================================================
   DigiThink – Design System v4
   (dev original) Rouge #E7302A · Bleu #18568A · Gray #555555
   CSS externe partagé — toutes les pages
   
   ============================================================ */

/* ── Reset & Variables ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --red:    #e6332a;  --red-d:   #b02b1e;  --red-l:   #FDF0EF;
  --blue:   #1b588f;  --blue-d:  #103c62;  --blue-l:  #EAF1F8;
  --gray:   #555555;  --gray-l:  #888888;  --gray-xl: #C0C5D0;
  --bg:     #F6F7FA;  --surface: #ffffff;  --border:  #E2E6EE;
  --text:   #1A1A2E;  --orange: #D07A00;  --orange-l: #FFF4E6;  --green: #1E8A56;   --green-l: #EAF7F0;
  --radius: 14px;     --rs:      8px;      --nav-h:   80px;
}
html { font-family: 'Barlow', sans-serif; font-size: 15px; line-height: 1.6; color: var(--text); background: var(--bg); scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

/* ── Brand stripe ── */
.stripe { height: 3px; background: linear-gradient(90deg, var(--red) 50%, var(--blue) 100%); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  background: var(--red); color: #fff; font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 700; padding: 13px 28px; border-radius: var(--rs);
  border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: background .18s, transform .15s;
}
.btn-primary:hover { background: var(--red-d); transform: translateY(-1px); }

.btn-outline-blue {
  background: transparent; color: var(--blue); font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 700; padding: 13px 22px; border-radius: var(--rs);
  border: 2px solid var(--blue); display: inline-flex; align-items: center; gap: 8px;
  transition: .18s;
}
.btn-outline-blue:hover { background: var(--blue); color: #fff; }

.btn-white {
  background: #fff; color: var(--gray); font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 700; padding: 13px 28px; border-radius: var(--rs);
  border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: opacity .18s, transform .15s;
}
.btn-white:hover { opacity: .9; transform: translateY(-1px); }

.btn-ghost-white {
  background: transparent; color: rgba(255,255,255,.85); font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 600; padding: 13px 22px; border-radius: var(--rs);
  border: 2px solid rgba(255,255,255,.35); display: inline-flex; align-items: center; gap: 8px;
  transition: .18s;
}
.btn-ghost-white:hover { color: #fff; border-color: rgba(255,255,255,.75); }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; }
.nav-in {
  max-width: 1240px; margin: 0 auto; padding: 0 5%;
  height: var(--nav-h); display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 68px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a, .nav-item-btn {
  font-size: 16px; font-weight: 500; color: var(--gray);
  padding: 8px 15px; border-radius: var(--rs); transition: .15s;
  background: none; border: none; cursor: pointer;
  font-family: inherit; display: flex; align-items: center; gap: 5px; white-space: nowrap;
}
.nav-desktop a:hover, .nav-item-btn:hover { color: var(--blue); background: var(--blue-l); }
.nav-desktop a.active { color: var(--blue); font-weight: 700; }
.nav-cta {
  background: var(--red) !important; color: #fff !important;
  font-weight: 700 !important; font-size: 16px !important;
  padding: 10px 22px !important; border-radius: var(--rs) !important;
  margin-left: 8px; transition: background .2s !important;
}
.nav-cta:hover { background: var(--red-d) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-arrow { font-size: 10px; transition: transform .2s; opacity: .55; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-panel {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(24,86,138,.14), 0 2px 8px rgba(0,0,0,.06);
  padding: 8px; width: 680px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
/* Pont invisible — comble le gap entre bouton et panel */
.dropdown-panel::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0; height: 14px;
}
/* Ouverture via JS (.is-open) ou :focus-within en fallback */
.nav-dropdown.is-open .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-item { display: flex; align-items: flex-start; gap: 12px; padding: 13px; border-radius: var(--rs); transition: .15s; }
.dropdown-item:hover { background: var(--bg); }
.dd-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dd-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.dd-desc { font-size: 12px; color: var(--gray-l); line-height: 1.4; }

/* Burger mobile */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--gray); border-radius: 2px; transition: .25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nm-arrow { font-size: 13px; margin-left: 4px; }

.nav-mobile { display: none; background: var(--surface); border-top: 1px solid var(--border); padding: 12px 5% 20px; }
.nav-mobile.open { display: block; }
.nav-mobile a, .nav-mobile .nm-btn {
  display: block; padding: 11px 12px; font-size: 15px; font-weight: 500;
  color: var(--gray); border-radius: var(--rs); border: none; background: none;
  cursor: pointer; text-align: left; width: 100%; font-family: inherit;
}
.nav-mobile a:hover, .nav-mobile .nm-btn:hover { color: var(--blue); background: var(--blue-l); }
.nm-sub { padding-left: 20px; display: none; }
.nm-sub.open { display: block; }
.nm-sub a { font-size: 13px; padding: 8px 12px; display: block; }
.nm-cta-wrap { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.nm-cta {
  display: block !important; text-align: center !important;
  background: var(--red) !important; color: #fff !important;
  font-weight: 700 !important; border-radius: var(--rs) !important; padding: 12px !important;
}

/* ══════════════════════════════════════
   HERO — INDEX (photo de fond)
══════════════════════════════════════ */
.hero-section { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('hero-bg.webp');
  background-size: cover; background-position: center 30%;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(46, 74, 99, 0.92) 0%,
    rgba(46, 74, 99, 0.92) 25%,
    rgba(30, 36, 44, 0.58) 65%,
    rgba(0,0,0,.18) 100%
  );
}
.hero-in {
  max-width: 1240px; margin: 0 auto; padding: 88px 5%;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 22px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: blink 2.2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.hero-h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(40px,5vw,66px); font-weight: 700; line-height: 1.03; color: #fff; margin-bottom: 18px; }
.hero-h1 .cr { color: var(--red); }
.hero-p { font-size: 17px; color: rgba(255,255,255,.84); line-height: 1.75; max-width: 460px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); flex-wrap: wrap; }
.stat-val { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 700; color: #fff; line-height: 1; }
.stat-val .u { color: var(--red); font-size: 22px; }
.stat-lbl { font-size: 14px; color: rgba(255,255,255,.62); margin-top: 4px; }

/* ══════════════════════════════════════
   HERO — PAGES INTÉRIEURES (photo de fond)
══════════════════════════════════════ */
.page-hero { position: relative; overflow: hidden; padding: 88px 5% 80px; }
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('hero-bg.webp');
  background-size: cover; background-position: center 30%;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg,
    rgba(46, 74, 99, 0.92) 0%,
    rgba(46, 74, 99, 0.92) 25%,
    rgba(30, 36, 44, 0.58) 65%,
    rgba(0,0,0,.18) 100%
  );
}
.page-hero-in {
  max-width: 1240px; margin: 0 auto; padding: 0 5%;
  position: relative; z-index: 1;
}
.page-hero-in.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; padding: 0 5%;}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px,5.5vw,72px); font-weight: 700;
  color: #fff; margin-bottom: 14px; line-height: 1.02;
}
.page-hero h1 .cr { color: var(--red); }
.page-hero-lead { font-size: 18px; color: rgba(255,255,255,.78); max-width: 600px; line-height: 1.75; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.25); }

/* hero badge petite version (pages app) */
.hero-badge-sm {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px; padding: 4px 13px;
  font-size: 13px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px;
}

/* ══════════════════════════════════════
   MOCK DASHBOARD
══════════════════════════════════════ */
.hero-visual { position: relative; animation: float 5s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.win { background: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.38), 0 8px 24px rgba(0,0,0,.2); }
.win-stripe { height: 3px; background: linear-gradient(90deg, var(--red) 50%, var(--blue) 100%); }
.win-bar { height: 42px; background: #F3F5FA; border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 14px; gap: 8px; }
.wdots { display: flex; gap: 5px; }
.wd { width: 9px; height: 9px; border-radius: 50%; }
.wd.r { background: #FF5F57; } .wd.y { background: #FEBC2E; } .wd.g { background: #28C840; }
.wtitle { font-size: 11px; color: var(--gray-l); margin-left: 6px; font-weight: 500; }
.win-body { display: grid; grid-template-columns: 140px 1fr; height: 300px; }
.wside { background: #F8F9FC; border-right: 1px solid var(--border); padding: 12px 8px; display: flex; flex-direction: column; gap: 2px; }
.wslbl { font-size: 11px; font-weight: 700; padding: 4px 8px 10px; display: flex; gap: 3px; }
.wslbl .r { color: var(--red); font-family: 'Barlow Condensed', sans-serif; font-size: 13px; }
.wslbl .b { color: var(--blue); font-family: 'Barlow Condensed', sans-serif; font-size: 13px; }
.wslbl img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
}
.wnav { display: flex; align-items: center; gap: 6px; padding: 7px 8px; border-radius: 6px; font-size: 10.5px; color: var(--gray); cursor: default; }
.wnav.on { background: var(--blue-l); color: var(--blue); font-weight: 700; }
.wnav svg { width: 12px; height: 12px; flex-shrink: 0; }
.wmain { padding: 12px; overflow: hidden; }
.wkpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 9px; }
.wkpi { background: var(--bg); border: 1px solid var(--border); border-radius: 7px; padding: 8px 9px; }
.wkpi-l { font-size: 10px; color: var(--gray-l); margin-bottom: 2px; }
.wkpi-v { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); }
.wkpi-c { font-size: 10px; color: #2E9E6B; margin-top: 1px; font-weight: 600; }
.wchart { background: var(--bg); border: 1px solid var(--border); border-radius: 7px; padding: 10px; height: 148px; }
.wct { font-size: 9px; color: var(--gray); margin-bottom: 7px; font-weight: 600; }
.wbars { display: flex; align-items: flex-end; gap: 4px; height: 105px; }
.wb { flex: 1; border-radius: 3px 3px 0 0; min-height: 12px; }
.wb.n { background: #DDE3ED; } .wb.r { background: var(--red); } .wb.b { background: var(--red-d); }
.notif-box {
  position: absolute; bottom: -12px; right: -12px;
  background: #fff; border: 1px solid var(--border);
  border-top: 3px solid var(--blue); border-radius: var(--rs);
  padding: 10px 14px; box-shadow: 0 8px 28px rgba(0,0,0,.2); min-width: 152px; font-size: 11px;
}
.notif-t { font-size: 10px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.notif-v { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); }
.notif-s { font-size: 10px; color: var(--gray-l); margin-top: 1px; }

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 5%; }
.section { max-width: 1240px; margin: 0 auto; padding: 80px 5%; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.section-eyebrow::before { content: ''; display: inline-block; width: 16px; height: 2px; background: var(--red); border-radius: 1px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px,3vw,44px); font-weight: 700; line-height: 1.08; color: var(--text); margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--gray); max-width: 580px; line-height: 1.75; margin-bottom: 48px; }
.tag { font-size: 13px; padding: 3px 10px; border-radius: 100px; background: var(--bg); border: 1px solid var(--border); color: var(--gray-l); }

/* ══════════════════════════════════════
   ICON COLORS
══════════════════════════════════════ */
.ic-blue  { background: var(--blue-l); color: var(--blue); }
.ic-red   { background: var(--red-l);  color: var(--red);  }
.ic-green { background: #EAF7F0;       color: #1E8A56;     }
.ic-orange{ background: #FFF4E6;       color: #D07A00;     }

/* ══════════════════════════════════════
   CARDS
══════════════════════════════════════ */
.card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(24,86,138,.1); transform: translateY(-2px); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.card-desc { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* Modules */
.modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 14px; }
.module-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; transition: .2s; display: flex; flex-direction: column; color: inherit; cursor: pointer; }
.module-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(24,86,138,.1); transform: translateY(-2px); }
.mod-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--accent); margin-bottom: 7px; }
.mod-desc { font-size: 15px; color: var(--gray); line-height: 1.65; }
.mod-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; }
.mod-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; font-size: 15px; font-weight: 600; color: var(--accent); }

/* ══════════════════════════════════════
   CAROUSEL
══════════════════════════════════════ */
.carousel-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); padding: 28px 0; }
.clients-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); padding: 28px 0; }
.carousel-label, .clients-label { text-align: center; font-size: 15px; color: var(--gray-xl); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 18px; }
.carousel-outer { overflow: hidden; position: relative; }
.carousel-outer::before, .carousel-outer::after { content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.carousel-outer::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.carousel-outer::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.carousel-track { display: flex; align-items: center; gap: 48px; width: max-content; animation: scroll-logos 50s linear infinite; padding: 4px 0; }
.carousel-track:hover { animation-play-state: paused; }
@keyframes scroll-logos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logo-item { display: flex; align-items: center; height: 90px; flex-shrink: 0; }
.logo-item img { max-height: 90px; max-width: 350px; object-fit: contain; filter: grayscale(1) opacity(.5); transition: .3s; cursor: pointer; }
.logo-item img:hover { filter: grayscale(0) opacity(1); transform: scale(1.06); }
.logo-pill { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gray-xl); border: 1.5px solid var(--border); padding: 8px 16px; border-radius: 100px; white-space: nowrap; cursor: default; transition: .2s; }
.logo-pill:hover { color: var(--blue); border-color: rgba(24,86,138,.3); background: var(--blue-l); }

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-bg { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 1240px; margin: 0 auto; padding: 80px 5%; }
.pricing-section { background: white; border-top: 1px solid var(--border); padding: 80px 5%; }
.pricing-section .pricing-in { max-width: 1240px; margin: 0 auto; }
.pricing-note { margin-top: 28px; font-size: 13px; color: var(--gray-l); text-align: center; }

.pilier-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.ptab { display: flex; align-items: center; justify-content: center; flex: 1; gap: 8px; padding: 10px 20px; border-radius: 100px; border: 1.5px solid var(--border); background: var(--surface); font-size: 15px; font-weight: 600; color: var(--gray); cursor: pointer; transition: .18s; font-family: 'Barlow', sans-serif; }
.ptab:hover { color: var(--accent); border-color: var(--accent); background: var(--surface); }
.ptab.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.ptab .tdot { width: 15px; height: 15px; border-radius: 50%; }
.ppanel { display: none; } .ppanel.show { display: block; }

.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(218px,1fr)); gap: 14px; }
.plan, .plan-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px;
  position: relative; transition: .2s;
}
.plan:hover, .plan-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.07); }
.plan.featured { background: var(--accent); border-color: var(--accent); color: #fff; }
.plan-badge, .plan-badge-pill {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1.5px solid var(--accent); color: var(--accent); font-size: 10px; font-weight: 700;
  text-transform: uppercase; padding: 4px 14px; border-radius: 100px; white-space: nowrap;
}
.plan-name { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-l); margin-bottom: 12px; }
.plan.featured .plan-name { color: rgba(255,255,255,.5); }
.plan-price { font-family: 'Barlow Condensed', sans-serif; font-size: 46px; font-weight: 700; color: var(--text); line-height: 1; }
.plan.featured .plan-price { color: #fff; }
.plan-price sup { font-size: 20px; vertical-align: super; }
.plan-period { font-size: 12px; color: var(--gray-l); margin-bottom: 16px; }
.plan.featured .plan-period { color: rgba(255,255,255,.45); }
.plan-div, .plan-divider { height: 1px; background: var(--border); margin: 16px 0; }
.plan.featured .plan-div, .plan.featured .plan-divider { background: rgba(255,255,255,.15); }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 7px; font-size: 13px; color: var(--gray); }
.plan.featured .plan-feats li { color: rgba(255,255,255,.78); }
.feat-chk { color: var(--accent, #2E9E6B); flex-shrink: 0; font-size: 13px; margin-top: 1px; }
.plan.featured .feat-chk { color:#fff; }
.feat-dim { color: var(--border); flex-shrink: 0; }
.plan-cta, .plan-cta-btn {
  display: block; margin-top: 20px; padding: 11px 0; text-align: center;
  border-radius: var(--rs); font-size: 13px; font-weight: 700;
  border: 2px solid var(--border); color: var(--gray); background: transparent;
  cursor: pointer; width: 100%; font-family: 'Barlow', sans-serif; transition: .18s;
}
.plan-cta:hover, .plan-cta-btn:hover { border-color: var(--blue); color: var(--blue); }
.plan-cta.featured, .plan-cta.fc { background: var(--accent); color: #fff; border-color: #fff; }
.plan-cta.featured:hover, .plan-cta.fc:hover { opacity: 0.85; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section { background: rgba(46,74,99); padding: 88px 5%; text-align: center; }
.cta-inner { max-width: 660px; margin: 0 auto; }
.cta-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px,4vw,56px); font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.06; }
.cta-title .cr { color: var(--red); }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.62); margin-bottom: 34px; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
/* contact cta band */
.cta-band { background:  rgba(46,74,99); padding: 64px 5%; text-align: center; }
.cta-band-in { max-width: 600px; margin: 0 auto; }
.cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px,3.5vw,46px); font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.1; }
.cta-band h2 .cr { color: var(--red); }
.cta-band p { font-size: 15px; color: rgba(255,255,255,.6); margin-bottom: 26px; }
.cta-band-btns { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   VALUES
══════════════════════════════════════ */
.values-grid, .values-grid-apropos { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 14px; }
.val-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: .2s; }
.val-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.val-accent { height: 3px; width: 30px; border-radius: 2px; margin-bottom: 14px; }
.val-num { font-size: 10px; font-weight: 700; color: var(--gray-xl); letter-spacing: 2px; margin-bottom: 10px; }
.val-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.val-desc { font-size: 15px; color: var(--gray); line-height: 1.65; }
.val-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

/* ══════════════════════════════════════
   STATS BAND
══════════════════════════════════════ */
.stats-band { background:  rgba(46,74,99); padding: 60px 5%; }
.stats-in { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 36px; }
.stat-block { text-align: center; }
.stat-big { font-family: 'Barlow Condensed', sans-serif; font-size: 54px; font-weight: 700; color: #fff; line-height: 1; }
.stat-sub { font-size: 15px; color: rgba(255,255,255,.55); margin-top: 6px; line-height: 1.4; }

/* ══════════════════════════════════════
   PEPPOL
══════════════════════════════════════ */
.peppol-box { background: #fff; border: 1.5px solid var(--blue); border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.peppol-title { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 700; color: var(--blue); margin-bottom: 5px; }
.peppol-desc { font-size: 14px; color: var(--gray); }
.peppol-badge { background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; padding: 11px 24px; border-radius: 100px; white-space: nowrap; display: inline-block; transition: .18s; }
.peppol-badge:hover { background: var(--blue-d); }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.story-section { max-width: 1240px; margin: 0 auto; padding: 80px 5%; }
.story-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start; }
.story-aside { position: sticky; top: 90px; }
.story-aside-label { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--red); margin-bottom: 16px; }
.story-aside-title { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 700; color: var(--text); line-height: 1.1; margin-bottom: 20px; }
.story-aside-quote { border-left: 3px solid var(--red); padding-left: 16px; font-size: 15px; color: var(--gray); line-height: 1.75; font-style: italic; }
.story-body h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 12px; margin-top: 44px; }
.story-body h2:first-child { margin-top: 0; }
.story-body p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.story-body strong { color: var(--text); font-weight: 700; }
.vision-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.vchip { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1.5px solid var(--border); border-radius: 100px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--text); transition: .18s; }
.vchip:hover { border-color: var(--blue); color: var(--blue); }
.vchip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.roadmap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 12px; margin: 24px 0; }
.rm-item { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--rs); padding: 14px 16px; display: flex; align-items: flex-start; gap: 12px; transition: .18s; }
.rm-item:hover { border-color: var(--blue); background: var(--blue-l); }
.rm-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rm-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.rm-desc { font-size: 15px; color: var(--gray-l); }
.rm-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 100px; margin-top: 5px; text-transform: uppercase; }
.rm-badge.live   { background: #EAF7F0; color: #1E8A56; }
.rm-badge.soon   { background: var(--blue-l); color: var(--blue); }
.rm-badge.coming { background: #FFF4E6; color: #D07A00; }
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.approach-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden; transition: .2s; }
.approach-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.approach-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.ac-num { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 700; line-height: 1; margin-bottom: 12px; opacity: .12; }
.ac-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ac-desc { font-size: 15px; color: var(--gray); line-height: 1.65; }
.rse-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.rse-visual { background: #ffffff; border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; gap: 14px; }
.rse-item { display: flex; align-items: center; gap: 12px; }
.rse-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.rse-txt { font-size: 14px; color: var(--gray); }

/* ══════════════════════════════════════
   FINANCE PAGE
══════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.feat-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: .2s; }
.feat-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(24,86,138,.1); transform: translateY(-2px); }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feat-title { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feat-desc { font-size: 15px; color: var(--gray); line-height: 1.65; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.feat-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 15px; color: var(--gray); }
.feat-list li::before { content: '✓'; color: #2E9E6B; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.invoice-preview, .inv-preview { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 22px; backdrop-filter: blur(8px); }
.inv-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.inv-badge { background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; }
.inv-from { font-size: 12px; color: rgba(255,255,255,.9); }
.inv-from strong { display: block; font-size: 14px; font-weight: 700; }
.inv-line { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 12px; color: rgba(255,255,255,.8); }
.inv-line span { font-weight: 600; color: #fff; }
.inv-total { margin-top: 14px; padding: 12px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; justify-content: space-between; align-items: center; }
.inv-total-lbl { font-size: 12px; color: rgba(255,255,255,.7); }
.inv-total-val { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: #fff; }
.inv-peppol { margin-top: 10px; display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.6); }
.inv-peppol::before { content: '✓'; color: #4CAF50; font-weight: 700; }
.peppol-section { background: var(--blue-l); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 5%; }
.peppol-in { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.peppol-badge-big { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff; border-radius: 100px; padding: 7px 18px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
.peppol-steps { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.pstep { display: flex; align-items: flex-start; gap: 16px; }
.pstep-num { width: 32px; height: 32px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; flex-shrink: 0; }
.pstep-title { font-weight: 700; color: var(--text); font-size: 15px; margin-bottom: 3px; }
.pstep-desc { font-size: 15px; color: var(--gray); }
.peppol-flow { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.pflow-step { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; font-size: 15px; }
.pflow-step .pf-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pflow-step .pf-label { font-weight: 600; color: var(--text); }
.pflow-arrow { color: var(--gray-xl); font-size: 18px; }
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.how-step { padding: 28px 24px; background: var(--surface); border: 1px solid var(--border); }
.how-step:not(:last-child) { border-right: none; }
.how-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.how-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.how-num { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 700; line-height: 1; margin-bottom: 12px; }
.how-title { font-weight: 700; color: var(--text); font-size: 15px; margin-bottom: 6px; }
.how-desc { font-size: 15px; color: var(--gray); line-height: 1.55; }
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 820px; }
.faq-item { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--rs); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--text); gap: 12px; transition: background .15s; }
.faq-q:hover { background: var(--bg); }
.faq-arrow { flex-shrink: 0; font-size: 12px; color: var(--gray-l); transition: transform .2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 14px; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-section { max-width: 1240px; margin: 0 auto; padding: 80px 5%; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.hpill { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: var(--rs); padding: 9px 18px; color: #fff; font-size: 13px; font-weight: 600; transition: .18s; }
.hpill:hover { background: rgba(255,255,255,.2); }
.hpill svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-contact-pills { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.form-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 36px 32px; }
.form-title { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--gray-l); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .6px; }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--rs); font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--text); background: var(--bg); transition: border-color .18s, box-shadow .18s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(24,86,138,.08); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.subject-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.spill { padding: 7px 15px; border-radius: 100px; border: 1.5px solid var(--border); background: var(--bg); font-size: 13px; font-weight: 600; color: var(--gray); cursor: pointer; transition: .15s; user-select: none; }
.spill:hover { border-color: var(--blue); color: var(--blue); }
.spill.selected { background: var(--blue); color: #fff; border-color: var(--blue); }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
.form-check input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--blue); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-check-label { font-size: 13px; color: var(--gray-l); line-height: 1.55; }
.form-check-label a { color: var(--blue); }
.form-submit { width: 100%; padding: 14px; background: var(--red); color: #fff; font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 700; border: none; border-radius: var(--rs); cursor: pointer; transition: background .18s, transform .15s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { background: var(--red-d); transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success-icon { width: 64px; height: 64px; border-radius: 50%; background: #EAF7F0; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-success h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--gray-l); }
.info-panel { display: flex; flex-direction: column; gap: 20px; }
.antennae-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.office-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; transition: .18s; position: relative;}
.office-card:hover { box-shadow: 0 4px 20px rgba(24,86,138,.08); transform: translateY(-1px); }
.office-card.main { border-color: var(--blue); }
.office-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; padding: 3px 10px; border-radius: 100px; margin-bottom: 12px; }
.office-badge.hq { background: var(--blue-l); color: var(--blue); }
.office-badge.antenna { background: var(--bg); color: var(--gray-l); border: 1px solid var(--border); }
.office-name { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.office-info-list { display: flex; flex-direction: column; gap: 10px; }
.office-info-row { display: flex; align-items: center; gap: 10px; }
.oinfo-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.oinfo-label { font-size: 12px; color: var(--gray-l); margin-bottom: 1px; }
.oinfo-val { font-size: 15px; font-weight: 600; color: var(--text); }
.oinfo-val a { color: var(--text); transition: color .15s; }
.oinfo-val a:hover { color: var(--blue); }
.map-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.map-in { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 290px 1fr; }
.map-sidebar { padding: 36px 32px; background: var(--surface); }
.map-sidebar-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 18px; }
.map-loc-list { display: flex; flex-direction: column; gap: 6px; }
.map-loc-item { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: var(--rs); cursor: pointer; transition: .15s; border: 1.5px solid transparent; }
.map-loc-item:hover, .map-loc-item.active { background: var(--blue-l); border-color: rgba(24,86,138,.2); }
.map-loc-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.map-loc-name { font-size: 13px; font-weight: 700; color: var(--text); }
.map-loc-addr { font-size: 12px; color: var(--gray-l); }
.map-frame { height: 380px; overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: none; }
.why-strip { background: var(--bg); border-top: 1px solid var(--border); padding: 60px 5%; }
.why-strip-in { max-width: 1240px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 25px; margin-top: 36px; }
.why-item { display: flex; flex-direction: column; gap: 8px; }
.why-icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.why-title { font-size: 15px; font-weight: 700; color: var(--text); }
.why-desc { font-size: 15px; color: var(--gray-l); line-height: 1.55; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 52px 5% 24px; }
.footer-in { max-width: 1240px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 44px; }
.footer-brand p { font-size: 13px; color: var(--gray-l); margin-top: 14px; line-height: 1.7; max-width: 270px; }
.footer-brand img { height: 52px; width: auto; }
.footer-col { display: flex; flex-direction: column; }
.footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--gray-l); padding: 4px 0; transition: color .15s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 22px; border-top: 1px solid var(--border); }
.footer-copy { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-xl); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 12px; color: var(--gray-xl); transition: color .15s; }
.footer-legal a:hover { color: var(--blue); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --nav-h: 70px; }
  .nav-logo img { height: 54px; }
  .nav-desktop { display: none; }
  .nav-burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-in { grid-template-columns: 1fr; gap: 36px; padding: 64px 5%; }
  .hero-visual { display: none; }
  .hero-section { min-height: auto; }
  .page-hero-in.two-col { grid-template-columns: 1fr; padding: 0 5%;}
  .inv-preview, .invoice-preview { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-aside { position: static; }
  .rse-grid { grid-template-columns: 1fr; }
  .rse-visual { display: none; }
  .peppol-in { grid-template-columns: 1fr; }
  .peppol-flow { display: none; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-step, .how-step:first-child, .how-step:last-child { border-radius: var(--radius); border: 1.5px solid var(--border); }
  .contact-grid { grid-template-columns: 1fr; }
  .antennae-grid { grid-template-columns: 1fr; }
  .map-in { grid-template-columns: 1fr; }
  .map-sidebar { padding: 24px 5%; }
  .dropdown-panel { width: 340px; grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  :root { --nav-h: 62px; }
  .nav-logo img { height: 44px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 22px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .section, .story-section, .contact-section { padding: 56px 5%; }
  .page-hero { padding: 60px 5%; }
  .hero-in { padding: 56px 5%; }
  .stats-in { grid-template-columns: repeat(2,1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .pilier-tabs { gap: 6px; }
  .ptab { padding: 8px 14px; font-size: 12px; }
  .hero-h1 { font-size: clamp(36px,8vw,50px); }
  .stat-val { font-size: 24px; }
  .cta-btns, .hero-btns { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 420px) {
  .plans-grid { grid-template-columns: 1fr; }
  .cta-btns { align-items: center; }
}
