/* ========================================================
   VeloNav — Main Stylesheet
   ======================================================== */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary:       #2563eb;
  --primary-dark:  #1d4ed8;
  --primary-dim:   rgba(37,99,235,.10);
  --primary-dim2:  rgba(37,99,235,.05);
  --fg:            #0f172a;
  --muted:         #64748b;
  --muted-bg:      #f1f5f9;
  --border:        #e2e8f0;
  --bg:            #ffffff;
  --r:             12px;
  --rl:            20px;
  --rxl:           28px;
  --r2xl:          40px;
  --sh:    0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --shl:   0 20px 60px rgba(0,0,0,.12),0 8px 24px rgba(0,0,0,.07);
  --shxl:  0 32px 80px rgba(0,0,0,.15),0 8px 32px rgba(0,0,0,.09);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--fg); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Typography Helpers ── */
.mf { font-family: 'Montserrat', sans-serif; }
.text-primary { color: var(--primary); }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), #06b6d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Layout ── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3.5vw, 46px); font-weight: 800;
  letter-spacing: -1px; line-height: 1.1; margin-bottom: 14px;
}
.section-header p { font-size: 17px; color: var(--muted); max-width: 620px; margin: 0 auto; line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 700; letter-spacing: .01em;
  transition: all .2s; cursor: pointer; white-space: nowrap;
}
.btn-lg    { padding: 15px 36px; font-size: 15px; }
.btn-full  { width: 100%; justify-content: center; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 20px rgba(37,99,235,.3); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 28px rgba(37,99,235,.4); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--fg); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.btn-white  { background: #fff; color: var(--primary); box-shadow: var(--sh); }
.btn-white:hover { background: #f8fafc; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-group-center { justify-content: center; }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 50px;
  background: var(--primary-dim); color: var(--primary);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid rgba(37,99,235,.2); margin-bottom: 18px;
}

/* ── HEADER ── */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: var(--sh); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 900; letter-spacing: -.5px; display: flex; align-items: center; }
.logo .lv { color: var(--primary); }
.logo .ld { color: var(--muted); margin: 0 1px; }
.desk-nav { display: flex; align-items: center; gap: 26px; }
.desk-nav a { font-size: 13px; font-weight: 600; color: var(--muted); transition: color .2s; }
.desk-nav a:hover, .desk-nav a.active { color: var(--primary); }
.header-right { display: flex; align-items: center; gap: 16px; }
.hdr-phone { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted); transition: color .2s; }
.hdr-phone:hover { color: var(--primary); }
.hamburger { display: none; padding: 8px; border-radius: 8px; color: var(--fg); transition: background .2s; }
.hamburger:hover { background: var(--muted-bg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 99; padding: 24px;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  border-top: 1px solid var(--border); overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mob-nav a { display: block; padding: 14px 0; font-size: 18px; font-weight: 600; color: var(--muted); border-bottom: 1px solid var(--border); transition: color .2s; }
.mob-nav a:hover, .mob-nav a.active { color: var(--primary); }
.mob-contact { padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mob-contact a { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--muted); transition: color .2s; }
.mob-contact a:hover { color: var(--primary); }

/* ── HERO ── */
.hero-section {
  padding: 80px 0 100px;
  background: radial-gradient(circle at 15% 50%, rgba(37,99,235,.08), transparent 40%),
              radial-gradient(circle at 85% 50%, rgba(59,130,246,.05), transparent 40%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text .badge { margin-bottom: 20px; }
.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 5vw, 62px); font-weight: 900;
  letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 20px;
}
.hero-text p { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 560px; margin-bottom: 36px; }
.hero-img-wrap { position: relative; }
.hero-img-card {
  background: rgba(255,255,255,.8); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.5); border-radius: var(--rxl);
  padding: 12px; box-shadow: var(--shxl); transform: rotate(2deg); transition: transform .4s;
}
.hero-img-card:hover { transform: rotate(0deg); }
.hero-img-card img { border-radius: calc(var(--rxl) - 6px); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(50px); z-index: -1; pointer-events: none; }
.hero-blob-1 { top: -40px; right: -40px; width: 220px; height: 220px; background: rgba(37,99,235,.15); }
.hero-blob-2 { bottom: -40px; left: -40px; width: 220px; height: 220px; background: rgba(56,189,248,.12); }

/* ── TRUSTED BAR ── */
.trusted-bar { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fafbfc; }
.trusted-bar p { text-align: center; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 24px; }
.trusted-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px 56px; opacity: .4; filter: grayscale(1); transition: all .5s; }
.trusted-logos:hover { opacity: .7; filter: grayscale(0); }
.trusted-logos span { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; letter-spacing: -.5px; color: var(--muted); }

/* ── STATS ── */
.stats-section { padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 32px 20px; background: var(--muted-bg); border-radius: var(--rl); border: 1px solid var(--border); transition: box-shadow .2s, transform .2s; }
.stat-card:hover { box-shadow: var(--sh); transform: translateY(-3px); }
.stat-value { font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 900; color: var(--primary); letter-spacing: -1px; margin-bottom: 6px; }
.stat-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* ── SOLUTIONS GRID ── */
.solutions-section { padding: 100px 0; background: #f8fafc; position: relative; overflow: hidden; }
.solutions-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(0,0,0,.04) 1px, transparent 0);
  background-size: 40px 40px; pointer-events: none;
}
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sol-card { background: var(--bg); border-radius: var(--rxl); overflow: hidden; transition: all .4s cubic-bezier(.4,0,.2,1); box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.sol-card:hover { transform: translateY(-10px); box-shadow: var(--shxl); }
.sol-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.sol-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.sol-card:hover .sol-card-img img { transform: scale(1.1); }
.sol-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), transparent); opacity: .6; }
.sol-card-body { position: relative; margin: -36px 16px 0; background: var(--bg); border-radius: var(--rl); padding: 20px; border: 1px solid var(--border); box-shadow: var(--sh); transition: border-color .3s; }
.sol-card:hover .sol-card-body { border-color: #93c5fd; }
.sol-icon-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.sol-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sol-card h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; }
.sol-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-top: 8px; }
.sol-card-footer { padding: 10px 16px 20px; display: flex; justify-content: flex-end; }
.link-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--muted); transition: color .2s; }
.link-btn:hover { color: var(--primary); }
.link-btn svg { transition: transform .2s; }
.link-btn:hover svg { transform: translateX(3px); }
/* icon colour variants */
.ic-blue    { background: rgba(59,130,246,.1);  color: #2563eb; }
.ic-orange  { background: rgba(249,115,22,.1);  color: #ea580c; }
.ic-red     { background: rgba(239,68,68,.1);   color: #dc2626; }
.ic-emerald { background: rgba(16,185,129,.1);  color: #059669; }
.ic-indigo  { background: rgba(99,102,241,.1);  color: #4f46e5; }

/* ── WHY SECTION ── */
.why-section { padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img { position: relative; }
.why-img img { width: 100%; border-radius: var(--r2xl); box-shadow: var(--shxl); border: 1px solid rgba(37,99,235,.1); }
.why-float-card { position: absolute; bottom: -32px; right: -32px; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: var(--rl); padding: 20px 24px; box-shadow: var(--shl); max-width: 240px; display: none; }
@media(min-width:900px){ .why-float-card { display: block; } }
.wfc-icon-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.wfc-icon-bg  { width: 36px; height: 36px; border-radius: 50%; background: rgba(34,197,94,.1); display: flex; align-items: center; justify-content: center; color: #16a34a; }
.wfc-label    { font-weight: 700; font-size: 14px; }
.why-float-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.why-content h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; letter-spacing: -.8px; margin-bottom: 16px; line-height: 1.1; }
.why-content > p { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.why-features { display: grid; gap: 12px; margin-bottom: 36px; }
.why-feature { display: flex; gap: 16px; padding: 16px; border-radius: var(--rl); transition: background .2s, border .2s; border: 1px solid transparent; }
.why-feature:hover { background: var(--muted-bg); border-color: var(--border); }
.why-feature-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: var(--primary-dim); border: 1px solid rgba(37,99,235,.1); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.why-feature h4 { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.why-feature p  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── CONTACT SECTION ── */
.contact-section { background: #f8fafc; padding: 100px 0; border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form-card { background: var(--bg); padding: 40px; border-radius: var(--rxl); border: 1px solid var(--border); box-shadow: var(--sh); }
.contact-form-card h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.contact-form-card > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group .opt { font-weight: 400; color: var(--muted); }
.form-group input, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: 14px; font-family: inherit; color: var(--fg); background: var(--bg);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-err { display: none; font-size: 12px; color: #dc2626; margin-top: 4px; }
.form-success { display: none; padding: 14px 18px; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3); border-radius: var(--r); font-size: 14px; font-weight: 600; color: #065f46; margin-bottom: 18px; }
.contact-info-list { display: grid; gap: 22px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--primary-dim); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item h4 { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14px; color: var(--muted); line-height: 1.6; transition: color .2s; }
.contact-info-item a:hover { color: var(--primary); }
.map-embed { margin-top: 16px; border-radius: var(--rl); overflow: hidden; height: 260px; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── FOOTER ── */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.5fr 2fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.ft-brand p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 12px 0 8px; max-width: 200px; }
.ft-brand small { font-size: 12px; color: var(--muted); }
.ft-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.ft-col a { display: block; font-size: 13px; color: var(--muted); margin-bottom: 9px; transition: color .2s; }
.ft-col a:hover { color: var(--primary); }
.ft-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; font-size: 13px; color: var(--muted); }
.ft-contact-item svg { flex-shrink: 0; margin-top: 3px; }
.ft-contact-item a { color: var(--muted); font-size: 13px; transition: color .2s; }
.ft-contact-item a:hover { color: var(--primary); }
.ft-hours { font-size: 13px; color: var(--muted); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: var(--muted); }

/* ── ABOUT PAGE ── */
.about-hero { background: var(--primary); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,.06) 1px, transparent 0); background-size: 32px 32px; }
.about-hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(28px, 4.5vw, 52px); font-weight: 900; letter-spacing: -1px; margin-bottom: 20px; position: relative; }
.about-hero h1 em { font-style: normal; opacity: .75; }
.about-hero p { font-size: 18px; opacity: .9; max-width: 680px; margin: 0 auto; line-height: 1.7; position: relative; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-text h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(24px, 3vw, 38px); font-weight: 800; letter-spacing: -.5px; margin-bottom: 16px; }
.story-text p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.story-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.story-check { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--muted); }
.story-check svg { color: var(--primary); flex-shrink: 0; }
.story-img { border-radius: var(--r2xl); overflow: hidden; box-shadow: var(--shxl); }
.story-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.expertise-card { background: var(--bg); border-radius: var(--rl); padding: 28px; border: 1px solid var(--border); transition: all .3s; }
.expertise-card:hover { border-color: #93c5fd; box-shadow: var(--shl); transform: translateY(-4px); }
.expertise-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-dim); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all .3s; }
.expertise-card:hover .expertise-icon { background: var(--primary); color: #fff; }
.expertise-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; margin-bottom: 10px; }
.expertise-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); top: 0; bottom: 0; width: 2px; background: rgba(37,99,235,.1); }
.tl-item { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; position: relative; margin-bottom: 60px; align-items: center; }
.tl-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 16px; height: 16px; border-radius: 50%; background: var(--primary); border: 3px solid var(--bg); box-shadow: 0 0 0 3px rgba(37,99,235,.15); z-index: 1; }
.tl-content { }
.tl-year { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 900; color: rgba(37,99,235,.15); line-height: 1; }
.tl-content h4 { font-weight: 800; font-size: 18px; margin: 4px 0; }
.tl-content p  { font-size: 14px; color: var(--muted); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card { background: var(--bg); padding: 40px; border-radius: var(--rxl); border: 1px solid var(--border); }
.mv-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.mv-card h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.mv-card p  { font-size: 16px; color: var(--muted); line-height: 1.7; }
.global-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 700px; margin: 48px auto 0; }
.gs-value { font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 900; color: var(--primary); letter-spacing: -1px; }
.gs-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: 4px; }

/* ── SOLUTION PAGE ── */
.sol-hero { padding: 64px 0 80px; background: #f8fafc; border-bottom: 1px solid var(--border); overflow: hidden; }
.sol-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.sol-hero-text h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(26px, 4vw, 50px); font-weight: 900; letter-spacing: -1px; line-height: 1.05; margin-bottom: 18px; }
.sol-hero-text p { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.sol-hero-img { display: none; }
@media(min-width:900px){ .sol-hero-img { display: block; } }
.img-card { background: rgba(255,255,255,.85); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.5); border-radius: var(--rxl); padding: 10px; box-shadow: var(--shxl); }
.img-card img { border-radius: calc(var(--rxl) - 4px); width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* Features interactive */
.features-section { padding: 100px 0; }
.features-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; }
.features-list  { display: grid; gap: 12px; }
.feat-btn {
  width: 100%; text-align: left; padding: 20px 24px;
  border-radius: var(--rxl); border: 1.5px solid transparent;
  background: #f8fafc; transition: all .3s; position: relative; overflow: hidden; cursor: pointer;
}
.feat-btn:hover { border-color: var(--border); }
.feat-btn.active { background: var(--bg); border-color: #93c5fd; box-shadow: var(--shl); transform: scale(1.01); }
.feat-inner { display: flex; gap: 16px; align-items: flex-start; }
.feat-icon { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--primary); transition: all .3s; }
.feat-btn.active .feat-icon { background: var(--primary); color: #fff; border-color: var(--primary); }
.feat-btn h3 { font-weight: 700; font-size: 15px; margin-bottom: 5px; }
.feat-btn p  { font-size: 13px; color: var(--muted); line-height: 1.55; }
.feat-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--primary); border-radius: 0 2px 2px 0; display: none; }
.feat-btn.active .feat-bar { display: block; }
.feat-prog { position: absolute; bottom: 0; left: 0; height: 2px; background: rgba(37,99,235,.15); width: 0%; display: none; }
.feat-btn.active .feat-prog { display: block; }
.autoplay-bar { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.ap-btn { display: flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 50px; border: 1.5px solid var(--border); font-size: 12px; font-weight: 700; color: var(--muted); transition: all .2s; background: var(--bg); cursor: pointer; }
.ap-btn:hover { border-color: var(--primary); color: var(--primary); }
.ap-line { flex: 1; height: 2px; background: var(--border); border-radius: 1px; overflow: hidden; }
.ap-progress { height: 100%; background: var(--primary); width: 0%; transition: width .1s linear; }
.features-display { position: sticky; top: 96px; }
.feat-img-box { border-radius: var(--rxl); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shxl); border: 1px solid var(--border); position: relative; background: #f1f5f9; }
.feat-img-box img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s, transform .3s; }
.feat-img-box:hover img { transform: scale(1.04); }
.feat-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), transparent); pointer-events: none; }
.feat-img-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 28px; }
.feat-img-label h4 { color: #fff; font-weight: 800; font-size: 20px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }

/* Benefits */
.benefits-section { background: #f8fafc; padding: 100px 0; border-top: 1px solid var(--border); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.benefits-text h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(24px, 3vw, 38px); font-weight: 800; letter-spacing: -.5px; margin-bottom: 28px; line-height: 1.15; }
.benefits-list { display: grid; gap: 12px; }
.benefit-item { display: flex; align-items: center; gap: 14px; background: var(--bg); padding: 16px 20px; border-radius: var(--rl); border: 1px solid var(--border); font-weight: 700; font-size: 14px; transition: box-shadow .2s; }
.benefit-item:hover { box-shadow: var(--sh); }
.benefit-item svg { width: 14px; height: 14px; flex-shrink: 0; color: #16a34a; background: rgba(34,197,94,.1); border-radius: 50%; padding: 6px; width: 26px; height: 26px; }
.benefits-img { border-radius: var(--r2xl); overflow: hidden; box-shadow: var(--shxl); border: 1px solid var(--border); }
.benefits-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* CTA */
.cta-section { padding: 80px 0; }
.cta-inner { background: var(--primary); border-radius: var(--r2xl); padding: 72px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-inner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,.08) 1px, transparent 0); background-size: 40px 40px; }
.cta-inner h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(26px, 4vw, 50px); font-weight: 900; color: #fff; letter-spacing: -1px; margin-bottom: 16px; position: relative; }
.cta-inner p  { font-size: 17px; color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto 36px; line-height: 1.7; position: relative; }

/* Contact page */
.contact-aux { padding: 80px 0; text-align: center; }
.contact-aux h3 { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.contact-aux p  { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
.contact-aux-links { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.contact-aux-links a { font-weight: 700; color: var(--primary); font-size: 15px; }
.contact-aux-links a:hover { text-decoration: underline; }

/* ── Animations ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.anim-in { animation: fadeInUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ── Padding helpers ── */
.py-80  { padding: 80px 0; }
.py-100 { padding: 100px 0; }
.bg-muted { background: #f8fafc; }
.border-t { border-top: 1px solid var(--border); }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .timeline::before, .tl-dot { display: none; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; margin-bottom: 36px; }
  .global-stats { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:900px){
  .hero-grid, .why-grid, .story-grid, .sol-hero-grid, .features-layout, .benefits-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .solutions-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .expertise-grid { grid-template-columns: repeat(2,1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .desk-nav, .hdr-phone { display: none; }
  .hamburger { display: flex; }
  .features-display { position: static; }
  .hero-section, .why-section, .solutions-section, .features-section, .benefits-section, .cta-section, .contact-section, .stats-section { padding: 56px 0; }
}
@media(max-width:600px){
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .expertise-grid { grid-template-columns: 1fr; }
  .story-checks { grid-template-columns: 1fr; }
  .global-stats { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .cta-inner { padding: 48px 24px; border-radius: var(--rxl); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .tl-item { grid-template-columns: 1fr; }
}
