/* ============================================================
   FINCOM CONSULTANCY PVT. LTD. — Master Stylesheet
   Modern Material Design + Dynamic Animations
   Brand colours derived from logo: Royal Blue, Red, Silver Grey
   ============================================================ */

:root {
  /* Brand palette */
  --blue: #2536a7;
  --blue-dark: #1a2879;
  --blue-light: #eef0fb;
  --red: #e2231a;
  --red-dark: #b81910;
  --red-light: #fdecec;
  --grey: #9aa0a6;
  --grey-light: #f4f5f7;
  --ink: #1a1f36;
  --ink-soft: #4a5168;
  --muted: #7b8194;
  --line: #e6e8ef;
  --white: #ffffff;
  --gold: #f0a500;

  /* Elevation (material shadows) */
  --e1: 0 1px 3px rgba(26,31,54,.08), 0 1px 2px rgba(26,31,54,.06);
  --e2: 0 4px 12px rgba(26,31,54,.10);
  --e3: 0 10px 30px rgba(26,31,54,.12);
  --e4: 0 18px 50px rgba(37,54,167,.18);

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; color: var(--ink); letter-spacing: -.02em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  padding: 7px 16px; border-radius: 30px; margin-bottom: 18px;
}
.eyebrow.red { color: var(--red); background: var(--red-light); }
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-sub { font-size: 17px; color: var(--ink-soft); max-width: 640px; }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }
.text-blue { color: var(--blue); }
.text-red { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer;
  padding: 14px 28px; border-radius: 50px; border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.btn i { font-size: 18px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--e2); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: var(--e4); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(226,35,26,.28); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(226,35,26,.36); }
.btn-ghost { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-ghost:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--e3); }
.btn-lg { padding: 17px 38px; font-size: 16px; }
/* ripple */
.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.5); transform: scale(0); animation: ripple .6s linear; pointer-events: none; }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.topbar {
  background: var(--blue-dark); color: #dfe3f7;
  font-size: 13.5px; padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #dfe3f7; display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .tb-right { display: flex; gap: 14px; align-items: center; }
.topbar i { font-size: 15px; }
.topbar .ti-brand-google-play { font-size: 17px; }

header.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, padding .3s;
}
header.nav.scrolled { box-shadow: var(--e2); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 22px; max-width: var(--container); margin: 0 auto; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 74px; width: auto; background: transparent; }
.brand-text { line-height: 1; }
.brand-text .bt-name { font-size: 30px; font-weight: 800; color: var(--blue); letter-spacing: .02em; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  position: relative; font-size: 15px; font-weight: 500; color: var(--ink-soft);
  padding: 9px 15px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2.5px;
  background: var(--red); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav-menu a:hover { color: var(--blue); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--blue); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 28px; color: var(--blue); padding: 4px; }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); background: #fff; z-index: 1100;
  transform: translateX(100%); transition: transform .35s var(--ease); box-shadow: var(--e4);
  display: flex; flex-direction: column; padding: 22px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mm-close { align-self: flex-end; background: none; border: none; font-size: 30px; color: var(--ink); cursor: pointer; }
.mobile-menu a { padding: 14px 8px; font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu a.active { color: var(--blue); }
.mobile-menu .btn { margin-top: 18px; }
.overlay { position: fixed; inset: 0; background: rgba(26,31,54,.45); z-index: 1050; opacity: 0; visibility: hidden; transition: .3s; }
.overlay.show { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a2879 0%, #2536a7 55%, #34349e 100%);
  color: #fff; padding: 70px 0 90px;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(226,35,26,.35), transparent 70%); border-radius: 50%;
  animation: float 9s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -160px; left: -100px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,.10), transparent 70%); border-radius: 50%;
  animation: float 11s ease-in-out infinite reverse;
}
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-26px) } }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22); padding: 8px 18px; border-radius: 40px;
  font-size: 13.5px; font-weight: 500; margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero-badge i { color: #6fe3b0; font-size: 17px; }
.hero h1 { font-size: clamp(32px, 5vw, 54px); color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero h1 .hl { color: #ffd56b; }
.hero p.lead { font-size: 18px; color: #d7dcf5; margin-bottom: 30px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #e3e7fb; }
.hero-trust .ht i { color: #6fe3b0; font-size: 19px; }

/* hero card (right) */
.hero-card {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--e4); animation: rise .8s var(--ease) both;
}
@keyframes rise { from { opacity: 0; transform: translateY(40px) } to { opacity: 1; transform: translateY(0) } }
.hero-card h3 { font-size: 20px; margin-bottom: 6px; }
.hero-card .hc-sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.hc-field { margin-bottom: 14px; }
.hc-field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.hc-field input, .hc-field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14.5px; color: var(--ink); transition: border .2s, box-shadow .2s; background: #fff;
}
.hc-field input:focus, .hc-field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-light); }
.hero-card .btn { width: 100%; margin-top: 6px; }
.hc-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: #fff; margin-top: -50px; position: relative; z-index: 5; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--e3); overflow: hidden;
}
.stat { padding: 34px 26px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .s-num { font-size: 40px; font-weight: 800; color: var(--blue); letter-spacing: -.03em; }
.stat .s-num .text-red { color: var(--red); }
.stat .s-label { font-size: 14px; color: var(--ink-soft); font-weight: 500; margin-top: 4px; }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--e3); border-color: transparent; }
.card-icon {
  width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 27px; margin-bottom: 18px; background: var(--blue-light); color: var(--blue);
  transition: transform .3s var(--ease);
}
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.card-icon.red { background: var(--red-light); color: var(--red); }
.card-icon.gold { background: #fef5e0; color: var(--gold); }
.card-icon.green { background: #e6f7ee; color: #1aa564; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--ink-soft); }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; font-size: 14px; color: var(--blue); }
.card .card-link i { transition: transform .25s; }
.card:hover .card-link i { transform: translateX(5px); }

/* service list cards */
.svc-list-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: .3s var(--ease); }
.svc-list-card:hover { box-shadow: var(--e3); transform: translateY(-6px); }
.svc-list-card h3 { display: flex; align-items: center; gap: 12px; font-size: 21px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--blue-light); }
.svc-list-card h3 i { color: var(--blue); font-size: 26px; }
.svc-list-card ul li { display: flex; align-items: flex-start; gap: 11px; padding: 9px 0; font-size: 15px; color: var(--ink-soft); }
.svc-list-card ul li i { color: var(--red); font-size: 19px; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   WHY CA-LED SECTION
   ============================================================ */
.why-band { background: var(--grey-light); }
.feature { display: flex; gap: 16px; }
.feature .f-ic { width: 50px; height: 50px; flex-shrink: 0; border-radius: 14px; background: var(--white); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 23px; box-shadow: var(--e1); }
.feature h4 { font-size: 17px; margin-bottom: 6px; }
.feature p { font-size: 14.5px; color: var(--ink-soft); }

.quote-band {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff;
  border-radius: var(--radius-lg); padding: 50px; position: relative; overflow: hidden;
}
.quote-band i.q-mark { position: absolute; top: 20px; left: 30px; font-size: 90px; color: rgba(255,255,255,.12); }
.quote-band blockquote { font-size: clamp(20px,2.6vw,28px); font-weight: 600; line-height: 1.4; position: relative; z-index: 2; max-width: 850px; }
.quote-band cite { display: block; margin-top: 18px; font-size: 16px; font-weight: 500; font-style: normal; color: #ffd56b; }

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; position: relative; }
.process-step { text-align: center; position: relative; }
.process-step .ps-num {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800;
  position: relative; z-index: 2; transition: .3s var(--ease);
}
.process-step:hover .ps-num { background: var(--blue); color: #fff; border-color: var(--blue); transform: scale(1.08); }
.process-step h4 { font-size: 16px; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--ink-soft); }
.process-line { position: absolute; top: 32px; left: 10%; right: 10%; height: 3px; background: var(--blue-light); z-index: 1; }

/* ============================================================
   TEAM
   ============================================================ */
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: .35s var(--ease); }
.team-card:hover { transform: translateY(-10px); box-shadow: var(--e4); }
.team-photo { position: relative; background: linear-gradient(135deg, var(--blue-light), #fff); padding: 28px 28px 0; text-align: center; }
.team-photo img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin: 0 auto; border: 5px solid #fff; box-shadow: var(--e2); }
.team-body { padding: 22px 26px 28px; text-align: center; }
.team-body .tb-name { font-size: 21px; font-weight: 700; color: var(--ink); }
.team-body .tb-role { font-size: 14px; font-weight: 600; color: var(--red); margin: 3px 0 4px; }
.team-body .tb-cred { font-size: 13px; color: var(--blue); font-weight: 500; margin-bottom: 12px; }
.team-body .tb-bio { font-size: 14px; color: var(--ink-soft); text-align: left; }

/* ============================================================
   VISION / MISSION
   ============================================================ */
.vm-card { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--e2); border-top: 5px solid var(--blue); position: relative; overflow: hidden; }
.vm-card.mission { border-top-color: var(--red); }
.vm-card .vm-ic { width: 64px; height: 64px; border-radius: 18px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 20px; }
.vm-card.mission .vm-ic { background: var(--red-light); color: var(--red); }
.vm-card h3 { font-size: 24px; margin-bottom: 12px; }
.vm-card p { font-size: 16px; color: var(--ink-soft); }

/* ============================================================
   CALCULATORS
   ============================================================ */
.calc-wrap { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--e3); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.calc-controls { padding: 40px; }
.calc-result { background: linear-gradient(150deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.calc-tabs { display: flex; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.calc-tab { padding: 10px 20px; border-radius: 40px; border: 1.5px solid var(--line); background: #fff; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: .25s; }
.calc-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.calc-field { margin-bottom: 26px; }
.calc-field .cf-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.calc-field label { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.calc-field .cf-val { font-size: 17px; font-weight: 700; color: var(--blue); background: var(--blue-light); padding: 4px 14px; border-radius: 8px; }
input[type=range] { -webkit-appearance: none; width: 100%; height: 6px; border-radius: 6px; background: var(--line); outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); cursor: pointer; border: 4px solid #fff; box-shadow: var(--e2); transition: transform .2s; }
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--blue); cursor: pointer; border: 4px solid #fff; }
.cf-minmax { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 7px; }
.calc-result .cr-label { font-size: 14px; color: #c3c9f5; text-transform: uppercase; letter-spacing: .08em; }
.calc-result .cr-emi { font-size: 46px; font-weight: 800; letter-spacing: -.03em; margin: 4px 0 26px; }
.cr-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 15px; }
.cr-row span:first-child { color: #c3c9f5; }
.cr-row span:last-child { font-weight: 700; }
.cr-total { font-size: 19px; padding-top: 16px; }
.calc-result .btn { margin-top: 24px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%); color: #fff;
  border-radius: var(--radius-lg); padding: 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; background: rgba(255,255,255,.1); border-radius: 50%; }
.cta-band h2 { color: #fff; font-size: clamp(26px,3.6vw,40px); margin-bottom: 14px; position: relative; }
.cta-band p { font-size: 18px; color: #ffe5e3; margin-bottom: 30px; position: relative; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-band .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   APPLY MODAL
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; background: rgba(26,31,54,.55); backdrop-filter: blur(4px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: .3s; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 540px; max-height: 92vh; overflow-y: auto; box-shadow: var(--e4); transform: translateY(30px) scale(.97); transition: .35s var(--ease); }
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-head { background: linear-gradient(120deg, var(--blue), var(--blue-dark)); color: #fff; padding: 26px 30px; position: relative; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal-head h3 { color: #fff; font-size: 23px; }
.modal-head p { font-size: 14px; color: #d7dcf5; margin-top: 4px; }
.modal-close { position: absolute; top: 18px; right: 18px; background: rgba(255,255,255,.2); border: none; color: #fff; width: 36px; height: 36px; border-radius: 50%; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .2s; }
.modal-close:hover { background: rgba(255,255,255,.35); transform: rotate(90deg); }
.modal-body { padding: 30px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.form-field label .req { color: var(--red); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 15px; color: var(--ink); transition: .2s; background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-light); }
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field .err { color: var(--red); font-size: 12.5px; margin-top: 5px; display: none; }
.form-field.invalid input, .form-field.invalid select { border-color: var(--red); }
.form-field.invalid .err { display: block; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.modal-actions .btn { width: 100%; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; animation: rise .5s var(--ease); }
.form-success .fs-ic { width: 80px; height: 80px; border-radius: 50%; background: #e6f7ee; color: #1aa564; display: flex; align-items: center; justify-content: center; font-size: 44px; margin: 0 auto 18px; }
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); font-size: 15px; }

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.fab-stack { position: fixed; right: 22px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 14px; }
.fab { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; box-shadow: var(--e3); cursor: pointer; border: none; transition: transform .25s var(--ease); }
.fab:hover { transform: scale(1.1); }
.fab.wa { background: #25d366; }
.fab.apply { background: var(--red); font-size: 15px; font-weight: 700; width: auto; padding: 0 22px; border-radius: 40px; gap: 8px; }
.fab.apply i { font-size: 20px; }
.fab-pulse { position: relative; }
.fab-pulse::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: inherit; animation: fabpulse 2s infinite; z-index: -1; }
@keyframes fabpulse { 0% { transform: scale(1); opacity: .6 } 100% { transform: scale(1.6); opacity: 0 } }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer { background: #141a36; color: #b8bedb; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { height: 70px; width: auto; background: transparent; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; color: #9aa1c4; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 14.5px; color: #9aa1c4; transition: color .2s, padding .2s; display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-col ul li a i { font-size: 16px; color: var(--red); }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 16px; font-size: 14.5px; color: #9aa1c4; line-height: 1.5; }
.footer-contact li i { color: var(--red); font-size: 19px; flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 19px; color: #fff; transition: .25s; }
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }

/* Play Store badge */
.playstore-badge { display: inline-flex; align-items: center; gap: 11px; background: #000; color: #fff; padding: 9px 18px 9px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,.25); transition: transform .25s var(--ease), box-shadow .25s; }
.playstore-badge:hover { transform: translateY(-3px); box-shadow: var(--e3); }
.playstore-badge i { font-size: 28px; color: #fff; }
.playstore-badge span { display: flex; flex-direction: column; line-height: 1.15; font-size: 17px; font-weight: 600; letter-spacing: .02em; }
.playstore-badge span small { font-size: 9.5px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.playstore-badge.light { background: #fff; color: #1a1f36; border-color: rgba(0,0,0,.1); box-shadow: var(--e2); }
.playstore-badge.light i { color: #1a1f36; }
.footer-brand .playstore-badge { margin-top: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; text-align: center; font-size: 13.5px; color: #8088ad; }
.footer-disclaimer { background: rgba(0,0,0,.2); padding: 16px 0; font-size: 12.5px; color: #7b82a8; text-align: center; line-height: 1.6; }

/* ============================================================
   LEGAL DOCUMENT (Privacy Policy / Terms)
   ============================================================ */
.legal-doc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px 46px; box-shadow: var(--e1); }
.legal-doc .legal-meta { background: var(--blue-light); color: var(--ink-soft); padding: 12px 18px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 26px; }
.legal-doc p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 16px; }
.legal-doc h2 { font-size: 20px; color: var(--blue); margin: 32px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--blue-light); }
.legal-doc ul { margin: 0 0 18px 4px; }
.legal-doc ul li { position: relative; padding: 6px 0 6px 26px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; }
.legal-doc ul li::before { content: ''; position: absolute; left: 4px; top: 15px; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.legal-doc a { color: var(--blue); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.legal-doc a:hover { color: var(--red); }
@media (max-width: 620px) { .legal-doc { padding: 30px 24px; } }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; padding: 60px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -60px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(226,35,26,.3), transparent 70%); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(30px,4.5vw,46px); color: #fff; margin-bottom: 12px; }
.page-hero p { font-size: 18px; color: #d7dcf5; max-width: 640px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; color: #c3c9f5; margin-bottom: 16px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 16px; }

/* ============================================================
   CAREERS
   ============================================================ */
.job-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; transition: .3s var(--ease); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.job-card:hover { box-shadow: var(--e3); transform: translateY(-4px); border-color: transparent; }
.job-card .jc-info h3 { font-size: 20px; margin-bottom: 8px; }
.job-card .jc-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-soft); }
.job-card .jc-meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-card .jc-meta i { color: var(--blue); font-size: 17px; }
.perk { text-align: center; padding: 26px; }
.perk .p-ic { width: 64px; height: 64px; border-radius: 18px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; }
.perk h4 { font-size: 17px; margin-bottom: 8px; }
.perk p { font-size: 14px; color: var(--ink-soft); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s } .reveal.d2 { transition-delay: .2s } .reveal.d3 { transition-delay: .3s } .reveal.d4 { transition-delay: .4s }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 30px; transition: .35s var(--ease); position: relative; height: 100%; }
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--e3); }
.testi-card .t-quote { position: absolute; top: 18px; right: 24px; font-size: 56px; color: var(--blue-light); line-height: 1; font-family: Georgia, serif; }
.testi-stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 22px; position: relative; z-index: 2; }
.testi-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 18px; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--blue-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 700; flex-shrink: 0; }
.testi-author .ta-name { font-size: 16px; font-weight: 700; color: var(--ink); }
.testi-author .ta-role { font-size: 13px; color: var(--muted); }

/* ============================================================
   CLICKABLE SERVICE CARDS + DETAIL MODAL
   ============================================================ */
.svc-card { cursor: pointer; }
.svc-card .svc-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; font-size: 14px; color: var(--blue); }
.svc-card .svc-more i { transition: transform .25s; }
.svc-card:hover .svc-more i { transform: translateX(5px); }

.svc-modal-overlay { position: fixed; inset: 0; background: rgba(26,31,54,.55); backdrop-filter: blur(4px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: .3s; }
.svc-modal-overlay.open { opacity: 1; visibility: visible; }
.svc-modal { background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; box-shadow: var(--e4); transform: translateY(30px) scale(.97); transition: .35s var(--ease); }
.svc-modal-overlay.open .svc-modal { transform: translateY(0) scale(1); }
.svc-modal-head { background: linear-gradient(120deg, var(--blue), var(--blue-dark)); color: #fff; padding: 30px; position: relative; border-radius: var(--radius-lg) var(--radius-lg) 0 0; display: flex; align-items: center; gap: 18px; }
.svc-modal-head .smh-ic { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0; }
.svc-modal-head h3 { color: #fff; font-size: 23px; }
.svc-modal-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.2); border: none; color: #fff; width: 36px; height: 36px; border-radius: 50%; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .2s; }
.svc-modal-close:hover { background: rgba(255,255,255,.35); transform: rotate(90deg); }
.svc-modal-body { padding: 30px; }
.svc-modal-body p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 18px; }
.svc-modal-body h4 { font-size: 16px; margin-bottom: 12px; color: var(--ink); }
.svc-modal-body ul { margin-bottom: 22px; }
.svc-modal-body ul li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: 14.5px; color: var(--ink-soft); }
.svc-modal-body ul li i { color: var(--red); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.svc-modal-body .smb-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-menu, .nav-actions .btn { display: none; }
  .hamburger { display: block; }
  .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1),.stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .process-line { display: none; }
  .calc-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 620px) {
  .section { padding: 56px 0; }
  .topbar .tb-left { gap: 14px; font-size: 12.5px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .quote-band, .cta-band { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .vm-card, .calc-controls, .calc-result { padding: 28px; }
  .hero { padding: 50px 0 70px; }
}
