/* ============================================================
   AEGISZ · Production CSS · v2.0
   Apple/Stripe-inspired · Premium Minimal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  --ink:        #0a0a0a;
  --ink-soft:   #3a3a3a;
  --ink-muted:  #6b6b6b;
  --ink-faint:  #9b9b9b;
  --white:      #ffffff;
  --surface:    #f7f7f5;
  --border:     #e8e8e4;
  --border-2:   rgba(0,0,0,.06);

  --glass-bg:   rgba(255,255,255,.72);
  --glass-blur: blur(20px);

  --sh-sm:  0 2px 12px rgba(0,0,0,.06);
  --sh-md:  0 4px 32px rgba(0,0,0,.08);
  --sh-lg:  0 16px 64px rgba(0,0,0,.12);
  --sh-xl:  0 32px 80px rgba(0,0,0,.16);

  --r-sm:  10px;
  --r:     16px;
  --r-lg:  24px;
  --r-xl:  32px;

  --ff-display: 'Syne', sans-serif;
  --ff-body:    'DM Sans', sans-serif;

  --ease:      cubic-bezier(.25,.46,.45,.94);
  --ease-out:  cubic-bezier(.16,1,.3,1);
  --t:         .35s;
  --t-fast:    .18s;
}

/* ── RESET ── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
body { font-family:var(--ff-body); background:var(--white); color:var(--ink); overflow-x:hidden; line-height:1.6; }
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-track { background:var(--surface); }
::-webkit-scrollbar-thumb { background:var(--ink); border-radius:2px; }

/* ── TYPOGRAPHY SCALE ── */
h1,h2,h3,h4,h5 { font-family:var(--ff-display); letter-spacing:-.02em; line-height:1.08; }

.t-hero   { font-size:clamp(2rem,3.8vw,3.75rem);  font-weight:800; letter-spacing:-.035em; line-height:1.05; }
.t-xl     { font-size:clamp(2rem,4.5vw,3.75rem);  font-weight:700; letter-spacing:-.03em; }
.t-lg     { font-size:clamp(1.5rem,2.5vw,2.25rem); font-weight:700; letter-spacing:-.025em; }
.t-md     { font-size:clamp(1.1rem,1.5vw,1.4rem);  font-weight:700; letter-spacing:-.02em; }
.t-body   { font-size:clamp(.95rem,1.2vw,1.1rem); font-weight:300; line-height:1.8; color:var(--ink-muted); }
.t-label  { font-size:.72rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-faint); font-family:var(--ff-display); }
.t-sm     { font-size:.85rem; color:var(--ink-muted); }

/* ── LAYOUT ── */
.container { max-width:1160px; margin:0 auto; padding:0 2rem; }
section { padding:112px 0; }

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.85rem 1.85rem; border-radius:50px;
  font-size:.88rem; font-weight:500; font-family:var(--ff-body);
  transition:transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  white-space:nowrap;
}
.btn svg { width:15px; height:15px; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0; }

.btn-primary {
  background:var(--ink); color:var(--white);
  box-shadow:0 1px 0 rgba(255,255,255,.12) inset;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:var(--sh-lg); }
.btn-primary:active { transform:translateY(0); }

.btn-ghost {
  background:transparent; color:var(--ink);
  border:1.5px solid var(--border);
  backdrop-filter:var(--glass-blur);
}
.btn-ghost:hover { background:var(--ink); color:var(--white); border-color:var(--ink); transform:translateY(-2px); }

.btn-white {
  background:var(--white); color:var(--ink);
  box-shadow:var(--sh-sm);
}
.btn-white:hover { transform:translateY(-2px); box-shadow:var(--sh-md); }

.btn-outline-white {
  background:transparent; color:rgba(255,255,255,.85);
  border:1.5px solid rgba(255,255,255,.25);
}
.btn-outline-white:hover { background:var(--white); color:var(--ink); border-color:var(--white); transform:translateY(-2px); }

/* ── NAV ── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:900;
  padding:1.25rem 2rem;
  transition:background var(--t) var(--ease), padding var(--t) var(--ease), border-color var(--t) var(--ease);
  border-bottom:1px solid transparent;
}
.nav.scrolled {
  background:var(--glass-bg);
  backdrop-filter:var(--glass-blur);
  -webkit-backdrop-filter:var(--glass-blur);
  border-color:var(--border-2);
  padding:.85rem 2rem;
}
.nav-inner { max-width:1160px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; }

.nav-logo { display:flex; align-items:center; gap:.65rem; }
.nav-logo img { height:34px; width:auto; }
.nav-logo-text { font-family:var(--ff-display); font-weight:800; font-size:1.25rem; letter-spacing:-.03em; }

.nav-links { display:flex; align-items:center; gap:2.25rem; }
.nav-links a {
  font-size:.875rem; color:var(--ink-muted);
  transition:color var(--t-fast);
  position:relative; padding-bottom:2px;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-1px; left:0; width:0; height:1px;
  background:var(--ink); transition:width var(--t-fast) var(--ease);
}
.nav-links a:hover { color:var(--ink); }
.nav-links a:hover::after { width:100%; }

.nav-actions { display:flex; align-items:center; gap:.75rem; }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; padding:3px; }
.hamburger span { display:block; width:22px; height:1.5px; background:var(--ink); border-radius:1px; transition:transform var(--t-fast), opacity var(--t-fast); }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(4.7px,4.7px); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(4.7px,-4.7px); }

/* Mobile Menu */
.mobile-nav {
  position:fixed; inset:0; z-index:800;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2.25rem;
  opacity:0; pointer-events:none;
  transition:opacity var(--t) var(--ease);
}
.mobile-nav.open { opacity:1; pointer-events:all; }
.mobile-nav a {
  font-family:var(--ff-display); font-size:2.25rem; font-weight:700;
  letter-spacing:-.03em; color:var(--ink);
  transition:opacity var(--t-fast);
}
.mobile-nav a:hover { opacity:.4; }
.mobile-nav-contact {
  margin-top:1rem; display:flex; flex-direction:column; align-items:center; gap:.75rem;
}
.mobile-nav-contact a { font-size:1rem; font-family:var(--ff-body); font-weight:400; color:var(--ink-muted); }

/* ── HERO ── */
.hero {
  min-height:100svh;
  display:flex; align-items:center;
  padding:120px 2rem 80px;
  position:relative; overflow:hidden;
  background:var(--white);
}

#hero-canvas {
  position:absolute; inset:0;
  width:100%; height:100%;
  pointer-events:none; z-index:0;
}

.hero-glow {
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  pointer-events:none; z-index:0;
}
.hero-glow-1 {
  width:600px; height:600px;
  background:radial-gradient(circle, rgba(0,0,0,.04) 0%, transparent 70%);
  top:-200px; right:-100px;
}
.hero-glow-2 {
  width:400px; height:400px;
  background:radial-gradient(circle, rgba(0,0,0,.03) 0%, transparent 70%);
  bottom:-100px; left:10%;
}

.hero-inner {
  position:relative; z-index:2;
  max-width:820px;
  width:100%;
  margin:0 auto;
}

/* staggered entrance */
.hero-inner > * { opacity:0; animation:heroUp .9s var(--ease-out) forwards; }
.hero-badge   { animation-delay:.1s; }
.hero-title   { animation-delay:.25s; }
.hero-body    { animation-delay:.4s; }
.hero-cta     { animation-delay:.55s; }
.hero-metrics { animation-delay:.7s; }

@keyframes heroUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-badge {
  display:inline-flex; align-items:center; gap:.6rem;
  padding:.38rem 1rem; border-radius:50px;
  background:var(--surface); border:1px solid var(--border);
  margin-bottom:2rem;
}
.hero-badge-dot {
  width:7px; height:7px; background:#22c55e; border-radius:50%;
  box-shadow:0 0 0 2px rgba(34,197,94,.2);
  animation:pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow:0 0 0 2px rgba(34,197,94,.2); }
  50%      { box-shadow:0 0 0 5px rgba(34,197,94,.08); }
}

.hero-title { margin-bottom:1.5rem; }
.hero-title em {
  font-style:normal;
  position:relative; display:inline-block;
}
.hero-title em::after {
  content:'';
  position:absolute; bottom:6px; left:0; right:0; height:3px;
  background:var(--ink);
  transform:scaleX(0); transform-origin:left;
  animation:lineIn .7s 1.1s var(--ease-out) forwards;
}
@keyframes lineIn { to { transform:scaleX(1); } }

.hero-body { max-width:540px; margin-bottom:2.5rem; }

.hero-cta { display:flex; gap:.875rem; flex-wrap:wrap; margin-bottom:4rem; }

.hero-metrics {
  display:flex; gap:3rem;
  padding-top:2.5rem;
  border-top:1px solid var(--border);
  flex-wrap:wrap;
}
.metric { display:flex; flex-direction:column; gap:.2rem; }
.metric-val {
  font-family:var(--ff-display); font-size:1.85rem;
  font-weight:800; letter-spacing:-.04em; line-height:1;
}
.metric-lbl { font-size:.8rem; color:var(--ink-faint); font-weight:400; }

/* scroll cue */
.scroll-cue {
  position:absolute; bottom:2.5rem; left:50%;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:.5rem;
  opacity:0; animation:fadeIn 1s 1.5s forwards; z-index:2;
}
.scroll-cue .t-label { color:var(--ink-faint); font-size:.65rem; }
.scroll-cue-line { width:1px; height:36px; background:linear-gradient(to bottom, var(--ink-faint), transparent); animation:lineBreath 2s infinite; }
@keyframes lineBreath { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.35;transform:scaleY(.6)} }
@keyframes fadeIn { to { opacity:1; } }

/* ── ABOUT ── */
.about { background:var(--surface); position:relative; overflow:hidden; }
.about::before {
  content:''; position:absolute;
  width:700px; height:700px; border-radius:50%;
  background:radial-gradient(circle, rgba(0,0,0,.025) 0%, transparent 65%);
  top:-200px; right:-200px; pointer-events:none;
}

.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }

.about-visual { position:relative; }
.about-card-dark {
  background:var(--ink); border-radius:var(--r-xl);
  padding:3.5rem 2.5rem;
  display:flex; align-items:center; justify-content:center;
  aspect-ratio:1; position:relative; overflow:hidden;
}
.about-card-dark::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 25% 25%, rgba(255,255,255,.05) 0%, transparent 60%);
}
.about-card-dark img {
  width:65%; height:auto; object-fit:contain;
  position:relative; z-index:1;
}

.about-float {
  position:absolute; bottom:-1.5rem; right:-1.5rem;
  background:var(--white); border-radius:var(--r);
  padding:1rem 1.25rem; box-shadow:var(--sh-xl);
  display:flex; align-items:center; gap:.875rem; z-index:2;
  border:1px solid var(--border-2);
}
.about-float-icon {
  width:42px; height:42px; background:var(--ink); border-radius:10px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.about-float-icon svg { width:20px; height:20px; stroke:white; fill:none; stroke-width:1.75; }
.about-float-text strong { font-family:var(--ff-display); font-size:.9rem; font-weight:700; display:block; }
.about-float-text span { font-size:.75rem; color:var(--ink-faint); }

.about-content { display:flex; flex-direction:column; gap:1.75rem; }

.pillars { display:flex; flex-direction:column; gap:.75rem; margin-top:.5rem; }
.pillar {
  display:flex; align-items:center; gap:.875rem;
  padding:.875rem 1.125rem;
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-sm);
  transition:transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.pillar:hover { transform:translateX(6px); box-shadow:var(--sh-sm); }
.pillar-dot { width:7px; height:7px; background:var(--ink); border-radius:50%; flex-shrink:0; }
.pillar span { font-size:.88rem; font-weight:500; }

/* ── SERVICES ── */
.services { background:var(--white); }

.section-header { text-align:center; margin-bottom:3.5rem; }
.section-header .t-label { display:block; margin-bottom:1rem; }
.section-header .t-body { max-width:480px; margin:.875rem auto 0; }

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

.svc-card {
  border:1px solid var(--border); border-radius:var(--r-lg);
  padding:2.25rem; position:relative; overflow:hidden;
  transition:transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  cursor:default;
}
.svc-card::before {
  content:''; position:absolute; inset:0;
  background:var(--ink);
  transform:translateY(101%); transition:transform var(--t) var(--ease); z-index:0;
}
.svc-card:hover { border-color:var(--ink); box-shadow:var(--sh-lg); }
.svc-card:hover::before { transform:translateY(0); }
.svc-card > * { position:relative; z-index:1; }

.svc-icon {
  width:50px; height:50px; background:var(--surface);
  border:1px solid var(--border); border-radius:13px;
  display:flex; align-items:center; justify-content:center; margin-bottom:1.5rem;
  transition:background var(--t), border-color var(--t);
}
.svc-icon svg { width:22px; height:22px; stroke:var(--ink); fill:none; stroke-width:1.5; transition:stroke var(--t); }
.svc-card:hover .svc-icon { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.15); }
.svc-card:hover .svc-icon svg { stroke:white; }

.svc-title { font-family:var(--ff-display); font-size:1.25rem; font-weight:700; margin-bottom:.625rem; transition:color var(--t); }
.svc-desc  { font-size:.875rem; color:var(--ink-muted); line-height:1.75; margin-bottom:1.5rem; transition:color var(--t); }
.svc-card:hover .svc-title,
.svc-card:hover .svc-desc { color:white; }

.svc-footer { display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.svc-tags { display:flex; gap:.4rem; flex-wrap:wrap; }
.svc-tag {
  font-size:.7rem; font-weight:600; letter-spacing:.06em;
  padding:.28rem .7rem; background:var(--surface); border-radius:50px; color:var(--ink-muted);
  font-family:var(--ff-display); transition:background var(--t), color var(--t);
}
.svc-card:hover .svc-tag { background:rgba(255,255,255,.12); color:rgba(255,255,255,.75); }

.svc-arrow {
  width:34px; height:34px; background:var(--ink); color:white;
  border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition:background var(--t), transform var(--t);
}
.svc-arrow svg { width:14px; height:14px; }
.svc-card:hover .svc-arrow { background:white; color:var(--ink); transform:translate(3px,-3px); }

/* ── PROCESS ── */
.process {
  background:var(--ink); color:white;
  position:relative; overflow:hidden;
}
.process::before {
  content:''; position:absolute;
  width:900px; height:900px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.03) 0%, transparent 70%);
  top:-300px; left:-200px; pointer-events:none;
}

.process .section-header .t-label { color:rgba(255,255,255,.35); }
.process .section-header .t-xl { color:white; }
.process .section-header .t-body { color:rgba(255,255,255,.45); }

.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-top:3.5rem; position:relative; }
.steps::before {
  content:''; position:absolute; top:2.75rem; left:8%; right:8%; height:1px;
  background:linear-gradient(to right, transparent, rgba(255,255,255,.12), rgba(255,255,255,.12), transparent);
}

.step {
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:1.5rem;
  padding:1.75rem 1rem; border-radius:var(--r); position:relative;
  transition:background var(--t);
}
.step:hover { background:rgba(255,255,255,.04); }

.step-num {
  width:5.5rem; height:5.5rem; border-radius:50%;
  border:1px solid rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-display); font-size:1.5rem; font-weight:800;
  background:var(--ink); position:relative; z-index:1;
  transition:background var(--t), border-color var(--t), color var(--t);
}
.step:hover .step-num { background:white; color:var(--ink); border-color:white; }

.step h3 { font-family:var(--ff-display); font-size:1.1rem; font-weight:700; margin-bottom:.4rem; }
.step p  { font-size:.85rem; color:rgba(255,255,255,.48); line-height:1.75; }

/* ── CONTACT (replaces backend form) ── */
.contact { background:var(--surface); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }

.contact-left h2 { margin-bottom:1.25rem; }
.contact-left .t-body { margin-bottom:2rem; }

.contact-methods { display:flex; flex-direction:column; gap:1rem; }
.contact-method {
  display:flex; align-items:center; gap:1rem;
  padding:1.25rem 1.5rem;
  background:var(--white); border:1px solid var(--border); border-radius:var(--r);
  transition:transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  text-decoration:none; color:inherit;
}
.contact-method:hover { transform:translateX(6px); box-shadow:var(--sh-sm); border-color:var(--ink); }
.contact-method-icon {
  width:44px; height:44px; background:var(--ink); border-radius:11px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-method-icon svg { width:20px; height:20px; stroke:white; fill:none; stroke-width:1.75; }
.contact-method-body { flex:1; }
.contact-method-body strong { font-family:var(--ff-display); font-size:.92rem; font-weight:700; display:block; margin-bottom:.15rem; }
.contact-method-body span { font-size:.82rem; color:var(--ink-muted); }
.contact-method-arrow { color:var(--ink-faint); transition:transform var(--t-fast); }
.contact-method:hover .contact-method-arrow { transform:translateX(4px); color:var(--ink); }
.contact-method-arrow svg { width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2; }

.contact-right {
  background:var(--ink); color:white;
  border-radius:var(--r-xl); padding:2.5rem 2rem;
  position:relative; overflow:hidden;
}
.contact-right::before {
  content:''; position:absolute;
  width:300px; height:300px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  top:-100px; right:-80px; pointer-events:none;
}
.contact-right-inner { position:relative; z-index:1; }
.contact-right h3 {
  font-family:var(--ff-display); font-size:1.6rem; font-weight:800;
  letter-spacing:-.03em; line-height:1.1; margin-bottom:1rem; color:white;
}
.contact-right p { font-size:.9rem; color:rgba(255,255,255,.55); line-height:1.75; margin-bottom:2rem; }

.quick-links { display:flex; flex-direction:column; gap:.875rem; }
.quick-link {
  display:flex; align-items:center; justify-content:space-between;
  padding:1rem 1.25rem;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.09);
  border-radius:var(--r-sm); text-decoration:none; color:white;
  transition:background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.quick-link:hover { background:rgba(255,255,255,.11); border-color:rgba(255,255,255,.18); transform:translateX(4px); }
.quick-link-body strong { font-size:.9rem; font-family:var(--ff-display); font-weight:600; display:block; margin-bottom:.1rem; }
.quick-link-body span { font-size:.78rem; color:rgba(255,255,255,.45); }
.quick-link svg { width:14px; height:14px; stroke:rgba(255,255,255,.4); fill:none; stroke-width:2; flex-shrink:0; }

/* ── PARTNERS ── */
.partners { background:var(--white); }
.partners-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; max-width:760px; margin:3.5rem auto 0; }

.partner-card {
  border:1px solid var(--border); border-radius:var(--r-lg);
  padding:2.75rem 2rem; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:1.25rem;
  text-decoration:none; color:inherit;
  transition:transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.partner-card:hover { transform:translateY(-8px); box-shadow:var(--sh-lg); border-color:var(--ink); }

.partner-logo-wrap { height:72px; display:flex; align-items:center; justify-content:center; }
.partner-logo-wrap img { max-height:64px; max-width:180px; width:auto; object-fit:contain; }
.partner-logo-placeholder {
  width:100px; height:54px; background:var(--surface);
  border-radius:10px; display:flex; align-items:center; justify-content:center;
}

.partner-name { font-family:var(--ff-display); font-size:1rem; font-weight:700; }
.partner-desc { font-size:.8rem; color:var(--ink-faint); }
.partner-cta {
  display:inline-flex; align-items:center; gap:.35rem;
  font-size:.78rem; font-weight:600; color:var(--ink-faint);
  font-family:var(--ff-display); letter-spacing:.06em; text-transform:uppercase;
  transition:color var(--t-fast);
}
.partner-cta svg { width:12px; height:12px; stroke:currentColor; fill:none; stroke-width:2; transition:transform var(--t-fast); }
.partner-card:hover .partner-cta { color:var(--ink); }
.partner-card:hover .partner-cta svg { transform:translate(3px,-3px); }

/* ── PROJECTS ── */
.projects { background:var(--surface); }
.projects-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin-top:3.5rem; }

.proj-card {
  border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden;
  background:var(--white);
  transition:transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.proj-card:hover { transform:translateY(-8px); box-shadow:var(--sh-lg); border-color:var(--ink); }

.proj-visual {
  aspect-ratio:16/10; background:var(--ink);
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.proj-visual-inner {
  width:78%; height:78%; border:1px solid rgba(255,255,255,.09);
  border-radius:10px; background:rgba(255,255,255,.03);
  position:relative; overflow:hidden;
  display:flex; flex-direction:column; padding:10px;
}
.proj-lines { display:flex; flex-direction:column; gap:7px; }
.proj-line { height:5px; background:rgba(255,255,255,.08); border-radius:3px; }
.proj-dot {
  position:absolute; top:10px; right:10px;
  width:7px; height:7px; border-radius:50%;
}
.proj-bar-row {
  position:absolute; bottom:10px; left:10px; right:10px;
  display:flex; gap:5px;
}
.proj-bar { flex:1; border-radius:4px; }

.proj-body { padding:1.375rem; }
.proj-cat {
  font-size:.7rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink-faint); margin-bottom:.4rem; font-family:var(--ff-display);
}
.proj-title { font-family:var(--ff-display); font-size:1.05rem; font-weight:700; margin-bottom:.4rem; }
.proj-desc  { font-size:.82rem; color:var(--ink-muted); line-height:1.65; }

/* ── CTA BANNER ── */
.cta-banner {
  background:var(--ink); color:white; text-align:center;
  padding:140px 2rem; position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 100%, rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events:none;
}
.cta-banner-inner { position:relative; z-index:1; }
.cta-banner .t-hero { color:white; margin-bottom:1.25rem; }
.cta-banner .t-body { color:rgba(255,255,255,.45); max-width:460px; margin:0 auto 3rem; }
.cta-banner-btns { display:flex; gap:.875rem; justify-content:center; flex-wrap:wrap; }

/* ── FOOTER ── */
footer {
  background:var(--surface); border-top:1px solid var(--border);
  padding:3rem 2rem 2rem;
}
.footer-top {
  max-width:1160px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:2rem; margin-bottom:2rem;
  padding-bottom:2rem; border-bottom:1px solid var(--border);
}
.footer-logo { display:flex; align-items:center; gap:.65rem; }
.footer-logo img { height:30px; width:auto; }
.footer-logo-text { font-family:var(--ff-display); font-weight:800; font-size:1.15rem; letter-spacing:-.03em; }
.footer-links { display:flex; gap:2rem; flex-wrap:wrap; }
.footer-links a { font-size:.85rem; color:var(--ink-muted); transition:color var(--t-fast); }
.footer-links a:hover { color:var(--ink); }
.footer-bottom {
  max-width:1160px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:1rem;
}
.footer-copy { font-size:.8rem; color:var(--ink-faint); }
.footer-legal { display:flex; gap:1.5rem; }
.footer-legal a { font-size:.8rem; color:var(--ink-faint); transition:color var(--t-fast); }
.footer-legal a:hover { color:var(--ink); }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(36px); transition:opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.visible { opacity:1; transform:none; }
.reveal-d1 { transition-delay:.08s; }
.reveal-d2 { transition-delay:.16s; }
.reveal-d3 { transition-delay:.24s; }
.reveal-d4 { transition-delay:.32s; }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .services-grid { grid-template-columns:1fr; }
  .projects-grid { grid-template-columns:repeat(2,1fr); }
  .contact-grid  { grid-template-columns:1fr; gap:2.5rem; }
}

@media (max-width:768px) {
  section { padding:80px 0; }
  .nav-links, .nav-actions { display:none; }
  .hamburger { display:flex; }
  .about-grid { grid-template-columns:1fr; gap:3rem; }
  .steps { grid-template-columns:repeat(2,1fr); }
  .steps::before { display:none; }
  .partners-grid { grid-template-columns:1fr; max-width:380px; }
  .projects-grid { grid-template-columns:1fr; }
  .hero-metrics { gap:2rem; }
  .footer-top { flex-direction:column; align-items:flex-start; }
  .footer-bottom { flex-direction:column; align-items:center; text-align:center; }
}

@media (max-width:480px) {
  .container { padding:0 1.25rem; }
  .hero { padding:100px 1.25rem 60px; }
  .hero-cta { flex-direction:column; }
  .hero-cta .btn { width:100%; justify-content:center; }
  .steps { grid-template-columns:1fr; }
  .cta-banner { padding:100px 1.25rem; }
  .cta-banner-btns { flex-direction:column; align-items:center; }
  .cta-banner-btns .btn { width:100%; max-width:280px; justify-content:center; }
  .contact-right { padding:2rem 1.5rem; }
}
