/* ============================================================
   TEAM CREATIONS PVT. LTD. — Corporate Website
   Brand palette derived from logo: deep navy + teal
   ============================================================ */

:root {
  --navy: #004E85;
  --navy-deep: #013A63;
  --navy-darker: #022B47;
  --teal: #3E97A8;
  --teal-light: #5BB4C4;
  --teal-soft: #E8F4F6;
  --ink: #16242E;
  --slate: #5A6B76;
  --line: #E4EAEE;
  --bg: #FFFFFF;
  --bg-soft: #F6F9FB;
  --bg-tint: #EEF5F8;
  --white: #FFFFFF;
  --gradient: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 45%, var(--teal) 100%);
  --gradient-soft: linear-gradient(120deg, #013A63 0%, #00568F 55%, #2E8597 100%);
  --shadow-sm: 0 2px 10px rgba(2, 43, 71, 0.06);
  --shadow: 0 14px 40px rgba(2, 43, 71, 0.10);
  --shadow-lg: 0 30px 70px rgba(2, 43, 71, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --head: "Poppins", "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--head); font-weight: 700; line-height: 1.15; color: var(--navy-deep); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { color: var(--slate); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--head); font-weight: 600; font-size: 0.97rem;
  padding: 14px 30px; border-radius: 50px; cursor: pointer; border: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--gradient); color: #fff; box-shadow: 0 12px 28px rgba(0, 78, 133, 0.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(0, 78, 133, 0.45); }
.btn--ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--navy-deep); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: padding .3s var(--ease), background .3s, box-shadow .3s;
}
.header.scrolled { padding: 10px 0; background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 50px; transition: height .3s; }
.header.scrolled .nav__logo img { height: 42px; }
.nav__logo .logo-dark { display: none; }
.header.scrolled .nav__logo .logo-light { display: none; }
.header.scrolled .nav__logo .logo-dark { display: block; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-family: var(--head); font-weight: 500; font-size: 0.95rem; color: #fff;
  padding: 10px 16px; border-radius: 8px; position: relative; transition: color .25s;
}
.header.scrolled .nav__link { color: var(--ink); }
.nav__link::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px;
  background: var(--teal-light); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--teal-light); }
.header.scrolled .nav__link.active { color: var(--teal); }
.nav__cta { margin-left: 12px; padding: 11px 24px; }
.header.scrolled .nav__cta { box-shadow: 0 8px 20px rgba(0,78,133,0.28); }

.nav__toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 3px; transition: .3s; }
.header.scrolled .nav__toggle span { background: var(--navy-deep); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--gradient); color: #fff; overflow: hidden; padding: 140px 0 90px;
}
.hero__bg { position: absolute; inset: 0; opacity: 0.5; }
.hero__bg span { position: absolute; border-radius: 50%; filter: blur(8px); }
.hero__orb1 { width: 520px; height: 520px; top: -160px; right: -120px; background: radial-gradient(circle, rgba(91,180,196,0.5), transparent 70%); animation: float 14s ease-in-out infinite; }
.hero__orb2 { width: 420px; height: 420px; bottom: -140px; left: -100px; background: radial-gradient(circle, rgba(91,180,196,0.35), transparent 70%); animation: float 18s ease-in-out infinite reverse; }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000, transparent); }
.hero .container { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--head); font-weight: 500;
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 50px; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22); margin-bottom: 26px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-light); box-shadow: 0 0 0 4px rgba(91,180,196,0.35); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 .accent { background: linear-gradient(90deg, #7FD0DD, #B9ECF3); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__lead { font-size: 1.18rem; color: rgba(255,255,255,0.88); max-width: 56ch; margin: 24px 0 38px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap; }
.hero__stat .num { font-family: var(--head); font-weight: 700; font-size: 2.4rem; color: #fff; line-height: 1; }
.hero__stat .lbl { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 6px; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.6); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.5); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after { content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: #fff; border-radius: 4px; animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 100% { opacity: 0; top: 18px; } }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-30px); } }

/* ---------- Page banner (inner pages) ---------- */
.banner {
  position: relative; background: var(--gradient); color: #fff; padding: 170px 0 80px; overflow: hidden;
}
.banner__bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 50px 50px; mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000, transparent); }
.banner .container { position: relative; z-index: 2; }
.banner h1 { color: #fff; }
.banner p { color: rgba(255,255,255,0.85); max-width: 60ch; margin-top: 14px; font-size: 1.1rem; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; font-family: var(--head); }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--teal-light); }

/* ---------- Section heading ---------- */
.head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.head--left { text-align: left; margin-left: 0; }
.eyebrow { display: inline-block; font-family: var(--head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.eyebrow::before { content: ''; display: inline-block; width: 26px; height: 2px; background: var(--teal); vertical-align: middle; margin-right: 10px; }
.head p { margin-top: 16px; font-size: 1.05rem; }

/* ---------- Intro / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__media { position: relative; }
.split__media .frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.split__badge { position: absolute; bottom: -28px; right: -10px; background: #fff; border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow); display: flex; gap: 16px; align-items: center; }
.split__badge .big { font-family: var(--head); font-weight: 700; font-size: 2.2rem; color: var(--teal); line-height: 1; }
.split__badge .small { font-size: 0.85rem; color: var(--slate); max-width: 12ch; }

.tickrow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 28px 0 34px; }
.tick { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--ink); }
.tick svg { width: 22px; height: 22px; flex: none; color: var(--teal); margin-top: 2px; }

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

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient); 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: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: var(--teal-soft); color: var(--navy); margin-bottom: 22px; transition: background .4s, color .4s; }
.card:hover .card__icon { background: var(--gradient); color: #fff; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.97rem; }
.card__list { margin-top: 16px; }
.card__list li { font-size: 0.92rem; color: var(--slate); padding: 5px 0 5px 22px; position: relative; }
.card__list li::before { content: ''; position: absolute; left: 0; top: 13px; width: 7px; height: 7px; border-radius: 2px; background: var(--teal); }
.card__more { display: inline-flex; align-items: center; gap: 6px; font-family: var(--head); font-weight: 600; font-size: 0.9rem; color: var(--teal); margin-top: 18px; }
.card__more svg { width: 16px; height: 16px; transition: transform .3s; }
.card:hover .card__more svg { transform: translateX(4px); }

/* ---------- Industry chips ---------- */
.ind { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 22px; text-align: center; transition: transform .35s var(--ease), box-shadow .35s, background .35s, color .35s; }
.ind:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--gradient); }
.ind__ic { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-soft); color: var(--navy); transition: .35s; }
.ind:hover .ind__ic { background: rgba(255,255,255,0.18); color: #fff; }
.ind__ic svg { width: 26px; height: 26px; }
.ind h4 { font-size: 1rem; color: var(--navy-deep); transition: color .35s; }
.ind:hover h4 { color: #fff; }
.ind p { font-size: 0.85rem; margin-top: 6px; transition: color .35s; }
.ind:hover p { color: rgba(255,255,255,0.85); }

/* ---------- Process timeline ---------- */
.steps { position: relative; }
.steps::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--teal), var(--navy)); transform: translateX(-50%); }
.step { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: center; gap: 10px; margin-bottom: 36px; }
.step__num { width: 70px; height: 70px; margin: 0 auto; border-radius: 50%; background: #fff; border: 2px solid var(--teal); color: var(--navy-deep); font-family: var(--head); font-weight: 700; font-size: 1.5rem; display: grid; place-items: center; box-shadow: var(--shadow-sm); z-index: 2; }
.step__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.step__card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step__card h3 { margin-bottom: 8px; }
.step__card p { font-size: 0.95rem; }
.step:nth-child(even) .step__card { grid-column: 3; }
.step:nth-child(even) > div:first-child { grid-column: 1; }
.step .spacer { }

/* ---------- Why choose / features ---------- */
.feat { display: flex; gap: 18px; padding: 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s; }
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feat__ic { width: 54px; height: 54px; flex: none; border-radius: 14px; background: var(--gradient); color: #fff; display: grid; place-items: center; }
.feat__ic svg { width: 26px; height: 26px; }
.feat h4 { color: var(--navy-deep); margin-bottom: 6px; }
.feat p { font-size: 0.93rem; }

/* ---------- CTA band ---------- */
.cta {
  position: relative; background: var(--gradient); color: #fff; border-radius: 28px;
  padding: 64px 56px; overflow: hidden; text-align: center;
}
.cta__bg { position: absolute; inset: 0; opacity: .6; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000, transparent); }
.cta .container { position: relative; z-index: 2; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.9); max-width: 56ch; margin: 16px auto 32px; font-size: 1.1rem; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Stats band ---------- */
.statsband { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.statsband .num { font-family: var(--head); font-weight: 700; font-size: clamp(2.2rem,4vw,3rem); color: var(--navy-deep); line-height: 1; }
.statsband .num span { color: var(--teal); }
.statsband .lbl { color: var(--slate); margin-top: 8px; font-weight: 500; }

/* ---------- Gallery ---------- */
.gal-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; flex-wrap: wrap; }
.gal-tab { font-family: var(--head); font-weight: 600; font-size: 0.95rem; padding: 12px 26px; border-radius: 50px; border: 1.5px solid var(--line); background: #fff; color: var(--slate); cursor: pointer; transition: .3s; }
.gal-tab.active, .gal-tab:hover { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 10px 24px rgba(0,78,133,0.28); }

.masonry { columns: 3; column-gap: 20px; }
.masonry .tile { break-inside: avoid; margin-bottom: 20px; }
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s;
}
.tile:hover { transform: translatey(-5px); box-shadow: var(--shadow); }
.tile__ph { aspect-ratio: var(--ar, 4/3); background: var(--gradient-soft); display: grid; place-items: center; position: relative; }
.tile__ph::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 30px 30px; }
.tile__ph svg { width: 46px; height: 46px; color: rgba(255,255,255,0.6); z-index: 1; }
.tile__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 20px 16px; background: linear-gradient(transparent, rgba(1,43,71,0.85)); color: #fff; transform: translateY(8px); opacity: 0; transition: .4s var(--ease); }
.tile:hover .tile__cap { transform: translateY(0); opacity: 1; }
.tile__cap .t { font-family: var(--head); font-weight: 600; font-size: 1rem; }
.tile__cap .s { font-size: 0.82rem; color: rgba(255,255,255,0.8); }
.tile__tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.92); color: var(--navy-deep); font-family: var(--head); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 6px 12px; border-radius: 50px; z-index: 2; }

.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.vtile { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; }
.vtile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.vtile__ph { aspect-ratio: 16/9; background: var(--gradient-soft); position: relative; display: grid; place-items: center; }
.vtile__ph::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 32px 32px; }
.play { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.95); display: grid; place-items: center; z-index: 1; box-shadow: 0 10px 30px rgba(0,0,0,0.25); transition: transform .35s var(--ease); }
.play svg { width: 26px; height: 26px; color: var(--navy-deep); margin-left: 4px; }
.vtile:hover .play { transform: scale(1.12); }
.play::before { content: ''; position: absolute; width: 72px; height: 72px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }
.vtile__meta { padding: 18px 20px; background: #fff; }
.vtile__meta h4 { font-size: 1rem; color: var(--navy-deep); }
.vtile__meta p { font-size: 0.85rem; margin-top: 4px; }

/* ---------- Lightbox ---------- */
.lb { position: fixed; inset: 0; background: rgba(2,27,46,0.94); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 30px; }
.lb.open { display: flex; }
.lb__inner { max-width: 880px; width: 100%; text-align: center; }
.lb__box { aspect-ratio: 16/10; background: var(--gradient-soft); border-radius: var(--radius); display: grid; place-items: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.lb__box svg { width: 64px; height: 64px; color: rgba(255,255,255,0.7); }
.lb__cap { color: #fff; font-family: var(--head); font-size: 1.1rem; margin-top: 18px; }
.lb__close { position: absolute; top: 24px; right: 30px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 1.4rem; cursor: pointer; transition: .3s; }
.lb__close:hover { background: #fff; color: var(--navy-deep); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.cinfo { display: grid; gap: 18px; }
.cinfo__item { display: flex; gap: 16px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .35s var(--ease), box-shadow .35s; }
.cinfo__item:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.cinfo__ic { width: 50px; height: 50px; flex: none; border-radius: 14px; background: var(--gradient); color: #fff; display: grid; place-items: center; }
.cinfo__ic svg { width: 24px; height: 24px; }
.cinfo__item h4 { color: var(--navy-deep); font-size: 1rem; margin-bottom: 4px; }
.cinfo__item p, .cinfo__item a { color: var(--slate); font-size: 0.95rem; }
.cinfo__item a:hover { color: var(--teal); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--head); font-weight: 500; font-size: 0.88rem; color: var(--navy-deep); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 0.96rem; color: var(--ink); background: var(--bg-soft); transition: .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(62,151,168,0.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: 0.85rem; color: var(--slate); margin-top: 14px; text-align: center; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin-top: 40px; }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-darker); color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer__logo img { height: 54px; margin-bottom: 18px; }
.footer__top p { color: rgba(255,255,255,0.6); font-size: 0.93rem; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { font-size: 0.93rem; transition: color .25s, padding .25s; }
.footer__links a:hover { color: var(--teal-light); padding-left: 5px; }
.footer__contact li { display: flex; gap: 11px; font-size: 0.92rem; margin-bottom: 13px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--teal-light); flex: none; margin-top: 3px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: .3s; }
.socials a:hover { background: var(--teal); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.86rem; }
.footer__bottom a:hover { color: var(--teal-light); }
.footer__bottom { align-items: center; }
.ticker { display: inline-flex; align-items: center; gap: 9px; font-family: var(--head); font-weight: 600; font-size: 0.85rem; color: #fff; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); padding: 7px 16px; border-radius: 50px; }
.ticker svg { width: 16px; height: 16px; color: var(--teal-light); flex: none; }
.ticker .count { font-variant-numeric: tabular-nums; letter-spacing: 0.5px; color: var(--teal-light); }
.ticker .live { width: 7px; height: 7px; border-radius: 50%; background: #46d39a; box-shadow: 0 0 0 0 rgba(70,211,154,0.6); animation: blip 1.8s infinite; }
@keyframes blip { 0% { box-shadow: 0 0 0 0 rgba(70,211,154,0.5); } 70% { box-shadow: 0 0 0 8px rgba(70,211,154,0); } 100% { box-shadow: 0 0 0 0 rgba(70,211,154,0); } }
.footer__dev { display: inline-flex; align-items: center; gap: 10px; font-size: 0.84rem; }
.footer__dev a { color: var(--teal-light); font-weight: 600; }
.adesk-badge { width: 76px; height: 25.5px; background: #fff url('https://alphadesk.in/logo.png') no-repeat; background-size: 85.4px auto; background-position: -4.95px -30.4px; border-radius: 6px; display: inline-block; box-shadow: 0 3px 10px rgba(0,0,0,0.18); transition: transform .3s var(--ease), box-shadow .3s; }
.adesk-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.28); }
.adesk-badge img { display: none; }
@media (max-width: 760px) { .footer__bottom { gap: 16px; } .ticker, .footer__dev { width: auto; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2,1fr); }
  .statsband { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2,1fr); }
  .masonry { columns: 2; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .steps::before { left: 34px; }
  .step { grid-template-columns: 70px 1fr; gap: 18px; }
  .step__num { margin: 0; }
  .step:nth-child(even) .step__card, .step:nth-child(even) > div:first-child { grid-column: auto; }
  .step .spacer { display: none; }
}
@media (max-width: 760px) {
  .nav__menu {
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh;
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 100px 28px 40px; gap: 6px; box-shadow: -10px 0 40px rgba(0,0,0,0.15); transition: right .4s var(--ease); z-index: 999;
  }
  .nav__menu.open { right: 0; }
  .nav__link { color: var(--ink); width: 100%; font-size: 1.05rem; padding: 14px 8px; }
  .nav__link::after { display: none; }
  .nav__cta { margin: 14px 0 0; width: 100%; justify-content: center; }
  .nav__toggle { display: flex; z-index: 1001; }
  .nav__toggle.open span { background: var(--navy-deep); }
  .nav__toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
  .section { padding: 70px 0; }
  .grid--3, .grid--4, .video-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .form__row { grid-template-columns: 1fr; }
  .cta { padding: 48px 26px; }
  .hero__stats { gap: 30px; }
  .footer__top { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; padding: 0 26px; transition: box-shadow .3s, border-color .3s; }
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 0; font-family: var(--head); font-weight: 600; font-size: 1.02rem; color: var(--navy-deep); display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.5rem; font-weight: 400; color: var(--teal); transition: transform .3s var(--ease); line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 22px; color: var(--slate); font-size: 0.97rem; line-height: 1.75; }
