/* ==========================================================================
   Karwa & Associates - main stylesheet
   Light professional by day / premium navy & gold by night (19:00-07:00)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens - LIGHT (default)
   -------------------------------------------------------------------------- */
:root,
[data-theme="light"] {
	--bg: #eef2f9;
	--bg-elev: #e4eaf6;
	--surface: #f8fafd;
	--surface-soft: #eef2f9;
	--text: #17233c;
	--text-soft: #51607e;
	--text-faint: #7c8aa5;
	--accent: #2a55c8;
	--accent-soft: #e3eafc;
	--gold: #b8892f;
	--gold-strong: #96701f;
	--gold-soft: #f6ecd7;
	--line: rgba(23, 35, 60, 0.1);
	--shadow-outer: -10px -10px 24px rgba(255, 255, 255, 0.95), 10px 10px 24px rgba(148, 165, 196, 0.35);
	--shadow-outer-sm: -6px -6px 14px rgba(255, 255, 255, 0.9), 6px 6px 14px rgba(148, 165, 196, 0.3);
	--shadow-inner: inset 5px 5px 10px rgba(148, 165, 196, 0.28), inset -5px -5px 10px rgba(255, 255, 255, 0.92);
	--shadow-press: inset 4px 4px 10px rgba(148, 165, 196, 0.34), inset -4px -4px 10px rgba(255, 255, 255, 0.9);
	--hero-glow-1: rgba(42, 85, 200, 0.2);
	--hero-glow-2: rgba(184, 137, 47, 0.18);
	--grad-1: linear-gradient(135deg, #2a55c8, #7d9bf5);
	--grad-2: linear-gradient(135deg, #7c4dd8, #b39bfc);
	--grad-3: linear-gradient(135deg, #0e9896, #5fd4c5);
	--grad-4: linear-gradient(135deg, #d97706, #f5b84b);
	--grad-5: linear-gradient(135deg, #c02667, #f18ab0);
	--grad-6: linear-gradient(135deg, #0e7490, #4fd1e8);
	--spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   Design tokens - NIGHT (19:00-07:00, premium navy & gold)
   -------------------------------------------------------------------------- */
[data-theme="night"] {
	--bg: #0a1120;
	--bg-elev: #0d1527;
	--surface: #0d1729;
	--surface-soft: #101b30;
	--text: #eef3fc;
	--text-soft: #9fb1cc;
	--text-faint: #6f84a3;
	--accent: #6d92ff;
	--accent-soft: rgba(109, 146, 255, 0.16);
	--gold: #d5af6a;
	--gold-strong: #e6c584;
	--gold-soft: rgba(213, 175, 106, 0.14);
	--line: rgba(238, 243, 252, 0.08);
	--shadow-outer: -8px -8px 20px rgba(255, 255, 255, 0.035), 12px 12px 28px rgba(0, 0, 0, 0.55);
	--shadow-outer-sm: -5px -5px 12px rgba(255, 255, 255, 0.03), 7px 7px 16px rgba(0, 0, 0, 0.5);
	--shadow-inner: inset 4px 4px 10px rgba(0, 0, 0, 0.5), inset -4px -4px 10px rgba(255, 255, 255, 0.03);
	--shadow-press: inset 4px 4px 10px rgba(0, 0, 0, 0.55), inset -4px -4px 10px rgba(255, 255, 255, 0.03);
	--hero-glow-1: rgba(109, 146, 255, 0.16);
	--hero-glow-2: rgba(213, 175, 106, 0.12);
	--grad-1: linear-gradient(135deg, #3d63d8, #93abf8);
	--grad-2: linear-gradient(135deg, #8f63e0, #bfa8fd);
	--grad-3: linear-gradient(135deg, #17a5a2, #74dccf);
	--grad-4: linear-gradient(135deg, #dd8a1c, #f6c15c);
	--grad-5: linear-gradient(135deg, #d1457c, #f69cc1);
	--grad-6: linear-gradient(135deg, #1786a5, #63dcf0);
	--spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16.5px;
	line-height: 1.7;
	color: var(--text);
	background: var(--bg);
	transition: background 0.6s ease, color 0.6s ease;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--gold-strong); }
h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', Georgia, serif;
	line-height: 1.22;
	margin: 0 0 0.6em;
	font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.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: 9999;
	padding: 10px 18px; background: var(--text); color: var(--bg);
	border-radius: 10px; clip: auto; width: auto; height: auto;
}

.gold-text {
	background: linear-gradient(120deg, var(--gold-strong), var(--gold), var(--gold-strong));
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent; color: var(--gold);
}

/* --------------------------------------------------------------------------
   Neu cards
   -------------------------------------------------------------------------- */
.neu-card {
	background: var(--surface);
	border-radius: 22px;
	box-shadow: var(--shadow-outer);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.tilt { transform-style: preserve-3d; will-change: transform; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
	padding: 13px 26px; border-radius: 14px; cursor: pointer;
	border: 1px solid transparent; transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	text-decoration: none; line-height: 1.2;
}
.btn svg { width: 19px; height: 19px; }

.btn-gold {
	background: linear-gradient(135deg, var(--gold-strong), var(--gold));
	color: #fff;
	box-shadow: 0 10px 22px -8px rgba(150, 112, 31, 0.55), var(--shadow-outer-sm);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -10px rgba(150, 112, 31, 0.6), var(--shadow-outer-sm); color: #fff; }

.btn-primary {
	background: linear-gradient(135deg, var(--accent), #1b3a94);
	color: #fff;
	box-shadow: 0 10px 22px -8px rgba(34, 71, 184, 0.5), var(--shadow-outer-sm);
}
.btn-primary:hover { transform: translateY(-3px); color: #fff; }

.btn-ghost { background: var(--surface); color: var(--text); box-shadow: var(--shadow-outer-sm); }
.btn-ghost:hover { box-shadow: var(--shadow-inner); transform: translateY(-2px); color: var(--text); }

.btn-outline {
	background: transparent; color: var(--text); border-color: var(--line);
	box-shadow: var(--shadow-outer-sm);
}
.btn-outline:hover { color: var(--gold-strong); border-color: var(--gold); }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   Topbar
   -------------------------------------------------------------------------- */
.topbar {
	background: var(--bg-elev);
	border-bottom: 1px solid var(--line);
	font-size: 0.86rem;
	position: relative; z-index: 60;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 14px; flex-wrap: wrap; }
.topbar-links { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.topbar-chip { display: inline-flex; align-items: center; gap: 7px; color: var(--text-soft); font-weight: 500; }
.topbar-chip svg { width: 14px; height: 14px; color: var(--gold); }
.topbar-chip:hover { color: var(--gold-strong); }
.topbar-badge {
	background: var(--gold-soft); color: var(--gold-strong);
	padding: 3px 12px; border-radius: 999px; font-weight: 600;
}
.topbar-link { color: var(--text-soft); font-weight: 600; border-bottom: 1px dashed var(--line); padding-bottom: 1px; }
.topbar-link:hover { color: var(--gold-strong); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(233, 237, 244, 0.72);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	transition: box-shadow 0.4s ease, background 0.4s ease;
}
[data-theme="night"] .site-header { background: rgba(10, 17, 32, 0.72); }
	[data-theme="night"] .site-header .brand img,
	[data-theme="night"] .footer-brand img,
	[data-theme="night"] .footer-about img.custom-logo,
	[data-theme="night"] .footer-about .custom-logo-link img {
		background: #ffffff;
		border-radius: 8px;
		padding: 4px 6px;
	}
.site-header.scrolled { box-shadow: 0 14px 30px -18px rgba(10, 20, 50, 0.35); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }

.brand { display: flex; align-items: center; }
.brand img, .brand .custom-logo { max-height: 54px; width: auto; }
.brand-text { display: inline-flex; align-items: center; gap: 11px; line-height: 1.15; }
.brand-emblem {
	width: 44px; height: 44px; object-fit: contain; flex: 0 0 auto;
	border-radius: 12px; background: #fff; padding: 3px;
	box-shadow: var(--shadow-outer-sm);
}
.brand-copy { display: inline-flex; flex-direction: column; line-height: 1.15; text-align: left; }
.brand-name { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; font-size: 1.28rem; letter-spacing: 0.04em; color: var(--text); }
.brand-name i { color: var(--gold); font-style: normal; }
.brand-sub { font-size: 0.66rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; margin-top: 2px; }

.footer-brand { display: inline-flex; align-items: center; gap: 10px; }
.footer-brand .brand-emblem { width: 40px; height: 40px; }


.main-nav { display: flex; align-items: center; gap: 26px; }
.mega-nav { order: 3; }
.nav-cta-mobile { order: 4; }
.main-nav .menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.main-nav .menu a {
	display: inline-block; padding: 10px 15px; border-radius: 12px;
	color: var(--text-soft); font-weight: 600; font-size: 0.96rem;
	transition: all 0.25s ease;
}
.main-nav .menu a:hover { color: var(--text); background: var(--surface); box-shadow: var(--shadow-outer-sm); }
.main-nav .menu .current-menu-item > a, .main-nav .menu .current_page_item > a { color: var(--gold-strong); }
.nav-cta-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-cta { white-space: nowrap; padding: 11px 20px; font-size: 0.92rem; }

/* Day/night toggle */
.theme-toggle { background: transparent; border: 0; cursor: pointer; padding: 4px; }
.theme-toggle-track {
	display: inline-flex; align-items: center;
	width: 62px; height: 34px; border-radius: 999px;
	background: var(--surface-soft);
	box-shadow: var(--shadow-inner);
	position: relative; transition: box-shadow 0.3s ease;
}
.theme-knob {
	position: absolute; top: 4px; left: 4px;
	width: 26px; height: 26px; border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-strong), var(--gold));
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	box-shadow: var(--shadow-outer-sm);
	transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.45s ease;
}
.theme-knob svg { width: 15px; height: 15px; position: absolute; transition: opacity 0.35s ease, transform 0.5s ease; }
.theme-knob .icon-moon { opacity: 0; transform: rotate(-120deg) scale(0.5); }
.icon-sun { opacity: 1; transform: rotate(0) scale(1); }

[data-theme="night"] .theme-knob { transform: translateX(28px); background: linear-gradient(135deg, #2a3f6e, #17294d); }
[data-theme="night"] .theme-knob .icon-moon { opacity: 1; transform: rotate(0) scale(1); color: var(--gold); }
[data-theme="night"] .theme-knob .icon-sun { opacity: 0; transform: rotate(120deg) scale(0.5); }

/* Burger */
.nav-burger {
	display: none; background: var(--surface); border: 0; cursor: pointer;
	width: 46px; height: 46px; border-radius: 14px;
	box-shadow: var(--shadow-outer-sm);
	flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { display: block; width: 20px; height: 2.2px; border-radius: 2px; background: var(--text); transition: all 0.3s ease; }
.nav-burger.active span:nth-child(1) { transform: translateY(7.2px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7.2px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	padding: clamp(56px, 8vw, 110px) 0 90px;
	overflow: hidden;
	background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
}
[data-theme="night"] .hero { background: linear-gradient(180deg, #0a1120 0%, #0d1527 100%); }

.hero-blob {
	position: absolute; border-radius: 50%; filter: blur(70px);
	animation: blobFloat 16s ease-in-out infinite alternate;
	pointer-events: none;
}
.hero-blob-1 { width: 520px; height: 520px; top: -160px; right: -120px; background: radial-gradient(circle, var(--hero-glow-1), transparent 70%); }
.hero-blob-2 { width: 460px; height: 460px; bottom: -140px; left: -120px; background: radial-gradient(circle, var(--hero-glow-2), transparent 70%); animation-delay: -8s; }
@keyframes blobFloat {
	0% { transform: translate(0, 0) scale(1); }
	100% { transform: translate(40px, 30px) scale(1.15); }
}

.hero-grid {
	position: absolute; inset: 0;
	background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 20%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 20%, transparent 75%);
	pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }

.eyebrow {
	display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.22em;
	text-transform: uppercase; color: var(--gold-strong);
	margin: 0 0 14px;
}
[data-theme="night"] .eyebrow { color: var(--gold); }

.hero-title { margin: 0 0 8px; }
.hero-sub { font-family: 'Inter', sans-serif; font-weight: 600; font-size: clamp(1rem, 1.6vw, 1.25rem); color: var(--text-soft); margin-bottom: 18px; }
.hero-desc { color: var(--text-soft); max-width: 560px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 620px; }
.stat { text-align: center; padding: 8px 0; }
.stat-num {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; color: var(--text);
	display: block; line-height: 1.1;
}
.stat-label { font-size: 0.78rem; color: var(--text-faint); font-weight: 600; letter-spacing: 0.04em; }

/* Hero visual - floating neu cards */
.hero-visual { position: relative; min-height: 420px; }

.hero-card-main {
	position: absolute; inset: 8% 6% auto auto; width: 62%;
	padding: 26px 22px; text-align: center;
	animation: floatY 7s ease-in-out infinite;
}
.hero-card-main strong, .hero-card-float strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.12rem; color: var(--text); margin: 6px 0 2px; }
.hero-card-main small, .hero-card-float small { color: var(--text-faint); font-size: 0.82rem; }

.hero-card-icon {
	width: 56px; height: 56px; margin: 0 auto; border-radius: 18px;
	display: flex; align-items: center; justify-content: center;
	background: var(--accent-soft); color: var(--accent);
	box-shadow: var(--shadow-inner);
}
.hero-card-icon svg { width: 26px; height: 26px; }
.hero-card-icon.gold { background: var(--gold-soft); color: var(--gold-strong); }

.hero-card-float {
	position: absolute; padding: 16px 18px; width: 46%;
	display: flex; align-items: center; gap: 12px;
	animation: floatY 6.4s ease-in-out infinite alternate;
}
.hero-card-float .hero-card-icon { width: 44px; height: 44px; border-radius: 14px; margin: 0; flex-shrink: 0; }
.hero-card-float .hero-card-icon svg { width: 22px; height: 22px; }
.hero-card-float strong { font-size: 0.98rem; margin: 0 0 1px; }
.hero-card-1 { bottom: 16%; left: 0; animation-delay: -3s; }
.hero-card-2 { bottom: -4%; right: 2%; animation-delay: -1.6s; }

@keyframes floatY {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 1; line-height: 0; }
.hero-wave svg { width: 100%; height: 70px; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: clamp(56px, 8vw, 96px) 0; position: relative; }
.section-alt { background: var(--bg-elev); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-sub { color: var(--text-soft); margin: 0; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about { background: var(--bg-elev); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }

.about-frame { position: relative; }
.about-inner {
	background: var(--surface); border-radius: 26px; box-shadow: var(--shadow-outer);
	padding: 44px 38px 56px; position: relative; z-index: 1;
}
.about-inner p { font-family: 'Playfair Display', serif; font-size: 1.3rem; line-height: 1.55; color: var(--text-soft); margin: 0; font-style: italic; }
.about-quote { font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 0.6; display: block; color: var(--gold); margin-bottom: 18px; }
.about-badge {
	position: absolute; left: 50%; transform: translateX(-50%); top: -34px; z-index: 2;
	width: 84px; height: 84px; object-fit: contain;
	background: #fff; border-radius: 20px; padding: 7px;
	box-shadow: var(--shadow-outer);
	animation: icoBob 3s ease-in-out infinite;
}
.about-stamp {
	position: absolute; top: -26px; right: -18px; z-index: 2;
	width: 118px; height: 118px; border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-strong), var(--gold));
	color: #fff; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	animation: spinSlow 22s linear infinite;
	text-transform: uppercase;
}
.about-stamp b { font-size: 1.55rem; font-family: 'Playfair Display', serif; }
@keyframes spinSlow { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }

.about-copy p { color: var(--text-soft); }
.check-list { list-style: none; padding: 0; margin: 22px 0 30px; display: grid; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 11px; font-weight: 500; color: var(--text); }
.check-list svg { width: 22px; height: 22px; color: var(--gold-strong); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.service-card {
	padding: 34px 30px 30px; position: relative; overflow: hidden;
}
.service-card::before {
	content: ''; position: absolute; top: -70px; right: -70px;
	width: 160px; height: 160px; border-radius: 50%;
	background: radial-gradient(circle, var(--gold-soft), transparent 70%);
	opacity: 0; transition: opacity 0.5s ease;
}
.service-card:hover::before, .service-card.expanded::before { opacity: 1; }

.service-icon {
	width: 62px; height: 62px; border-radius: 19px;
	display: flex; align-items: center; justify-content: center;
	background: var(--surface-soft); color: var(--accent);
	box-shadow: var(--shadow-inner);
	margin-bottom: 20px;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card:hover .service-icon { color: var(--gold-strong); }
.service-num {
	position: absolute; top: 26px; right: 26px;
	font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.9rem;
	color: var(--line);
	line-height: 1;
}
.service-title { font-size: 1.32rem; margin-bottom: 8px; }
.service-desc { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 20px; }

.service-toggle {
	display: inline-flex; align-items: center; gap: 8px;
	background: transparent; border: 0; cursor: pointer;
	color: var(--gold-strong); font-weight: 700; font-size: 0.95rem; padding: 0;
}
[data-theme="night"] .service-toggle { color: var(--gold); }
.service-toggle .chev { width: 18px; height: 18px; transition: transform 0.35s ease; }
.service-toggle.open .chev { transform: rotate(180deg); }

.service-list {
	list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 9px;
	animation: fadeSlide 0.4s ease;
}
.service-list[hidden], .faq-answer[hidden], .unlock-modal[hidden] { display: none !important; }
.service-list li {
	position: relative; padding-left: 26px; color: var(--text-soft); font-size: 0.94rem;
}
.service-list li::before {
	content: ''; position: absolute; left: 0; top: 9px;
	width: 9px; height: 9px; border-radius: 50%;
	background: var(--gold-strong);
	box-shadow: 0 0 0 4px var(--gold-soft);
}
@keyframes fadeSlide { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   Sectors
   -------------------------------------------------------------------------- */
.sectors { background: var(--bg-elev); }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.sector-card { padding: 30px 22px; text-align: center; }
.sector-icon {
	width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 20px;
	display: flex; align-items: center; justify-content: center;
	background: var(--surface-soft); color: var(--accent);
	box-shadow: var(--shadow-inner);
	transition: color 0.3s ease, transform 0.4s ease;
}
.sector-icon svg { width: 30px; height: 30px; }
.sector-card:hover .sector-icon { color: var(--gold-strong); transform: scale(1.08) rotate(-4deg); }
.sector-card h3 { font-family: 'Inter', sans-serif; font-size: 1.02rem; font-weight: 700; margin: 0; }

/* --------------------------------------------------------------------------
   Philosophy
   -------------------------------------------------------------------------- */
.philosophy-card {
	background: linear-gradient(135deg, var(--surface), var(--surface-soft));
	border-radius: 30px; box-shadow: var(--shadow-outer);
	padding: clamp(36px, 6vw, 64px);
	text-align: center; position: relative; overflow: hidden;
}
.philosophy-card::before {
	content: ''; position: absolute; inset: -40%;
	background: radial-gradient(circle at 20% 10%, var(--hero-glow-1), transparent 45%), radial-gradient(circle at 85% 90%, var(--hero-glow-2), transparent 45%);
	pointer-events: none;
}
.philosophy-card blockquote { position: relative; max-width: 780px; margin: 0 auto 26px; }
.philosophy-card blockquote p {
	font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2.4vw, 1.65rem);
	font-style: italic; line-height: 1.55; color: var(--text);
	margin: 0 0 18px;
}
.philosophy-card cite { font-style: normal; display: block; }
.philosophy-card cite strong { font-family: 'Playfair Display', serif; font-size: 1.1rem; display: block; color: var(--text); }
.philosophy-card cite span { color: var(--text-faint); font-size: 0.9rem; }
.philosophy-pills { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pill {
	background: var(--gold-soft); color: var(--gold-strong);
	padding: 8px 20px; border-radius: 999px; font-size: 0.9rem; font-weight: 700;
	box-shadow: var(--shadow-outer-sm);
}

/* --------------------------------------------------------------------------
   News
   -------------------------------------------------------------------------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { overflow: hidden; padding: 0; }
.news-card:hover { transform: translateY(-6px); }
.news-thumb { display: block; aspect-ratio: 16 / 9.2; overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.news-card:hover .news-thumb img { transform: scale(1.07); }
.news-thumb-fallback {
	display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--accent), #122a66); color: rgba(255, 255, 255, 0.75);
	font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; letter-spacing: 0.06em;
}
.news-body { padding: 22px 24px 26px; }
.news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.news-meta time { color: var(--text-faint); font-size: 0.82rem; font-weight: 600; }
.chip {
	background: var(--accent-soft); color: var(--accent);
	font-size: 0.74rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
	padding: 4px 12px; border-radius: 999px;
}
[data-theme="night"] .chip { color: var(--accent); }
.news-title { font-size: 1.15rem; line-height: 1.35; margin-bottom: 8px; }
.news-title a { color: var(--text); }
.news-title a:hover { color: var(--gold-strong); }
.news-body p { color: var(--text-soft); font-size: 0.94rem; margin-bottom: 16px; }
.read-more { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.92rem; color: var(--gold-strong); }
.read-more svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.read-more:hover svg { transform: translateX(5px); }
.news-more { text-align: center; margin-top: 46px; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact { background: var(--bg-elev); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
	.contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card { padding: 26px; display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
	width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
	display: flex; align-items: center; justify-content: center;
	background: var(--surface-soft); color: var(--gold-strong);
	box-shadow: var(--shadow-inner);
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-family: 'Inter', sans-serif; font-size: 1.05rem; margin-bottom: 6px; }
.contact-card p { margin: 0; color: var(--text-soft); font-size: 0.94rem; word-break: break-word; }
.contact-card a { color: var(--accent); font-weight: 600; }
[data-theme="night"] .contact-card a { color: var(--accent); }
.contact-card a:hover { color: var(--gold-strong); }

.form-card { padding: 34px; }
.form-card h3 { margin-bottom: 8px; }
.form-note { color: var(--text-soft); font-size: 0.95rem; }

/* WPForms & generic form controls get neumorphic skins */
.contact-form-wrap form, .form-card form { display: grid; gap: 16px; }
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="url"],
.contact-form-wrap input[type="number"],
.contact-form-wrap input[type="search"],
.contact-form-wrap input[type="date"],
.contact-form-wrap select,
.contact-form-wrap textarea,
.entry-content input[type="text"], .entry-content input[type="email"], .entry-content input[type="tel"],
.entry-content input[type="search"], .entry-content select, .entry-content textarea {
	width: 100%; padding: 14px 18px; border-radius: 14px;
	background: var(--surface-soft); border: 1px solid transparent; color: var(--text);
	font-family: inherit; font-size: 0.98rem;
	box-shadow: var(--shadow-inner);
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact-form-wrap input:focus, .contact-form-wrap select:focus, .contact-form-wrap textarea:focus,
.entry-content input:focus, .entry-content select:focus, .entry-content textarea:focus {
	outline: none; border-color: var(--gold); box-shadow: var(--shadow-inner), 0 0 0 3px var(--gold-soft);
}
.contact-form-wrap ::placeholder, .entry-content ::placeholder { color: var(--text-faint); }
.contact-form-wrap button[type="submit"], .wpforms-submit {
	background: linear-gradient(135deg, var(--gold-strong), var(--gold)) !important;
	color: #fff !important; border-radius: 14px !important; border: 0 !important;
	font-weight: 700; padding: 14px 30px !important; font-size: 1rem !important;
	box-shadow: 0 10px 22px -8px rgba(150, 112, 31, 0.55) !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-form-wrap button[type="submit"]:hover, .wpforms-submit:hover { transform: translateY(-2px) !important; color: #fff !important; }
.wpforms-container { box-shadow: none !important; }
.wpforms-container .wpforms-field-label, .wpforms-container .wpforms-label { color: var(--text) !important; font-weight: 600 !important; }
.wpforms-container input, .wpforms-container select, .wpforms-container textarea {
	background: var(--surface-soft) !important; color: var(--text) !important;
	border: 0 !important; border-radius: 14px !important; box-shadow: var(--shadow-inner) !important;
}
.wpforms-container .wpforms-confirmation-container-full { background: var(--gold-soft) !important; color: var(--gold-strong) !important; border: 0 !important; border-radius: 14px !important; box-shadow: var(--shadow-outer-sm) !important; }

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
	position: relative; padding: clamp(48px, 7vw, 90px) 0 0;
	background: linear-gradient(180deg, var(--bg-elev), var(--bg));
	overflow: hidden;
}
.page-hero::after {
	content: ''; position: absolute; right: -140px; top: -140px;
	width: 420px; height: 420px; border-radius: 50%;
	background: radial-gradient(circle, var(--hero-glow-1), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title { margin-bottom: 14px; }
.page-hero-sub { color: var(--text-soft); max-width: 640px; }
.single-hero { padding-bottom: 30px; }
.post-meta { display: flex; gap: 12px; align-items: center; color: var(--text-faint); font-size: 0.92rem; font-weight: 500; flex-wrap: wrap; }
.breadcrumbs { display: flex; gap: 10px; align-items: center; font-size: 0.86rem; color: var(--text-faint); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--text-soft); }
.breadcrumbs a:hover { color: var(--gold-strong); }
.breadcrumb-current { color: var(--gold-strong); font-weight: 600; }

/* --------------------------------------------------------------------------
   Single article
   -------------------------------------------------------------------------- */
.single-container { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.single-article { min-width: 0; }
.single-thumb { margin: 0 0 30px; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-outer); }
.single-thumb img { width: 100%; }

.entry-content { color: var(--text-soft); font-size: 1.03rem; }
.entry-content h2, .entry-content h3 { color: var(--text); margin-top: 1.8em; }
.entry-content p, .entry-content ul, .entry-content ol { color: var(--text-soft); }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { border-radius: 16px; }
.entry-content blockquote {
	margin: 26px 0; padding: 20px 26px; border-left: 5px solid var(--gold);
	background: var(--surface-soft); border-radius: 0 16px 16px 0;
	font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem;
	color: var(--text);
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 22px 0; }
.entry-content th, .entry-content td { padding: 12px 16px; border: 1px solid var(--line); text-align: left; }
.entry-content th { background: var(--surface-soft); color: var(--text); }
.wp-block-embed iframe, .entry-content iframe { border-radius: 16px; max-width: 100%; }

.post-tags { margin-top: 30px; display: flex; gap: 8px; flex-wrap: wrap; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 50px; }
.post-nav-link { padding: 22px 26px; }
.post-nav-link small { color: var(--text-faint); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.post-nav-link strong { display: block; margin-top: 6px; color: var(--text); font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.post-nav-link.right { text-align: right; }

.single-side { display: grid; gap: 22px; position: sticky; top: 96px; }
.side-card { padding: 26px; }
.side-card h3 { font-family: 'Inter', sans-serif; font-size: 1.02rem; }
.side-card p { color: var(--text-soft); font-size: 0.92rem; }
.side-card .btn { width: 100%; margin-bottom: 10px; }
.side-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.side-list a { display: block; padding: 9px 12px; border-radius: 10px; color: var(--text-soft); font-size: 0.92rem; font-weight: 500; }
.side-list a:hover { background: var(--surface-soft); color: var(--gold-strong); box-shadow: var(--shadow-outer-sm); }

/* Comments - classic WP markup, neu-styled */
.comments-area { margin-top: 40px; padding: 10px; }
.comment-list { list-style: none; padding: 0; }
.comment-list .comment { margin-bottom: 18px; }
.comment-body { background: var(--surface); border-radius: 16px; box-shadow: var(--shadow-outer-sm); padding: 20px 24px; }
.comment-meta { color: var(--text-faint); font-size: 0.86rem; }
.comment-author, .comment-reply-link { color: var(--text); font-weight: 600; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
	width: 100%; padding: 13px 16px; border-radius: 12px; margin-bottom: 12px;
	background: var(--surface-soft); border: 0; color: var(--text);
	box-shadow: var(--shadow-inner); font-family: inherit;
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border: 0; box-shadow: var(--shadow-inner), 0 0 0 3px var(--gold-soft); }
.comment-form .submit {
	background: linear-gradient(135deg, var(--gold-strong), var(--gold)); color: #fff;
	border: 0; border-radius: 12px; padding: 12px 26px; font-weight: 700; cursor: pointer;
}

/* --------------------------------------------------------------------------
   Page card (terms, about pages...)
   -------------------------------------------------------------------------- */
.page-card { padding: clamp(28px, 4vw, 48px); }
.page-card h1, .page-card h2, .page-card h3 { color: var(--text); }

/* --------------------------------------------------------------------------
   Search, pagination, states
   -------------------------------------------------------------------------- */
.search-box { display: flex; gap: 12px; max-width: 520px; margin-top: 22px; }
.search-box input {
	flex: 1; padding: 14px 18px; border-radius: 14px; border: 0;
	background: var(--surface-soft); color: var(--text);
	box-shadow: var(--shadow-inner); font-family: inherit;
}
.search-box input:focus { outline: none; box-shadow: var(--shadow-inner), 0 0 0 3px var(--gold-soft); }
.search-box .btn { padding: 14px 20px; }
.search-box .btn svg { width: 20px; height: 20px; }

.karwa-pagination { margin-top: 44px; }
.karwa-pagination .nav-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.karwa-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; height: 44px; padding: 0 14px; border-radius: 14px;
	background: var(--surface); color: var(--text-soft); font-weight: 600;
	box-shadow: var(--shadow-outer-sm);
}
.karwa-pagination .page-numbers.current { background: linear-gradient(135deg, var(--gold-strong), var(--gold)); color: #fff; }

.empty-state { padding: 60px 30px; text-align: center; }
.empty-state h2 { font-size: 1.5rem; }
.empty-state p { color: var(--text-soft); }
.empty-state .btn { margin-top: 14px; }
.empty-state.big { padding: 80px 30px; }
.error-code {
	font-family: 'Playfair Display', serif; font-size: clamp(4rem, 10vw, 7rem); font-weight: 800;
	line-height: 1; margin: 0 0 10px;
	background: linear-gradient(120deg, var(--gold-strong), var(--gold));
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--bg-elev);
	border-top: 1px solid var(--line);
	padding-top: 60px; margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer-about .brand-name { font-size: 1.3rem; }
.footer-tagline { color: var(--text-soft); font-size: 0.93rem; margin: 16px 0 20px; max-width: 340px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
	width: 44px; height: 44px; border-radius: 14px;
	display: flex; align-items: center; justify-content: center;
	background: var(--surface); color: var(--text-soft);
	box-shadow: var(--shadow-outer-sm); transition: all 0.3s ease;
}
.footer-social a svg { width: 20px; height: 20px; }
.footer-social a:hover { color: var(--gold-strong); transform: translateY(-3px); box-shadow: var(--shadow-outer); }

.footer-title {
	font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700;
	letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-strong);
	margin-bottom: 18px;
}
[data-theme="night"] .footer-title { color: var(--gold); }
.footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-menu a { color: var(--text-soft); font-size: 0.95rem; }
.footer-menu a:hover { color: var(--gold-strong); padding-left: 4px; transition: padding 0.25s ease; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.footer-contact li { display: flex; gap: 12px; color: var(--text-soft); font-size: 0.94rem; }
.footer-contact svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; color: var(--gold-strong); }
.footer-contact a { color: var(--text-soft); font-weight: 500; }
.footer-contact a:hover { color: var(--gold-strong); }

.footer-bottom {
	border-top: 1px solid var(--line);
	padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
	gap: 14px; flex-wrap: wrap; font-size: 0.88rem; color: var(--text-faint);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-faint); }
.footer-legal a:hover { color: var(--gold-strong); }
.made-with { color: var(--text-faint); }
.made-with a { color: var(--gold); font-weight: 600; }
.made-with a:hover { color: var(--gold-strong); }
.made-with [aria-hidden="true"] { font-style: normal; }

/* Back to top */
.to-top {
	position: fixed; right: 26px; bottom: 26px; z-index: 40;
	width: 52px; height: 52px; border-radius: 16px;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, var(--gold-strong), var(--gold)); color: #fff;
	box-shadow: 0 14px 26px -10px rgba(150, 112, 31, 0.6);
	opacity: 0; transform: translateY(16px); pointer-events: none;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.to-top svg { width: 22px; height: 22px; }
.to-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); color: #fff; }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in-view { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Practice marquee (playful scrolling strip)
   -------------------------------------------------------------------------- */
.marquee { overflow: hidden; padding: 16px 0; background: var(--surface); border-block: 1px solid var(--line); }
.marquee-track {
	display: flex; align-items: center; gap: 0; width: max-content;
	animation: marqueeScroll 24s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
	display: inline-flex; align-items: center; white-space: nowrap;
	font-weight: 700; font-size: 0.98rem; letter-spacing: 0.04em;
	color: var(--text-soft); padding: 0 22px; text-transform: uppercase;
}
.marquee-track i { color: var(--gold); font-style: normal; font-size: 1.1rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Protected phone numbers
   -------------------------------------------------------------------------- */
.phone-reveal {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--gold-soft); color: var(--gold-strong);
	border: 0; cursor: pointer; border-radius: 999px;
	padding: 7px 16px; font-family: inherit; font-size: 0.86rem; font-weight: 700;
	box-shadow: var(--shadow-outer-sm);
	transition: transform 0.3s var(--spring), box-shadow 0.3s ease;
}
[data-theme="night"] .phone-reveal { color: var(--gold); }
.phone-reveal:hover { transform: translateY(-2px) scale(1.04); }
.phone-reveal svg { width: 15px; height: 15px; flex: 0 0 auto; }
.phone-masked {
	font-weight: 800; letter-spacing: 0.08em; font-size: 0.94rem;
	color: var(--text);
	filter: blur(1px);
	transition: filter 0.35s ease, color 0.3s ease;
}
[data-theme="night"] .phone-masked { color: #fff; }
.phone-reveal:hover .phone-masked { filter: blur(0); }
.phone-hint { display: block; font-size: 0.72rem; font-weight: 600; color: var(--text-soft); letter-spacing: 0.03em; }

.phone-open {
	display: inline-flex; align-items: center; gap: 6px;
	font-weight: 800; color: var(--accent); font-size: 1.02rem;
	animation: popIn 0.45s var(--spring);
}
[data-theme="night"] .phone-open { color: var(--gold); }
.phone-open:hover { color: var(--gold-strong); }
@keyframes popIn { from { opacity: 0; transform: scale(0.7); } to { opacity: 1; transform: scale(1); } }

/* WhatsApp float - only after numbers unlocked */
.whatsapp-float.wa-gated { display: none; }
body.phones-unlocked .whatsapp-float.wa-gated { display: inline-flex; }

/* --------------------------------------------------------------------------
   Unlock modal
   -------------------------------------------------------------------------- */
body.modal-open { overflow: hidden; }
.unlock-modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 20px; }
.unlock-backdrop { position: absolute; inset: 0; background: rgba(10, 17, 32, 0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.unlock-card {
	position: relative; z-index: 1; width: min(420px, 100%);
	padding: 38px 32px 32px; text-align: center;
	animation: modalPop 0.45s var(--spring);
}
@keyframes modalPop { from { opacity: 0; transform: translateY(26px) scale(0.92); } to { opacity: 1; transform: none; } }
.unlock-card.shake { animation: shake 0.4s ease; }
@keyframes shake {
	10%, 90% { transform: translateX(-2px); }
	20%, 80% { transform: translateX(4px); }
	30%, 50%, 70% { transform: translateX(-6px); }
	40%, 60% { transform: translateX(6px); }
}
.unlock-close {
	position: absolute; top: 14px; right: 14px;
	width: 38px; height: 38px; border-radius: 12px; border: 0; cursor: pointer;
	background: var(--surface-soft); color: var(--text-soft);
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-outer-sm); transition: color 0.25s ease, transform 0.3s var(--spring);
}
.unlock-close svg { width: 18px; height: 18px; }
.unlock-close:hover { color: var(--gold-strong); transform: rotate(90deg); }
.unlock-ico {
	width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 20px;
	display: flex; align-items: center; justify-content: center;
	background: var(--grad-4); color: #fff;
	box-shadow: 0 14px 26px -10px rgba(217, 119, 6, 0.5);
	animation: icoBob 2.4s ease-in-out infinite;
}
.unlock-ico svg { width: 30px; height: 30px; }
@keyframes icoBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.unlock-card h3 { margin-bottom: 8px; }
.unlock-note { color: var(--text-soft); font-size: 0.94rem; margin-bottom: 18px; }
.unlock-form { display: grid; gap: 12px; }
.unlock-q { font-weight: 800; color: var(--text); font-size: 1.05rem; }
.unlock-form input {
	padding: 13px 16px; border-radius: 14px; border: 0; text-align: center;
	background: var(--surface-soft); color: var(--text); font-family: inherit; font-size: 1.1rem; font-weight: 700;
	box-shadow: var(--shadow-inner); transition: box-shadow 0.3s ease;
}
.unlock-form input:focus { outline: none; box-shadow: var(--shadow-inner), 0 0 0 3px var(--gold-soft); }
.unlock-form input::-webkit-outer-spin-button, .unlock-form input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* --------------------------------------------------------------------------
   Happy bouncy touches
   -------------------------------------------------------------------------- */
.btn { transition: all 0.35s var(--spring); }
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn:active { transform: translateY(-1px) scale(0.98); }

.hero-title { animation: titlePop 1s var(--spring) both; }
@keyframes titlePop { from { opacity: 0; transform: translateY(24px) scale(0.96); } to { opacity: 1; transform: none; } }

.service-icon { transition: box-shadow 0.3s ease, background 0.3s ease; }
.service-icon svg { transition: transform 0.4s var(--spring); }
.service-card:hover .service-icon svg { transform: rotate(-8deg) scale(1.12); }

.service-card:nth-child(1) .service-icon { background: var(--grad-1); color: #fff; box-shadow: 0 12px 24px -10px rgba(42, 85, 200, 0.5); }
.service-card:nth-child(2) .service-icon { background: var(--grad-2); color: #fff; box-shadow: 0 12px 24px -10px rgba(124, 77, 216, 0.5); }
.service-card:nth-child(3) .service-icon { background: var(--grad-3); color: #fff; box-shadow: 0 12px 24px -10px rgba(14, 152, 150, 0.5); }
.service-card:nth-child(4) .service-icon { background: var(--grad-4); color: #fff; box-shadow: 0 12px 24px -10px rgba(217, 119, 6, 0.5); }
.service-card:nth-child(5) .service-icon { background: var(--grad-5); color: #fff; box-shadow: 0 12px 24px -10px rgba(192, 38, 103, 0.5); }
.service-card:nth-child(6) .service-icon { background: var(--grad-6); color: #fff; box-shadow: 0 12px 24px -10px rgba(14, 116, 144, 0.5); }

.sector-icon svg { transition: transform 0.4s var(--spring); }
.sector-card:hover .sector-icon svg { transform: rotate(-10deg) scale(1.15); }
.sector-card:nth-child(odd) .sector-icon { background: var(--grad-3); color: #fff; }
.sector-card:nth-child(even) .sector-icon { background: var(--grad-1); color: #fff; }

.value-icon { transition: background 0.3s ease; }
.value-card:nth-child(1) .value-icon { background: var(--grad-1); color: #fff; }
.value-card:nth-child(2) .value-icon { background: var(--grad-3); color: #fff; }
.value-card:nth-child(3) .value-icon { background: var(--grad-5); color: #fff; }
.value-card:nth-child(4) .value-icon { background: var(--grad-4); color: #fff; }

.pill { transition: transform 0.35s var(--spring), box-shadow 0.35s ease; }
.pill:hover { transform: translateY(-3px) rotate(-2deg) scale(1.05); }

.contact-icon { background: var(--gold-soft); color: var(--gold-strong); }
.contact-card:hover .contact-icon { transform: scale(1.1) rotate(-6deg); }
.contact-icon { transition: transform 0.4s var(--spring); }

/* --------------------------------------------------------------------------
   Services mega menu
   -------------------------------------------------------------------------- */
.mega-nav { position: relative; }
.mega-trigger {
	display: inline-flex; align-items: center; gap: 7px;
	background: transparent; border: 0; cursor: pointer;
	padding: 10px 15px; border-radius: 12px;
	color: var(--gold-strong); font-weight: 700; font-size: 0.96rem; font-family: inherit;
	transition: all 0.25s ease;
}
[data-theme="night"] .mega-trigger { color: var(--gold); }
.mega-trigger:hover { background: var(--surface); box-shadow: var(--shadow-outer-sm); }
.mega-chev { width: 16px; height: 16px; transition: transform 0.3s ease; }
.mega-nav.open .mega-chev { transform: rotate(180deg); }

.mega-dropdown {
	position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
	width: min(920px, 94vw);
	background: var(--bg-elev);
	-webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
	border-radius: 22px;
	box-shadow: var(--shadow-outer);
	border: 1px solid var(--line);
	padding: 28px;
	opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(12px);
	transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s;
	z-index: 90;
}
.mega-nav.open .mega-dropdown, .mega-dropdown.mega-visible { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.mega-cols { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; grid-template-columns: repeat(4, 1fr); }
.mega-col-title {
	display: block; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.16em;
	text-transform: uppercase; color: var(--gold-strong);
	padding-bottom: 10px; margin-bottom: 12px; border-bottom: 1px solid var(--line);
}
[data-theme="night"] .mega-col-title { color: var(--gold); }
.mega-sublist { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.mega-sublist a {
	display: block; padding: 8px 12px; border-radius: 10px;
	color: var(--text-soft); font-size: 0.94rem; font-weight: 500;
	transition: all 0.2s ease;
}
.mega-sublist a:hover { background: var(--surface); color: var(--gold-strong); box-shadow: var(--shadow-outer-sm); padding-left: 16px; }

/* --------------------------------------------------------------------------
   Values (About page)
   -------------------------------------------------------------------------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.value-card { padding: 32px 26px; text-align: center; }
.value-icon {
	width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 20px;
	display: flex; align-items: center; justify-content: center;
	background: var(--surface-soft); color: var(--gold-strong);
	box-shadow: var(--shadow-inner);
	transition: transform 0.4s ease;
}
.value-icon svg { width: 30px; height: 30px; }
.value-card:hover .value-icon { transform: scale(1.1) rotate(-5deg); }
.value-card h3 { font-family: 'Inter', sans-serif; font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { color: var(--text-soft); font-size: 0.93rem; margin: 0; }

/* --------------------------------------------------------------------------
   Process timeline (About page)
   -------------------------------------------------------------------------- */
.process-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative;
}
.process-grid::before {
	content: ''; position: absolute; top: 44px; left: 8%; right: 8%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
	opacity: 0.45;
}
.process-step { padding: 30px 24px; text-align: center; position: relative; }
.process-num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 52px; height: 52px; border-radius: 50%; margin-bottom: 16px;
	font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.25rem;
	background: linear-gradient(135deg, var(--gold-strong), var(--gold)); color: #fff;
	box-shadow: var(--shadow-outer-sm);
}
.process-step h3 { font-family: 'Inter', sans-serif; font-size: 1.06rem; margin-bottom: 8px; }
.process-step p { color: var(--text-soft); font-size: 0.92rem; margin: 0; }

/* --------------------------------------------------------------------------
   Contact page - map, FAQ
   -------------------------------------------------------------------------- */
.map-section { background: var(--bg-elev); }
.map-card { overflow: hidden; padding: 0; }
.map-card iframe { display: block; width: 100%; aspect-ratio: 21 / 9; border: 0; min-height: 320px; }

.faq-wrap { max-width: 860px; }
.faq-list-wrap { display: grid; gap: 16px; }
.faq-card { padding: 0; overflow: hidden; }
.faq-toggle {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
	background: transparent; border: 0; cursor: pointer; text-align: left;
	padding: 20px 26px; font-family: inherit; font-size: 1.02rem; font-weight: 700; color: var(--text);
	transition: color 0.25s ease;
}
.faq-toggle:hover { color: var(--gold-strong); }
.faq-toggle .chev { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold-strong); transition: transform 0.35s ease; }
.faq-toggle.open .chev { transform: rotate(180deg); }
.faq-answer { animation: fadeSlide 0.35s ease; }
.faq-answer p { margin: 0; padding: 0 26px 22px; color: var(--text-soft); font-size: 0.96rem; }

/* Service page */
.service-jump { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.chip-link { display: inline-block; text-decoration: none; transition: all 0.25s ease; }
.chip-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-outer-sm); }
.service-page-card { padding: 34px 30px 30px; }
.service-list-static { margin-top: 20px; }
.contact-cta { padding-top: 20px; }

/* WhatsApp floating button */
.whatsapp-float {
	position: fixed; left: 24px; bottom: 24px; z-index: 40;
	display: inline-flex; align-items: center; gap: 9px;
	background: linear-gradient(135deg, #22c55e, #15803d); color: #fff;
	padding: 14px 20px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
	box-shadow: 0 16px 30px -10px rgba(21, 128, 61, 0.55);
	text-decoration: none;
	animation: waPulse 2.6s ease-in-out infinite;
	transition: transform 0.3s ease;
}
.whatsapp-float svg { width: 22px; height: 22px; }
.whatsapp-float:hover { transform: translateY(-3px); color: #fff; }
@keyframes waPulse {
	0%, 100% { box-shadow: 0 16px 30px -10px rgba(21, 128, 61, 0.55), 0 0 0 0 rgba(34, 197, 94, 0.45); }
	50% { box-shadow: 0 16px 30px -10px rgba(21, 128, 61, 0.55), 0 0 0 14px rgba(34, 197, 94, 0); }
}

/* --------------------------------------------------------------------------
   Tools hub
   -------------------------------------------------------------------------- */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tool-card { padding: 30px 26px 28px; position: relative; overflow: hidden; }
.tool-link { display: flex; flex-direction: column; align-items: flex-start; height: 100%; text-decoration: none; color: inherit; }
.tool-link::before {
	content: ''; position: absolute; top: -70px; right: -70px;
	width: 170px; height: 170px; border-radius: 50%;
	background: radial-gradient(circle, var(--gold-soft), transparent 70%);
	opacity: 0; transition: opacity 0.5s ease;
}
.tool-icon {
	width: 64px; height: 64px; margin-bottom: 18px; border-radius: 20px;
	display: flex; align-items: center; justify-content: center;
	background: var(--surface-soft); color: var(--accent);
	box-shadow: var(--shadow-inner);
	transition: color 0.3s ease, transform 0.4s ease;
}
.tool-icon svg { width: 30px; height: 30px; }
.tool-free {
	background: var(--gold-soft); color: var(--gold-strong);
	font-size: 0.68rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
	padding: 4px 11px; border-radius: 999px; margin-bottom: 13px;
}
.tool-card h3 { font-family: 'Inter', sans-serif; font-size: 1.12rem; font-weight: 700; color: var(--text); margin: 0 0 10px; }
.tool-card p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.6; margin: 0 0 20px; }
.tool-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--gold-strong); font-weight: 700; font-size: 0.95rem; }
.tool-cta svg { width: 15px; height: 15px; transition: transform 0.3s ease; }
.tool-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-outer), 0 24px 48px -24px rgba(23, 35, 60, 0.35); }
.tool-card:hover .tool-link::before { opacity: 1; }
.tool-card:hover .tool-icon { color: var(--gold-strong); transform: scale(1.08) rotate(-4deg); }
.tool-card:hover .tool-cta svg { transform: translateX(4px); }
.tool-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 18px; }
.tools-note { padding: 26px 30px; margin-top: 40px; }
.tools-note p { margin: 0; color: var(--text-soft); font-size: 0.95rem; line-height: 1.7; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.hero-inner { grid-template-columns: 1fr; gap: 30px; }
	.hero-visual { min-height: 340px; margin-top: 20px; }
	.about-grid { grid-template-columns: 1fr; gap: 44px; }
	.services-grid { grid-template-columns: 1fr; }
	.news-grid { grid-template-columns: repeat(2, 1fr); }
	.contact-info { grid-template-columns: repeat(2, 1fr); }
	.contact-grid { grid-template-columns: 1fr; }
	.single-container { grid-template-columns: 1fr; }
	.single-side { position: static; grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.values-grid { grid-template-columns: repeat(2, 1fr); }
	.process-grid { grid-template-columns: repeat(2, 1fr); }
	.process-grid::before { display: none; }
	.mega-cols { grid-template-columns: repeat(2, 1fr); }
	.about-stats { max-width: none; }
	.tools-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.nav-burger { display: flex; }
	.nav-cta-desktop, .nav-cta { display: none; }
	.nav-cta-mobile { display: inline-flex !important; margin-top: 14px; }
	.main-nav {
		flex-direction: column; align-items: stretch; gap: 4px;
		position: absolute; top: 100%; right: 0; left: auto; bottom: auto;
		width: min(340px, 84vw); max-height: calc(100dvh - 100%);
		background: var(--bg-elev);
		-webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
		box-shadow: -20px 0 50px -20px rgba(10, 20, 50, 0.4);
		border-radius: 0 0 0 20px;
		padding: 18px 18px 26px; z-index: 49;
		transform: translateX(105%); transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
		overflow-y: auto;
	}
	.main-nav.open { transform: none; }
	.main-nav .menu { flex-direction: column; align-items: stretch; gap: 4px; }
	.main-nav .menu a { display: block; padding: 13px 16px; font-size: 1.05rem; border-radius: 12px; }
	.topbar-meta { display: none; }
	.topbar { font-size: 0.8rem; }
	.topbar-inner { justify-content: center; }
	.hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
	.contact-info { grid-template-columns: 1fr; }
	.tools-grid { grid-template-columns: 1fr; }
	.tool-card { padding: 26px 22px 24px; }
	.sectors-grid { grid-template-columns: repeat(2, 1fr); }
	.news-grid { grid-template-columns: 1fr; }
	.single-side { grid-template-columns: 1fr; }
	.post-nav { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 30px; }
	.footer-bottom { flex-direction: column; text-align: center; }
	.about-stamp { right: -6px; top: -22px; width: 96px; height: 96px; }
	.about-badge { left: 50%; top: -26px; width: 62px; height: 62px; border-radius: 15px; }
	.values-grid { grid-template-columns: 1fr; }
	.process-grid { grid-template-columns: 1fr; }

	.mega-nav { order: 2; }
	.nav-cta-mobile { order: 3; }
	.mega-trigger { display: flex; justify-content: space-between; width: 100%; padding: 13px 16px; font-size: 1.05rem; }
	.mega-dropdown {
		position: static; transform: none; width: 100%; padding: 0 10px 0;
		border: 0; box-shadow: none; background: transparent;
		opacity: 1; visibility: hidden; height: 0; overflow: hidden;
		transition: height 0.35s ease, visibility 0.35s;
	}
	.mega-nav.open .mega-dropdown { visibility: visible; height: auto; padding: 16px 10px 4px; }
	.mega-cols { grid-template-columns: 1fr; gap: 16px; }
	.mega-col-title { margin-bottom: 6px; }
	.mega-sublist a { padding: 9px 12px; }
	.whatsapp-float { left: 16px; bottom: 16px; padding: 12px 16px; }
	.whatsapp-float span { display: none; }
	.whatsapp-float { border-radius: 50%; padding: 14px; }
}

/* Mobile hardening (iPhone / Android / tablets) */
html { scroll-padding-top: 96px; }
html, body { overflow-x: clip; }
a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }
a, button, [role="button"] { touch-action: manipulation; }
input, select, textarea { font-size: 16px; }
.phone-reveal { min-height: 44px; }
.site-header { padding-top: env(safe-area-inset-top); }
.topbar { padding-top: max(10px, env(safe-area-inset-top)); }
.whatsapp-float { bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px)); left: max(16px, calc(env(safe-area-inset-left) + 12px)); }
@media (hover: none) and (pointer: coarse) {
	.mega-trigger:hover { background: transparent; box-shadow: none; }
	.phone-reveal:hover { transform: none; }
	.phone-reveal:hover .phone-masked { filter: blur(1px); }
}

@media (max-width: 480px) {
	body { font-size: 15.5px; }
	.hero-visual { min-height: 300px; }
	.hero-card-main { width: 74%; }
	.hero-card-1 { width: 62%; }
	.hero-cta .btn { width: 100%; }
	.btn-lg { padding: 15px 24px; }
	.hero-wave svg { height: 46px; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.marquee-track {
		animation-duration: 24s !important;
		animation-iteration-count: infinite !important;
	}
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; }
	.tilt { transform: none !important; }
}