/* ═══════════════════════════════════════════════════
   VIPL — Cloud Super Market
   Shared Stylesheet — style.css
   Update this file to change colours/fonts site-wide
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Noto+Sans+Telugu:wght@400;600;700;800&display=swap');

/* ── COLOUR VARIABLES ── */
:root {
  --blue:    #1565C0;
  --blue2:   #1976D2;
  --blue3:   #42A5F5;
  --blue4:   #E3F2FD;
  --orange:  #F97316;
  --orange2: #FB923C;
  --orangeL: #FFF7ED;
  --white:   #FFFFFF;
  --off:     #F0F7FF;
  --ink:     #0D2340;
  --g3:      #6B7A8D;
  --g4:      #374151;
  --green:   #15803D;
  --greenL:  #EAF3DE;
  --teal:    #0891B2;
  --navy:    #0D2340;
  --border:  #E5E9F0;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Noto Sans Telugu', sans-serif;
  font-size: 17.6px;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.5;
}
body.te { font-family: 'Noto Sans Telugu', 'Inter', sans-serif; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--blue4); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%; height: 68px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(13,35,64,.04);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 20px rgba(13,35,64,.08); }
.nav-logo img { height: 44px; object-fit: contain; cursor: pointer; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 15px; border-radius: 8px;
  font-size: 15px; font-weight: 600; color: var(--blue);
  text-decoration: none; cursor: pointer; transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--blue4); }
.nav-right { display: flex; gap: 10px; align-items: center; }
.lang-toggle { display: flex; background: var(--blue4); border-radius: 8px; padding: 3px; gap: 2px; }
.lang-btn {
  padding: 5px 12px; border-radius: 6px; border: none;
  font-size: 13px; font-weight: 700; cursor: pointer;
  color: var(--blue); background: transparent;
  font-family: 'Inter', sans-serif; transition: all .2s;
}
.lang-btn.active { background: var(--blue); color: #fff; }
.nav-investor {
  padding: 9px 18px; border-radius: 10px;
  background: var(--orange); border: none; cursor: pointer;
  font-size: 14px; font-weight: 700; color: #fff;
  font-family: 'Inter', sans-serif; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.nav-investor:hover { background: #EA6500; }

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: 68px; min-height: 100vh; }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: linear-gradient(135deg, #0D2340 0%, #1565C0 60%, #1976D2 100%);
  padding: 60px 4%; min-height: 42vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(249,115,22,.15), transparent 70%);
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 2; }

/* ── SECTIONS ── */
.section { padding: 80px 4%; }
.sec-light  { background: var(--off); }
.sec-white  { background: #fff; }
.sec-blue4  { background: var(--blue4); }
.sec-navy   { background: var(--navy); color: #fff; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 22px; height: 3px; background: var(--orange); border-radius: 2px; }
.eyebrow.white { color: rgba(255,255,255,.75); }
.eyebrow.white::before { background: var(--orange); }

.sec-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(27px, 3.5vw, 42px);
  font-weight: 700; line-height: 1.25; margin-bottom: 14px;
  letter-spacing: -.01em;
}
.sec-title .hl   { color: var(--blue); }
.sec-title .hl-o { color: var(--orange); }
.sec-title.white { color: #fff; }

.sec-sub { font-size: 17px; color: var(--g3); line-height: 1.75; max-width: 600px; }
.sec-sub.white { color: rgba(255,255,255,.7); }

/* ── BUTTONS ── */
.btn-primary {
  padding: 13px 26px; border-radius: 10px;
  background: var(--orange); border: none; cursor: pointer;
  font-size: 16px; font-weight: 700; color: #fff;
  font-family: 'Inter', sans-serif; transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-primary:hover { background: #EA6500; box-shadow: 0 6px 16px rgba(249,115,22,.3); }

.btn-blue {
  padding: 13px 26px; border-radius: 10px;
  background: var(--blue); border: none; cursor: pointer;
  font-size: 16px; font-weight: 700; color: #fff;
  font-family: 'Inter', sans-serif; transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-blue:hover { background: #0D47A1; }

.btn-outline {
  padding: 13px 26px; border-radius: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.35);
  cursor: pointer; font-size: 16px; font-weight: 600; color: #fff;
  font-family: 'Inter', sans-serif; transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-outline:hover { background: rgba(255,255,255,.18); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ── CARDS COMMON ── */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; transition: all .25s;
}
.card:hover { border-color: var(--blue3); box-shadow: 0 8px 24px rgba(13,35,64,.08); }

/* ── PRODUCT GRID ── */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 16px; margin-top: 44px; }
.prod-card { border: 1px solid var(--border); border-radius: 16px; padding: 26px 18px; text-align: center; transition: all .25s; background: #fff; }
.prod-card:hover { border-color: var(--blue3); box-shadow: 0 8px 22px rgba(13,35,64,.08); }
.prod-icon { font-size: 42px; margin-bottom: 12px; }
.prod-name { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.prod-desc { font-size: 13.5px; color: var(--g3); line-height: 1.6; }
.prod-tag { display: inline-block; margin-top: 10px; padding: 3px 11px; border-radius: 100px; font-size: 12px; font-weight: 600; background: var(--blue4); color: var(--blue); }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; margin-top: 44px; }
.step { background: #fff; border-radius: 16px; padding: 28px 22px; border: 1px solid var(--border); transition: all .25s; position: relative; }
.step:hover { border-color: var(--blue3); box-shadow: 0 8px 22px rgba(13,35,64,.08); }
.step-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px; font-weight: 800; color: var(--orange); opacity: .13; position: absolute; top: 12px; right: 16px; line-height: 1; }
.step-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 12px; }
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--g3); line-height: 1.65; }
.step-tag { display: inline-block; margin-top: 10px; padding: 3px 11px; border-radius: 100px; font-size: 12px; font-weight: 600; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 16px; margin-top: 44px; }
.why-card { background: #fff; border-radius: 14px; padding: 24px 20px; border: 1px solid var(--border); text-align: center; transition: all .25s; }
.why-card:hover { border-color: var(--blue3); box-shadow: 0 8px 20px rgba(13,35,64,.07); }
.why-icon { font-size: 34px; margin-bottom: 10px; }
.why-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.why-desc { font-size: 14px; color: var(--g3); line-height: 1.6; }

/* ── SUBSCRIPTION PLANS ── */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.plan-card { border-radius: 18px; padding: 32px 24px; position: relative; transition: all .25s; color: #fff; }
.plan-card:hover { box-shadow: 0 16px 32px rgba(0,0,0,.2); }
.plan-card.featured { transform: scale(1.03); border: 1.5px solid var(--orange); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .75; margin-bottom: 6px; }
.plan-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.plan-period { font-size: 14px; opacity: .65; margin-bottom: 18px; }
.plan-div { height: 1px; background: rgba(255,255,255,.15); margin-bottom: 16px; }
.plan-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14.5px; }
.plan-row:last-of-type { border-bottom: none; }
.plan-row-lbl { opacity: .68; }
.plan-row-val { font-weight: 700; }
.plan-cta { width: 100%; padding: 13px; border-radius: 10px; border: none; cursor: pointer; font-size: 15px; font-weight: 700; font-family: 'Inter', sans-serif; margin-top: 18px; transition: all .2s; }
.plan-note { text-align: center; font-size: 14px; color: var(--g3); margin-top: 18px; }

/* ── DELIVERY CHAIN ── */
.chain { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; margin-top: 44px; }
.chain-node { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px 16px; text-align: center; min-width: 125px; transition: all .25s; }
.chain-node:hover { border-color: var(--blue3); }
.chain-icon { font-size: 28px; margin-bottom: 7px; }
.chain-title { font-size: 14px; font-weight: 700; }
.chain-sub { font-size: 12px; color: var(--g3); margin-top: 3px; }
.chain-arr { font-size: 22px; color: var(--orange); padding: 0 5px; flex-shrink: 0; }

/* ── DIGITAL STORE LEVELS ── */
.levels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.level-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px 24px; transition: all .25s; position: relative; overflow: hidden; }
.level-card:hover { border-color: var(--blue3); box-shadow: 0 12px 28px rgba(13,35,64,.08); }
.level-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.level-badge { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.level-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 27px; font-weight: 800; margin-bottom: 3px; }
.level-tag { font-size: 13px; color: var(--g3); margin-bottom: 20px; }
.level-div { height: 1px; background: var(--border); margin-bottom: 16px; }
.level-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.level-row:last-of-type { border-bottom: none; }
.level-lbl { color: var(--g3); }
.level-val { font-weight: 700; color: var(--ink); }
.level-income { background: var(--off); border-radius: 10px; padding: 13px; text-align: center; margin-top: 14px; }
.level-income-lbl { font-size: 12px; color: var(--g3); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.level-income-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 23px; font-weight: 800; margin-top: 4px; }

/* ── INCOME CALCULATOR ── */
.calc-wrap { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 36px; margin-top: 44px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.calc-label { font-size: 13px; font-weight: 700; color: var(--g3); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.calc-select { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 16px; font-weight: 600; font-family: 'Inter', sans-serif; color: var(--ink); background: #fff; cursor: pointer; }
.calc-select:focus { outline: none; border-color: var(--blue); }
input[type=range] { width: 100%; accent-color: var(--orange); height: 6px; margin: 8px 0 16px; }
.calc-result { background: linear-gradient(135deg, var(--blue), var(--teal)); border-radius: 16px; padding: 32px; text-align: center; color: #fff; }
.calc-result-label { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .75; margin-bottom: 6px; }
.calc-result-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 38px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.calc-divider { height: 1px; background: rgba(255,255,255,.2); margin: 20px 0; }

/* ── JOIN STEPS ── */
.join-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; margin-top: 44px; }
.join-step { background: #fff; border-radius: 16px; padding: 26px; border: 1px solid var(--border); text-align: center; transition: all .25s; }
.join-step:hover { border-color: var(--orange); }
.join-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 19px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.join-step-title { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.join-step-desc { font-size: 14px; color: var(--g3); line-height: 1.6; }

/* ── MARKET TABLE ── */
.market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 44px; align-items: start; }
.market-cards { display: flex; flex-direction: column; gap: 14px; }
.market-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px 22px; display: flex; align-items: center; gap: 16px; transition: all .25s; }
.market-card:hover { border-color: var(--blue3); }
.market-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.market-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 25px; font-weight: 800; }
.market-lbl { font-size: 13px; color: var(--g3); margin-top: 2px; }
.market-table-wrap { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.market-table-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; }
.market-table-wrap th { background: var(--blue); color: #fff; padding: 11px 14px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.market-table-wrap td { padding: 12px 14px; border-bottom: 1px solid var(--border); }
.market-table-wrap tr:last-child td { background: var(--blue4); font-weight: 700; color: var(--blue); }
.market-banner { padding: 16px 20px; background: var(--blue); color: #fff; font-size: 15px; font-weight: 600; }

/* ── PORTALS ── */
.portals-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 44px; }
.portal { border-radius: 16px; padding: 30px; cursor: pointer; transition: all .25s; position: relative; overflow: hidden; }
.portal:hover { box-shadow: 0 10px 26px rgba(0,0,0,.15); }
.portal-icon { font-size: 34px; margin-bottom: 12px; }
.portal-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 7px; color: #fff; }
.portal-desc { font-size: 14.5px; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 16px; }
.portal-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: 8px; background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; }
.portal-soon { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,.25); color: rgba(255,255,255,.8); font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 6px; }

/* ── HERO STATS ── */
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 32px; }
.h-stat { border-left: 3px solid var(--orange); padding-left: 14px; }
.h-stat-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 27px; font-weight: 800; color: #fff; line-height: 1; }
.h-stat-lbl { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; margin-top: 3px; }

/* ── HERO CARD ── */
.hero-card-wrap { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); z-index: 2; }
.hero-card { background: rgba(255,255,255,.06); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 24px; width: 290px; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.hero-card-hd { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.hero-card-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.hero-card-row:last-child { border-bottom: none; }
.hcr-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.hcr-lbl { font-size: 13px; color: rgba(255,255,255,.55); }
.hcr-val { font-size: 16px; font-weight: 700; color: #fff; }

/* ── CTA STRIP ── */
.cta-strip { background: linear-gradient(135deg, #0D2340, #1565C0); padding: 70px 4%; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; top: -70px; right: -70px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(249,115,22,.15), transparent 70%); border-radius: 50%; }
.cta-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(25px,4vw,44px); font-weight: 800; color: #fff; margin-bottom: 12px; position: relative; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 30px; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }

/* ── LEGAL GRID ── */
.legal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 36px; }
.legal-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; }
.legal-lbl { font-size: 11px; color: var(--g3); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 5px; }
.legal-val { font-size: 15px; font-weight: 700; color: var(--ink); word-break: break-all; }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 36px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: all .25s; }
.value-card:hover { border-color: var(--blue3); box-shadow: 0 8px 20px rgba(13,35,64,.06); }
.value-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.value-title { font-size: 17px; font-weight: 700; margin-bottom: 5px; }
.value-desc { font-size: 14px; color: var(--g3); line-height: 1.65; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 44px; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.form-group { margin-bottom: 16px; }
.form-label { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 5px; display: block; }
.form-input { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 15px; font-family: 'Inter', sans-serif; color: var(--ink); background: #fff; transition: border .2s; }
.form-input:focus { outline: none; border-color: var(--blue); }
.form-select { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 15px; font-family: 'Inter', sans-serif; color: var(--ink); background: #fff; cursor: pointer; }
.form-textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 15px; font-family: 'Inter', sans-serif; color: var(--ink); min-height: 100px; resize: vertical; }
.form-submit { width: 100%; padding: 14px; border-radius: 10px; background: var(--blue); border: none; color: #fff; font-size: 16px; font-weight: 700; font-family: 'Inter', sans-serif; cursor: pointer; transition: all .2s; margin-top: 4px; }
.form-submit:hover { background: #0D47A1; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.cinfo-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; }
.cinfo-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.cinfo-sub { font-size: 14px; color: var(--g3); line-height: 1.7; }
.reg-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.reg-chip { background: var(--blue4); color: var(--blue); font-size: 13px; font-weight: 600; padding: 5px 12px; border-radius: 8px; }

/* ── FOOTER ── */
footer { background: #0D2340; padding: 52px 4% 28px; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-logo img { height: 48px; object-fit: contain; cursor: pointer; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; margin-top: 12px; max-width: 250px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14.5px; color: rgba(255,255,255,.55); text-decoration: none; cursor: pointer; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-badges { display: flex; gap: 8px; }
.footer-badge { padding: 4px 10px; border-radius: 6px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); font-size: 12px; color: rgba(255,255,255,.5); font-weight: 600; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.vis { opacity: 1; transform: translateY(0); }

/* ── LANGUAGE ── */
.tel { display: none; }
body.te .tel { display: block; }
body.te .eng { display: none; }

/* ── BADGE ── */
.badge { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 13px; font-weight: 600; }

/* ── MOBILE MENU ── */
.nav-hamburger { display: none; background: none; border: none; font-size: 26px; line-height: 1; color: var(--blue); cursor: pointer; padding: 4px 6px; }
.mobile-menu { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 10px 24px rgba(13,35,64,.1); z-index: 999; padding: 6px 4%; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 15px 8px; font-size: 16px; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-card-wrap { display: none; }
  .plans-grid, .levels-grid, .market-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .portals-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-hamburger { display: block; }
  .nav-links { display: none; }
  .plans-grid, .levels-grid, .market-grid, .contact-grid, .footer-grid,
  .values-grid, .legal-grid, .portals-grid, .calc-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 4%; }
}
