:root{
	--bg: #ffffff;
	--bg-soft: #f0fdf4;
	--panel: #f8fffb;
	--text: #0f172a;
	--text-heading: #020617;
	--muted: #64748b;
	--muted-2: #94a3b8;
	--brand: #16a34a;
	--brand-2: #22c55e;
	--brand-dark: #065f46;
	--accent: #10b981;
	--stroke: rgba(22, 163, 74, 0.15);
	--shadow: 0 20px 50px rgba(15, 118, 110, 0.15);
	--shadow-sm: 0 4px 20px rgba(15, 118, 110, 0.08);
	--shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
	--radius: 24px;
	--radius-sm: 16px;
	--max: 1180px;
	--pad: clamp(18px, 2.5vw, 32px);
	--h1: clamp(38px, 4.5vw, 64px);
	--h2: clamp(24px, 2.8vw, 38px);
	--h3: clamp(18px, 1.8vw, 24px);
	--mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

[data-theme="dark"]{
	--bg: #0a0f1a;
	--bg-soft: #0f1520;
	--panel: #141b28;
	--text: #e2e8f0;
	--text-heading: #f8fafc;
	--muted: #94a3b8;
	--muted-2: #64748b;
	--brand: #22c55e;
	--brand-2: #4ade80;
	--brand-dark: #86efac;
	--accent: #34d399;
	--stroke: rgba(52, 211, 153, 0.15);
	--shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	--shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
	--shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
	margin:0;
	font-family:var(--sans);
	color:var(--text);
	background:
		radial-gradient(ellipse 1400px 900px at 15% -5%, rgba(34,197,94,.1), transparent 65%),
		radial-gradient(ellipse 1000px 800px at 90% 8%, rgba(16,185,129,.08), transparent 65%),
		linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 45%, var(--bg-soft) 100%);
	min-height:100vh;
	display:flex;
	flex-direction:column;
	overflow-x:hidden;
	transition: background 0.4s ease, color 0.4s ease;
}
a{color:inherit; text-decoration:none}

.skip{
	position:absolute;
	left:-999px;
	top:12px;
	background:#0f172a;
	color:#fff;
	padding:8px 12px;
	border-radius:10px;
	text-decoration:none;
	z-index:999;
}
.skip:focus{left:12px}

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

header{
	position:sticky; top:0; z-index:50;
	backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, .75);
	border-bottom: 1px solid var(--stroke);
	transition: all 0.3s ease;
}
[data-theme="dark"] header{
	background: rgba(10, 15, 26, .8);
}
.nav{
	display:flex; align-items:center; justify-content:space-between;
	padding: 10px 0;
	gap: 8px;
}
.brand{
	display:flex; gap:8px; align-items:center;
	min-width: 0;
}
.mark{
	width: 48px; height:48px;
	object-fit: contain;
	transition: transform 0.3s ease, filter 0.3s ease;
}
.brand:hover .mark{
	transform: translateY(-2px) scale(1.05);
	filter: brightness(1.1);
}
.brand span{display:block; line-height:1.1}
.brand .title{font-weight:800; letter-spacing:-.2px; font-size: 14px}
	.brand .tag{font-size:9px; color:var(--muted); font-family:var(--mono); font-weight:500}

.themeToggle{
	width:36px; height:36px;
	border-radius:10px;
	border:1px solid var(--stroke);
	background: var(--panel);
	color: var(--text);
	cursor:pointer;
	display:flex; align-items:center; justify-content:center;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-sm);
	flex-shrink: 0;
	margin-right: 10px;
}
.themeToggle:hover{
	background: var(--bg-soft);
	border-color: var(--brand);
	transform: translateY(-2px);
}
.themeToggle svg{
	width:16px; height:16px;
	transition: transform 0.3s ease;
}
.themeToggle:hover svg{transform: rotate(20deg)}

.menuBtn{
	display:none;
	align-items:center; justify-content:center;
	border:1px solid var(--stroke);
	background: var(--panel);
	color: var(--text);
	width:40px; height:40px;
	border-radius:10px;
	cursor:pointer;
	transition: all 0.3s ease;
	font-size: 18px;
	flex-shrink: 0;
}
.menuBtn:hover{
	background: var(--bg-soft);
	border-color: var(--brand);
}

.navlinks{
	display:flex; align-items:center; gap: 2px;
}
.navlinks a{
	padding:7px 10px;
	color:var(--muted);
	border-radius:8px;
	border: 1px solid transparent;
	transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
	font-weight:500;
	position:relative;
	font-size:13px;
	white-space:nowrap;
}
.navlinks a:not(.cta):hover{
	color:var(--text);
	background: var(--panel);
	border-color: var(--stroke);
	box-shadow: var(--shadow-sm);
}

/* Dropdown menu styles */
.navDropdown{
	position: relative;
	display: inline-block;
}
.dropdownToggle{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 7px 10px;
	color: var(--muted);
	border-radius: 8px;
	border: 1px solid transparent;
	transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
	font-weight: 400;
	cursor: pointer;
	background: none;
	font-size: 13px;
	font-family: var(--sans);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.dropdownToggle:hover,
.dropdownToggle.active{
	color: var(--text);
	background: var(--panel);
	border-color: var(--stroke);
	box-shadow: var(--shadow-sm);
}
.dropdownToggle::after{
	content: '▾';
	font-size: 12px;
	transition: transform 0.3s ease;
}
.dropdownToggle.active::after{
	transform: rotate(180deg);
}
.dropdownMenu{
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 8px;
	background: var(--bg);
	border: 1px solid var(--stroke);
	border-radius: 12px;
	box-shadow: var(--shadow);
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 100;
	overflow: hidden;
}
[data-theme="dark"] .dropdownMenu{
	background: var(--bg-soft);
}
.dropdownMenu.show{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.dropdownMenu a{
	display: block;
	padding: 14px 20px;
	color: var(--muted);
	transition: all 0.3s ease;
	border: none;
	border-left: 3px solid transparent;
}
.dropdownMenu a:hover{
	background: var(--panel);
	color: var(--text);
	border-left-color: var(--brand);
	box-shadow: none;
}
.dropdownMenu a:first-child{
	border-top-left-radius: 11px;
	border-top-right-radius: 11px;
}
.dropdownMenu a:last-child{
	border-bottom-left-radius: 11px;
	border-bottom-right-radius: 11px;
}

.cta{
	display:inline-flex; align-items:center; justify-content:center; gap:6px;
	padding:7px 14px;
	border-radius:8px;
	background: linear-gradient(135deg, var(--brand), var(--accent));
	color: #ffffff !important;
	font-weight:700;
	font-size: 13px;
	box-shadow: 0 8px 24px rgba(16,185,129,.25);
	border: 1px solid rgba(255,255,255,.2);
	white-space:nowrap;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position:relative;
	overflow:hidden;
}
.cta span{
	color: #ffffff !important;
}
.cta:before{
	content:'';
	position:absolute; inset:0;
	background: linear-gradient(135deg, transparent, rgba(255,255,255,.2), transparent);
	transition: transform 0.6s;
}
.cta:hover{
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(16,185,129,.35);
}
.cta:hover:before{transform: translateX(100%)}
.cta:active{transform: translateY(-1px)}

.ghost{
	display:inline-flex; align-items:center; gap:10px;
	padding:12px 24px;
	border-radius:14px;
	border:1.5px solid var(--stroke);
	background: var(--panel);
	color: var(--brand);
	font-weight:600;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-sm);
}
.ghost:hover{
	background: var(--bg-soft);
	border-color: var(--brand);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(16,185,129,.2);
}

main{padding-bottom: 80px; flex:1}
section{padding: 48px 0}
.sectionAlt{
	background: var(--panel);
	border: 1px solid var(--stroke);
	border-radius: var(--radius);
	padding: 36px;
	box-shadow: var(--shadow-sm);
	transition: all 0.3s ease;
	margin-top: 12px;
}

.hero{padding: 72px 0 32px}
.heroGrid{
	display:grid;
	grid-template-columns: 1.25fr .85fr;
	gap: 32px;
	align-items:stretch;
}
.kicker{
	display:inline-flex; align-items:center; gap:10px;
	border:1px solid var(--stroke);
	padding:10px 20px;
	border-radius:999px;
	background: var(--panel);
	color: var(--brand);
	font-family: var(--mono);
	font-size: 13px;
	font-weight:600;
	box-shadow: var(--shadow-sm);
	animation: fadeInUp 0.6s ease;
}
.dot{
	width:8px; height:8px; border-radius:999px;
	background: var(--brand);
	box-shadow: 0 0 0 8px rgba(22,163,74,.15);
	animation: pulse 2s infinite;
}
@keyframes pulse{
	0%, 100%{opacity:1}
	50%{opacity:0.5}
}
@keyframes fadeInUp{
	from{opacity:0; transform:translateY(20px)}
	to{opacity:1; transform:translateY(0)}
}
h1{margin:20px 0 14px; font-size: var(--h1); letter-spacing:-.8px; color:var(--text-heading); font-weight:900; line-height:1.15; animation: fadeInUp 0.7s ease 0.1s both}
.lead{margin:0 0 24px; color: var(--muted); font-size: 17px; line-height:1.75; max-width: 60ch; animation: fadeInUp 0.8s ease 0.2s both}
.heroActions{display:flex; gap: 14px; flex-wrap:wrap; align-items:center; animation: fadeInUp 0.9s ease 0.3s both}

.stats{
	margin-top: 28px;
	display:grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}
.stat{
	border:1px solid var(--stroke);
	background: var(--panel);
	border-radius: var(--radius-sm);
	padding: 20px;
	box-shadow: var(--shadow-card);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
}
.stat:hover{
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(16,185,129,.15);
	border-color: var(--brand);
}
.stat b{display:block; font-size: 17px; color:var(--text-heading); font-weight:700}
.stat span{color: var(--muted); font-size: 13px; font-family: var(--mono); font-weight:500}

.heroCard{
	border:1px solid var(--stroke);
	background: var(--panel);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 28px;
	position:relative;
	overflow:hidden;
	backdrop-filter: blur(10px);
	animation: fadeInUp 1s ease 0.4s both;
}
.heroCard:before{
	content:"";
	position:absolute; inset:-80px;
	background:
		radial-gradient(circle at 18% 18%, rgba(22,163,74,.18), transparent 50%),
		radial-gradient(circle at 82% 28%, rgba(34,197,94,.14), transparent 45%);
	opacity: 0.7;
	animation: rotate 20s linear infinite;
}
@keyframes rotate{
	from{transform: rotate(0deg)}
	to{transform: rotate(360deg)}
}
.heroCard > *{position:relative}
.cardTitle{font-weight:800; letter-spacing:-.2px; font-size: 15px; color:var(--text-heading)}
.cardSub{margin-top:8px; color: var(--muted); line-height:1.75; font-size: 15px}

.chipRow{display:flex; flex-wrap:wrap; gap: 10px; margin-top: 18px}
.chip{
	border:1px solid var(--stroke);
	background: var(--bg-soft);
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13px;
	color: var(--brand);
	font-family: var(--mono);
	font-weight:600;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-sm);
}
.chip:hover{
	transform: translateY(-2px);
	border-color: var(--brand);
	box-shadow: 0 6px 20px rgba(16,185,129,.15);
}

.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap: 20px; margin-bottom: 24px}
h2{margin:0; font-size: var(--h2); letter-spacing:-.5px; color:var(--text-heading); font-weight:800; line-height:1.2}
h3{margin: 8px 0 10px; font-size: var(--h3); font-weight:700; color:var(--text-heading)}
.sectionDesc{margin:4px 0 0; color: var(--muted); line-height:1.75; max-width: 65ch; font-size:16px}

.grid{
	display:grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 20px;
}
.card{
	grid-column: span 4;
	border:1px solid var(--stroke);
	background: var(--panel);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow-card);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
}
.card:hover{
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(16,185,129,.2);
	border-color: var(--brand);
}
.card p{margin:0; color: var(--muted); line-height:1.75; font-size: 15px}

.productCard .productMedia{
	width:100%;
	border-radius: 16px;
	overflow:hidden;
	margin-bottom: 14px;
	border:1px solid var(--stroke);
	background: var(--bg-soft);
}
.productCard .productMedia img{
	width:100%;
	height:180px;
	object-fit:cover;
	display:block;
}

.icon{
	width:56px; height:56px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(22,163,74,.15), rgba(34,197,94,.12));
	border: 1px solid var(--stroke);
	display:grid; place-items:center;
	box-shadow: 0 8px 20px rgba(16,185,129,.15);
	transition: all 0.3s ease;
}
.card:hover .icon{
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 12px 28px rgba(16,185,129,.25);
}
.icon svg{width:26px; height:26px; stroke:var(--brand); stroke-width:2.5}

.wide{grid-column: span 6}
.full{grid-column: span 12}

.logos{
	display:grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
	margin-top: 20px;
}
.logo{
	border:1.5px dashed var(--stroke);
	background: var(--panel);
	border-radius: 18px;
	padding: 32px;
	text-align:center;
	color: var(--brand);
	font-family: var(--mono);
	font-size: 13px;
	font-weight:600;
	min-height: 80px;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:column;
	gap:28px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}
.logo img{
	max-width:100%;
	max-height:80px;
	object-fit:contain;
	display:block;
}
.logo:hover{
	border-color: var(--brand);
	border-style: solid;
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}

/* Gallery post cards — same look as .productCard */
.galleryPost{
	grid-column: span 4;
	padding: 0;
	overflow: hidden;
}
.galleryTrigger{
	appearance: none;
	border: 0;
	padding: 0;
	margin: 0;
	background: transparent;
	display: block;
	width: 100%;
	cursor: pointer;
	text-align: inherit;
}
.galleryTrigger:focus-visible{
	outline: 3px solid rgba(34,197,94,.55);
	outline-offset: -3px;
}
.galleryPostMedia{
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 62%;
	overflow: hidden;
	background: var(--bg-soft);
	border-bottom: 1px solid var(--stroke);
}
.galleryPostMedia img{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.4s ease;
}
.galleryPost:hover .galleryPostMedia img{
	transform: scale(1.04);
}
.galleryCountBadge{
	position: absolute;
	right: 12px;
	bottom: 12px;
	padding: 5px 11px;
	border-radius: 999px;
	background: rgba(2, 6, 23, .76);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	gap: 5px;
}
.galleryCountBadge::before{
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='3'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	opacity: .9;
}
.galleryBody{
	padding: 18px 20px 20px;
}
.galleryBody h3{margin: 0 0 6px; font-size: var(--h3)}
.galleryBody p{margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px}

.galleryModal[hidden]{display:none}
.galleryModal{
	position:fixed;
	inset:0;
	z-index:2147483647;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:24px;
}
.galleryModalBackdrop{
	position:absolute;
	inset:0;
	background:rgba(2, 6, 23, .84);
	backdrop-filter:blur(8px);
}
.galleryModalDialog{
	position:relative;
	display:grid;
	grid-template-columns:auto minmax(0, 1fr) auto;
	grid-template-rows:auto auto;
	gap:16px;
	align-items:center;
	width:min(1200px, 100%);
	max-height:calc(100vh - 48px);
	z-index:1;
}
.galleryStage{
	position:relative;
	min-width:0;
	background:rgba(15, 23, 42, .92);
	border:1px solid rgba(255,255,255,.08);
	border-radius:24px;
	overflow:hidden;
	box-shadow:0 30px 80px rgba(0,0,0,.45);
}
.galleryStage img{
	display:block;
	width:100%;
	max-height:72vh;
	object-fit:contain;
	background:#020617;
}
.galleryThumbStrip{
	grid-column:2 / 3;
	display:flex;
	gap:10px;
	padding:6px 4px 0;
	overflow-x:auto;
	scrollbar-width:thin;
	overscroll-behavior-x:contain;
}
.galleryThumb{
	appearance:none;
	border:2px solid transparent;
	padding:0;
	margin:0;
	background:#020617;
	border-radius:14px;
	overflow:hidden;
	width:96px;
	height:64px;
	flex:0 0 auto;
	cursor:pointer;
	opacity:.72;
	transition:border-color .2s ease, opacity .2s ease, transform .2s ease;
}
.galleryThumb:hover,
.galleryThumb.is-active{
	opacity:1;
	border-color:rgba(34,197,94,.9);
	transform:translateY(-2px);
}
.galleryThumb:focus-visible{
	outline:3px solid rgba(34,197,94,.45);
	outline-offset:2px;
	opacity:1;
}
.galleryThumb img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}
.galleryModalMeta{
	padding:18px 20px 22px;
	background:linear-gradient(180deg, rgba(2,6,23,.1), rgba(2,6,23,.72));
	color:#fff;
}
.galleryCounter{
	font-size:12px;
	font-family:var(--mono);
	letter-spacing:.08em;
	text-transform:uppercase;
	color:rgba(255,255,255,.68);
	margin-bottom:8px;
}
.galleryModalMeta h3{
	margin:0 0 8px;
	font-size:clamp(20px, 2vw, 28px);
	color:#fff;
}
.galleryModalMeta p{
	margin:0;
	color:rgba(255,255,255,.82);
	line-height:1.7;
}
.galleryNav,
.galleryModalClose{
	border:0;
	border-radius:999px;
	background:rgba(15, 23, 42, .76);
	color:#fff;
	cursor:pointer;
	display:flex;
	align-items:center;
	justify-content:center;
	box-shadow:0 16px 40px rgba(0,0,0,.3);
	transition:transform .2s ease, background .2s ease;
}
.galleryNav:hover,
.galleryModalClose:hover{
	transform:translateY(-2px);
	background:rgba(22, 163, 74, .92);
}
.galleryNav{
	width:56px;
	height:56px;
	font-size:34px;
	font-weight:400;
	line-height:1;
	flex-shrink:0;
}
.galleryModalClose{
	position:absolute;
	top:14px;
	right:14px;
	width:42px;
	height:42px;
	font-size:28px;
	z-index:2;
}
body.gallery-modal-open{
	overflow:hidden;
}
body.gallery-modal-open #messenger-fab,
body.gallery-modal-open #messenger-popup,
body.gallery-modal-open #toast-container,
body.gallery-modal-open #fb-customer-chat{
	opacity:0;
	pointer-events:none;
}

.socialGrid{
	display:grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 16px;
}
.socialCard{
	grid-column: span 4;
	border:1px solid var(--stroke);
	background: var(--panel);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow-card);
	transition: all 0.3s ease;
	display:flex;
	flex-direction:column;
	gap: 10px;
}
.socialCard:hover{
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(16,185,129,.2);
	border-color: var(--brand);
}
.socialIcon{
	width:64px; height:64px;
	border-radius: 16px;
	display:grid; place-items:center;
	flex-shrink:0;
}
.socialIcon svg{
	width:100%;
	height:100%;
	display:block;
}
.socialIcon img{
	width:100%;
	height:100%;
	object-fit:contain;
	display:block;
}
.socialIcon i{
	font-size:40px;
	display:block;
}
.socialIcon i.fa-instagram{
	font-size:150px;
	background: linear-gradient(135deg, #E1306C 0%, #F77737 25%, #FD1D1D 50%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.socialCard p{margin:0; color: var(--muted); line-height:1.7; font-size: 14px}
.socialLink{
	color: var(--brand);
	font-weight:600;
	margin-top:auto;
}

.ctaPanel{
	border:1px solid var(--stroke);
	background: var(--panel);
	border-radius: calc(var(--radius) + 10px);
	padding: 40px;
	box-shadow: var(--shadow);
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap: 24px;
	flex-wrap:wrap;
	position:relative;
	overflow:hidden;
	backdrop-filter: blur(10px);
}
.ctaPanel:before{
	content:'';
	position:absolute;
	top:-35%; right:-12%;
	width:420px; height:420px;
	background: radial-gradient(circle, rgba(34,197,94,.2), transparent 65%);
	border-radius: 50%;
	animation: pulse 4s ease-in-out infinite;
}
.ctaPanel > *{position:relative}
.ctaPanel p{margin:8px 0 0; color: var(--muted); line-height:1.75; font-size:16px}

.contactGrid{display:grid; grid-template-columns: 1fr 1fr; gap: 20px}
.contactCard{
	border:1px solid var(--stroke);
	background: var(--panel);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow-card);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}
.contactCard:hover{
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(16,185,129,.15);
}
.contactCard h3{margin:0 0 16px; font-size: var(--h3)}
.contactRow{display:flex; gap: 14px; align-items:flex-start; padding: 14px 0; border-top: 1px solid var(--stroke)}
.contactRow:first-of-type{border-top: 0; padding-top: 0}
.contactRow b{display:block; font-weight:600; color:var(--text-heading)}
.contactRow span{display:block; color: var(--muted); font-size: 14px; line-height:1.7}

form{display:grid; gap: 16px}
.hp-field{display:none}
label{font-size: 14px; color: var(--muted); font-weight:500}
input, textarea{
	width:100%;
	padding: 16px 18px;
	border-radius: 14px;
	border: 1.5px solid var(--stroke);
	background: var(--bg);
	color: var(--text);
	outline: none;
	transition: all 0.3s ease;
	font-size: 15px;
	font-family: var(--sans);
}
input:hover, textarea:hover{
	border-color: var(--brand);
	background: var(--bg-soft);
}
textarea{min-height: 150px; resize: vertical}
input:focus, textarea:focus{
	border-color: var(--brand);
	box-shadow: 0 0 0 4px rgba(16,185,129,.1);
	background: var(--bg);
}
.formHelp{color: var(--muted); font-size: 13px; line-height:1.7}
.formStatus{color: var(--brand-dark); font-size: 14px; min-height: 20px}
.formStatus.is-pending{color: var(--text-heading)}
.formStatus.is-success{color: #047857}
.formStatus.is-warning{color: #b45309}
.formStatus.is-error{color: #b91c1c}

footer{
	border-top: 1px solid var(--stroke);
	padding: 32px 0;
	color: var(--muted);
	background: var(--bg-soft);
	margin-top:auto;
}
.foot{
	display:flex; align-items:center; justify-content:space-between; gap: 16px; flex-wrap:wrap;
}
.foot a{
	color: var(--muted);
	transition: color 0.3s ease;
	font-weight:500;
}
.foot a:hover{color: var(--brand)}

.note{
	display:inline-flex;
	gap:14px;
	align-items:flex-start;
	padding: 16px 20px;
	border-radius: 14px;
	border: 1px solid var(--stroke);
	background: var(--panel);
	color: var(--muted);
	font-size: 14px;
	line-height:1.7;
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(10px);
}

@media (max-width: 940px){
	.heroGrid{grid-template-columns: 1fr}
	.stats{grid-template-columns: repeat(2, minmax(0, 1fr))}
	.logos{grid-template-columns: repeat(3, minmax(0, 1fr))}
	.hero{padding: 56px 0 24px}
}
@media (max-width: 760px){
	.nav{overflow:hidden}
	.brand{flex:1 1 0; min-width:0; overflow:hidden}
	.brand span{display:block; min-width:0; overflow:hidden}
	.brand .title{overflow:hidden; text-overflow:ellipsis; white-space:nowrap}
	.brand .tag{overflow:hidden; text-overflow:ellipsis; white-space:nowrap; display:block}
	.mark{width:36px; height:36px; flex-shrink:0}
	.themeToggle{width:36px; height:36px; align-self:center; margin-right:0}
	.menuBtn{display:inline-flex; flex-shrink:0}
	.stats{grid-template-columns: 1fr}
	.stat b{font-size:15px}
	.stat span{font-size:12px}
	.navlinks{
		display:none;
		position:absolute;
		left: var(--pad);
		right: var(--pad);
		top: 76px;
		padding: 12px;
		border-radius: 14px;
		border: 1px solid var(--stroke);
		background: var(--panel);
		backdrop-filter: blur(20px) saturate(180%);
		flex-direction: column;
		align-items:stretch;
		box-shadow: 0 16px 48px rgba(16,185,129,.2);
	}
	.navlinks a{padding: 10px 12px; font-size: 13px}
	.navlinks.open{display:flex; animation: fadeInUp 0.3s ease}
	/* Mobile dropdown styles */
	.navDropdown{display: block}
	.dropdownMenu{position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; box-shadow: none; margin-top: 0; min-width: auto; max-height: 0; overflow: hidden; transition: max-height 0.3s ease}
	.dropdownMenu.show{max-height: 500px}
	.dropdownMenu a{padding: 12px 16px 12px 32px; border-left: none; border-right: 3px solid transparent}
	.dropdownMenu a:hover{border-right-color: var(--brand); border-left: none}
	.dropdownToggle::after{font-size: 8px}
	.cta{justify-content:center}
	.card{grid-column: span 12}
	.wide{grid-column: span 12}
	.logos{grid-template-columns: repeat(2, minmax(0, 1fr))}
	.galleryPost{grid-column: span 12}
	.galleryModal{padding:12px}
	.galleryModalDialog{grid-template-columns:1fr;gap:12px}
	.galleryNav{
		position:absolute;
		top:50%;
		transform:translateY(-50%);
		z-index:2;
	}
	.galleryNav.prev{left:12px}
	.galleryNav.next{right:12px}
	.galleryNav:hover{transform:translateY(calc(-50% - 2px))}
	.galleryStage img{max-height:60vh}
	.galleryThumbStrip{
		grid-column:auto;
		padding:4px 0 0;
	}
	.galleryThumb{
		width:76px;
		height:52px;
	}
	.socialCard{grid-column: span 12}
	.contactGrid{grid-template-columns: 1fr}
	.sectionAlt{padding: 24px}
	.ctaPanel{padding: 28px}
	.hero{padding: 40px 0 20px}
	h1{font-size: clamp(32px, 8vw, 48px)}
}


@media (prefers-reduced-motion: reduce){
	html{scroll-behavior:auto}
	*{transition:none !important; animation:none !important}
}
