/* ==========================================================================
   NovGlob Theme — Main Stylesheet
   Inspired by corporate defense/international business aesthetics
   ========================================================================== */

:root {
	--novglob-primary: #c8a45a;
	--novglob-secondary: #1a2332;
	--novglob-accent: #2d4a6f;
	--novglob-text: #3d4f5f;
	--novglob-text-light: #6b7c8f;
	--novglob-white: #ffffff;
	--novglob-bg: #f7f8fa;
	--novglob-bg-dark: #141c28;
	--novglob-border: #e2e8f0;
	--novglob-shadow: 0 4px 24px rgba(26, 35, 50, 0.08);
	--novglob-shadow-lg: 0 12px 48px rgba(26, 35, 50, 0.15);
	--novglob-radius: 8px;
	--novglob-radius-lg: 16px;
	--novglob-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--novglob-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--novglob-font-display: 'Playfair Display', Georgia, serif;
	--novglob-container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--novglob-font);
	font-size: 16px;
	line-height: 1.7;
	color: var(--novglob-text);
	background: var(--novglob-white);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--novglob-accent);
	text-decoration: none;
	transition: color var(--novglob-transition);
}

a:hover { color: var(--novglob-primary); }

h1, h2, h3, h4, h5, h6 {
	color: var(--novglob-secondary);
	line-height: 1.25;
	margin: 0 0 1rem;
	font-weight: 700;
}

.container {
	width: 100%;
	max-width: var(--novglob-container);
	margin: 0 auto;
	padding: 0 24px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 99999;
	width: auto;
	height: auto;
	padding: 12px 24px;
	background: var(--novglob-primary);
	color: var(--novglob-secondary);
	clip: auto;
	font-weight: 600;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	font-family: var(--novglob-font);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: 2px solid transparent;
	border-radius: var(--novglob-radius);
	cursor: pointer;
	transition: all var(--novglob-transition);
	text-decoration: none;
}

.btn--primary {
	background: var(--novglob-primary);
	color: var(--novglob-secondary);
	border-color: var(--novglob-primary);
}

.btn--primary:hover {
	background: #b8934a;
	border-color: #b8934a;
	color: var(--novglob-secondary);
	transform: translateY(-2px);
	box-shadow: var(--novglob-shadow);
}

.btn--outline {
	background: transparent;
	color: var(--novglob-secondary);
	border-color: var(--novglob-secondary);
}

.btn--outline:hover {
	background: var(--novglob-secondary);
	color: var(--novglob-white);
}

.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--block { width: 100%; }

/* Section */
.section {
	padding: 96px 0;
}

.section--dark {
	background: var(--novglob-bg-dark);
	color: rgba(255,255,255,0.85);
}

.section--dark h2,
.section--dark h3,
.section--dark .section-heading__title { color: var(--novglob-white); }

.section--dark .section-heading__eyebrow { color: var(--novglob-primary); }

.section--alt { background: var(--novglob-bg); }

.section-heading { margin-bottom: 24px; }

.section-heading__eyebrow {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--novglob-primary);
	margin-bottom: 12px;
}

.section-heading__title {
	font-family: var(--novglob-font-display);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	white-space: pre-line;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--novglob-white);
	box-shadow: 0 1px 0 var(--novglob-border);
	transition: box-shadow var(--novglob-transition);
}

.site-header.is-scrolled { box-shadow: var(--novglob-shadow); }

.site-header__top {
	background: var(--novglob-secondary);
	color: rgba(255,255,255,0.8);
	font-size: 13px;
	padding: 8px 0;
}

.site-header__top-inner { display: flex; justify-content: flex-end; }

.site-header__contact {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.site-header__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255,255,255,0.85);
	font-size: 13px;
}

.site-header__contact-item:hover { color: var(--novglob-primary); }

.site-header__main-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	gap: 24px;
}

.site-branding__text {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.site-branding__name {
	font-family: var(--novglob-font-display);
	font-size: 22px;
	font-weight: 700;
	color: var(--novglob-secondary);
	line-height: 1.2;
}

.site-branding__tagline {
	font-size: 11px;
	color: var(--novglob-text-light);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.custom-logo-link img,
.site-footer__logo img {
	max-height: 60px;
	width: auto;
}

.site-nav__list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 8px;
}

.site-nav__list a {
	display: block;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	color: var(--novglob-secondary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item a {
	color: var(--novglob-primary);
}

.site-header__cta { flex-shrink: 0; }

.site-header__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.site-header__toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--novglob-secondary);
	transition: var(--novglob-transition);
}

/* Hero */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: var(--novglob-secondary) center/cover no-repeat;
	margin-top: 96px;
	overflow: hidden;
}

.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26,35,50,0.92) 0%, rgba(45,74,111,0.65) 60%, rgba(26,35,50,0.85) 100%);
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
	width: 100%;
	padding: 80px 24px;
}

.hero__content {
	padding: 0;
	max-width: 580px;
}

.hero__banner {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero__banner-svg {
	width: 100%;
	max-width: 520px;
	height: auto;
	filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}

/* SVG banner animations */
.hero__banner-orbit {
	transform-origin: 320px 260px;
	animation: ng-orbit-spin 60s linear infinite;
}

.hero__banner-pulse {
	animation: ng-pulse-glow 4s ease-in-out infinite;
}

.hero__banner-route {
	stroke-dasharray: 600;
	stroke-dashoffset: 600;
	animation: ng-route-draw 3s ease forwards;
}

.hero__banner-route--delay { animation-delay: 0.6s; }
.hero__banner-route--delay2 { animation-delay: 1.2s; }

.hero__banner-hub {
	animation: ng-hub-pulse 2.5s ease-in-out infinite;
}

.hero__banner-shape {
	animation: ng-float 6s ease-in-out infinite;
}

.hero__banner-shape--delay {
	animation-delay: 2s;
}

.hero__banner-nodes circle {
	animation: ng-node-blink 3s ease-in-out infinite;
}

.hero__banner-nodes circle:nth-child(2) { animation-delay: 0.5s; }
.hero__banner-nodes circle:nth-child(3) { animation-delay: 1s; }
.hero__banner-nodes circle:nth-child(4) { animation-delay: 1.5s; }

@keyframes ng-orbit-spin {
	to { transform: rotate(360deg); }
}

@keyframes ng-pulse-glow {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.05); }
}

@keyframes ng-route-draw {
	to { stroke-dashoffset: 0; }
}

@keyframes ng-hub-pulse {
	0%, 100% { opacity: 0.85; }
	50% { opacity: 1; filter: drop-shadow(0 0 12px rgba(200,164,90,0.6)); }
}

@keyframes ng-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

@keyframes ng-node-blink {
	0%, 100% { opacity: 0.7; }
	50% { opacity: 1; }
}

.hero__eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--novglob-primary);
	margin-bottom: 20px;
}

.hero__title {
	font-family: var(--novglob-font-display);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 700;
	color: var(--novglob-white);
	line-height: 1.15;
	margin-bottom: 24px;
}

.hero__subtitle {
	font-size: clamp(16px, 2vw, 18px);
	color: rgba(255,255,255,0.85);
	line-height: 1.8;
	margin-bottom: 36px;
	max-width: 560px;
}

/* Stats */
.stats {
	background: var(--novglob-primary);
	padding: 48px 0;
	margin-top: -1px;
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.stats__number {
	font-size: clamp(36px, 5vw, 52px);
	font-weight: 800;
	color: var(--novglob-secondary);
	line-height: 1;
	margin-bottom: 8px;
}

.stats__label {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--novglob-secondary);
	opacity: 0.8;
	margin: 0;
}

/* Services */
.services__intro {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 64px;
}

.services__desc {
	font-size: 17px;
	color: var(--novglob-text-light);
	margin-bottom: 28px;
}

.services__featured {
	margin-bottom: 48px;
}

.services__featured-card {
	background: linear-gradient(135deg, var(--novglob-secondary), var(--novglob-accent));
	color: rgba(255,255,255,0.9);
	padding: 48px;
	border-radius: var(--novglob-radius-lg);
	box-shadow: var(--novglob-shadow-lg);
}

.services__featured-title {
	font-family: var(--novglob-font-display);
	font-size: 28px;
	color: var(--novglob-white);
	margin-bottom: 20px;
}

.services__featured-text p { margin: 0 0 12px; }
.services__featured-text p:last-child { margin-bottom: 0; }

.services__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
}

.service-card {
	background: var(--novglob-white);
	border: 1px solid var(--novglob-border);
	border-radius: var(--novglob-radius-lg);
	padding: 36px 28px;
	transition: all var(--novglob-transition);
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--novglob-shadow-lg);
	border-color: transparent;
}

.service-card__icon {
	font-size: 40px;
	display: block;
	margin-bottom: 20px;
}

.service-card__image {
	margin-bottom: 20px;
	border-radius: var(--novglob-radius);
	overflow: hidden;
}

.service-card__title {
	font-size: 20px;
	margin-bottom: 12px;
}

.service-card__text {
	font-size: 15px;
	color: var(--novglob-text-light);
}

.service-card__text p { margin: 0; }

.service-card__link {
	display: inline-block;
	margin-top: 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--novglob-primary);
}

/* About */
.about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.about__text p { margin: 0 0 16px; }
.about__text { margin-bottom: 28px; }

.about__image img {
	border-radius: var(--novglob-radius-lg);
	box-shadow: var(--novglob-shadow-lg);
	width: 100%;
}

.about__image--placeholder {
	background: linear-gradient(135deg, var(--novglob-accent), var(--novglob-secondary));
	border-radius: var(--novglob-radius-lg);
	aspect-ratio: 4/3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about__placeholder-content {
	text-align: center;
	color: var(--novglob-white);
}

.about__placeholder-icon { font-size: 64px; display: block; margin-bottom: 12px; }

/* Shopping Bags */
.bags__header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 56px;
}

.bags__desc {
	font-size: 17px;
	color: var(--novglob-text-light);
}

.bags__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}

.bag-card {
	background: var(--novglob-white);
	border-radius: var(--novglob-radius-lg);
	overflow: hidden;
	box-shadow: var(--novglob-shadow);
	transition: all var(--novglob-transition);
	border: 1px solid var(--novglob-border);
}

.bag-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--novglob-shadow-lg);
}

.bag-card__image {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: var(--novglob-bg);
}

.bag-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.bag-card:hover .bag-card__image img { transform: scale(1.05); }

.bag-card__badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--novglob-primary);
	color: var(--novglob-secondary);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 6px 12px;
	border-radius: 20px;
}

.bag-card__body { padding: 24px; }

.bag-card__title {
	font-size: 20px;
	margin-bottom: 10px;
}

.bag-card__text {
	font-size: 14px;
	color: var(--novglob-text-light);
}

.bag-card__text p { margin: 0; }

.bags__cta { text-align: center; margin-top: 48px; }

/* Team */
.team__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
	margin-top: 48px;
}

.team-card { text-align: center; }

.team-card__photo {
	width: 180px;
	height: 180px;
	margin: 0 auto 20px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid var(--novglob-primary);
}

.team-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-card__photo--placeholder {
	background: var(--novglob-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
}

.team-card__name { font-size: 20px; margin-bottom: 4px; }
.team-card__role {
	font-size: 14px;
	color: var(--novglob-primary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 12px;
}

.team-card__bio {
	font-size: 14px;
	color: var(--novglob-text-light);
}

.team__cta { text-align: center; margin-top: 40px; }

/* Process */
.process__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 56px;
}

.process__desc {
	font-size: 17px;
	color: var(--novglob-text);
}

.process__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 56px;
}

.process-step { text-align: center; }

.process-step__num {
	display: block;
	font-size: 48px;
	font-weight: 800;
	color: var(--novglob-primary);
	line-height: 1;
	margin-bottom: 16px;
	font-family: var(--novglob-font-display);
}

.process-step__title {
	font-size: 22px;
	margin-bottom: 12px;
	color: var(--novglob-secondary);
}

.process-step__desc {
	font-size: 15px;
	color: var(--novglob-text);
	margin: 0;
}

.process__quote {
	background: var(--novglob-secondary);
	color: rgba(255,255,255,0.9);
	padding: 40px 48px;
	border-radius: var(--novglob-radius-lg);
	border-left: 4px solid var(--novglob-primary);
	margin: 0;
}

.process__quote p {
	margin: 0;
	font-size: 18px;
	font-style: italic;
	line-height: 1.7;
}

/* Highlights */
.highlights__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	margin-top: 48px;
}

.highlight-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--novglob-radius-lg);
	overflow: hidden;
	transition: all var(--novglob-transition);
}

.highlight-card:hover {
	background: rgba(255,255,255,0.08);
	transform: translateY(-4px);
}

.highlight-card__image img { width: 100%; height: 200px; object-fit: cover; }

.highlight-card__body { padding: 28px; }

.highlight-card__eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--novglob-primary);
	margin-bottom: 10px;
}

.highlight-card__title {
	font-size: 22px;
	color: var(--novglob-white);
	margin-bottom: 12px;
}

.highlight-card__text {
	font-size: 15px;
	color: rgba(255,255,255,0.7);
}

.highlight-card__text p { margin: 0; }

/* Clients */
.clients__title {
	text-align: center;
	font-size: 28px;
	margin-bottom: 40px;
}

.clients__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.clients__item {
	font-size: 16px;
	font-weight: 600;
	color: var(--novglob-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 12px 24px;
	background: var(--novglob-white);
	border-radius: var(--novglob-radius);
	box-shadow: var(--novglob-shadow);
}

/* Contact */
.contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.contact__desc {
	color: var(--novglob-text);
	margin-bottom: 32px;
}

.contact__details {
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact__details li {
	margin-bottom: 20px;
	color: var(--novglob-text);
}

.contact__details strong {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--novglob-primary);
	margin-bottom: 4px;
}

.contact__details a {
	color: var(--novglob-secondary);
	font-weight: 500;
}

.contact__details a:hover {
	color: var(--novglob-primary);
}

.contact__details span {
	color: var(--novglob-text);
}

.contact__form-wrap {
	background: var(--novglob-bg);
	padding: 40px;
	border-radius: var(--novglob-radius-lg);
	box-shadow: var(--novglob-shadow);
}

.contact__form-title {
	font-size: 22px;
	margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
	color: var(--novglob-secondary);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	font-family: var(--novglob-font);
	font-size: 15px;
	border: 1px solid var(--novglob-border);
	border-radius: var(--novglob-radius);
	background: var(--novglob-white);
	transition: border-color var(--novglob-transition);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--novglob-primary);
	box-shadow: 0 0 0 3px rgba(200,164,90,0.2);
}

.contact__form-message {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 500;
}

.contact__form-message.is-success { color: #16a34a; }
.contact__form-message.is-error { color: #dc2626; }

/* Footer */
.site-footer {
	background: var(--novglob-secondary);
	color: rgba(255,255,255,0.75);
}

.site-footer__main { padding: 64px 0 48px; }

.site-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
}

.site-footer__name {
	font-family: var(--novglob-font-display);
	font-size: 22px;
	font-weight: 700;
	color: var(--novglob-white);
}

.site-footer__tagline {
	font-size: 14px;
	line-height: 1.7;
	margin-top: 16px;
}

.site-footer__heading {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--novglob-primary);
	margin-bottom: 20px;
}

.site-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__list li { margin-bottom: 10px; color: rgba(255,255,255,0.75); }

.site-footer__list a {
	color: rgba(255,255,255,0.85);
	font-size: 14px;
}

.site-footer__list a:hover { color: var(--novglob-primary); }

.site-footer__address {
	color: rgba(255,255,255,0.75);
	font-size: 14px;
	line-height: 1.6;
}

.site-footer .menu { list-style: none; margin: 0; padding: 0; }
.site-footer .menu a { color: rgba(255,255,255,0.85); font-size: 14px; }
.site-footer .menu a:hover { color: var(--novglob-primary); }

/* Footer widget area (optional, separate row) */
.site-footer__widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
	margin-top: 48px;
	padding-top: 48px;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.site-footer .footer-widget,
.site-footer .widget {
	color: rgba(255,255,255,0.75);
}

.site-footer .footer-widget__title,
.site-footer .widget-title {
	color: var(--novglob-primary);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.site-footer .footer-widget a,
.site-footer .widget a {
	color: rgba(255,255,255,0.85);
}

.site-footer .footer-widget a:hover,
.site-footer .widget a:hover {
	color: var(--novglob-primary);
}

.site-footer .footer-widget ul,
.site-footer .widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer .footer-widget li,
.site-footer .widget li {
	margin-bottom: 8px;
	color: rgba(255,255,255,0.75);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 20px 0;
}

.site-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.site-footer__copyright {
	font-size: 13px;
	margin: 0;
}

.site-footer__terms {
	font-size: 13px;
	color: rgba(255,255,255,0.6);
}

.site-footer__terms:hover { color: var(--novglob-primary); }

/* Page content */
.page-content {
	padding: 140px 24px 80px;
	min-height: 60vh;
}

.page-article__title {
	font-family: var(--novglob-font-display);
	font-size: 36px;
	margin-bottom: 24px;
}

.entry-content p { margin: 0 0 16px; }

/* Responsive */
@media (max-width: 1024px) {
	.stats__grid { grid-template-columns: repeat(2, 1fr); }
	.about__grid,
	.contact__grid { grid-template-columns: 1fr; gap: 40px; }
	.process__steps { grid-template-columns: 1fr; gap: 32px; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.site-header__toggle { display: flex; }

	.site-nav {
		position: fixed;
		top: 96px;
		left: 0;
		right: 0;
		background: var(--novglob-white);
		padding: 24px;
		box-shadow: var(--novglob-shadow-lg);
		transform: translateY(-120%);
		opacity: 0;
		visibility: hidden;
		transition: all var(--novglob-transition);
	}

	.site-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.site-nav__list {
		flex-direction: column;
		gap: 0;
	}

	.site-nav__list a {
		padding: 14px 0;
		border-bottom: 1px solid var(--novglob-border);
	}

	.site-header__cta { display: none; }

	.section { padding: 64px 0; }

	.hero { min-height: auto; margin-top: 88px; }

	.hero__inner {
		grid-template-columns: 1fr;
		padding: 64px 24px 48px;
		text-align: center;
	}

	.hero__content {
		max-width: 100%;
		margin: 0 auto;
	}

	.hero__subtitle { margin-left: auto; margin-right: auto; }

	.hero__banner {
		order: -1;
		max-width: 360px;
		margin: 0 auto;
	}

	.hero__banner-svg { max-width: 100%; }

	.services__featured-card { padding: 32px 24px; }

	.stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

	.site-footer__grid { grid-template-columns: 1fr; }

	.contact__form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
	.stats__grid { grid-template-columns: 1fr; }
	.bags__grid { grid-template-columns: 1fr; }
}

/* Animations */
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}

.hero__content > * {
	animation: fadeInUp 0.8s ease forwards;
}

.hero__eyebrow { animation-delay: 0.1s; }
.hero__title { animation-delay: 0.2s; }
.hero__subtitle { animation-delay: 0.3s; }
.hero__content .btn { animation-delay: 0.4s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
	.hero__banner-orbit,
	.hero__banner-pulse,
	.hero__banner-route,
	.hero__banner-hub,
	.hero__banner-shape,
	.hero__banner-nodes circle {
		animation: none !important;
	}
	.hero__banner-route { stroke-dashoffset: 0; }
}
