/* =====================================================
   Smart Communication — main.css
   Converted 1:1 from the Figma Make React design.
   ===================================================== */
   
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,600;1,700&display=swap');

/* ── Design tokens ── */
:root {
	--background: #060e09;
	--foreground: #dff0e6;
	--card: #0c1810;
	--secondary: #112118;
	--muted-foreground: #7aaa8a;
	--primary: #3ddc84;
	--primary-foreground: #060e09;
	--border: rgba(61, 220, 132, 0.1);
	--border-primary-30: rgba(61, 220, 132, 0.3);
	--border-primary-40: rgba(61, 220, 132, 0.4);
	--border-primary-50: rgba(61, 220, 132, 0.5);
	--primary-10: rgba(61, 220, 132, 0.1);
	--radius: 0.25rem;
	--radius-lg: 0.375rem;

	--font-body: 'DM Sans', system-ui, sans-serif;
 	--font-display: 'Poppins', serif;
 	--font-mono: 'DM Mono', ui-monospace, monospace;

}

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

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

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	background: var(--background);
	color: var(--foreground);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

button {
	font-family: inherit;
	background: none;
	border: 0;
	cursor: pointer;
	color: inherit;
}

ul {
	list-style: none;
}

svg {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}

/* ── Layout ── */
.container {
	max-width: 80rem; /* max-w-7xl */
	margin-inline: auto;
	padding-inline: 1.5rem;
}



.section {
	padding-block: 6rem; /* py-24 */
}

.section--card {
	background: var(--card);
}

/* ── Typography helpers ── */
.section-tagline {
	font-size: 0.75rem;
	color: var(--primary);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
}

.section-title .highlight,
.hero__title .highlight {
	color: var(--primary);
	font-style: italic;
}

.section-heading--center {
	text-align: center;
}

.section-header {
	margin-bottom: 4rem;
}

.section-header--split {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.section-header__side {
	color: var(--muted-foreground);
	max-width: 24rem;
	font-size: 0.875rem;
	line-height: 1.65;
}

.section-heading--center + * {
	margin-top: 4rem;
}

section .section-heading--center {
	margin-bottom: 4rem;
}

/* ── Buttons ── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--radius);
	font-weight: 500;
	font-size: 0.875rem;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	line-height: 1.4;
}

.btn--primary {
	background: var(--primary);
	color: var(--primary-foreground);
	font-weight: 600;
}

.btn--primary:hover {
	background: rgba(61, 220, 132, 0.9);
}

.btn--outline {
	border: 1px solid var(--border);
	color: var(--foreground);
}

.btn--outline:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.btn--sm {
	padding: 0.5rem 1rem;
}

.btn--lg {
	padding: 0.875rem 1.75rem;
	font-size: 0.9375rem;
}

.btn--xl {
	padding: 1rem 2rem;
	font-size: 1rem;
}

.btn--block {
	width: 100%;
	padding: 0.875rem;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
	border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
	background: rgba(6, 14, 9, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom-color: var(--border);
}

.header-inner {
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.brand-mark {
	width: 1.75rem;
	height: 1.75rem;
	background: var(--primary);
	border-radius: 0.125rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-foreground);
}

.brand-logo {
	height: 3rem;
	width: auto;
}

.brand-name {
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: -0.01em;
	white-space: nowrap;
}

.brand-name--sm {
	font-size: 0.875rem;
}

.main-nav {
	display: none;
	align-items: center;
	gap: 2rem;
}

.main-nav a {
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.main-nav a:hover {
	color: var(--foreground);
}

.header-actions {
	display: none;
	align-items: center;
	gap: 0.75rem;
}

.header-phone {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	white-space: nowrap;
}

.header-phone:hover {
	color: var(--primary);
}

.menu-toggle {
	display: inline-flex;
	color: var(--foreground);
	padding: 0.25rem;
}

.menu-toggle__close {
	display: none;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__open {
	display: none;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__close {
	display: inline-flex;
}

.mobile-menu {
	background: var(--card);
	border-top: 1px solid var(--border);
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.mobile-menu[hidden] {
	display: none;
}

.mobile-menu a {
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.mobile-menu a:hover {
	color: var(--foreground);
}

.mobile-menu__phone {
	color: var(--primary) !important;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.hero__bg,
.cta__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 14, 9, 0.85);
}

.hero__glow {
	position: absolute;
	inset: 0;
	opacity: 0.2;
	background-image: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(61, 220, 132, 0.25) 0%, transparent 70%);
}

.hero__inner {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 6rem;
	width: 100%;
}

.hero__content {
	max-width: 48rem;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: 1px solid var(--border-primary-30);
	border-radius: 9999px;
	padding: 0.375rem 1rem;
	font-size: 0.75rem;
	color: var(--primary);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 2rem;
}

.pulse-dot {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 9999px;
	background: var(--primary);
	animation: sc-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes sc-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

.hero__title {
	font-family: var(--font-display);
	font-size: clamp(3rem, 8vw, 4.5rem);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 1.5rem;
}

.hero__desc {
	font-size: 1.125rem;
	color: var(--muted-foreground);
	line-height: 1.65;
	margin-bottom: 2.5rem;
	max-width: 36rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero__stats {
	margin-top: 5rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	border-top: 1px solid var(--border);
	padding-top: 3rem;
}

.stat {
	text-align: center;
}

.stat__value {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat__label {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* =====================================================
   SERVICES
   ===================================================== */
.services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: var(--border);
}

.service-card {
	background: var(--card);
	padding: 2rem;
	transition: background 0.3s ease;
	cursor: default;
}

.service-card:hover {
	background: var(--secondary);
}

.service-card__icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--radius);
	background: var(--primary-10);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-card__icon {
	background: var(--primary);
	color: var(--primary-foreground);
}

.service-card__title {
	font-weight: 600;
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
}

.service-card__desc,
.why-card__desc,
.process-step__desc {
	color: var(--muted-foreground);
	font-size: 0.875rem;
	line-height: 1.65;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

.about__media {
	position: relative;
}

.about__image {
	aspect-ratio: 4 / 3;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--card);
}

.about__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about__badge {
	position: absolute;
	bottom: -1.5rem;
	right: -0.5rem;
	background: var(--primary);
	color: var(--primary-foreground);
	padding: 1.5rem;
	border-radius: var(--radius);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

.about__badge-title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 700;
}

.about__badge-sub {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.about__content .section-heading {
	margin-bottom: 1.5rem;
}

.about__content .section-tagline {
	margin-bottom: 1rem;
}

.about__para {
	color: var(--muted-foreground);
	line-height: 1.65;
	margin-bottom: 1.5rem;
}

.about__checklist {
	margin-top: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.about__checklist li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.check-icon {
	color: var(--primary);
	flex-shrink: 0;
	margin-top: 0.125rem;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.why-card {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
	transition: border-color 0.3s ease, background 0.3s ease;
}

.why-card:hover {
	border-color: var(--border-primary-50);
	background: var(--secondary);
}

.why-card__icon {
	color: var(--primary);
	margin-bottom: 1rem;
	transition: transform 0.3s ease;
}

.why-card:hover .why-card__icon {
	transform: scale(1.1);
}

.why-card__title {
	font-weight: 600;
	margin-bottom: 0.75rem;
	font-size: 1rem;
}

/* =====================================================
   PROCESS
   ===================================================== */
.process__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.process-step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.process-step__line {
	display: none;
	position: absolute;
	top: 1.5rem;
	left: calc(50% + 2.5rem);
	width: calc(100% - 5rem);
	height: 1px;
	background: var(--border);
}

.process-step__icon-wrap {
	position: relative;
	margin-bottom: 1.5rem;
}

.process-step__icon {
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	background: var(--secondary);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
}

.process-step__count {
	position: absolute;
	top: -0.5rem;
	right: -0.5rem;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	font-weight: 700;
	color: var(--primary);
	background: var(--background);
	border: 1px solid var(--border-primary-30);
	border-radius: 9999px;
	width: 1.25rem;
	height: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.process-step__num {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--primary);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.process-step__title {
	font-weight: 600;
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
}

/* =====================================================
   INDUSTRIES
   ===================================================== */
.industries {
	padding-block: 4rem;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.industries__tagline {
	text-align: center;
	font-size: 0.75rem;
	color: var(--muted-foreground);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 2.5rem;
}

.industries__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.industry {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	padding: 1.5rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: border-color 0.3s ease, background 0.3s ease;
}

.industry:hover {
	border-color: var(--border-primary-40);
	background: var(--secondary);
}

.industry__icon {
	color: var(--primary);
	transition: transform 0.3s ease;
}

.industry:hover .industry__icon {
	transform: scale(1.1);
}

.industry__name {
	font-weight: 500;
	font-size: 0.875rem;
	text-align: center;
}

/* =====================================================
   CASE STUDIES
   ===================================================== */
.cases__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.case-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}

.case-card__media {
	height: 13rem;
	background: var(--secondary);
	overflow: hidden;
}

.case-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.case-card:hover .case-card__media img {
	transform: scale(1.05);
}

.case-card__body {
	padding: 2rem;
}

.case-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.tag {
	font-size: 0.75rem;
	color: var(--primary);
	border: 1px solid var(--border-primary-30);
	border-radius: 9999px;
	padding: 0.125rem 0.75rem;
}

.case-card__year {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--muted-foreground);
	margin-left: auto;
}

.case-card__title {
	font-weight: 600;
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
}

.case-card__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.case-stat {
	background: var(--secondary);
	border-radius: var(--radius);
	padding: 1rem;
}

.case-stat__value {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.25rem;
}

.case-stat__label {
	font-size: 0.75rem;
	color: var(--muted-foreground);
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.testimonial {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s ease;
}

.testimonial:hover {
	border-color: var(--border-primary-40);
}

.testimonial__stars {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.testimonial__stars svg {
	fill: var(--primary);
}

.testimonial__quote {
	font-family: var(--font-display);
	font-style: italic;
	line-height: 1.65;
	margin-bottom: 2rem;
	flex: 1;
}

.testimonial__name {
	font-weight: 600;
	font-size: 0.875rem;
}

.testimonial__role {
	color: var(--muted-foreground);
	font-size: 0.75rem;
	margin-top: 0.125rem;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-item {
	border-bottom: 1px solid var(--border);
}

.faq-item__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 1.25rem;
	text-align: left;
	font-weight: 500;
	font-size: 1rem;
	color: var(--foreground);
	transition: color 0.2s ease;
}

.faq-item__q:hover {
	color: var(--primary);
}

.faq-item__chevron {
	color: var(--primary);
	transition: transform 0.3s ease;
}

.faq-item__q[aria-expanded='true'] .faq-item__chevron {
	transform: rotate(180deg);
}

.faq-item__a {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
}

.faq-item__a p {
	color: var(--muted-foreground);
	font-size: 0.875rem;
	line-height: 1.65;
	padding-bottom: 1.25rem;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta {
	position: relative;
	padding-block: 6rem;
	overflow: hidden;
}

.cta__overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 14, 9, 0.8);
}

.cta__glow {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(61, 220, 132, 0.12) 0%, transparent 70%);
}

.cta__inner {
	position: relative;
	text-align: center;
}

.cta__desc {
	color: var(--muted-foreground);
	font-size: 1.125rem;
	margin: 1.5rem 0 2.5rem;
}

.cta__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
}

.contact__info .section-heading {
	margin-bottom: 1.5rem;
}

.contact__info .section-tagline {
	margin-bottom: 1rem;
}

.contact__desc {
	color: var(--muted-foreground);
	font-size: 0.875rem;
	line-height: 1.65;
	margin-bottom: 2.5rem;
}

.contact__items {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-item__icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--radius);
	background: var(--primary-10);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-item__label {
	font-size: 0.75rem;
	color: var(--muted-foreground);
	margin-bottom: 0.125rem;
}

.contact-item a,
.contact-item span {
	font-size: 0.875rem;
}

.contact-item a:hover {
	color: var(--primary);
}

/* Form */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-row--2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-field label {
	display: block;
	font-size: 0.75rem;
	color: var(--muted-foreground);
	margin-bottom: 0.375rem;
	font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	background: var(--secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	font-family: inherit;
	color: var(--foreground);
	transition: border-color 0.2s ease;
	appearance: none;
	-webkit-appearance: none;
}

.form-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237aaa8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
	color: var(--muted-foreground);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--primary);
}

.form-field textarea {
	resize: none;
}

.hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-notice {
	border-radius: var(--radius);
	padding: 0.875rem 1rem;
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.form-notice--success {
	background: var(--primary-10);
	border: 1px solid var(--border-primary-40);
	color: var(--primary);
}

.form-notice--error {
	background: rgba(212, 24, 61, 0.1);
	border: 1px solid rgba(212, 24, 61, 0.4);
	color: #ff6b8a;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
	border-top: 1px solid var(--border);
	background: var(--background);
	padding-block: 3rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
	margin-bottom: 3rem;
}

.footer-brand {
	grid-column: span 2;
}

.footer-need-help {
	grid-column: span 2;
}

.footer-brand .brand {
	margin-bottom: 1rem;
}

.footer-desc {
	color: var(--muted-foreground);
	font-size: 0.75rem;
	line-height: 1.65;
	max-width: 18rem;
}

.footer-col h4 {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.footer-col a {
	color: var(--muted-foreground);
	font-size: 0.875rem;
}

.footer-col a:hover {
	color: var(--primary);
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	border-top: 1px solid var(--border);
	padding-top: 2rem;
}

.footer-bottom p {
	color: var(--muted-foreground);
	font-size: 0.75rem;
}

.footer-phone {
	color: var(--primary);
	font-size: 0.75rem;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}

.footer-phone:hover {
	color: rgba(61, 220, 132, 0.8);
}

/* =====================================================
   RESPONSIVE — tablet (≥768px)
   ===================================================== */
@media (min-width: 768px) {
	.main-nav,
	.header-actions {
		display: flex;
	}

	.menu-toggle,
	.mobile-menu {
		display: none !important;
	}

	.section-header--split {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.hero__stats {
		grid-template-columns: repeat(4, 1fr);
	}

	.services__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about__grid {
		grid-template-columns: 1fr 1fr;
	}

	.about__badge {
		right: -1.5rem;
	}

	.why__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.industries__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.cases__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.testimonials__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.contact__grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-grid {
		grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
	}

	.footer-brand {
		grid-column: span 1;
	}

	.footer-need-help {
		grid-column: span 1;
	}

	.footer-bottom {
		flex-direction: row;
	}
}

/* =====================================================
   RESPONSIVE — desktop (≥1024px)
   ===================================================== */
@media (min-width: 1024px) {
	.services__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.why__grid,
	.process__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.process-step__line {
		display: block;
	}
}

/* Small phones */
@media (max-width: 480px) {
	.form-row--2 {
		grid-template-columns: 1fr;
	}

	.about__badge {
		right: 0.5rem;
		bottom: -1rem;
		padding: 1rem;
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* =====================================================
   MULTI-PAGE ADDITIONS (v1.1)
   ===================================================== */

/* ── Nav active state ── */
.main-nav a.is-active,
.mobile-menu a.is-active {
	color: var(--primary);
}

/* ── Arrow links ("View all services →") ── */
.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary);
	font-size: 0.875rem;
	font-weight: 500;
	transition: gap 0.2s ease;
}

.link-arrow:hover {
	gap: 0.75rem;
}

.about__link {
	margin-top: 2rem;
}

.section-header__aside {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

/* ── Inner page hero ── */
.page-hero {
	position: relative;
	padding: 10rem 0 6rem;
	overflow: hidden;
}

.page-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 14, 9, 0.88);
}

.page-hero__glow {
	position: absolute;
	inset: 0;
}

.page-hero__glow--left {
	background-image: radial-gradient(ellipse 60% 70% at 20% 50%, rgba(61, 220, 132, 0.15) 0%, transparent 70%);
}

.page-hero__glow--right {
	background-image: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(61, 220, 132, 0.15) 0%, transparent 70%);
}

.page-hero__inner {
	position: relative;
}

.page-hero__title {
	max-width: 48rem;
	margin-bottom: 1.5rem;
}

.page-hero .hero__desc {
	margin-bottom: 0;
}

/* ── Mission & Vision ── */
.mv__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

.mv-card {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2.5rem;
}

.mv-card--accent {
	border-color: var(--border-primary-30);
	background: rgba(61, 220, 132, 0.05);
}

.mv-card .section-tagline {
	margin-bottom: 1rem;
}

.mv-card__title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 1.25rem;
}

.mv-card__title .highlight {
	color: var(--primary);
	font-style: italic;
}

.mv-card__text {
	color: var(--muted-foreground);
	line-height: 1.65;
}

/* ── Certifications ── */
.cert__code {
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
}

.cert__big {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--primary);
}

.cert__sub {
	font-size: 0.875rem;
	color: var(--primary);
}

.cert__label {
	font-size: 0.75rem;
	color: var(--muted-foreground);
	text-align: center;
}

/* ── Why Choose Us: rows variant (About) ── */
.why__rows {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.why-row {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem;
	display: flex;
	gap: 1.25rem;
	transition: border-color 0.3s ease, background 0.3s ease;
}

.why-row:hover {
	border-color: var(--border-primary-40);
	background: var(--card);
}

.why-row .check-icon {
	margin-top: 0.125rem;
}

.why-row__title {
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

/* ── Industries: detailed variant (About) ── */
.industries-detailed__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.industry-card {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem;
	transition: border-color 0.3s ease, background 0.3s ease;
}

.industry-card:hover {
	border-color: var(--border-primary-40);
	background: var(--secondary);
}

.industry-card .industry__icon {
	display: block;
	margin-bottom: 1rem;
}

.industry-card__title {
	font-weight: 600;
	margin-bottom: 0.75rem;
	font-size: 1rem;
}

/* ── Services Explorer (Services page) ── */
.explorer__box {
	display: grid;
	grid-template-columns: 1fr;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}

.explorer__sidebar {
	background: var(--secondary);
	border-bottom: 1px solid var(--border);
	display: flex;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.explorer__tab {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem 1.5rem;
	color: var(--muted-foreground);
	border-bottom: 2px solid transparent;
	white-space: nowrap;
	font-weight: 500;
	font-size: 0.875rem;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
	flex-shrink: 0;
}

.explorer__tab:hover {
	color: var(--foreground);
	background: var(--secondary);
}

.explorer__tab.is-active {
	background: var(--primary-10);
	color: var(--primary);
	border-bottom-color: var(--primary);
}

.explorer__panels {
	background: var(--card);
}

.explorer__panel {
	display: none;
	padding: 2.5rem;
}

.explorer__panel.is-active {
	display: block;
}

.explorer__panel-icon {
	width: 3rem;
	height: 3rem;
}

.explorer__tagline {
	margin-bottom: 0.5rem;
}

.explorer__title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.explorer__desc {
	color: var(--muted-foreground);
	line-height: 1.65;
	margin-bottom: 1.5rem;
}

.explorer__detail {
	line-height: 1.65;
	margin-bottom: 2rem;
}

.explorer__features {
	margin-bottom: 2rem;
}

.explorer__features-title {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

/* ── Services grid (Services page variant) ── */
.services__grid--page .service-card {
	background: var(--background);
}

.services__grid--page .service-card:hover {
	background: var(--card);
}

.service-card--link {
	text-align: left;
	display: block;
	width: 100%;
	font-family: inherit;
}

.service-card__tagline {
	font-size: 0.75rem;
	color: var(--primary);
	margin-bottom: 0.75rem;
}

.service-card__more {
	margin-top: 1.25rem;
	font-size: 0.75rem;
}

/* ── Process: cards variant (Services page) ── */
.process__grid--cards {
	gap: 2rem;
}

.process-card {
	position: relative;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem;
	transition: border-color 0.3s ease;
}

.process-card:hover {
	border-color: var(--border-primary-40);
}

.process-card__step {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--primary);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.process-card__icon {
	color: var(--primary);
	margin-bottom: 1rem;
}

.process-card__detail {
	margin-top: 1rem;
	color: rgba(122, 170, 138, 0.7);
	font-size: 0.75rem;
	line-height: 1.65;
}

/* ── Case study overview ── */
.case-card__overview {
	color: var(--muted-foreground);
	font-size: 0.875rem;
	line-height: 1.65;
	margin: -0.75rem 0 1.5rem;
}

/* ── Contact info strip ── */
.contact-strip {
	padding-block: 3rem;
	border-bottom: 1px solid var(--border);
}

.contact-strip__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.contact-card {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.25rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-card:hover {
	border-color: var(--border-primary-40);
	background: var(--secondary);
}

.contact-card:hover .contact-item__icon {
	background: var(--primary);
	color: var(--primary-foreground);
}

.contact-card .contact-item__icon {
	transition: background 0.3s ease, color 0.3s ease;
}

.contact-card__value {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
}

a.contact-card__value:hover {
	color: var(--primary);
}

.contact-card__note {
	display: block;
	font-size: 0.75rem;
	color: rgba(122, 170, 138, 0.7);
	margin-top: 0.125rem;
}

/* ── Contact page: form + side panel ── */
.contact__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
}

.contact__heading {
	font-family: var(--font-display);
	font-size: 1.875rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

.contact__heading .highlight {
	color: var(--primary);
	font-style: italic;
}

.contact-form__footnote {
	font-size: 0.75rem;
	color: var(--muted-foreground);
	text-align: center;
}

.form-success {
	border: 1px solid var(--border-primary-40);
	background: rgba(61, 220, 132, 0.05);
	border-radius: var(--radius);
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.form-success__icon {
	color: var(--primary);
	margin-bottom: 1rem;
}

.form-success__title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.form-success__text {
	color: var(--muted-foreground);
	font-size: 0.875rem;
	max-width: 24rem;
}

.contact__side {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.side-card {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem;
}

.side-card--accent {
	border-color: var(--border-primary-30);
	background: rgba(61, 220, 132, 0.05);
}

.side-card__title {
	font-weight: 600;
	margin-bottom: 1.25rem;
}

.side-card__title--serif {
	font-family: var(--font-display);
	font-size: 1.125rem;
}

.side-card__cta-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.side-card__text {
	color: var(--muted-foreground);
	font-size: 0.875rem;
	line-height: 1.65;
	margin-bottom: 1.5rem;
}

.side-card .section-tagline {
	margin-bottom: 0.75rem;
}

.side-steps {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.side-step {
	display: flex;
	gap: 1rem;
}

.side-step__num {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	color: var(--primary);
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.side-step p {
	color: var(--muted-foreground);
	font-size: 0.875rem;
	line-height: 1.65;
}

.cred-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.cred {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	color: var(--muted-foreground);
}

/* ── Page shell (legal pages) ── */
.page-shell {
	padding-top: 9rem;
}

.page-shell__title {
	margin-bottom: 2rem;
}

.page-content {
	color: var(--muted-foreground);
	line-height: 1.7;
}

.page-content h2,
.page-content h3 {
	color: var(--foreground);
	margin: 1.5em 0 0.5em;
}

.page-content p,
.page-content ul,
.page-content ol {
	margin-bottom: 1em;
}

.page-content ul,
.page-content ol {
	padding-left: 1.25rem;
	list-style: disc;
}

/* ── Responsive: tablet+ ── */
@media (min-width: 768px) {
	.mv__grid {
		grid-template-columns: 1fr 1fr;
	}

	.why__rows {
		grid-template-columns: 1fr 1fr;
	}

	.industries-detailed__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-strip__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── Responsive: desktop ── */
@media (min-width: 1024px) {
	.explorer__box {
		grid-template-columns: 280px 1fr;
	}

	.explorer__sidebar {
		flex-direction: column;
		overflow-x: visible;
		border-bottom: 0;
		border-right: 1px solid var(--border);
	}

	.explorer__tab {
		border-bottom: 1px solid var(--border);
		border-left: 2px solid transparent;
		white-space: normal;
	}

	.explorer__tab.is-active {
		border-left-color: var(--primary);
		border-bottom-color: var(--border);
	}

	.explorer__panel {
		padding: 2.5rem;
	}

	.industries-detailed__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.contact-strip__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.contact__layout {
		grid-template-columns: 1fr 420px;
	}
}

/* =====================================================
   LEGAL PAGES (template-legal.php)
   ===================================================== */
.legal-content {
	color: var(--muted-foreground);
	line-height: 1.75;
	font-size: 0.9375rem;
}

.legal-content h2,
.legal-content h3 {
	color: var(--foreground);
	font-family: var(--font-display);
	margin: 2.25rem 0 0.875rem;
	line-height: 1.3;
}

.legal-content h2 { font-size: 1.5rem; }
.legal-content h3 { font-size: 1.1875rem; }

.legal-content p { margin-bottom: 1rem; }

.legal-content ul,
.legal-content ol {
	margin: 0 0 1rem 1.25rem;
}

.legal-content li { margin-bottom: 0.375rem; }

.legal-content a {
	color: var(--primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.legal-content strong { color: var(--foreground); }

.legal-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.25rem 0;
	font-size: 0.875rem;
}

.legal-content th,
.legal-content td {
	border: 1px solid var(--border);
	padding: 0.625rem 0.875rem;
	text-align: left;
}

.legal-content th {
	color: var(--foreground);
	background: var(--secondary);
}

/* =====================================================
   FOOTER — Need Help column
   ===================================================== */
.footer-need-help__text {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	line-height: 1.6;
	margin-bottom: 1.25rem;
}

.footer-need-help__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	max-width: 16rem;
}

.footer-need-help .btn--block {
	padding: 0.75rem 1rem;
}

.footer-need-help__outline {
	border-color: var(--border-primary-30);
	color: var(--primary);
}

.footer-need-help__outline:hover {
	border-color: var(--primary);
}

/* Legal — updated line + hero variant */
.legal-updated {
	font-family: var(--font-mono);
	font-size: 0.8125rem;
	color: var(--muted-foreground);
	padding-bottom: 1.5rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--border);
}

.legal-content h4 {
	color: var(--foreground);
	margin: 1.75rem 0 0.625rem;
	font-size: 1rem;
}

.legal-content blockquote {
	border-left: 3px solid var(--primary);
	padding-left: 1rem;
	margin: 1.25rem 0;
	color: var(--foreground);
}

.legal-content hr {
	border: 0;
	border-top: 1px solid var(--border);
	margin: 2rem 0;
}

/* Footer logo */
.brand-logo--footer {
	height: 3.25rem;
	width: auto;
	object-fit: contain;
}