/* ============================================================
   South Indian Logistics — Redesign 2026
   Single stylesheet · bold & dynamic theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
	--orange: #f26a21;
	--orange-2: #ff8b3d;
	--orange-dark: #d4540f;
	--ink: #0b0f23;
	--ink-2: #121736;
	--ink-3: #1b2148;
	--navy: #232a52;
	--white: #ffffff;
	--paper: #f4f5f9;
	--paper-2: #eceef5;
	--text: #1a1f36;
	--muted: #666c84;
	--muted-light: #9aa0b6;
	--line: #e4e6ef;
	--line-dark: rgba(255, 255, 255, .10);

	--grad-orange: linear-gradient(135deg, #ff8b3d 0%, #f26a21 55%, #d4540f 100%);
	--grad-dark: linear-gradient(160deg, #121736 0%, #0b0f23 100%);

	--shadow-sm: 0 6px 20px rgba(11, 15, 35, .07);
	--shadow-md: 0 18px 44px rgba(11, 15, 35, .12);
	--shadow-lg: 0 30px 70px rgba(11, 15, 35, .22);
	--shadow-orange: 0 16px 38px rgba(242, 106, 33, .38);

	--r-sm: 10px;
	--r-md: 16px;
	--r-lg: 24px;
	--container: 1240px;
	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	color: var(--text);
	background: var(--white);
	line-height: 1.7;
	font-size: 16px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4, h5 {
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	line-height: 1.18;
	color: var(--text);
	letter-spacing: -.02em;
}

::selection { background: var(--orange); color: #fff; }

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

.section { padding: 110px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--dark { background: var(--grad-dark); color: #d7daea; }
.section--paper { background: var(--paper); }

.section--dark h1, .section--dark h2,
.section--dark h3, .section--dark h4 { color: #fff; }

/* ---------- Section heading ---------- */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: 'Sora', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 16px;
}
.eyebrow::before {
	content: "";
	width: 26px; height: 2px;
	background: var(--orange);
	display: inline-block;
}
.section--dark .eyebrow { color: var(--orange-2); }

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

.section-head h2 {
	font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
	margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--dark .section-head p { color: var(--muted-light); }

.text-orange { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Sora', sans-serif;
	font-weight: 600;
	font-size: .95rem;
	padding: 15px 30px;
	border-radius: 999px;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
	white-space: nowrap;
	cursor: pointer;
}
.btn i { font-size: .9em; transition: transform .3s var(--ease); }
.btn:hover i { transform: translateX(4px); }

.btn--primary { background: var(--grad-orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px rgba(242, 106, 33, .5); }

.btn--ghost {
	background: transparent; color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .35);
}
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-3px); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow-orange); }

.btn--light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn--sm { padding: 11px 22px; font-size: .85rem; }
.btn--block { width: 100%; justify-content: center; }

/* link arrow */
.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Sora', sans-serif;
	font-weight: 600;
	font-size: .9rem;
	color: var(--orange);
}
.link-arrow i { transition: transform .3s var(--ease); }
.link-arrow:hover i { transform: translateX(5px); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
	background: var(--ink);
	color: #b9bdd2;
	font-size: .84rem;
	border-bottom: 1px solid var(--line-dark);
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 44px;
}
.topbar__list { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar__list a { display: inline-flex; align-items: center; gap: 8px; transition: color .25s; }
.topbar__list a:hover { color: var(--orange-2); }
.topbar__list i { color: var(--orange); }
.topbar__social { display: flex; gap: 8px; }
.topbar__social a {
	width: 30px; height: 30px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .07);
	font-size: .8rem;
	transition: background .25s, transform .25s, color .25s;
}
.topbar__social a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: #fff;
	box-shadow: 0 1px 0 var(--line);
	transition: box-shadow .3s, padding .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 84px;
	transition: min-height .3s;
}
.site-header.scrolled .nav { min-height: 70px; }

.nav__logo { flex-shrink: 0; display: block; }
.nav__logo img { height: 50px; width: auto; display: block; transition: height .3s; }
.site-header.scrolled .nav__logo img { height: 42px; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a {
	font-family: 'Sora', sans-serif;
	font-weight: 500;
	font-size: .95rem;
	padding: 10px 14px;
	border-radius: 999px;
	color: var(--text);
	position: relative;
	white-space: nowrap;
	transition: color .25s, background .25s;
}
.nav__menu a:hover { color: var(--orange); }
.nav__menu a.active { color: var(--orange); background: rgba(242, 106, 33, .09); }

.nav__actions { display: flex; align-items: center; gap: 16px; }

.nav__cta { display: inline-flex; }

.nav__call {
	display: flex;
	align-items: center;
	gap: 12px;
}
.nav__call-icon {
	width: 44px; height: 44px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: rgba(242, 106, 33, .12);
	color: var(--orange);
	font-size: 1.05rem;
}
.nav__call-text small { display: block; font-size: .72rem; color: var(--muted); }
.nav__call-text strong { display: block; font-family: 'Sora', sans-serif; font-size: .9rem; color: var(--text); white-space: nowrap; line-height: 1.35; }

/* burger */
.burger {
	display: none;
	width: 46px; height: 46px;
	border-radius: 12px;
	background: var(--ink);
	flex-direction: column;
	gap: 5px;
	align-items: center;
	justify-content: center;
}
.burger span {
	width: 20px; height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(360px, 86vw);
	background: var(--ink);
	color: #fff;
	z-index: 1000;
	transform: translateX(100%);
	transition: transform .4s var(--ease);
	display: flex;
	flex-direction: column;
	padding: 26px;
	overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.drawer__logo {
	background: #fff;
	padding: 8px 12px;
	border-radius: 10px;
}
.drawer__logo img { height: 38px; }
.drawer__close {
	width: 42px; height: 42px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font-size: 1.1rem;
}
.drawer__menu { display: flex; flex-direction: column; gap: 2px; }
.drawer__menu a {
	font-family: 'Sora', sans-serif;
	font-weight: 500;
	padding: 13px 14px;
	border-radius: 10px;
	border-bottom: 1px solid var(--line-dark);
	transition: background .2s, color .2s, padding-left .2s;
}
.drawer__menu a:hover, .drawer__menu a.active { background: rgba(242, 106, 33, .15); color: var(--orange-2); padding-left: 20px; }
.drawer__cta { margin-top: 22px; }
.drawer__contact { margin-top: 26px; font-size: .9rem; color: #b9bdd2; display: flex; flex-direction: column; gap: 12px; }
.drawer__contact a { display: flex; gap: 10px; align-items: flex-start; }
.drawer__contact i { color: var(--orange); margin-top: 4px; }

.overlay {
	position: fixed;
	inset: 0;
	background: rgba(8, 11, 27, .6);
	backdrop-filter: blur(2px);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}
.overlay.open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
	padding: 130px 0 90px;
}
.hero__video {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: -2;
}
.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(95deg, rgba(11, 15, 35, .94) 0%, rgba(11, 15, 35, .78) 42%, rgba(11, 15, 35, .35) 100%),
		linear-gradient(0deg, rgba(11, 15, 35, .85), rgba(11, 15, 35, 0) 55%);
}
.hero__stripes {
	position: absolute;
	top: 0; right: 0;
	width: 320px; height: 100%;
	z-index: -1;
	background: repeating-linear-gradient(135deg, transparent 0 38px, rgba(242, 106, 33, .14) 38px 44px);
	opacity: .8;
}
.hero__inner { max-width: 760px; }

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	padding: 8px 16px 8px 8px;
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 500;
	margin-bottom: 26px;
	backdrop-filter: blur(6px);
}
.hero__badge b {
	background: var(--grad-orange);
	font-family: 'Sora', sans-serif;
	font-size: .72rem;
	padding: 5px 12px;
	border-radius: 999px;
	letter-spacing: .04em;
}

.hero h1 {
	font-size: clamp(2.4rem, 1.3rem + 4.4vw, 4.4rem);
	font-weight: 800;
	color: #fff;
	margin-bottom: 22px;
}
.hero h1 .hl { position: relative; color: var(--orange-2); white-space: nowrap; }
.hero h1 .hl::after {
	content: "";
	position: absolute;
	left: 0; bottom: 6px;
	width: 100%; height: 10px;
	background: rgba(242, 106, 33, .3);
	z-index: -1;
}
.hero__lead {
	font-size: 1.12rem;
	color: #c7cadd;
	max-width: 560px;
	margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero__trust {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
}
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item b {
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}
.hero__trust-item span { font-size: .82rem; color: var(--muted-light); margin-top: 6px; }
.hero__trust-divider { width: 1px; background: rgba(255, 255, 255, .15); }

.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: .72rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--muted-light);
}
.hero__scroll-line {
	width: 1px; height: 40px;
	background: linear-gradient(var(--orange), transparent);
	animation: scrollline 1.8s var(--ease) infinite;
}
@keyframes scrollline { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Highlight strip ---------- */
.highlight {
	margin-top: -64px;
	position: relative;
	z-index: 5;
}
.highlight__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #fff;
	border-radius: var(--r-md);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}
.highlight__item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 28px 26px;
	border-right: 1px solid var(--line);
	transition: background .3s;
}
.highlight__item:last-child { border-right: none; }
.highlight__item:hover { background: var(--paper); }
.highlight__icon {
	width: 52px; height: 52px;
	flex-shrink: 0;
	display: grid; place-items: center;
	border-radius: 14px;
	background: rgba(242, 106, 33, .1);
	color: var(--orange);
	font-size: 1.3rem;
}
.highlight__item h4 { font-size: 1rem; margin-bottom: 2px; }
.highlight__item p { font-size: .85rem; color: var(--muted); }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 64px;
	align-items: center;
}
.about__media { position: relative; }
.about__media img {
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-md);
	width: 100%;
	object-fit: cover;
}
.about__media-main { aspect-ratio: 4 / 5; }
.about__badge {
	position: absolute;
	right: -24px;
	bottom: 36px;
	background: var(--grad-orange);
	color: #fff;
	padding: 24px 28px;
	border-radius: var(--r-md);
	box-shadow: var(--shadow-orange);
	text-align: center;
}
.about__badge b { font-family: 'Sora', sans-serif; font-size: 2.6rem; font-weight: 800; line-height: 1; display: block; }
.about__badge span { font-size: .82rem; font-weight: 500; }
.about__media-dots {
	position: absolute;
	left: -26px; top: -26px;
	width: 110px; height: 110px;
	background-image: radial-gradient(var(--orange) 2px, transparent 2.5px);
	background-size: 18px 18px;
	opacity: .35;
	z-index: -1;
}

.about__body p { color: var(--muted); margin-bottom: 18px; }
.about__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 24px;
	margin: 26px 0 32px;
}
.about__list li {
	display: flex;
	align-items: center;
	gap: 11px;
	font-weight: 500;
	font-size: .95rem;
}
.about__list i {
	width: 24px; height: 24px;
	flex-shrink: 0;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--grad-orange);
	color: #fff;
	font-size: .65rem;
}
.about__sign {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}
.about__sign-quote {
	border-left: 3px solid var(--orange);
	padding-left: 16px;
	font-size: .9rem;
	color: var(--muted);
	font-style: italic;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.service-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 38px 32px;
	position: relative;
	overflow: hidden;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service-card::before {
	content: "";
	position: absolute;
	left: 0; top: 0;
	width: 100%; height: 4px;
	background: var(--grad-orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
	width: 66px; height: 66px;
	display: grid; place-items: center;
	border-radius: 18px;
	background: var(--ink);
	color: var(--orange-2);
	font-size: 1.6rem;
	margin-bottom: 24px;
	transition: background .35s, color .35s, transform .35s var(--ease);
}
.service-card:hover .service-card__icon { background: var(--grad-orange); color: #fff; transform: rotate(-6deg) scale(1.05); }
.service-card__num {
	position: absolute;
	right: 26px; top: 24px;
	font-family: 'Sora', sans-serif;
	font-weight: 800;
	font-size: 2.6rem;
	color: var(--paper-2);
	transition: color .35s;
}
.service-card:hover .service-card__num { color: rgba(242, 106, 33, .14); }
.service-card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: .94rem; margin-bottom: 20px; }

/* ============================================================
   WHY CHOOSE (dark split)
   ============================================================ */
.why__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 60px;
	align-items: center;
}
.why__media { position: relative; }
.why__media img {
	border-radius: var(--r-lg);
	width: 100%;
	aspect-ratio: 5 / 6;
	object-fit: cover;
}
.why__media-tag {
	position: absolute;
	left: -22px; bottom: 40px;
	background: #fff;
	color: var(--text);
	border-radius: var(--r-md);
	padding: 20px 24px;
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: 280px;
}
.why__media-tag i {
	width: 48px; height: 48px;
	flex-shrink: 0;
	display: grid; place-items: center;
	border-radius: 12px;
	background: var(--grad-orange);
	color: #fff;
	font-size: 1.2rem;
}
.why__media-tag b { font-family: 'Sora', sans-serif; display: block; font-size: 1.05rem; }
.why__media-tag span { font-size: .8rem; color: var(--muted); }

.why__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 30px;
}
.why-feature {
	background: rgba(255, 255, 255, .04);
	border: 1px solid var(--line-dark);
	border-radius: var(--r-sm);
	padding: 22px 20px;
	transition: background .3s, transform .3s var(--ease), border-color .3s;
}
.why-feature:hover { background: rgba(242, 106, 33, .1); border-color: rgba(242, 106, 33, .35); transform: translateY(-4px); }
.why-feature i {
	font-size: 1.5rem;
	color: var(--orange-2);
	margin-bottom: 12px;
	display: block;
}
.why-feature h4 { color: #fff; font-size: 1rem; margin-bottom: 5px; }
.why-feature p { font-size: .85rem; color: var(--muted-light); }

/* ============================================================
   COUNTERS
   ============================================================ */
.counters {
	background: var(--grad-orange);
	position: relative;
	overflow: hidden;
}
.counters::after {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(135deg, transparent 0 44px, rgba(255, 255, 255, .06) 44px 50px);
}
.counters__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	position: relative;
	z-index: 1;
}
.counter {
	text-align: center;
	color: #fff;
	padding: 12px;
}
.counter i { font-size: 2.2rem; margin-bottom: 14px; opacity: .9; }
.counter__num {
	font-family: 'Sora', sans-serif;
	font-size: clamp(2.4rem, 1.6rem + 2vw, 3.2rem);
	font-weight: 800;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: baseline;
}
.counter__num sup, .counter__suffix { font-size: .55em; margin-left: 2px; }
.counter p { font-weight: 500; margin-top: 10px; font-size: .96rem; }

/* ============================================================
   BRANCHES
   ============================================================ */
.branches__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.branch-card {
	background: #fff;
	border-radius: var(--r-md);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	border: 1px solid var(--line);
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
	display: flex;
	flex-direction: column;
}
.branch-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.branch-card__head {
	background: var(--grad-dark);
	color: #fff;
	padding: 24px 26px;
	display: flex;
	align-items: center;
	gap: 14px;
	position: relative;
	overflow: hidden;
}
.branch-card__head::after {
	content: "";
	position: absolute;
	right: -10px; top: -10px;
	width: 90px; height: 90px;
	background: repeating-linear-gradient(135deg, transparent 0 10px, rgba(242, 106, 33, .25) 10px 13px);
}
.branch-card__head i {
	width: 46px; height: 46px;
	flex-shrink: 0;
	display: grid; place-items: center;
	border-radius: 12px;
	background: var(--grad-orange);
	font-size: 1.15rem;
}
.branch-card__head h3 { color: #fff; font-size: 1.18rem; }
.branch-card__head span { font-size: .8rem; color: var(--muted-light); }
.branch-card__body { padding: 14px 26px 8px; flex: 1; }
.branch-item {
	padding: 16px 0;
	border-bottom: 1px dashed var(--line);
}
.branch-item:last-child { border-bottom: none; }
.branch-item b {
	font-family: 'Sora', sans-serif;
	font-size: .92rem;
	color: var(--orange);
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 5px;
}
.branch-item p { font-size: .87rem; color: var(--muted); margin-bottom: 6px; }
.branch-item a {
	font-size: .85rem;
	font-weight: 600;
	color: var(--text);
	display: inline-flex;
	gap: 6px;
	align-items: center;
}
.branch-item a:hover { color: var(--orange); }
.branch-item a i { color: var(--orange); }
.branch-card__foot { padding: 18px 26px; border-top: 1px solid var(--line); }

/* ============================================================
   MISSION TABS
   ============================================================ */
.mvg__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 56px;
	align-items: center;
}
.mvg__media { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.mvg__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.mvg__media-overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 28px;
	background: linear-gradient(transparent, rgba(11, 15, 35, .9));
	color: #fff;
}
.mvg__media-overlay b { font-family: 'Sora', sans-serif; font-size: 1.2rem; }
.mvg__media-overlay p { font-size: .85rem; color: #c7cadd; }

.tabs__nav {
	display: flex;
	gap: 8px;
	margin-bottom: 26px;
	flex-wrap: wrap;
}
.tabs__btn {
	font-family: 'Sora', sans-serif;
	font-weight: 600;
	font-size: .92rem;
	padding: 12px 24px;
	border-radius: 999px;
	background: var(--paper);
	color: var(--text);
	transition: background .3s, color .3s, box-shadow .3s;
}
.tabs__btn.active { background: var(--grad-orange); color: #fff; box-shadow: var(--shadow-orange); }
.section--dark .tabs__btn { background: rgba(255, 255, 255, .06); color: #d7daea; }
.section--dark .tabs__btn.active { background: var(--grad-orange); color: #fff; }

.tabs__panel { display: none; animation: fadeUp .5s var(--ease); }
.tabs__panel.active { display: block; }
.tabs__panel p { color: var(--muted); margin-bottom: 16px; }
.section--dark .tabs__panel p { color: var(--muted-light); }
.tabs__panel h3 { font-size: 1.5rem; margin-bottom: 14px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   LOCATIONS / BADGES
   ============================================================ */
.locations__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 26px;
}
.loc-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 34px;
}
.loc-card--accent { background: var(--grad-dark); border-color: transparent; color: #fff; }
.loc-card__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}
.loc-card__head i {
	width: 50px; height: 50px;
	display: grid; place-items: center;
	border-radius: 14px;
	background: rgba(242, 106, 33, .12);
	color: var(--orange);
	font-size: 1.3rem;
}
.loc-card--accent .loc-card__head i { background: var(--grad-orange); color: #fff; }
.loc-card__head h3 { font-size: 1.25rem; }
.loc-card__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.loc-badge {
	font-size: .86rem;
	font-weight: 500;
	padding: 9px 16px;
	border-radius: 999px;
	background: var(--paper);
	border: 1px solid var(--line);
	transition: background .25s, color .25s, transform .25s, border-color .25s;
}
.loc-badge:hover { background: var(--grad-orange); color: #fff; border-color: transparent; transform: translateY(-3px); }
.loc-card--accent .loc-badge {
	background: rgba(255, 255, 255, .07);
	border-color: var(--line-dark);
	color: #fff;
}
.loc-card--accent .loc-badge:hover { background: var(--grad-orange); }

/* ============================================================
   CLIENTS MARQUEE
   ============================================================ */
.clients { padding: 70px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.clients__label {
	text-align: center;
	font-family: 'Sora', sans-serif;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 36px;
}
.marquee {
	display: flex;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
	display: flex;
	gap: 64px;
	padding-right: 64px;
	animation: marquee 28s linear infinite;
	flex-shrink: 0;
}
.clients:hover .marquee__track { animation-play-state: paused; }
.marquee__track img {
	height: 52px;
	width: auto;
	object-fit: contain;
	filter: grayscale(1);
	opacity: .55;
	transition: filter .3s, opacity .3s, transform .3s;
}
.marquee__track img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.08); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   CLIENTS PAGE — categories + logo grid
   ============================================================ */
.clients-cat { margin-bottom: 60px; }
.clients-cat:last-child { margin-bottom: 0; }
.clients-cat__head {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 30px;
}
.clients-cat__chip {
	background: var(--grad-orange);
	color: #fff;
	padding: 7px 16px;
	border-radius: 999px;
	font-family: 'Sora', sans-serif;
	font-weight: 600;
	font-size: .76rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	box-shadow: var(--shadow-orange);
}
.clients-cat__head h3 {
	font-size: 1.45rem;
	margin: 0;
}
.clients-cat__line {
	flex: 1;
	height: 1px;
	background: var(--line);
}
.clients-cat__count {
	font-family: 'Sora', sans-serif;
	font-size: .85rem;
	color: var(--muted);
	font-weight: 600;
	white-space: nowrap;
}

.client-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.client-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 32px 22px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
	position: relative;
	overflow: hidden;
}
.client-card::before {
	content: "";
	position: absolute;
	left: 0; top: 0;
	width: 100%; height: 3px;
	background: var(--grad-orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s var(--ease);
}
.client-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}
.client-card:hover::before { transform: scaleX(1); }

.client-card__logo {
	width: 100%;
	height: 96px;
	display: grid;
	place-items: center;
	padding: 4px;
}
.client-card__logo img {
	max-height: 88px;
	max-width: 92%;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(25%);
	transition: filter .35s;
}
.client-card:hover .client-card__logo img { filter: grayscale(0); }
.client-card__info { display: flex; flex-direction: column; gap: 4px; }
.client-card__name {
	font-family: 'Sora', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	color: var(--text);
	margin: 0;
}
.client-card__tag {
	font-size: .8rem;
	color: var(--muted);
}

@media (max-width: 1080px) {
	.client-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
	.client-grid { grid-template-columns: repeat(2, 1fr); }
	.clients-cat__head { flex-wrap: wrap; gap: 10px; }
	.clients-cat__line { display: none; }
}
@media (max-width: 420px) {
	.client-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
	position: relative;
	color: #fff;
	overflow: hidden;
	padding: 96px 0;
}
.cta-band__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%; height: 100%;
	object-fit: cover;
}
.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(100deg, rgba(11, 15, 35, .96) 0%, rgba(11, 15, 35, .82) 50%, rgba(212, 84, 15, .78) 100%);
}
.cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.cta-band__text { max-width: 620px; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 1.2rem + 2vw, 2.7rem); margin-bottom: 14px; }
.cta-band p { color: #d2d5e6; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 48px;
	align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
	display: flex;
	gap: 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 24px 26px;
	transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-card__icon {
	width: 52px; height: 52px;
	flex-shrink: 0;
	display: grid; place-items: center;
	border-radius: 14px;
	background: var(--grad-orange);
	color: #fff;
	font-size: 1.25rem;
}
.contact-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: .92rem; color: var(--muted); }
.contact-card a:hover { color: var(--orange); }

.form-wrap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 40px;
	box-shadow: var(--shadow-sm);
}
.form-wrap--dark {
	background: var(--grad-dark);
	border-color: transparent;
}
.form-wrap__head { margin-bottom: 26px; }
.form-wrap__head h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-wrap__head p { color: var(--muted); font-size: .92rem; }
.form-wrap--dark .form-wrap__head h3 { color: #fff; }
.form-wrap--dark .form-wrap__head p { color: var(--muted-light); }

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
	font-size: .82rem;
	font-weight: 600;
	font-family: 'Sora', sans-serif;
	margin-bottom: 7px;
	color: var(--text);
}
.form-wrap--dark .field label { color: #e3e5f0; }
.field input, .field textarea, .field select {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid var(--line);
	border-radius: var(--r-sm);
	background: var(--paper);
	font-size: .92rem;
	color: var(--text);
	transition: border-color .25s, background .25s, box-shadow .25s;
}
.form-wrap--dark .field input,
.form-wrap--dark .field textarea,
.form-wrap--dark .field select {
	background: rgba(255, 255, 255, .05);
	border-color: var(--line-dark);
	color: #fff;
}
.field select option {
	background: #141a35;
	color: #fff;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-light); }
.field input:focus, .field textarea:focus, .field select:focus {
	outline: none;
	border-color: var(--orange);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(242, 106, 33, .12);
}
.form-wrap--dark .field input:focus,
.form-wrap--dark .field textarea:focus,
.form-wrap--dark .field select:focus { background: rgba(255, 255, 255, .08); }
.field textarea { resize: vertical; min-height: 120px; }

.form-note {
	margin-top: 16px;
	font-size: .86rem;
	padding: 12px 16px;
	border-radius: var(--r-sm);
	background: rgba(46, 160, 90, .12);
	color: #1d7a45;
	display: none;
}
.form-note.show { display: block; animation: fadeUp .4s var(--ease); }

.map-embed {
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--line);
	line-height: 0;
}
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ============================================================
   PAGE BANNER (breadcrumb)
   ============================================================ */
.page-banner {
	position: relative;
	padding: 130px 0 90px;
	color: #fff;
	overflow: hidden;
	text-align: center;
}
.page-banner__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%; height: 100%;
	object-fit: cover;
}
.page-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(11, 15, 35, .86), rgba(11, 15, 35, .92));
}
.page-banner__stripes {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: repeating-linear-gradient(135deg, transparent 0 60px, rgba(242, 106, 33, .08) 60px 66px);
}
.page-banner h1 {
	color: #fff;
	font-size: clamp(2rem, 1.3rem + 2.6vw, 3.2rem);
	font-weight: 800;
	margin-bottom: 14px;
}
.crumbs {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: .9rem;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .14);
	padding: 8px 20px;
	border-radius: 999px;
}
.crumbs a { color: #c7cadd; transition: color .2s; }
.crumbs a:hover { color: var(--orange-2); }
.crumbs i { font-size: .65rem; color: var(--orange); }
.crumbs span { color: #fff; font-weight: 500; }

/* ============================================================
   PROCESS (numbered steps)
   ============================================================ */
.process__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.step {
	position: relative;
	padding: 36px 26px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	transition: transform .35s var(--ease), box-shadow .35s;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step__num {
	font-family: 'Sora', sans-serif;
	font-weight: 800;
	font-size: 1rem;
	width: 46px; height: 46px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	margin-bottom: 20px;
	transition: background .3s;
}
.step:hover .step__num { background: var(--grad-orange); }
.step i { font-size: 1.7rem; color: var(--orange); margin-bottom: 14px; display: block; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--muted); }
.step__dash {
	position: absolute;
	right: -16px; top: 52px;
	color: var(--line);
	font-size: 1.2rem;
}

/* ============================================================
   VALUES / OFFER CARDS (light)
   ============================================================ */
.offer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.offer-card {
	text-align: center;
	padding: 36px 24px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	transition: transform .35s var(--ease), box-shadow .35s, background .35s;
}
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.offer-card__icon {
	width: 74px; height: 74px;
	margin: 0 auto 20px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: rgba(242, 106, 33, .1);
	color: var(--orange);
	font-size: 1.7rem;
	transition: background .35s, color .35s;
}
.offer-card:hover .offer-card__icon { background: var(--grad-orange); color: #fff; }
.offer-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.offer-card p { font-size: .9rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #b3b8cf; }
.footer-main {
	padding: 84px 0 56px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
	gap: 48px;
}
.footer-col h4 {
	color: #fff;
	font-size: 1.05rem;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 12px;
}
.footer-col h4::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 34px; height: 3px;
	background: var(--grad-orange);
	border-radius: 2px;
}
.footer-brand__logo {
	background: #fff;
	padding: 12px 16px;
	border-radius: 12px;
	display: inline-block;
	margin-bottom: 20px;
}
.footer-brand__logo img { height: 46px; }
.footer-brand p { font-size: .9rem; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
	width: 40px; height: 40px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	transition: background .25s, transform .25s;
}
.footer-social a:hover { background: var(--grad-orange); transform: translateY(-3px); }

.footer-links li { margin-bottom: 12px; }
.footer-links a {
	font-size: .92rem;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	transition: color .2s, padding-left .2s;
}
.footer-links a::before {
	content: "\203A";
	font-size: .95rem;
	font-weight: 700;
	color: var(--orange);
	line-height: 1;
}
.footer-links a:hover { color: #fff; padding-left: 5px; }

.footer-contact li {
	display: flex;
	gap: 13px;
	margin-bottom: 16px;
	font-size: .9rem;
}
.footer-contact li i {
	width: 36px; height: 36px;
	flex-shrink: 0;
	display: grid; place-items: center;
	border-radius: 10px;
	background: rgba(242, 106, 33, .14);
	color: var(--orange);
}
.footer-contact a:hover { color: #fff; }

.footer-bottom {
	border-top: 1px solid var(--line-dark);
	padding: 22px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	font-size: .85rem;
}
.footer-bottom a { color: var(--orange-2); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-stack {
	position: fixed;
	right: 22px;
	bottom: 24px;
	z-index: 700;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.float-btn {
	width: 52px; height: 52px;
	border-radius: 50%;
	display: grid; place-items: center;
	color: #fff;
	font-size: 1.2rem;
	box-shadow: var(--shadow-md);
	transition: transform .3s var(--ease);
}
.float-btn:hover { transform: translateY(-4px) scale(1.06); }
.float-btn--wa { background: #25d366; }
.float-btn--top {
	background: var(--grad-orange);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s, transform .3s var(--ease);
}
.float-btn--top.show { opacity: 1; visibility: visible; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	* { animation-duration: .001s !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
	.section { padding: 86px 0; }
	.about__grid, .why__grid, .mvg__grid, .contact__grid { grid-template-columns: 1fr; gap: 44px; }
	.about__media { max-width: 460px; }
	.services__grid, .branches__grid { grid-template-columns: repeat(2, 1fr); }
	.process__grid, .offer__grid { grid-template-columns: repeat(2, 1fr); }
	.highlight__grid { grid-template-columns: repeat(2, 1fr); }
	.highlight__item:nth-child(2) { border-right: none; }
	.counters__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
	.locations__grid { grid-template-columns: 1fr; }
	.footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
	.step__dash { display: none; }
}

@media (max-width: 1300px) {
	.nav__call { display: none; }
}

@media (max-width: 860px) {
	.nav__menu, .nav__cta { display: none; }
	.burger { display: flex; }
	.topbar__list { gap: 16px; font-size: .8rem; }
	.hero { min-height: auto; padding: 116px 0 80px; }
	.hero__trust { gap: 22px; }
	.hero__trust-divider { display: none; }
	.about__badge { right: 16px; }
	.cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
	.container { padding: 0 18px; }
	.section { padding: 68px 0; }
	.section-head { margin-bottom: 40px; }
	.services__grid, .branches__grid, .process__grid, .offer__grid,
	.highlight__grid, .why__features, .form-grid { grid-template-columns: 1fr; }
	.highlight { margin-top: -40px; }
	.highlight__item { border-right: none; border-bottom: 1px solid var(--line); }
	.highlight__item:last-child { border-bottom: none; }
	.counters__grid { grid-template-columns: 1fr 1fr; }
	.about__list { grid-template-columns: 1fr; }
	.footer-main { grid-template-columns: 1fr; gap: 36px; }
	.form-wrap { padding: 26px; }
	.about__badge { padding: 16px 18px; }
	.about__badge b { font-size: 2rem; }
	.topbar__inner { flex-direction: column; gap: 8px; padding: 10px 0; }
	.topbar__list { gap: 10px 18px; justify-content: center; font-size: .78rem; }
	.topbar__list a { gap: 6px; }
	.topbar__social { gap: 8px; }
	.hero__cta .btn { flex: 1; justify-content: center; }
	.why__media-tag { left: 50%; transform: translateX(-50%); bottom: -28px; }
	.why__media { margin-bottom: 30px; }
}

@media (max-width: 400px) {
	.counters__grid { grid-template-columns: 1fr; }
	.hero__badge { font-size: .74rem; }
}
