/* ============================================================
   CyberSec Techno Solutions — Static Site
   "Heritage Tech" — classy Indian theme
   Midnight Indigo · Marigold Gold · Peacock Teal · Ivory
   Bilingual (English + हिन्दी)
   ============================================================ */

:root {
  --indigo: #1a1640;
  --indigo-2: #241d5a;
  --indigo-3: #322a72;
  --plum: #2a2148;
  --gold: #d99a2b;
  --gold-light: #eeb84e;
  --gold-soft: #f6d99a;
  --gold-deep: #b67d18;
  --peacock: #0e7c74;
  --peacock-light: #16a99d;
  --peacock-deep: #0a5a54;
  --maroon: #7c2333;
  --ink: #201a33;
  --body: #5c5568;
  --muted: #8c8598;
  --line: #ece2cf;
  --line-soft: #f2ead9;
  --ivory: #faf6ec;
  --ivory-2: #f4ecda;
  --ivory-3: #efe5cf;
  --card: #fffdf7;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 18px rgba(26, 22, 64, .07);
  --shadow: 0 20px 46px rgba(26, 22, 64, .14);
  --shadow-lg: 0 34px 80px rgba(26, 22, 64, .22);
  --shadow-gold: 0 14px 30px rgba(217, 154, 43, .32);
  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --hindi: 'Tiro Devanagari Hindi', 'Fraunces', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--ivory);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.18; font-weight: 600; letter-spacing: -.2px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Hindi helper */
.hi { font-family: var(--hindi); font-weight: 400; }

/* ---------- Ornamental top bar ---------- */
.tricolor {
  height: 5px;
  background: linear-gradient(90deg, var(--peacock) 0%, var(--gold) 45%, var(--gold-light) 55%, var(--peacock) 100%);
  position: relative;
}
.tricolor::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0 22px, rgba(255,255,255,.35) 22px 24px);
  opacity: .5;
}

/* ---------- Top strip ---------- */
.topbar { background: var(--indigo); color: #d7cfe8; font-size: 13.5px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 44px; flex-wrap: wrap; }
.topbar a { color: #d7cfe8; transition: color .2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar .strip-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar .strip-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar .strip-item svg { width: 15px; height: 15px; fill: var(--gold-light); flex-shrink: 0; }
.topbar .socials { display: flex; gap: 14px; }
.topbar .socials a svg { width: 15px; height: 15px; fill: currentColor; transition: transform .2s; }
.topbar .socials a:hover svg { transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 236, .9);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { height: 48px; width: auto; }
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand .brand-name { font-family: var(--display); font-weight: 600; color: var(--ink); font-size: 19px; letter-spacing: .1px; }
.brand .brand-sub { font-family: var(--hindi); font-size: 12px; color: var(--gold-deep); font-weight: 400; letter-spacing: .2px; }

.menu { display: flex; align-items: center; gap: 4px; }
.menu a {
  padding: 10px 16px; border-radius: 8px; font-weight: 500; font-size: 15px;
  color: var(--ink); position: relative; transition: color .2s, background .2s;
}
.menu a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 7px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--peacock)); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.menu a:hover { color: var(--indigo-3); }
.menu a:hover::after, .menu a.active::after { transform: scaleX(1); }
.menu a.active { color: var(--indigo-3); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  padding: 13px 27px; border-radius: 999px; font-weight: 600; font-size: 15px;
  font-family: var(--font); cursor: pointer; border: 1.5px solid transparent; letter-spacing: .2px;
  transition: transform .2s var(--ease), box-shadow .25s, background .25s, color .2s; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold-deep)); color: #201400; box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(217, 154, 43, .45); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--peacock); color: var(--peacock); transform: translateY(-2px); }
.btn-light { background: var(--gold); color: #241400; border-color: var(--gold); }
.btn-light:hover { background: #fff; border-color: #fff; transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(246, 217, 154, .5); }
.btn-outline-light:hover { background: rgba(246, 217, 154, .12); border-color: var(--gold-light); }
.btn-green { background: linear-gradient(135deg, var(--peacock-light), var(--peacock-deep)); color: #fff; box-shadow: 0 12px 26px rgba(14, 124, 116, .32); }
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(14, 124, 116, .42); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }
.hamburger span + span { margin-top: 6px; }
.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #ece7fb;
  background:
    radial-gradient(1100px 560px at 88% -10%, rgba(217, 154, 43, .22), transparent 60%),
    radial-gradient(820px 500px at 6% 108%, rgba(14, 124, 116, .26), transparent 60%),
    linear-gradient(160deg, #120f30 0%, var(--indigo) 48%, var(--plum) 100%);
}
/* jali lattice pattern */
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    radial-gradient(circle at 22px 22px, rgba(246, 217, 154, .10) 2px, transparent 2.5px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 72% 32%, #000 0%, transparent 72%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 48px; align-items: center; padding: 84px 0 96px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 17px; border-radius: 999px;
  background: rgba(217, 154, 43, .12); border: 1px solid rgba(217, 154, 43, .38);
  color: var(--gold-soft); font-weight: 500; font-size: 13px; letter-spacing: .5px;
}
.eyebrow .hi { font-size: 14px; color: var(--gold-light); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 4px rgba(217, 154, 43, .22); }
.hero h1 { color: #fff; font-size: clamp(36px, 5vw, 58px); margin: 22px 0 20px; font-weight: 500; letter-spacing: -.8px; }
.hero h1 .accent { color: var(--gold-light); font-style: italic; }
.hero h1 .hi { display: block; font-size: .62em; color: var(--gold-soft); margin-top: 6px; font-weight: 400; letter-spacing: 0; }
.hero p.lead { font-size: 18px; color: #c6bfe0; max-width: 560px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .t b { font-family: var(--display); font-size: 32px; color: #fff; font-weight: 600; }
.hero-trust .t span { font-size: 13.5px; color: #a89fce; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 400px; }
.chakra { width: 336px; height: 336px; animation: spin 70s linear infinite; filter: drop-shadow(0 0 30px rgba(217,154,43,.25)); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .chakra { animation: none; } }
.hero-visual .shield-card {
  position: absolute; background: rgba(255, 253, 247, .1); border: 1px solid rgba(246, 217, 154, .3);
  backdrop-filter: blur(6px); border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .32); color: #fff; font-weight: 500; font-size: 14px;
}
.hero-visual .shield-card svg { width: 22px; height: 22px; }
.hero-visual .card-1 { top: 7%; left: -4%; animation: float 6s ease-in-out infinite; }
.hero-visual .card-2 { bottom: 9%; right: -6%; animation: float 6s ease-in-out infinite 1.5s; }
.hero-visual .card-3 { bottom: 40%; left: -11%; animation: float 6s ease-in-out infinite 3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-visual .shield-card .ic-saffron { fill: var(--gold-light); }
.hero-visual .shield-card .ic-green { fill: var(--peacock-light); }
.hero-visual .shield-card .ic-blue { fill: var(--gold-soft); }

.hero-wave { display: block; width: 100%; height: auto; }

/* ---------- Section basics ---------- */
.section { padding: 92px 0; }
.section.soft { background: var(--ivory-2); }
.section.mist { background: var(--ivory-3); }
.section-head { text-align: center; max-width: 730px; margin: 0 auto 56px; }
.section-head.left { text-align: left; margin-left: 0; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--peacock); margin-bottom: 16px;
}
.kicker .hi { font-family: var(--hindi); text-transform: none; font-size: 16px; letter-spacing: 0; color: var(--gold-deep); font-weight: 400; }
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--gold); }
.section-head h2 { font-size: clamp(30px, 3.8vw, 44px); font-weight: 500; }
.section-head h2 em { font-style: italic; color: var(--peacock); }
.section-head p { margin-top: 16px; font-size: 17px; color: var(--body); }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .3s; position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--peacock)); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(217, 154, 43, .16), rgba(14, 124, 116, .12));
  border: 1px solid rgba(217, 154, 43, .18);
}
.card .icon svg { width: 30px; height: 30px; fill: var(--indigo-3); }
.card h3 { font-size: 21px; margin-bottom: 10px; font-weight: 600; }
.card p { font-size: 15px; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.split .media { position: relative; }
.split .media .frame {
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--card); background: var(--card);
}
.split .media::after {
  content: ""; position: absolute; inset: -14px auto auto -14px; width: 90px; height: 90px; z-index: -1;
  border-radius: 16px; background: repeating-linear-gradient(45deg, var(--gold-soft) 0 6px, transparent 6px 12px); opacity: .6;
}
.split .media .badge {
  position: absolute; bottom: -26px; right: -14px; background: var(--indigo); color: #fff; border-radius: 16px;
  padding: 20px 26px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px;
}
.split .media .badge b { font-family: var(--display); font-size: 36px; line-height: 1; color: var(--gold-light); font-weight: 600; }
.split .media .badge span { font-size: 13px; color: #cfc7ea; max-width: 120px; }
.checks { margin: 26px 0 32px; display: grid; gap: 15px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink); font-weight: 500; }
.checks li svg { width: 23px; height: 23px; flex-shrink: 0; margin-top: 2px; }
.checks li svg circle { fill: rgba(14, 124, 116, .12); }
.checks li svg path { stroke: var(--peacock); }
.lead-p { font-size: 17px; margin-bottom: 8px; }

/* ---------- Stats band ---------- */
.stats-band { background: linear-gradient(135deg, var(--indigo), var(--plum)); color: #fff; position: relative; overflow: hidden; }
.stats-band::after {
  content: ""; position: absolute; inset: 0; opacity: .55;
  background: radial-gradient(560px 300px at 90% 20%, rgba(217, 154, 43, .2), transparent 60%),
              radial-gradient(560px 300px at 5% 90%, rgba(14, 124, 116, .24), transparent 60%);
}
.section.stats-band { padding: 74px 0; }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 34px 22px 30px; border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(246, 217, 154, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: transform .35s var(--ease), border-color .3s, box-shadow .3s, background .3s;
}
.stat:hover {
  transform: translateY(-6px); border-color: rgba(246, 217, 154, .4);
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
  box-shadow: 0 20px 40px rgba(0, 0, 0, .28);
}
.stat .s-ic {
  width: 66px; height: 66px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(217, 154, 43, .26), rgba(217, 154, 43, .05));
  border: 1px solid rgba(246, 217, 154, .28); box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
  transition: transform .35s var(--ease);
}
.stat:hover .s-ic { transform: translateY(-5px) rotate(-4deg); }
.stat .s-ic svg { width: 30px; height: 30px; fill: var(--gold-light); }
.stat b { font-family: var(--display); font-size: clamp(40px, 4.3vw, 54px); color: #fff; display: block; font-weight: 600; line-height: 1; letter-spacing: -.5px; }
.stat b .plus { color: var(--gold-light); }
.stat span { color: #c1b9e0; font-size: 15px; font-weight: 500; margin-top: 12px; letter-spacing: .2px; }

/* ---------- Products ---------- */
.product-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .p-ic {
  width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 8px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-3)); border: 3px solid rgba(217,154,43,.3);
}
.product-card .p-ic svg { width: 32px; height: 32px; fill: var(--gold-light); }
.product-card h4 { font-size: 19px; font-weight: 600; }
.product-card .brands { font-size: 13.5px; color: var(--peacock); font-weight: 600; letter-spacing: .3px; }
.product-card p { font-size: 14px; }

/* ---------- Happy Customers / clients ---------- */
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.client-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  min-height: 128px; display: grid; place-items: center; padding: 22px 26px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; position: relative;
}
.client-card::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 10px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--peacock)); transform: scaleX(0); transition: transform .35s var(--ease);
}
.client-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.client-card:hover::after { transform: scaleX(1); }
.client-card img {
  max-height: 76px; max-width: 100%; width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: .72; transition: filter .35s, opacity .35s;
}
.client-card:hover img { filter: grayscale(0); opacity: 1; }
.clients-note { text-align: center; margin-top: 34px; color: var(--muted); font-size: 14.5px; }

/* ---------- Feature rows ---------- */
.feature-row { display: flex; gap: 18px; align-items: flex-start; padding: 24px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); transition: .3s; }
.feature-row:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); border-color: rgba(217,154,43,.4); }
.feature-row .fr-ic { width: 56px; height: 56px; flex-shrink: 0; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(217,154,43,.18), rgba(217,154,43,.06)); }
.feature-row .fr-ic svg { width: 27px; height: 27px; fill: var(--gold-deep); }
.feature-row h4 { font-size: 19px; margin-bottom: 6px; font-weight: 600; }
.feature-row p { font-size: 14.5px; }

/* ---------- Partner marquee ---------- */
.partners { padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); }
.partners .p-label { text-align: center; color: var(--muted); font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; font-size: 13px; margin-bottom: 28px; }
.partner-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 44px; }
.partner-row .pname { font-family: var(--display); font-weight: 600; font-size: 23px; color: #b3ab9a; transition: color .3s, transform .3s; letter-spacing: .3px; }
.partner-row .pname:hover { color: var(--indigo-3); transform: translateY(-2px); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--indigo-2), var(--plum)); color: #fff; border-radius: 26px; padding: 58px; box-shadow: var(--shadow); }
.cta-band::before { content: ""; position: absolute; right: -50px; top: -50px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(217,154,43,.28), transparent 70%); }
.cta-band::after { content: ""; position: absolute; left: -40px; bottom: -80px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(14,124,116,.3), transparent 70%); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner .kicker { color: var(--gold-light); }
.cta-inner .kicker .hi { color: var(--gold-soft); }
.cta-inner .kicker::before { background: var(--gold); }
.cta-inner h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); font-weight: 500; }
.cta-inner h2 em { color: var(--gold-light); font-style: italic; }
.cta-inner p { color: #d6cfee; margin-top: 10px; max-width: 480px; }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; position: relative; }
.quote-card .qmark { font-family: var(--display); font-size: 72px; line-height: .6; color: var(--gold); opacity: .4; }
.quote-card p { font-size: 15.5px; color: var(--ink); margin: 8px 0 22px; line-height: 1.75; }
.quote-card .who { display: flex; align-items: center; gap: 14px; }
.quote-card .who .av { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--peacock), var(--peacock-deep)); color: #fff; display: grid; place-items: center; font-weight: 600; font-family: var(--display); }
.quote-card .who b { display: block; color: var(--ink); font-size: 15px; font-family: var(--display); font-weight: 600; }
.quote-card .who span { font-size: 13px; color: var(--muted); }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; overflow: hidden; color: #fff; padding: 72px 0; background: radial-gradient(880px 400px at 85% -20%, rgba(217,154,43,.24), transparent 60%), linear-gradient(160deg, #120f30, var(--indigo) 58%, var(--plum)); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: radial-gradient(circle at 22px 22px, rgba(246,217,154,.1) 2px, transparent 2.5px); background-size: 44px 44px; mask-image: radial-gradient(circle at 82% 20%, #000, transparent 72%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 50px); font-weight: 500; }
.page-hero h1 .hi { font-family: var(--hindi); color: var(--gold-soft); font-size: .5em; display: block; margin-top: 8px; font-weight: 400; }
.page-hero .crumbs { margin-top: 16px; color: #c1b9e0; font-size: 14.5px; }
.page-hero .crumbs a { color: var(--gold-light); }
.page-hero .crumbs span { margin: 0 8px; opacity: .5; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.info-list { display: grid; gap: 24px; margin-top: 8px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ii-ic { width: 52px; height: 52px; flex-shrink: 0; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, var(--indigo), var(--indigo-3)); border: 1px solid rgba(217,154,43,.25); }
.info-item .ii-ic svg { width: 23px; height: 23px; fill: var(--gold-light); }
.info-item b { display: block; color: var(--ink); font-family: var(--display); font-size: 17px; margin-bottom: 3px; font-weight: 600; }
.info-item a, .info-item p { color: var(--body); font-size: 15px; }
.info-item a:hover { color: var(--peacock); }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: 14px; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 15px; color: var(--ink); background: var(--ivory); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(217, 154, 43, .16); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 10px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }
.form-success { display: none; padding: 14px 16px; border-radius: var(--radius-sm); background: rgba(14,124,116,.1); border: 1px solid rgba(14,124,116,.3); color: var(--peacock-deep); font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.footer { background: #120f2c; color: #b0a8cf; padding-top: 66px; position: relative; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--peacock), var(--gold), var(--peacock)); }
.footer h4 { color: #fff; font-size: 18px; margin-bottom: 20px; font-weight: 600; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer .f-brand img { height: 44px; background: #fff; padding: 6px 8px; border-radius: 8px; margin-bottom: 16px; }
.footer .f-brand p { font-size: 14.5px; max-width: 300px; }
.footer .f-social { display: flex; gap: 12px; margin-top: 20px; }
.footer .f-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, .07); display: grid; place-items: center; transition: .25s; }
.footer .f-social a svg { width: 17px; height: 17px; fill: #cfc7ea; }
.footer .f-social a:hover { background: var(--gold); transform: translateY(-3px); }
.footer .f-social a:hover svg { fill: #201400; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { transition: color .2s, padding .2s; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: "◆"; color: var(--gold); font-size: 9px; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer .f-contact li { display: flex; gap: 11px; margin-bottom: 16px; font-size: 14.5px; align-items: flex-start; }
.footer .f-contact li svg { width: 17px; height: 17px; fill: var(--gold-light); flex-shrink: 0; margin-top: 4px; }
.footer .f-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 24px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

/* Media never forces horizontal overflow */
img, svg, iframe, video, table { max-width: 100%; }

@media (max-width: 1024px) {
  :root { --maxw: 960px; }
  .footer-grid { gap: 34px 30px; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; padding: 60px 0 74px; }
  .hero-visual { min-height: 300px; order: -1; }
  .chakra { width: 250px; height: 250px; }
  /* Single-column hero: keep the floating cards within the viewport */
  .hero-visual .card-1 { left: 0; top: 4%; }
  .hero-visual .card-2 { right: 0; }
  .hero-visual .card-3 { left: 0; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split .media { max-width: 520px; margin: 0 auto; }
  .split .media .badge { right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 24px; }
  .stat::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

/* Tablet / mobile nav */
@media (max-width: 860px) {
  .menu, .nav-cta .btn { display: none; }
  .hamburger { display: block; }
  .nav { min-height: 68px; }
  .site-header .menu {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--card); border-bottom: 1px solid var(--line); padding: 12px; gap: 4px; box-shadow: var(--shadow);
    display: none;
  }
  .site-header .menu.open { display: flex; }
  .menu a { padding: 14px 16px; font-size: 16px; }
  .menu a::after { display: none; }
  .menu a.active { background: rgba(217, 154, 43, .1); }
  /* Logo already contains the company name — drop the long bilingual line */
  .brand .brand-sub { display: none; }
  .brand .brand-name { font-size: 17px; white-space: nowrap; }
  .brand img { height: 42px; }
}

@media (max-width: 700px) {
  .section { padding: 66px 0; }
  .page-hero { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 40px 26px; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 22px 30px; }
  /* Only the emblem/logo image in the header (name lives inside the image) */
  .brand .brand-txt { display: none; }
  .brand img { height: 44px; }
  /* Keep decorative hero cards inside the viewport */
  .hero-visual { min-height: 260px; }
  .chakra { width: 220px; height: 220px; }
  .hero-visual .shield-card { font-size: 12.5px; padding: 10px 13px; gap: 9px; }
  .hero-visual .card-1 { top: 2%; left: 0; }
  .hero-visual .card-2 { bottom: 4%; right: 0; }
  .hero-visual .card-3 { bottom: 44%; left: 0; }
}

@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .hero-grid { padding: 44px 0 60px; }
  .hero h1 { font-size: 30px; }
  .hero h1 .hi { font-size: .66em; }
  .hero p.lead { font-size: 16px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .btn { padding: 12px 22px; }
  .section-head h2 { font-size: 26px; }
  .stats-grid { gap: 30px 16px; }
  .stat { padding: 26px 14px 22px; }
  .stat b { font-size: 38px; }
  /* Compact top bar: keep phone + email, drop location text */
  .topbar { font-size: 12.5px; }
  .topbar .strip-left { gap: 10px 16px; }
  .topbar .strip-item:nth-child(3) { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .split .media .badge { padding: 16px 20px; }
  .split .media .badge b { font-size: 30px; }
  .form-card, .info-card { padding: 24px 20px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 27px; }
  .section-head h2 { font-size: 24px; }
  .clients-grid { grid-template-columns: 1fr; }
  .topbar .socials { gap: 12px; }
}
