/* ==========================================================================
   CybroNet — Design tokens
   ========================================================================== */
:root {
	--blue: #0068FF;
	--blue-dark: #0050C7;
	--blue-deep: #09267A;
	--charcoal: #232323;
	--gray-700: #3A4150;
	--gray-500: #5B6472;
	--gray-300: #A7AFBD;
	--gray-100: #E7EBF3;
	--tint: #F4F7FF;
	--white: #FFFFFF;

	/* Shared across newer sections (hero carousel, who-we-are): Jio-style
	   action blue, distinct from --blue (the logo's own blue) above. */
	--brand-blue: #1E5EFF;
	--font-manrope: 'JioType', 'Manrope', 'Inter', system-ui, sans-serif;

	--font: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 24px;
	--shadow-sm: 0 2px 10px rgba(9, 38, 122, 0.06);
	--shadow-md: 0 12px 30px rgba(9, 38, 122, 0.12);
	--container: 1180px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font);
	color: var(--gray-700);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { color: var(--charcoal); margin: 0 0 .5em; line-height: 1.2; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }

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

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--blue);
	color: var(--white);
	padding: 10px 16px;
	z-index: 999;
}
.skip-link:focus { left: 0; }

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.icon--sm { width: 14px; height: 14px; }
.icon--lg { width: 34px; height: 34px; }

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

/* ==========================================================================
   Scroll reveal — fade + rise, driven globally by main.js
   (IntersectionObserver). --reveal-i (set inline per item) staggers
   siblings; unset defaults to 0 so single elements reveal with no delay.
   ========================================================================== */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s cubic-bezier(.2, .65, .3, 1), transform .7s cubic-bezier(.2, .65, .3, 1);
	transition-delay: calc(var(--reveal-i, 0) * 90ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
}

.eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 12px;
}
.eyebrow--onlight { color: #BFD1FF; }

.section { padding: 88px 0; }
.section-heading { max-width: 640px; margin: 0 0 48px; }
.section-heading h2 { font-size: 34px; }
.section-heading--onlight h2 { color: var(--white); }
.section-heading p { color: var(--gray-500); font-size: 17px; }

/* Quiet corner dot texture — reusable section background accent, generalized
   from the who-we-are section's own dots/glow treatment. Apply to a plain
   section that reads as empty; its direct children are lifted above the
   texture automatically. */
.section--dot-corners { position: relative; overflow: hidden; }
.section--dot-corners::before,
.section--dot-corners::after {
	content: "";
	position: absolute;
	z-index: 0;
	width: 320px;
	height: 320px;
	background-image: radial-gradient(#dfe6f0 2px, transparent 2px);
	background-size: 22px 22px;
	mask-image: radial-gradient(closest-side, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(closest-side, #000 30%, transparent 75%);
	pointer-events: none;
}
.section--dot-corners::before { top: 0; left: 0; }
.section--dot-corners::after { bottom: 0; right: 0; }
.section--dot-corners > * { position: relative; z-index: 1; }

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--blue);
	font-weight: 700;
}

.check-list { margin: 16px 0 24px; }
.check-list li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 8px;
	color: var(--gray-700);
	font-size: 15px;
}
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--blue);
	background-image: linear-gradient(135deg, var(--blue), var(--blue-dark));
}
.check-list li::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 9px;
	width: 8px;
	height: 4px;
	border-left: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
	transform: rotate(-45deg);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	border: 2px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--primary {
	background: var(--blue);
	color: var(--white);
	box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--blue-dark); }
.btn--outline {
	background: transparent;
	border-color: var(--blue);
	color: var(--blue);
}
.btn--outline:hover { background: var(--blue); color: var(--white); }
.btn--outline-onlight {
	background: transparent;
	border-color: rgba(255,255,255,.4);
	color: var(--white);
}
.btn--outline-onlight:hover { border-color: var(--white); }
.btn--ghost {
	background: rgba(255,255,255,.12);
	border-color: rgba(255,255,255,.5);
	color: var(--white);
	backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.22); }

/* ==========================================================================
   Header
   ========================================================================== */
/* Only .site-header/.main-nav (logo + menu, one <header> element carrying
   both classes) is sticky — the .top-bar announcement/contact strip is a
   separate sibling above it and scrolls away normally instead of sticking
   with it. */
.site-header.is-scrolled { box-shadow: 0 2px 12px rgba(0, 0, 0, .08); }

/* Sentinel sits 8px tall at the very top of the document, out of normal
   flow so it adds no visible gap; header.js watches it via
   IntersectionObserver to toggle .is-scrolled once it leaves the viewport. */
.header-sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 8px; visibility: hidden; }

/* All in-page anchor targets land below the sticky nav instead of under it.
   Only .main-nav is sticky now (not the taller .top-bar + .main-nav pair),
   so this offset matches just the nav's height. */
[id] { scroll-margin-top: 80px; }

.top-bar {
	background:  #2359d5 100%;
	color: #f8f8f8;
	font-size: 11.5px;
}
.top-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 4px 24px;
}
.top-bar__contact { display: flex; gap: 16px; }
.top-bar__contact li a,
.top-bar__address { display: inline-flex; align-items: center; gap: 4px; color: #e9eaea; }
.top-bar__contact li a:hover { color: var(--white); }
.top-bar__contact .icon,
.top-bar__address .icon { width: 12px; height: 12px; }
.top-bar__social { display: flex; gap: 6px; }
.top-bar__social a {
	display: inline-flex;
	width: 18px; height: 18px;
	align-items: center; justify-content: center;
	border-radius: 50%;
	background: rgba(9,38,122,.35);
	color: #fdfdfd;
}
.top-bar__social a .icon { width: 10px; height: 10px; }
.top-bar__social a:hover { background: var(--blue); color: var(--white); }

.main-nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--white);
	border-bottom: 1px solid var(--gray-100);
	box-shadow: none;
	transition: box-shadow .2s ease;
}
.main-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 24px;
	gap: 24px;
}

.brand { 
display: inline-flex; 
align-items: center; 
background-color: white;
border-radius: 25%;
}
/* The nav logo is wrapped in <picture> (phones get the padding-trimmed
   file). Without this the inline <img> sits on a baseline and pads the
   nav a few px taller than the logo itself. */
.brand picture { display: flex; }
.brand__logo { height: 58px; width: auto; }
.brand__logo--footer { height: 72px; }

.primary-nav { display: flex; align-items: center; gap: 24px; flex: 1; justify-content: flex-start; margin-left: 40px; }
.primary-nav > ul { display: flex; align-items: center; gap: 22px; }
.primary-nav > ul > li { position: relative; }
.primary-nav > ul > li > a {
	font-weight: 600;
	font-size: 14.5px;
	color: var(--charcoal);
	padding: 6px 0;
}
.primary-nav > ul > li > a:hover { color: var(--blue); }
.primary-nav > ul > li > a.active {
	color: var(--blue);
	text-decoration: underline;
	text-decoration-color: var(--blue);
	text-decoration-thickness: 2px;
	text-underline-offset: 6px;
}
.has-sub .sub-nav {
	position: absolute;
	top: 100%; left: 0;
	background: var(--white);
	box-shadow: var(--shadow-md);
	border-radius: var(--radius-sm);
	min-width: 220px;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all .15s ease;
}
.has-sub:hover .sub-nav { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-nav li a { display: block; padding: 10px 12px; border-radius: 6px; font-size: 14px; color: var(--gray-700); }
.sub-nav li a:hover { background: var(--tint); color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-cta .btn { padding: 8px 18px; font-size: 13.5px; }
.nav-cta .btn--outline-onlight { border-color: var(--gray-300); color: var(--charcoal); }
.nav-cta .btn--outline-onlight:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	background-size: cover;
	background-position: center;
	color: var(--white);
	overflow: hidden;
}
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(9,38,122,.55) 0%, rgba(9,38,122,.15) 60%);
}
.hero__inner { position: relative; padding: 120px 24px 130px; }
.hero__text { max-width: 640px; }
.hero__text h1 { color: var(--white); font-size: 52px; margin-bottom: 20px; }
.hero__text p { font-size: 18px; color: #E7EDFF; max-width: 520px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 24px; }
.hero__badges { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badges li {
	font-size: 13px;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(255,255,255,.14);
	border: 1px solid rgba(255,255,255,.3);
}

/* ==========================================================================
   Intro
   ========================================================================== */
.intro__inner {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 56px;
	align-items: center;
}
.intro__text h2 { font-size: 32px; }
.intro__stats { display: grid; gap: 20px; }
.stat-card {
	background: var(--tint);
	border-radius: var(--radius-md);
	padding: 28px;
}
.stat-card .icon--lg { color: var(--blue); margin-bottom: 12px; }
.stat-card h3 { font-size: 19px; margin-bottom: 6px; }
.stat-card p { color: var(--gray-500); font-size: 14px; margin: 0; }

/* ==========================================================================
   Services
   ========================================================================== */
.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.service-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--gray-100);
	transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card__img { width: 100%; height: 200px; object-fit: cover; }
.service-card__body { padding: 26px; }
.service-card__body h3 { font-size: 21px; }
.service-card__body p { color: var(--gray-500); font-size: 15px; }

/* ==========================================================================
   Feature grid (dark)
   ========================================================================== */
.features--dark { background: var(--charcoal); }
.features__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}
.feature-item {
	text-align: center;
	padding: 26px 12px;
	border-radius: var(--radius-md);
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
}
.feature-item .icon--lg { color: var(--blue); margin-bottom: 14px; }
.feature-item h3 { color: var(--white); font-size: 15px; margin: 0; }

/* ==========================================================================
   Why choose
   ========================================================================== */
.why-choose { background: var(--tint); }
.why-choose__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.why-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	box-shadow: var(--shadow-sm);
}
.why-card__icon {
	width: 60px; height: 60px;
	border-radius: 16px;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, var(--blue), var(--blue-dark));
	color: var(--white);
	margin-bottom: 18px;
}
.why-card h3 { font-size: 19px; }
.why-card p { color: var(--gray-500); font-size: 15px; margin: 0; }

/* ==========================================================================
   Trusted by
   ========================================================================== */
.trusted-by { padding: 56px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.trusted-by__label { text-align: center; color: var(--gray-500); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 32px; }

.trusted-by__marquee {
	overflow: hidden;
	width: 100%;
	-webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.trusted-by__track {
	display: flex;
	align-items: center;
	width: max-content;
	gap: 64px;
	animation: trusted-by-scroll 26s linear infinite;
}
.trusted-by__marquee:hover .trusted-by__track { animation-play-state: paused; }
.trusted-by__logo { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; height: 44px; }
.trusted-by__logo img {
	max-height: 100%;
	max-width: 130px;
	width: auto;
	object-fit: contain;
	filter: grayscale(1) opacity(.55);
	transition: filter .2s ease;
}
.trusted-by__logo:hover img { filter: grayscale(0) opacity(1); }

@keyframes trusted-by-scroll {
	from { transform: translateX(-50%); }
	to { transform: translateX(0%); }
}
@media (prefers-reduced-motion: reduce) {
	.trusted-by__track { animation: none; }
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
	position: relative;
	background-size: cover;
	background-position: center;
	color: var(--white);
	overflow: hidden;
}
.cta-banner__overlay { position: absolute; inset: 0; background: rgba(9,38,122,.35); }
.cta-banner__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	padding: 64px 24px;
}
.cta-banner__inner h2 { color: var(--white); font-size: 30px; }
.cta-banner__inner p { color: #E7EDFF; max-width: 460px; margin: 0; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__inner {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 56px;
	align-items: center;
}
.faq__image { border-radius: var(--radius-lg); overflow: hidden; }
.accordion { margin-top: 24px; }
.accordion-item { border-bottom: 1px solid var(--gray-100); }
.accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: none;
	border: none;
	padding: 18px 4px;
	text-align: left;
	font-size: 16px;
	font-weight: 700;
	color: var(--charcoal);
}
.accordion-icon { color: var(--blue); transition: transform .2s ease; flex-shrink: 0; }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(180deg); }
.accordion-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .25s ease;
}
.accordion-panel p { color: var(--gray-500); font-size: 15px; padding: 0 4px 18px; margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--charcoal); color: #B9C0CE; padding-top: 72px; }
.footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
	gap: 40px;
	padding-bottom: 48px;
}
.footer__about p { font-size: 14px; margin: 16px 0 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
	display: inline-flex; width: 34px; height: 34px;
	align-items: center; justify-content: center;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
}
.footer__social a:hover { background: var(--blue); }
.footer__col h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; }
.footer__col ul li { margin-bottom: 10px; font-size: 14px; }
.footer__col ul li a:hover { color: var(--white); }
.footer__contact ul li {
	display: flex; align-items: flex-start; gap: 10px;
}
.footer__contact .icon { color: var(--blue); margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bottom-inner {
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
	padding: 20px 24px;
	font-size: 13px;
	color: #8A93A6;
}


/* ==========================================================================
   WhatsApp FAB
   ========================================================================== */
.whatsapp-fab {
	position: fixed;
	bottom: 24px; right: 24px;
	width: 56px; height: 56px;
	background: #25D366;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-md);
	z-index: 60;
}
.whatsapp-fab svg { width: 30px; height: 30px; fill: var(--white); }
.whatsapp-fab:hover { transform: scale(1.06); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
	.top-bar__address { display: none; }
	.intro__inner { grid-template-columns: 1fr; }
	.services__grid { grid-template-columns: repeat(2, 1fr); }
	.features__grid { grid-template-columns: repeat(3, 1fr); }
	.why-choose__grid { grid-template-columns: repeat(2, 1fr); }
	.faq__inner { grid-template-columns: 1fr; }
	.faq__image { max-width: 420px; }
	.footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
	.top-bar__inner { padding: 4px 16px; }
	.top-bar__contact { gap: 10px; }
	.nav-toggle { display: flex; }
	.primary-nav {
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: var(--white);
		flex-direction: column;
		align-items: stretch;
		box-shadow: var(--shadow-md);
		padding: 16px 24px 24px;
		display: none;
		margin-left: 0;
	}
	.primary-nav.is-open { display: flex; }
	.primary-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; }
	.primary-nav > ul > li > a { display: block; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
	.has-sub .sub-nav { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; padding-left: 12px; }
	.has-sub.is-open .sub-nav { display: block; }
	.nav-cta { flex-direction: column; align-items: stretch; margin-top: 16px; margin-left: 0; }

	.hero__inner { padding: 90px 20px 90px; }
	.hero__text h1 { font-size: 36px; }

	.section { padding: 64px 0; }
	.services__grid { grid-template-columns: 1fr; }
	.features__grid { grid-template-columns: repeat(2, 1fr); }
	.why-choose__grid { grid-template-columns: 1fr; }
	/* Compact mobile footer — same content, tighter: the two link lists
	   sit side by side while the intro and contact block stay full width. */
	.site-footer { padding-top: 40px; }
	.footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px 18px;
		padding-bottom: 24px;
	}
	.footer__about, .footer__contact { grid-column: 1 / -1; }
	/* Logo and social share one row so the intro block loses a whole line. */
	.footer__about {
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
		column-gap: 14px;
	}
	.footer__about .brand--footer { grid-area: 1 / 1; }
	.footer__social { grid-area: 1 / 2; justify-self: start; }
	.footer__about p { grid-area: 2 / 1 / auto / -1; font-size: 13px; line-height: 1.55; margin: 12px 0 0; }
	.brand__logo--footer { height: 52px; }
	.footer__social a { width: 30px; height: 30px; }
	.footer__col h4 { font-size: 15px; margin-bottom: 10px; }
	.footer__col ul li { margin-bottom: 7px; font-size: 13px; line-height: 1.45; }
	.footer__contact ul li { gap: 8px; }
	.footer__bottom-inner { padding: 12px 24px; font-size: 12px; gap: 2px; line-height: 1.4; }
	.cta-banner__inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Desktop refinements (>=1024px only — mobile/tablet untouched)
   Scoped above every max-width block in this file, so the phone/tablet type
   scale set there stays exactly as it was.
   ========================================================================== */
@media (min-width: 1024px) {
	.section-heading h2 { font-size: 36px; }
	/* FAQ heading carries no explicit size; 26px is the 24px UA default + 2. */
	.faq__content h2 { font-size: 26px; }
	.trusted-by__label { font-size: 15px; }
	.cta-banner__inner h2 { font-size: 36px; }
	.cta-banner__inner p { font-size: 18px; }

	/* Announcement strip: +3px. Vertical padding is trimmed by the same
	   amount the taller line box adds, so the bar keeps its 29px height and
	   nothing below it shifts. */
	.top-bar { font-size: 14.5px; }
	.top-bar__inner { padding: 2.5px 24px; }

	/* Bigger logo, same 75px nav: the row is sized by the logo, so the
	   nav's vertical padding gives back exactly what the logo takes. */
	.brand__logo { height: 66px; }
	.main-nav__inner { padding: 4px 24px; }
}
