/* =========================================================
   Invest in Syria — Hala Cham Investment
   Liquid-glass design system
   ========================================================= */

:root{
	/* Brand palette — drawn from the Hala Cham olive/gold identity */
	--ink:#23281c;
	--ink-soft:#565c4a;
	--ink-faint:#7c8168;

	--olive-900:#1b2016;
	--olive-800:#242b1d;
	--olive-700:#3a4230;
	--olive-600:#5c6353;
	--olive-500:#767d64;
	--olive-400:#98a084;
	--olive-200:#cdd2bd;

	--sand-50:#fbf9f3;
	--sand-100:#f5f0e5;
	--sand-200:#ece3d0;
	--sand-300:#e0d4b8;

	--gold-400:#d8b276;
	--gold-500:#c9a15a;
	--gold-600:#a9803c;

	--glass-light-bg:rgba(255,255,255,.5);
	--glass-light-bg-strong:rgba(255,255,255,.68);
	--glass-light-border:rgba(255,255,255,.65);
	--glass-dark-bg:rgba(255,255,255,.06);
	--glass-dark-bg-strong:rgba(255,255,255,.1);
	--glass-dark-border:rgba(255,255,255,.16);

	--shadow-soft:0 20px 60px -25px rgba(27,32,22,.35);
	--shadow-lift:0 30px 80px -30px rgba(27,32,22,.45);

	--radius-lg:28px;
	--radius-md:18px;
	--radius-sm:12px;
	--radius-pill:999px;

	--font-display:'Fraunces', 'Iowan Old Style', Georgia, serif;
	--font-body:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--container:1180px;
	--ease:cubic-bezier(.16,.8,.28,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
body{
	margin:0;
	font-family:var(--font-body);
	color:var(--ink);
	background:var(--sand-50);
	line-height:1.6;
	-webkit-font-smoothing:antialiased;
	overflow-x:hidden;
}
img,svg{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;margin:0;padding:0;}
button{font:inherit;cursor:pointer;}
input,textarea,select{font:inherit;}
h1,h2,h3,h4,p{margin:0;}

.screen-reader-text{
	position:absolute;width:1px;height:1px;overflow:hidden;
	clip:rect(1px,1px,1px,1px);white-space:nowrap;
}
.skip-link{
	position:fixed;top:-100px;left:1rem;z-index:9999;
	background:var(--olive-900);color:#fff;padding:.8rem 1.2rem;border-radius:var(--radius-sm);
	transition:top .2s var(--ease);
}
.skip-link:focus{top:1rem;}

.hci-container{
	width:100%;
	max-width:var(--container);
	margin-inline:auto;
	padding-inline:24px;
}

.hci-page{position:relative;overflow-x:clip;}

/* ---------- Buttons ---------- */
.hci-btn{
	display:inline-flex;align-items:center;gap:.5rem;
	padding:.85rem 1.5rem;
	border-radius:var(--radius-pill);
	font-weight:600;font-size:.95rem;
	border:1px solid transparent;
	transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
	white-space:nowrap;
}
.hci-btn--solid{
	background:linear-gradient(135deg,var(--gold-500),var(--gold-600));
	color:#241c0d;
	box-shadow:0 12px 30px -12px rgba(169,128,60,.65);
}
.hci-btn--solid:hover{transform:translateY(-2px);box-shadow:0 18px 36px -14px rgba(169,128,60,.75);}
.hci-btn--ghost{
	background:var(--glass-dark-bg);
	border-color:var(--glass-dark-border);
	color:#f4efe4;
	backdrop-filter:blur(14px);
	-webkit-backdrop-filter:blur(14px);
}
.hci-btn--ghost:hover{background:var(--glass-dark-bg-strong);transform:translateY(-2px);}
.hci-btn--outline-dark{
	background:transparent;
	border-color:rgba(35,40,28,.25);
	color:var(--ink);
}
.hci-btn--outline-dark:hover{background:rgba(35,40,28,.06);}
.hci-btn--block{width:100%;justify-content:center;}
.hci-btn--lg{padding:1rem 1.9rem;font-size:1.02rem;}

/* ---------- Header ---------- */
.hci-header{position:sticky;top:0;z-index:100;padding:14px 16px 0;}
.hci-header__glass{
	background:var(--glass-dark-bg);
	border:1px solid var(--glass-dark-border);
	backdrop-filter:blur(22px) saturate(140%);
	-webkit-backdrop-filter:blur(22px) saturate(140%);
	border-radius:var(--radius-md);
	box-shadow:var(--shadow-soft);
	transition:background .3s var(--ease), border-color .3s var(--ease);
}
.hci-header.is-scrolled .hci-header__glass{
	background:rgba(27,32,22,.72);
	border-color:rgba(255,255,255,.14);
}
.hci-header__row{
	display:flex;align-items:center;gap:1.5rem;
	padding-block:10px;color:#f6f2e6;
}
.hci-brand{display:flex;align-items:center;gap:.65rem;}
.hci-brand__mark{display:inline-flex;filter:drop-shadow(0 4px 10px rgba(0,0,0,.25));}
.hci-brand__text{display:flex;flex-direction:column;line-height:1.1;}
.hci-brand__title{font-family:var(--font-display);font-weight:600;font-size:1.05rem;letter-spacing:.04em;}
.hci-brand__sub{font-size:.65rem;letter-spacing:.32em;color:var(--gold-400);font-weight:600;}

.hci-nav{flex:1;display:flex;justify-content:center;}
.hci-nav__list{display:flex;gap:2rem;}
.hci-nav__cta{display:none;}
.hci-nav__list a{
	font-size:.92rem;font-weight:500;color:rgba(246,242,230,.82);
	position:relative;padding:.3rem 0;
	transition:color .2s var(--ease);
}
.hci-nav__list a:hover{color:#fff;}
.hci-nav__list a::after{
	content:"";position:absolute;left:0;bottom:-2px;width:0;height:1.5px;
	background:var(--gold-400);transition:width .25s var(--ease);
}
.hci-nav__list a:hover::after{width:100%;}

.hci-header__actions{display:flex;align-items:center;gap:.75rem;}
.hci-header__parent{display:none;}

.hci-nav-toggle{
	display:none;flex-direction:column;justify-content:center;gap:5px;
	width:42px;height:42px;border-radius:var(--radius-sm);
	background:var(--glass-dark-bg);border:1px solid var(--glass-dark-border);
	margin-left:.25rem;
}
.hci-nav-toggle__bar{width:18px;height:1.6px;background:#f6f2e6;margin-inline:auto;transition:transform .25s var(--ease), opacity .25s var(--ease);}
.hci-nav-toggle[aria-expanded="true"] .hci-nav-toggle__bar:nth-child(1){transform:translateY(6.6px) rotate(45deg);}
.hci-nav-toggle[aria-expanded="true"] .hci-nav-toggle__bar:nth-child(2){opacity:0;}
.hci-nav-toggle[aria-expanded="true"] .hci-nav-toggle__bar:nth-child(3){transform:translateY(-6.6px) rotate(-45deg);}

/* ---------- Section basics ---------- */
section{position:relative;}
.hci-section{padding:clamp(64px,9vw,120px) 0;}
.hci-section--tight{padding-block:clamp(48px,7vw,88px);}
.hci-eyebrow{
	display:inline-flex;align-items:center;gap:.5rem;
	font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;
	color:var(--gold-600);font-weight:700;margin-bottom:1rem;
}
.hci-eyebrow::before{content:"";width:22px;height:1.5px;background:var(--gold-500);}
.hci-eyebrow--light{color:var(--gold-400);}
.hci-section-head{max-width:720px;margin-bottom:3rem;}
.hci-section-head--center{margin-inline:auto;text-align:center;}
h2.hci-h2{
	font-family:var(--font-display);
	font-size:clamp(2rem,3.6vw,2.9rem);
	font-weight:600;line-height:1.15;color:var(--olive-900);
}
h2.hci-h2 em{font-style:italic;color:var(--gold-600);font-weight:500;}
.hci-h2--light{color:#fbf9f3;}
.hci-h2--light em{color:var(--gold-400);}
.hci-lede{margin-top:1rem;font-size:1.08rem;color:var(--ink-soft);}
.hci-lede--light{color:rgba(251,249,243,.78);}

/* ---------- Glass surfaces ---------- */
.hci-glass{
	background:var(--glass-light-bg);
	border:1px solid var(--glass-light-border);
	backdrop-filter:blur(18px) saturate(160%);
	-webkit-backdrop-filter:blur(18px) saturate(160%);
	border-radius:var(--radius-lg);
	box-shadow:var(--shadow-soft);
}
.hci-glass--dark{
	background:var(--glass-dark-bg);
	border:1px solid var(--glass-dark-border);
	color:#f4efe4;
}

/* ---------- Hero ---------- */
.hci-hero{
	position:relative;
	background:linear-gradient(180deg,#232a1c 0%,#1b2015 60%,#171b12 100%);
	padding-top:clamp(70px,12vw,140px);
	padding-bottom:clamp(90px,14vw,180px);
	overflow:hidden;
}
.hci-hero__skyline{position:absolute;inset:auto 0 0 0;height:46%;opacity:.9;pointer-events:none;}
.hci-hero__pattern{
	position:absolute;top:-40px;right:-40px;width:420px;height:420px;
	background:url('../images/pattern-star.svg') no-repeat center/contain;
	opacity:.35;pointer-events:none;
}
.hci-hero__glow{
	position:absolute;top:10%;left:50%;translate:-50% 0;
	width:70vw;height:70vw;max-width:900px;max-height:900px;
	background:radial-gradient(circle,rgba(201,161,90,.18),transparent 60%);
	pointer-events:none;
}
.hci-hero__inner{position:relative;z-index:2;display:grid;grid-template-columns:1.1fr .9fr;gap:3rem;align-items:center;}
.hci-hero__content{color:#fbf9f3;}
.hci-hero__title{
	font-family:var(--font-display);
	font-size:clamp(2.5rem,5.2vw,4.1rem);
	font-weight:600;line-height:1.08;letter-spacing:-.01em;
}
.hci-hero__title em{font-style:italic;color:var(--gold-400);font-weight:500;}
.hci-hero__text{margin-top:1.4rem;font-size:1.15rem;color:rgba(251,249,243,.8);max-width:540px;}
.hci-hero__actions{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2.2rem;}
.hci-hero__stats{display:flex;flex-wrap:wrap;gap:2.2rem;margin-top:3rem;}
.hci-stat{}
.hci-stat__value{font-family:var(--font-display);font-size:1.6rem;color:var(--gold-400);font-weight:600;}
.hci-stat__label{font-size:.82rem;color:rgba(251,249,243,.65);margin-top:.15rem;}

.hci-hero__panel{position:relative;min-height:420px;}
.hci-card-float{
	position:absolute;padding:1.3rem 1.5rem;
	color:#fbf9f3;width:238px;
	animation:hci-float 7s ease-in-out infinite;
}
.hci-card-float--a{top:0;right:6%;animation-delay:0s;}
.hci-card-float--b{top:46%;left:0;width:210px;animation-delay:1.4s;}
.hci-card-float--c{bottom:2%;right:14%;width:200px;animation-delay:.7s;}
.hci-card-float__eyebrow{font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-400);font-weight:700;margin-bottom:.5rem;}
.hci-card-float__title{font-family:var(--font-display);font-size:1.08rem;font-weight:600;}
.hci-card-float__meta{margin-top:.5rem;font-size:.82rem;color:rgba(251,249,243,.65);}
.hci-card-float__row{display:flex;align-items:center;gap:.5rem;margin-top:.7rem;font-size:.82rem;color:rgba(251,249,243,.75);}
.hci-dot{width:7px;height:7px;border-radius:50%;background:var(--gold-400);}

@keyframes hci-float{
	0%,100%{transform:translateY(0);}
	50%{transform:translateY(-14px);}
}

/* ---------- Why Syria ---------- */
.hci-why{background:var(--sand-50);}
.hci-why__grid{display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:start;}
.hci-why__list{display:grid;gap:1.25rem;margin-top:2rem;}
.hci-reason{
	display:flex;gap:1rem;padding:1.4rem;
	background:var(--sand-100);border:1px solid var(--sand-300);border-radius:var(--radius-md);
	transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.hci-reason:hover{transform:translateY(-3px);box-shadow:var(--shadow-soft);}
.hci-reason__num{
	font-family:var(--font-display);font-size:1.4rem;color:var(--gold-600);font-weight:600;
	min-width:2rem;
}
.hci-reason h3{font-size:1.05rem;font-weight:700;color:var(--olive-900);}
.hci-reason p{margin-top:.35rem;font-size:.95rem;color:var(--ink-soft);}

.hci-why__map{
	padding:2rem;
	position:relative;overflow:hidden;
}
.hci-why__map h3{font-family:var(--font-display);font-size:1.3rem;color:var(--olive-900);}
.hci-why__map p{margin-top:.5rem;color:var(--ink-soft);font-size:.95rem;}
.hci-city-grid{display:grid;grid-template-columns:1fr 1fr;gap:.6rem;margin-top:1.5rem;}
.hci-city{
	display:flex;align-items:center;gap:.5rem;
	padding:.65rem .85rem;border-radius:var(--radius-sm);
	background:rgba(255,255,255,.6);border:1px solid var(--sand-300);
	font-size:.88rem;font-weight:600;color:var(--olive-800);
}
.hci-why__note{margin-top:1.4rem;font-size:.82rem;color:var(--ink-faint);border-top:1px dashed var(--sand-300);padding-top:1rem;}

/* ---------- Services ---------- */
.hci-services{background:var(--sand-100);}
.hci-services__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem;}
.hci-service{
	padding:1.8rem 1.6rem;
	background:var(--glass-light-bg-strong);
	border:1px solid var(--sand-300);
	border-radius:var(--radius-md);
	transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.hci-service:hover{transform:translateY(-5px);box-shadow:var(--shadow-lift);border-color:var(--gold-500);}
.hci-service__icon{
	width:52px;height:52px;border-radius:14px;
	display:flex;align-items:center;justify-content:center;
	background:linear-gradient(135deg,var(--olive-700),var(--olive-900));
	color:var(--gold-400);margin-bottom:1.1rem;
}
.hci-service h3{font-size:1.05rem;font-weight:700;color:var(--olive-900);}
.hci-service p{margin-top:.5rem;font-size:.9rem;color:var(--ink-soft);}

/* ---------- Opportunities / sectors ---------- */
.hci-opportunities{background:var(--olive-900);color:#fbf9f3;position:relative;overflow:hidden;}
.hci-opportunities::before{
	content:"";position:absolute;inset:0;
	background:radial-gradient(circle at 85% 10%,rgba(201,161,90,.16),transparent 55%);
	pointer-events:none;
}
.hci-opps__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;position:relative;z-index:1;}
.hci-opp{
	padding:1.8rem;color:#fbf9f3;
	display:flex;flex-direction:column;min-height:280px;
}
.hci-opp__index{font-family:var(--font-display);color:var(--gold-400);font-weight:600;}
.hci-opp__tag{
	margin-top:auto;align-self:flex-start;
	font-size:.72rem;text-transform:uppercase;letter-spacing:.08em;
	padding:.3rem .7rem;border-radius:var(--radius-pill);
	background:var(--glass-dark-bg);border:1px solid var(--glass-dark-border);
	margin-bottom:.9rem;
}
.hci-opp h3{font-family:var(--font-display);font-size:1.25rem;margin-top:.6rem;}
.hci-opp p{margin-top:.6rem;font-size:.92rem;color:rgba(251,249,243,.72);}
.hci-opp__meta{margin-top:1.1rem;display:flex;gap:1rem;font-size:.82rem;color:rgba(251,249,243,.6);}

.hci-tags{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:2.5rem;position:relative;z-index:1;}
.hci-tags span{
	font-size:.82rem;padding:.45rem .95rem;border-radius:var(--radius-pill);
	background:var(--glass-dark-bg);border:1px solid var(--glass-dark-border);
}

/* ---------- Funds ---------- */
.hci-funds{background:var(--sand-50);}
.hci-funds__wrap{
	display:grid;grid-template-columns:1fr 1fr;gap:0;
	overflow:hidden;border-radius:var(--radius-lg);
	box-shadow:var(--shadow-lift);
}
.hci-funds__side{
	background:linear-gradient(155deg,#2c3326,#1b2015);
	color:#fbf9f3;padding:3rem;
	display:flex;flex-direction:column;justify-content:center;
	position:relative;
}
.hci-funds__side::after{
	content:"";position:absolute;inset:0;
	background:url('../images/pattern-star.svg') no-repeat 110% 0/280px;opacity:.25;pointer-events:none;
}
.hci-funds__side h2{font-family:var(--font-display);font-size:2rem;position:relative;z-index:1;}
.hci-funds__side p{margin-top:1rem;color:rgba(251,249,243,.75);position:relative;z-index:1;}
.hci-funds__list{background:var(--sand-100);padding:3rem;display:grid;gap:1.4rem;}
.hci-fund-item{display:flex;gap:1rem;align-items:flex-start;}
.hci-fund-item__check{
	width:26px;height:26px;border-radius:50%;flex-shrink:0;
	display:flex;align-items:center;justify-content:center;
	background:linear-gradient(135deg,var(--gold-500),var(--gold-600));color:#241c0d;
}
.hci-fund-item h3{font-size:1rem;font-weight:700;color:var(--olive-900);}
.hci-fund-item p{margin-top:.3rem;font-size:.9rem;color:var(--ink-soft);}

/* ---------- Process ---------- */
.hci-process{background:var(--sand-100);}
.hci-steps{
	display:grid;grid-template-columns:repeat(5,1fr);gap:1.2rem;
	position:relative;
}
.hci-step{
	padding:1.6rem 1.3rem;
	background:var(--glass-light-bg-strong);border:1px solid var(--sand-300);border-radius:var(--radius-md);
	position:relative;
}
.hci-step__num{
	font-family:var(--font-display);font-size:1.5rem;font-weight:600;color:var(--gold-600);
}
.hci-step h3{margin-top:.7rem;font-size:.98rem;font-weight:700;color:var(--olive-900);}
.hci-step p{margin-top:.4rem;font-size:.85rem;color:var(--ink-soft);}

/* ---------- Consultation form ---------- */
.hci-consult{
	background:linear-gradient(180deg,#20261a,#171b12);
	color:#fbf9f3;position:relative;overflow:hidden;
}
.hci-consult::before{
	content:"";position:absolute;top:-10%;left:-10%;width:60%;height:60%;
	background:radial-gradient(circle,rgba(201,161,90,.16),transparent 60%);pointer-events:none;
}
.hci-consult__grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:3rem;position:relative;z-index:1;}
.hci-consult__side h2{font-family:var(--font-display);font-size:2.2rem;}
.hci-consult__side p{margin-top:1rem;color:rgba(251,249,243,.75);}
.hci-consult__points{margin-top:2rem;display:grid;gap:1rem;}
.hci-consult__points li{display:flex;gap:.7rem;align-items:flex-start;font-size:.92rem;color:rgba(251,249,243,.85);}
.hci-consult__points .hci-fund-item__check{width:22px;height:22px;}
.hci-consult__contact{margin-top:2.2rem;display:grid;gap:.7rem;}
.hci-contact-line{display:flex;align-items:center;gap:.6rem;font-size:.92rem;color:rgba(251,249,243,.85);}
.hci-contact-line .icon-wrap{
	width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;
	background:var(--glass-dark-bg);border:1px solid var(--glass-dark-border);color:var(--gold-400);
}

.hci-form-panel{padding:2.2rem;}
.hci-form-tabs{display:flex;gap:.6rem;margin-bottom:1.6rem;background:var(--glass-dark-bg);padding:.35rem;border-radius:var(--radius-pill);border:1px solid var(--glass-dark-border);}
.hci-form-tab{
	flex:1;text-align:center;padding:.6rem 1rem;border-radius:var(--radius-pill);
	font-size:.88rem;font-weight:600;color:rgba(251,249,243,.7);
	background:transparent;border:none;transition:all .25s var(--ease);
}
.hci-form-tab.is-active{background:linear-gradient(135deg,var(--gold-500),var(--gold-600));color:#241c0d;}

.hci-field-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.hci-field{margin-bottom:1.1rem;}
.hci-field label{display:block;font-size:.82rem;font-weight:600;color:rgba(251,249,243,.75);margin-bottom:.4rem;}
.hci-field input,
.hci-field select,
.hci-field textarea{
	width:100%;padding:.8rem 1rem;border-radius:var(--radius-sm);
	background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.18);
	color:#fbf9f3;outline:none;transition:border-color .2s var(--ease), background .2s var(--ease);
}
.hci-field input::placeholder,
.hci-field textarea::placeholder{color:rgba(251,249,243,.4);}
.hci-field input:focus,
.hci-field select:focus,
.hci-field textarea:focus{border-color:var(--gold-500);background:rgba(255,255,255,.12);}
.hci-field select option{color:#1b2015;}
.hci-field textarea{resize:vertical;min-height:110px;}
.hci-field--hidden{position:absolute;left:-9999px;top:-9999px;}

.hci-radio-group{display:flex;gap:.8rem;flex-wrap:wrap;}
.hci-radio{
	display:flex;align-items:center;gap:.5rem;
	padding:.6rem 1rem;border-radius:var(--radius-pill);
	background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.16);
	font-size:.85rem;cursor:pointer;transition:all .2s var(--ease);
}
.hci-radio input{accent-color:var(--gold-500);}
.hci-radio:has(input:checked){border-color:var(--gold-500);background:rgba(201,161,90,.14);}

.hci-form-note{margin-top:.4rem;font-size:.78rem;color:rgba(251,249,243,.55);}
.hci-form-status{
	margin-top:1.2rem;padding:.9rem 1.1rem;border-radius:var(--radius-sm);
	font-size:.9rem;display:none;
}
.hci-form-status.is-success{display:block;background:rgba(120,168,110,.16);border:1px solid rgba(120,168,110,.4);color:#cdeecb;}
.hci-form-status.is-error{display:block;background:rgba(200,92,80,.16);border:1px solid rgba(200,92,80,.4);color:#f3c7c1;}

/* ---------- FAQ ---------- */
.hci-faq{background:var(--sand-50);}
.hci-faq__list{max-width:820px;margin-inline:auto;display:grid;gap:1rem;}
.hci-faq-item{
	background:var(--sand-100);border:1px solid var(--sand-300);border-radius:var(--radius-md);
	overflow:hidden;
}
.hci-faq-item__q{
	width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;
	padding:1.2rem 1.4rem;background:none;border:none;text-align:left;
	font-size:1rem;font-weight:700;color:var(--olive-900);
}
.hci-faq-item__q .plus{
	flex-shrink:0;width:26px;height:26px;border-radius:50%;
	display:flex;align-items:center;justify-content:center;
	background:var(--sand-200);color:var(--olive-800);font-size:1.1rem;
	transition:transform .3s var(--ease), background .3s var(--ease);
}
.hci-faq-item.is-open .hci-faq-item__q .plus{transform:rotate(45deg);background:var(--gold-500);color:#241c0d;}
.hci-faq-item__a{max-height:0;overflow:hidden;transition:max-height .35s var(--ease);}
.hci-faq-item__a-inner{padding:0 1.4rem 1.3rem;font-size:.92rem;color:var(--ink-soft);}

/* ---------- Final CTA ---------- */
.hci-cta{
	background:linear-gradient(135deg,#2c3326,#1b2015);
	color:#fbf9f3;text-align:center;position:relative;overflow:hidden;
}
.hci-cta::before{
	content:"";position:absolute;inset:0;
	background:url('../images/pattern-star.svg') no-repeat center/600px;opacity:.18;pointer-events:none;
}
.hci-cta__inner{position:relative;z-index:1;max-width:680px;margin-inline:auto;}
.hci-cta h2{font-family:var(--font-display);font-size:clamp(2rem,4vw,2.8rem);}
.hci-cta p{margin-top:1rem;color:rgba(251,249,243,.78);font-size:1.05rem;}
.hci-cta__actions{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap;margin-top:2rem;}

/* ---------- Footer ---------- */
.hci-footer{background:var(--olive-900);color:#f1eee0;position:relative;padding-top:4rem;overflow:hidden;}
.hci-footer__glow{
	position:absolute;top:0;left:50%;translate:-50% -50%;
	width:60vw;height:40vw;border-radius:50%;
	background:radial-gradient(circle,rgba(201,161,90,.14),transparent 65%);pointer-events:none;
}
.hci-footer__top{
	position:relative;z-index:1;
	display:grid;grid-template-columns:1.6fr 1fr 1fr 1.1fr;gap:2.5rem;
	padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.1);
}
.hci-brand--footer .hci-brand__title{color:#fbf9f3;}
.hci-footer__tag{margin-top:1rem;font-size:.9rem;color:rgba(241,238,224,.65);max-width:320px;}
.hci-footer__parent-link{display:inline-block;margin-top:1rem;font-size:.85rem;color:var(--gold-400);font-weight:600;}
.hci-footer__col h3{font-size:.82rem;text-transform:uppercase;letter-spacing:.1em;color:var(--gold-400);margin-bottom:1rem;}
.hci-footer__col ul{display:grid;gap:.65rem;}
.hci-footer__col a{font-size:.9rem;color:rgba(241,238,224,.78);}
.hci-footer__col a:hover{color:#fff;}
.hci-footer__contact li{font-size:.9rem;color:rgba(241,238,224,.78);}
.hci-footer__bottom{
	position:relative;z-index:1;
	padding-block:1.6rem 2.2rem;
	display:flex;flex-direction:column;gap:.6rem;
	font-size:.8rem;color:rgba(241,238,224,.55);
}
.hci-footer__disclaimer{max-width:900px;line-height:1.6;}

/* ---------- Reveal-on-scroll ---------- */
[data-reveal]{opacity:0;transform:translateY(22px);transition:opacity .7s var(--ease), transform .7s var(--ease);}
[data-reveal].is-visible{opacity:1;transform:translateY(0);}

/* ---------- Responsive ---------- */
@media (max-width:1080px){
	.hci-services__grid{grid-template-columns:repeat(2,1fr);}
	.hci-opps__grid{grid-template-columns:repeat(2,1fr);}
	.hci-steps{grid-template-columns:repeat(3,1fr);}
	.hci-why__grid{grid-template-columns:1fr;}
	.hci-funds__wrap{grid-template-columns:1fr;}
	.hci-consult__grid{grid-template-columns:1fr;}
	.hci-hero__inner{grid-template-columns:1fr;}
	.hci-hero__panel{min-height:360px;margin-top:2rem;}
}

@media (max-width:860px){
	.hci-header__row{gap:.6rem;}
	.hci-header__parent{display:none !important;}
	.hci-header__actions{flex:0 0 auto;}
	.hci-header__actions .hci-btn--ghost{display:none;}
	.hci-header__actions .hci-header__cta{display:none;}
	.hci-nav{
		position:fixed;inset:78px 16px auto 16px;
		flex-direction:column;
		background:rgba(27,32,22,.94);
		border:1px solid var(--glass-dark-border);
		border-radius:var(--radius-md);
		padding:1.4rem;
		max-height:calc(100vh - 100px);
		overflow-y:auto;
		backdrop-filter:blur(20px);
		display:none;
	}
	.hci-nav.is-open{display:flex;}
	.hci-nav__list{flex-direction:column;gap:1.1rem;}
	.hci-nav__cta{display:block;margin-top:1.3rem;padding-top:1.3rem;border-top:1px solid var(--glass-dark-border);}
	.hci-nav-toggle{display:flex;flex-shrink:0;}
	.hci-field-row{grid-template-columns:1fr;}
}

@media (max-width:400px){
	.hci-brand__title{font-size:.92rem;}
	.hci-brand__sub{font-size:.58rem;letter-spacing:.24em;}
}

@media (max-width:720px){
	.hci-services__grid{grid-template-columns:1fr;}
	.hci-opps__grid{grid-template-columns:1fr;}
	.hci-steps{grid-template-columns:1fr;}
	.hci-city-grid{grid-template-columns:1fr;}
	.hci-hero__stats{gap:1.4rem;}
	.hci-card-float{position:static;width:100%;margin-bottom:1rem;animation:none;}
	.hci-hero__panel{display:flex;flex-direction:column;min-height:0;}
	.hci-funds__side,.hci-funds__list{padding:2rem 1.4rem;}
	.hci-form-panel{padding:1.6rem;}
	.hci-footer__top{grid-template-columns:1fr;gap:2rem;}
}
