:root {
	--navy: #071421;
	--navy-2: #0c1f33;
	--navy-3: #102a43;
	--emerald: #14b889;
	--emerald-dark: #0f8d6b;
	--gold: #d6a84f;
	--white: #ffffff;
	--off-white: #f5f7fb;
	--muted: #6d7886;
	--line: rgba(255, 255, 255, 0.14);
	--dark-line: rgba(7, 20, 33, 0.12);
	--shadow: 0 24px 70px rgba(7, 20, 33, 0.14);
	--radius-lg: 28px;
	--radius-md: 18px;
	--radius-sm: 12px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background: var(--off-white);
	color: var(--navy);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font-family: inherit;
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.section {
	padding: 95px 0;
}

/* SCROLL BAR */

.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0%;
	background: linear-gradient(90deg, var(--emerald), var(--gold));
	z-index: 2000;
	box-shadow: 0 0 16px rgba(20, 184, 137, 0.55);
}

/* HEADER */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(7, 20, 33, 0.96);
	border-bottom: 1px solid var(--line);
	transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.navbar {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.brand:has(.brand-symbol) {
	flex-direction: row;
	align-items: center;
	gap: 12px;
}

.brand-symbol {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, rgba(20, 184, 137, 0.95), rgba(214, 168, 79, 0.86));
	color: #071421;
	font-size: 22px;
	font-weight: 950;
	letter-spacing: -1px;
	box-shadow: 0 12px 30px rgba(20, 184, 137, 0.22);
	transition: transform 0.22s ease;
}

.brand:hover .brand-symbol {
	transform: rotate(-3deg) scale(1.04);
}

.brand-copy {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.brand-mark {
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 3px;
	color: var(--white);
}

.brand-text {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.72);
	letter-spacing: 0.6px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 24px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 14px;
	font-weight: 700;
}

.nav-links a {
	transition: color 0.22s ease;
}

.nav-links a:hover {
	color: var(--emerald);
}

.nav-cta {
	padding: 11px 17px;
	border-radius: 999px;
	background: var(--emerald);
	color: var(--navy) !important;
}

.nav-toggle {
	display: none;
}

/* HERO */

.premium-hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-top: 150px;
	padding-bottom: 100px;
	color: var(--white);
	background:
		radial-gradient(circle at 18% 20%, rgba(20, 184, 137, 0.22), transparent 34%),
		radial-gradient(circle at 82% 12%, rgba(214, 168, 79, 0.18), transparent 32%),
		radial-gradient(circle at 65% 90%, rgba(55, 124, 255, 0.12), transparent 36%),
		linear-gradient(135deg, #071421 0%, #0b2238 52%, #071421 100%);
}

.premium-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.055) 45%, transparent 70%);
	transform: translateX(-100%);
	animation: heroSweep 7s ease-in-out infinite;
	pointer-events: none;
}

@keyframes heroSweep {
	0%,
	35% {
		transform: translateX(-100%);
	}

	65%,
	100% {
		transform: translateX(100%);
	}
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(90deg, rgba(7, 20, 33, 0.94), rgba(7, 20, 33, 0.72));
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: 60px;
	align-items: center;
}

.hero-content,
.hero-dashboard {
	position: relative;
	z-index: 5;
}

.eyebrow,
.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 13px;
	border-radius: 999px;
	background: rgba(20, 184, 137, 0.12);
	color: var(--emerald);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.4px;
	margin-bottom: 20px;
}

.animated-eyebrow {
	border: 1px solid rgba(20, 184, 137, 0.25);
}

.hero h1 {
	font-size: clamp(42px, 6vw, 78px);
	line-height: 0.98;
	letter-spacing: -3px;
	max-width: 850px;
	margin-bottom: 24px;
	color: var(--white);
}

.hero h1 span {
	display: inline-block;
	background: linear-gradient(90deg, var(--emerald), var(--gold));
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	transition: background-position 0.45s ease, filter 0.45s ease;
}

.hero h1 span:hover {
	background-position: 100% center;
	filter: drop-shadow(0 0 18px rgba(20, 184, 137, 0.35));
}

.hero p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
	max-width: 680px;
	margin-bottom: 30px;
}

.hero-actions,
.form-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

/* BUTTONS */

.btn {
	border: 0;
	cursor: pointer;
	padding: 15px 22px;
	border-radius: 999px;
	font-weight: 900;
	font-size: 14px;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btn-primary {
	background: var(--emerald);
	color: var(--navy);
	box-shadow: 0 18px 40px rgba(20, 184, 137, 0.22);
}

.btn-primary:hover {
	transform: translateY(-3px);
	background: #22d6a3;
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.16);
}

/* HERO TAGS */

.floating-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 34px;
	max-width: 760px;
}

.floating-tags span {
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	font-weight: 800;
	transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.floating-tags span:hover {
	transform: translateY(-5px) scale(1.04);
	background: rgba(20, 184, 137, 0.16);
	border-color: rgba(20, 184, 137, 0.45);
	color: var(--white);
}

.hero-trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.hero-trust-badges span {
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.075);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.74);
	font-size: 12px;
	font-weight: 900;
}

/* HERO DASHBOARD */

.hero-dashboard {
	position: relative;
	padding: 30px;
	border-radius: 34px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.10);
	box-shadow: 0 24px 65px rgba(0, 0, 0, 0.26);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-dashboard::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 34px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(20, 184, 137, 0.55), transparent, rgba(214, 168, 79, 0.35));
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.hero-dashboard:hover {
	transform: translateY(-7px);
	border-color: rgba(20, 184, 137, 0.38);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.30);
}

.dashboard-top,
.dashboard-top div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.dashboard-top {
	margin-bottom: 34px;
}

.dashboard-top strong {
	color: var(--white);
}

.dashboard-top small {
	color: var(--emerald);
	font-weight: 900;
}

.status-dot {
	width: 10px;
	height: 10px;
	background: var(--emerald);
	border-radius: 999px;
	box-shadow: 0 0 0 8px rgba(20, 184, 137, 0.14);
}

.dashboard-main h2 {
	font-size: 42px;
	line-height: 1;
	letter-spacing: -1.8px;
	color: var(--white);
	margin-bottom: 14px;
}

.dashboard-main p {
	margin: 0;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.72);
}

.dashboard-bars {
	display: grid;
	gap: 15px;
	margin: 26px 0 22px;
}

.dashboard-bars div {
	display: grid;
	gap: 7px;
}

.dashboard-bars span,
.dashboard-bars strong {
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
}

.dashboard-bars strong {
	color: var(--emerald);
}

.dashboard-bars i {
	display: block;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--emerald), var(--gold));
	box-shadow: 0 0 20px rgba(20, 184, 137, 0.22);
}

.dashboard-mini-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.dashboard-mini-grid div {
	padding: 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: transform 0.22s ease, background 0.22s ease;
}

.dashboard-mini-grid div:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.13);
}

.dashboard-mini-grid strong {
	display: block;
	color: var(--gold);
	font-size: 18px;
	margin-bottom: 4px;
}

.dashboard-mini-grid span {
	color: rgba(255, 255, 255, 0.74);
	font-size: 13px;
}

/* INTRO STRIP */

.intro-strip {
	padding: 0;
	margin-top: -42px;
	position: relative;
	z-index: 20;
}

.strip-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.strip-grid div {
	padding: 28px;
	border-right: 1px solid var(--dark-line);
}

.strip-grid div:last-child {
	border-right: 0;
}

.strip-grid span {
	display: block;
	color: var(--emerald-dark);
	font-size: 13px;
	font-weight: 900;
	margin-bottom: 7px;
}

.strip-grid strong {
	font-size: 17px;
	line-height: 1.35;
}

/* SECTION HEADINGS */

.section-heading {
	max-width: 760px;
	margin-bottom: 44px;
}

.section-heading h2,
.tax-content h2,
.why-content h2,
.contact-content h2,
.faq-intro h2 {
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.05;
	letter-spacing: -1.8px;
	margin-bottom: 18px;
}

.section-heading p,
.tax-content p,
.why-content p,
.contact-content p,
.faq-intro p {
	color: var(--muted);
	font-size: 17px;
	max-width: 720px;
}

/* SECTION DIVIDERS */

.services-section,
.process-section,
.packages-section,
.industries-section,
.faq-section {
	position: relative;
}

.services-section::before,
.process-section::before,
.packages-section::before,
.industries-section::before,
.faq-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: min(1180px, calc(100% - 40px));
	height: 1px;
	transform: translateX(-50%);
	background: linear-gradient(90deg, transparent, rgba(20, 184, 137, 0.28), rgba(214, 168, 79, 0.22), transparent);
}

/* SERVICE CARDS */

.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.service-card,
.process-step,
.comparison-card,
.contact-form,
.why-points,
.tax-list {
	background: var(--white);
	border: 1px solid var(--dark-line);
	border-radius: var(--radius-lg);
	box-shadow: 0 14px 40px rgba(7, 20, 33, 0.06);
}

.service-card {
	position: relative;
	overflow: hidden;
	padding: 28px;
	min-height: 260px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top right, rgba(20, 184, 137, 0.18), transparent 38%),
		radial-gradient(circle at bottom left, rgba(214, 168, 79, 0.14), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.service-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: -80%;
	width: 55%;
	height: 100%;
	background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
	transform: skewX(-18deg);
	transition: left 0.55s ease;
	pointer-events: none;
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(20, 184, 137, 0.32);
	box-shadow: 0 24px 60px rgba(7, 20, 33, 0.14);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card:hover::after {
	left: 125%;
}

.icon-box {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	font-size: 25px;
	background:
		radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), transparent 28%),
		linear-gradient(135deg, rgba(20, 184, 137, 0.16), rgba(214, 168, 79, 0.16));
	color: var(--emerald-dark);
	font-weight: 900;
	margin-bottom: 24px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 12px 26px rgba(7, 20, 33, 0.08);
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.service-card:hover .icon-box {
	transform: translateY(-3px) rotate(-3deg) scale(1.08);
	background: linear-gradient(135deg, rgba(20, 184, 137, 0.24), rgba(214, 168, 79, 0.24));
	color: var(--navy);
}

.service-card h3 {
	font-size: 22px;
	line-height: 1.2;
	margin-bottom: 13px;
	max-width: 310px;
	transition: color 0.25s ease;
}

.service-card:hover h3 {
	color: var(--emerald-dark);
}

.service-card p {
	position: relative;
	z-index: 2;
	color: var(--muted);
	font-size: 15px;
}

/* TAX SECTION */

.tax-section {
	background:
		radial-gradient(circle at top left, rgba(20, 184, 137, 0.13), transparent 34%),
		linear-gradient(135deg, #071421, #0b2238);
	color: var(--white);
}

.tax-grid,
.why-grid,
.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 44px;
	align-items: start;
}

.tax-content p,
.contact-content p {
	color: rgba(255, 255, 255, 0.75);
}

.safe-note {
	margin-top: 20px;
	padding: 18px;
	border-left: 4px solid var(--gold);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
}

.tax-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--line);
}

.tax-list div {
	padding: 17px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid var(--line);
	color: rgba(255, 255, 255, 0.88);
	font-weight: 700;
	transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.tax-list div:hover {
	transform: translateY(-5px);
	background: rgba(20, 184, 137, 0.14);
	border-color: rgba(20, 184, 137, 0.35);
}

/* COMPARISON */

.comparison-section {
	background: var(--white);
}

.comparison-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.comparison-card {
	padding: 34px;
}

.comparison-card h3 {
	font-size: 28px;
	margin-bottom: 20px;
}

.comparison-card ul {
	list-style: none;
	display: grid;
	gap: 13px;
}

.comparison-card li {
	padding-left: 28px;
	position: relative;
	color: var(--muted);
}

.comparison-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--gold);
}

.comparison-card.highlight {
	background: linear-gradient(135deg, var(--navy), var(--navy-3));
	color: var(--white);
}

.comparison-card.highlight li {
	color: rgba(255, 255, 255, 0.78);
}

.comparison-card.highlight li::before {
	background: var(--emerald);
}

/* PROCESS */

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.process-step {
	padding: 26px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover {
	transform: translateY(-7px);
	box-shadow: 0 22px 55px rgba(7, 20, 33, 0.12);
}

.process-step span {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: var(--navy);
	color: var(--emerald);
	font-weight: 900;
	margin-bottom: 24px;
	transition: transform 0.25s ease;
}

.process-step:hover span {
	transform: scale(1.08);
}

.process-step h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.process-step p {
	color: var(--muted);
	font-size: 15px;
}

/* WHY SECTION */

.why-section {
	background: #eef3f8;
}

.why-points {
	padding: 16px;
	display: grid;
	gap: 12px;
}

.why-points div {
	padding: 22px;
	border-radius: var(--radius-md);
	background: var(--off-white);
	border: 1px solid var(--dark-line);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why-points div:hover {
	transform: translateY(-5px);
	border-color: rgba(20, 184, 137, 0.28);
	box-shadow: 0 18px 45px rgba(7, 20, 33, 0.10);
}

.why-points strong,
.why-points span {
	display: block;
}

.why-points strong {
	font-size: 18px;
	margin-bottom: 6px;
}

.why-points span {
	color: var(--muted);
	font-size: 15px;
}

/* PACKAGES */

.packages-section {
	background: #f5f7fb;
	position: relative;
}

.packages-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 10%, rgba(20, 184, 137, 0.10), transparent 32%),
		radial-gradient(circle at 85% 30%, rgba(214, 168, 79, 0.10), transparent 30%);
	pointer-events: none;
}

.packages-section .container {
	position: relative;
	z-index: 2;
}

.packages-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.package-card {
	position: relative;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--dark-line);
	border-radius: var(--radius-lg);
	padding: 30px;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 14px 40px rgba(7, 20, 33, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.package-card:hover {
	transform: translateY(-8px);
	border-color: rgba(20, 184, 137, 0.35);
	box-shadow: 0 24px 60px rgba(7, 20, 33, 0.14);
}

.package-card.featured {
	background: linear-gradient(135deg, var(--navy), var(--navy-3));
	color: var(--white);
	border-color: rgba(20, 184, 137, 0.35);
	transform: translateY(-10px);
}

.package-card.featured:hover {
	transform: translateY(-16px);
}

.package-tag {
	display: inline-flex;
	width: fit-content;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(20, 184, 137, 0.12);
	color: var(--emerald-dark);
	font-size: 12px;
	font-weight: 900;
	margin-bottom: 18px;
}

.package-card.featured .package-tag {
	background: var(--emerald);
	color: var(--navy);
}

.package-card h3 {
	font-size: 24px;
	line-height: 1.15;
	margin-bottom: 12px;
}

.package-card p {
	color: var(--muted);
	font-size: 15px;
	margin-bottom: 18px;
}

.package-card.featured p {
	color: rgba(255, 255, 255, 0.74);
}

.package-card ul {
	list-style: none;
	display: grid;
	gap: 10px;
	margin-bottom: 24px;
}

.package-card li {
	position: relative;
	padding-left: 24px;
	color: var(--muted);
	font-size: 14px;
}

.package-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--emerald);
}

.package-card.featured li {
	color: rgba(255, 255, 255, 0.78);
}

.package-link {
	margin-top: auto;
	display: inline-flex;
	font-weight: 900;
	color: var(--emerald-dark);
	transition: transform 0.22s ease, color 0.22s ease;
}

.package-card.featured .package-link {
	color: var(--emerald);
}

.package-link:hover {
	transform: translateX(5px);
	color: var(--gold);
}

/* INDUSTRIES */

.industries-section {
	background: var(--white);
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.industries-grid div {
	padding: 18px;
	border-radius: var(--radius-md);
	border: 1px solid var(--dark-line);
	background: var(--off-white);
	font-weight: 900;
	color: var(--navy);
	box-shadow: 0 10px 25px rgba(7, 20, 33, 0.04);
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.industries-grid div::after {
	content: "→";
	color: var(--emerald-dark);
	transition: transform 0.22s ease, color 0.22s ease;
}

.industries-grid div:hover {
	transform: translateY(-5px);
	background: var(--navy);
	color: var(--white);
	border-color: rgba(20, 184, 137, 0.35);
}

.industries-grid div:hover::after {
	transform: translateX(4px);
	color: var(--gold);
}

/* FAQ */

.faq-section {
	background: #eef3f8;
}

.faq-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 44px;
	align-items: start;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-item {
	background: var(--white);
	border: 1px solid var(--dark-line);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: 0 12px 34px rgba(7, 20, 33, 0.05);
}

.faq-item.active {
	border-color: rgba(20, 184, 137, 0.35);
	box-shadow: 0 18px 46px rgba(7, 20, 33, 0.08);
}

.faq-question {
	width: 100%;
	border: 0;
	background: transparent;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	cursor: pointer;
	color: var(--navy);
	text-align: left;
	font-size: 16px;
	font-weight: 900;
}

.faq-item.active .faq-question {
	color: var(--emerald-dark);
}

.faq-question span {
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	border-radius: 999px;
	background: rgba(20, 184, 137, 0.12);
	color: var(--emerald-dark);
	display: grid;
	place-items: center;
	transition: transform 0.22s ease, background 0.22s ease;
}

.faq-item.active .faq-question span {
	transform: rotate(45deg);
	background: var(--emerald);
	color: var(--navy);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.28s ease;
}

.faq-answer p {
	padding: 0 20px 20px;
	color: var(--muted);
	font-size: 15px;
}

/* CONTACT */

.contact-section {
	background:
		radial-gradient(circle at 85% 15%, rgba(20, 184, 137, 0.18), transparent 32%),
		linear-gradient(135deg, #071421, #0c1f33);
	color: var(--white);
}

.contact-info {
	display: grid;
	gap: 14px;
	margin-top: 30px;
	max-width: 440px;
}

.contact-info div {
	padding: 20px;
	border-radius: var(--radius-md);
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.08);
}

.contact-info span {
	display: block;
	color: var(--emerald);
	font-weight: 900;
	font-size: 13px;
	margin-bottom: 4px;
}

.contact-info strong {
	font-size: 18px;
}

.contact-form {
	position: relative;
	overflow: hidden;
	padding: 28px;
}

.contact-form::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top right, rgba(20, 184, 137, 0.10), transparent 38%),
		radial-gradient(circle at bottom left, rgba(214, 168, 79, 0.10), transparent 34%);
	pointer-events: none;
}

.contact-form>* {
	position: relative;
	z-index: 2;
}

.form-row {
	display: grid;
	gap: 8px;
	margin-bottom: 16px;
}

.form-row label {
	color: var(--navy);
	font-size: 14px;
	font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
	width: 100%;
	border: 1px solid var(--dark-line);
	border-radius: 14px;
	padding: 14px 15px;
	color: var(--navy);
	background: #f9fbfd;
	outline: none;
	font-size: 15px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
	border-color: var(--emerald);
	box-shadow: 0 0 0 4px rgba(20, 184, 137, 0.11);
	background: var(--white);
}

.contact-form .btn-secondary {
	background: var(--navy);
	color: var(--white);
}

.form-note {
	color: var(--muted);
	font-size: 13px;
	margin-top: 14px;
}

.hidden {
	display: none;
}

/* FOOTER */

.site-footer {
	background:
		radial-gradient(circle at 15% 20%, rgba(20, 184, 137, 0.12), transparent 30%),
		linear-gradient(135deg, #04101d, #071421);
	color: rgba(255, 255, 255, 0.78);
	padding: 58px 0 24px;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.8fr;
	gap: 44px;
	padding-bottom: 34px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
	display: block;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.footer-logo span {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--emerald), var(--gold));
	color: var(--navy);
	font-size: 22px;
	font-weight: 950;
	box-shadow: 0 12px 30px rgba(20, 184, 137, 0.20);
}

.footer-logo strong {
	color: var(--white);
	font-size: 30px;
	letter-spacing: 3px;
}

.footer-brand p {
	max-width: 460px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 15px;
	line-height: 1.7;
}

.footer-column {
	display: grid;
	gap: 9px;
	align-content: start;
}

.footer-column span {
	display: block;
	color: var(--emerald);
	font-size: 13px;
	font-weight: 900;
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-column a,
.footer-column p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	margin: 0;
}

.footer-column a {
	transition: color 0.22s ease, transform 0.22s ease;
}

.footer-column a:hover {
	color: var(--gold);
	transform: translateX(4px);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 22px;
	padding-top: 22px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 26px;
}

.footer-grid strong {
	display: block;
	font-size: 26px;
	color: var(--white);
	letter-spacing: 2px;
	margin-bottom: 8px;
}

.footer-grid span {
	display: block;
	color: var(--emerald);
	font-weight: 900;
	font-size: 13px;
	margin-bottom: 4px;
}

/* WHATSAPP BUTTONS */

.floating-whatsapp {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 1200;
	border: 0;
	border-radius: 999px;
	padding: 15px 20px;
	background: #25d366;
	color: #071421;
	font-weight: 900;
	cursor: pointer;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
	transition: transform 0.22s ease;
}

.floating-whatsapp:hover {
	transform: translateY(-4px);
}

.mobile-sticky-cta {
	display: none;
}

/* REVEAL */

.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 980px) {
	.nav-toggle {
		display: block;
		width: 44px;
		height: 44px;
		border: 1px solid var(--line);
		border-radius: 12px;
		background: transparent;
		cursor: pointer;
	}

	.nav-toggle span {
		display: block;
		width: 20px;
		height: 2px;
		background: var(--white);
		margin: 5px auto;
	}

	.nav-links {
		position: fixed;
		top: 78px;
		left: 20px;
		right: 20px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 16px;
		border-radius: 22px;
		background: rgba(7, 20, 33, 0.96);
		border: 1px solid var(--line);
	}

	.nav-links.open {
		display: flex;
	}

	.nav-links a {
		padding: 13px 10px;
	}

	.nav-cta {
		text-align: center;
		margin-top: 8px;
	}

	.hero-grid,
	.tax-grid,
	.why-grid,
	.contact-grid,
	.comparison-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.cards-grid,
	.process-grid,
	.strip-grid,
	.packages-grid,
	.industries-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.strip-grid div:nth-child(2) {
		border-right: 0;
	}

	.footer-main,
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.footer-bottom {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.premium-hero::before {
		animation: none;
		display: none;
	}

	.service-card:hover,
	.process-step:hover,
	.why-points div:hover,
	.tax-list div:hover,
	.hero-dashboard:hover,
	.package-card:hover,
	.industries-grid div:hover {
		transform: none;
	}

	.package-card.featured {
		transform: none;
	}

	.package-card.featured:hover {
		transform: none;
	}
}

@media (max-width: 640px) {
	.container,
	.navbar {
		width: min(100% - 28px, 1180px);
	}

	.section {
		padding: 70px 0;
	}

	.premium-hero {
		padding-top: 130px;
		padding-bottom: 70px;
	}

	.brand-symbol {
		width: 38px;
		height: 38px;
		border-radius: 12px;
		font-size: 20px;
	}

	.brand-text {
		font-size: 10px;
	}

	.hero h1 {
		letter-spacing: -1.8px;
	}

	.hero p {
		font-size: 16px;
	}

	.cards-grid,
	.process-grid,
	.strip-grid,
	.tax-list,
	.footer-grid,
	.packages-grid,
	.industries-grid {
		grid-template-columns: 1fr;
	}

	.strip-grid div {
		border-right: 0;
		border-bottom: 1px solid var(--dark-line);
	}

	.strip-grid div:last-child {
		border-bottom: 0;
	}

	.hero-dashboard,
	.contact-form,
	.comparison-card,
	.package-card {
		padding: 24px;
	}

	.dashboard-main h2 {
		font-size: 34px;
	}

	.dashboard-mini-grid {
		grid-template-columns: 1fr;
	}

	.btn {
		width: 100%;
	}

	.floating-whatsapp {
		display: none;
	}

	.mobile-sticky-cta {
		position: fixed;
		left: 14px;
		right: 14px;
		bottom: 14px;
		z-index: 1300;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		padding: 10px;
		border-radius: 18px;
		background: rgba(7, 20, 33, 0.94);
		border: 1px solid rgba(255, 255, 255, 0.14);
		box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
	}

	.mobile-sticky-cta button,
	.mobile-sticky-cta a {
		border: 0;
		border-radius: 14px;
		padding: 12px 10px;
		font-size: 13px;
		font-weight: 900;
		text-align: center;
	}

	.mobile-sticky-cta button {
		background: #25d366;
		color: #071421;
	}

	.mobile-sticky-cta a {
		background: var(--emerald);
		color: var(--navy);
	}

	body {
		padding-bottom: 76px;
	}
}

/* =========================
   PRINT / PDF STYLING
========================= */

@media print {
	@page {
		size: A4;
		margin: 12mm;
	}

	html,
	body {
		background: #ffffff !important;
		color: #071421 !important;
		-webkit-print-color-adjust: exact !important;
		print-color-adjust: exact !important;
	}

	.scroll-progress,
	.site-header,
	.floating-whatsapp,
	.mobile-sticky-cta,
	.hero-actions,
	.form-actions {
		display: none !important;
	}

	main {
		width: 100% !important;
	}

	.section {
		min-height: 100vh !important;
		page-break-after: always !important;
		break-after: page !important;
		padding: 35px 0 !important;
		display: flex !important;
		align-items: center !important;
	}

	.container {
		width: 100% !important;
		max-width: 100% !important;
		padding: 0 !important;
		margin: 0 auto !important;
	}

	.premium-hero {
		min-height: 100vh !important;
		padding-top: 35px !important;
		padding-bottom: 35px !important;
	}

	.hero-grid,
	.tax-grid,
	.why-grid,
	.contact-grid,
	.comparison-grid,
	.faq-grid {
		grid-template-columns: 1fr 1fr !important;
		gap: 24px !important;
	}

	.cards-grid {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 14px !important;
	}

	.process-grid,
	.packages-grid,
	.industries-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 14px !important;
	}

	.strip-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.service-card,
	.package-card,
	.process-step,
	.comparison-card,
	.faq-item,
	.contact-form,
	.why-points,
	.tax-list {
		break-inside: avoid !important;
		page-break-inside: avoid !important;
		box-shadow: none !important;
	}

	.reveal {
		opacity: 1 !important;
		transform: none !important;
	}

	h1,
	h2,
	h3,
	p,
	li,
	span,
	strong {
		print-color-adjust: exact !important;
		-webkit-print-color-adjust: exact !important;
	}

	.hero h1 {
		font-size: 48px !important;
		letter-spacing: -1px !important;
	}

	.section-heading h2,
	.tax-content h2,
	.why-content h2,
	.contact-content h2,
	.faq-intro h2 {
		font-size: 34px !important;
	}

	p,
	li {
		font-size: 12px !important;
	}

	.site-footer {
		display: none !important;
	}

	/* =========================
   SUCCESS PAGE
========================= */

.success-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 20%, rgba(20, 184, 137, 0.20), transparent 34%),
        radial-gradient(circle at 80% 15%, rgba(214, 168, 79, 0.18), transparent 32%),
        linear-gradient(135deg, #071421, #0c1f33);
    color: #ffffff;
}

.success-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
}

.success-card {
    width: min(620px, 100%);
    padding: 42px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.success-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.success-logo span {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--emerald), var(--gold));
    color: var(--navy);
    font-size: 24px;
    font-weight: 950;
}

.success-logo strong {
    color: #ffffff;
    font-size: 32px;
    letter-spacing: 3px;
}

.success-card h1 {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1;
    letter-spacing: -1.8px;
    margin-bottom: 18px;
}

.success-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    margin-bottom: 28px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .success-card {
        padding: 28px;
    }

    .success-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}
}