/* ============================================================
   ARCHIVOLT — Global Stylesheet v2
   Brand: Navy #1B2D5B · Orange #F97316 · Gold #F5A623 · Teal #00C9B1
   Fonts: Syne (display) · Outfit (body) · DM Mono (labels)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1B2D5B;
  --navy-deep:   #0F1E3E;
  --navy-mid:    #243570;
  --orange:      #F97316;
  --gold:        #F5A623;
  --teal:        #00C9B1;
  --purple:      #7C5CBF;

  --grad-brand:  linear-gradient(90deg,#00C9B1 0%,#7C5CBF 50%,#F97316 100%);
  --grad-orange: linear-gradient(135deg,#F97316 0%,#F5A623 100%);
  --grad-hero:   linear-gradient(135deg,#0F1E3E 0%,#1B2D5B 60%,#243570 100%);

  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --light-grey:  #EEF0F6;
  --mid-grey:    #8A93B2;
  --dark-grey:   #3A4560;
  --ink:         #0D1526;

  --text-primary:   var(--ink);
  --text-secondary: var(--dark-grey);
  --text-muted:     var(--mid-grey);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --container:   1200px;
  --section-pad: 6rem 2rem;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --shadow-card: 0 4px 24px rgba(27,45,91,0.08);
  --shadow-hover:0 16px 56px rgba(27,45,91,0.18);
  --transition:  0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-primary); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.12; }
h1 { font-size: clamp(2.6rem,6vw,4.8rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem,4vw,3rem);   font-weight: 700; }
h3 { font-size: clamp(1.15rem,2vw,1.45rem); font-weight: 600; }
p  { font-weight: 300; line-height: 1.8; color: var(--text-secondary); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--grad-orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label.light { color: var(--teal); }
.section-label.light::before { background: var(--teal); }

.section-heading { color: var(--navy-deep); margin-bottom: 1rem; }
.accent { background: var(--grad-orange); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.accent-teal { background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtext { font-size: 1.05rem; color: var(--text-muted); max-width: 52ch; line-height: 1.8; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  padding: 0.85rem 2rem; border-radius: var(--radius-sm);
  transition: var(--transition); letter-spacing: 0.01em; cursor: pointer;
}
.btn-primary { background: var(--grad-orange); color: var(--white); box-shadow: 0 4px 16px rgba(249,115,22,0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(249,115,22,0.4); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn-ghost-teal { background: rgba(0,201,177,0.1); color: var(--teal); border: 1px solid rgba(0,201,177,0.3); }
.btn-ghost-teal:hover { background: rgba(0,201,177,0.18); transform: translateY(-2px); }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27,45,91,0.07);
  padding: 0 2rem;
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 4px 28px rgba(27,45,91,0.1); }

.nav-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo img { height: 44px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--navy);
  padding: 0.5rem 0.85rem; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 0.85rem; right: 0.85rem;
  height: 2px; background: var(--grad-orange); border-radius: 2px;
  transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--orange); }
.nav-cta { margin-left: 1rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--light-grey);
  padding: 1.5rem 2rem; z-index: 850; flex-direction: column; gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(27,45,91,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-weight: 500; color: var(--navy); padding: 0.75rem 0; border-bottom: 1px solid var(--light-grey); font-size: 1rem; }
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  background: var(--grad-hero); position: relative; overflow: hidden; padding: 8rem 2rem 5rem;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.035) 1px,transparent 1px);
  background-size: 64px 64px;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb-1 { width:640px; height:640px; background: radial-gradient(circle,rgba(249,115,22,0.18) 0%,transparent 70%); top:-120px; right:-80px; animation: float-orb 8s ease-in-out infinite; }
.hero-orb-2 { width:420px; height:420px; background: radial-gradient(circle,rgba(0,201,177,0.13) 0%,transparent 70%); bottom:-60px; left:8%; animation: float-orb 11s ease-in-out infinite reverse; }
.hero-orb-3 { width:300px; height:300px; background: radial-gradient(circle,rgba(124,92,191,0.1) 0%,transparent 70%); top:30%; left:40%; animation: float-orb 14s ease-in-out infinite; }

@keyframes float-orb { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-30px)} }

.hero-inner { max-width: var(--container); margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }

.hero-eyebrow { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.25rem; opacity:0; animation: fade-up 0.7s 0.2s forwards; }
.hero-title { color: var(--white); margin-bottom: 0.5rem; opacity:0; animation: fade-up 0.7s 0.35s forwards; }
.hero-title .brand-volt { background: var(--grad-orange); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-tagline { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.5rem; opacity:0; animation: fade-up 0.7s 0.48s forwards; }
.hero-tagline-grad { background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.08rem; color: rgba(255,255,255,0.68); max-width: 50ch; margin-bottom: 2.5rem; font-weight: 300; line-height: 1.8; opacity:0; animation: fade-up 0.7s 0.6s forwards; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; opacity:0; animation: fade-up 0.7s 0.75s forwards; }

/* Hero domain pills */
.hero-domains { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; opacity:0; animation: fade-up 0.7s 0.9s forwards; }
.domain-pill {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.85rem; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05); transition: var(--transition);
}
.domain-pill:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,166,35,0.08); }
.domain-pill.active { border-color: rgba(249,115,22,0.4); color: var(--gold); background: rgba(249,115,22,0.1); }

/* Hero visual */
.hero-visual { opacity:0; animation: fade-in 0.9s 0.6s forwards; }
.hero-card-stack { width: 100%; display: flex; flex-direction: column; gap: 0.85rem; }
.hero-stat-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-lg); padding: 1.4rem 1.75rem;
  backdrop-filter: blur(12px); transition: transform var(--transition);
}
.hero-stat-card:hover { transform: translateX(6px); }
.hsc-label { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.35rem; }
.hsc-value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.hsc-sub   { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; }
.hero-available-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,201,177,0.12); border: 1px solid rgba(0,201,177,0.28);
  border-radius: 100px; padding: 0.5rem 1rem;
  font-size: 0.78rem; color: var(--teal); font-weight: 500; margin-bottom: 1rem;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

/* ── STATS BAR ── */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--light-grey); padding: 2rem; }
.stats-inner { max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-number { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; background: var(--grad-orange); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label  { font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }
.stat-divider { width: 1px; height: 40px; background: var(--light-grey); }

/* ── SERVICES ── */
.services-section { padding: var(--section-pad); background: var(--off-white); }
.services-inner { max-width: var(--container); margin: 0 auto; }

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

.service-card {
  background: var(--white); border: 1px solid rgba(27,45,91,0.07);
  border-radius: var(--radius-lg); padding: 2.25rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(249,115,22,0.15); }
.service-card:hover::before { transform: scaleX(1); }

.sc-number { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.15em; color: var(--orange); margin-bottom: 1rem; }
.sc-icon { width: 50px; height: 50px; background: linear-gradient(135deg,rgba(249,115,22,0.09) 0%,rgba(0,201,177,0.09) 100%); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 1.1rem; }
.sc-title { font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; color: var(--navy-deep); margin-bottom: 0.65rem; line-height: 1.25; }
.sc-desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.sc-bullets { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.25rem; }
.sc-bullet { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.82rem; color: var(--dark-grey); }
.sc-bullet::before { content: '→'; color: var(--orange); font-weight: 700; margin-top: 1px; flex-shrink: 0; }
.sc-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); background: rgba(249,115,22,0.07); border: 1px solid rgba(249,115,22,0.18); padding: 0.28rem 0.7rem; border-radius: 100px; }

/* ── APPROACH / HOW IT WORKS ── */
.process-section { padding: var(--section-pad); }
.process-inner { max-width: var(--container); margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3.5rem; position: relative; }
.process-steps::before { content:''; position:absolute; top:28px; left:15%; right:15%; height:2px; background: var(--grad-brand); border-radius:2px; opacity:0.35; }
.ps-item { text-align: center; }
.ps-dot { width:56px; height:56px; border-radius:50%; border:2px solid var(--orange); display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem; font-family:var(--font-display); font-weight:700; font-size:1.1rem; color:var(--orange); position:relative; z-index:1; background:var(--white); box-shadow: var(--shadow-card); }
.ps-title { font-family:var(--font-display); font-size:1rem; font-weight:700; color:var(--navy-deep); margin-bottom:0.5rem; }
.ps-desc  { font-size:0.85rem; color:var(--text-muted); line-height:1.7; }

/* ── DOMAINS BREAKDOWN ── */
.domains-section { padding: var(--section-pad); background: var(--navy-deep); position: relative; overflow: hidden; }
.domains-section::before { content:''; position:absolute; width:800px; height:800px; border-radius:50%; background:radial-gradient(circle,rgba(249,115,22,0.07) 0%,transparent 65%); top:-200px; right:-200px; pointer-events:none; }
.domains-inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 2; }

.domains-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-top: 3rem; }
.domain-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.domain-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(249,115,22,0.25); transform: translateY(-3px); }
.dc-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.dc-icon { width:44px; height:44px; border-radius:var(--radius-md); background:rgba(249,115,22,0.12); border:1px solid rgba(249,115,22,0.2); display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; }
.dc-title { font-family:var(--font-display); font-size:1.15rem; font-weight:700; color:var(--white); }
.dc-subtitle { font-family:var(--font-mono); font-size:0.62rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--teal); margin-top:0.15rem; }
.dc-desc { font-size:0.88rem; color:rgba(255,255,255,0.52); line-height:1.75; margin-bottom:1rem; }
.dc-tags { display:flex; flex-wrap:wrap; gap:0.4rem; }
.dc-tag { font-family:var(--font-mono); font-size:0.6rem; letter-spacing:0.08em; text-transform:uppercase; padding:0.22rem 0.6rem; border-radius:100px; border:1px solid rgba(255,255,255,0.12); color:rgba(255,255,255,0.45); background:rgba(255,255,255,0.04); }

/* ── RESOURCES ── */
.resources-section { padding: var(--section-pad); background: var(--off-white); }
.resources-inner  { max-width: var(--container); margin: 0 auto; }
.resources-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3rem; }
.resource-card {
  background: var(--white); border: 1px solid rgba(27,45,91,0.07); border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(249,115,22,0.18); }
.rc-icon  { font-size: 1.8rem; margin-bottom: 0.85rem; }
.rc-type  { font-family:var(--font-mono); font-size:0.62rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--orange); margin-bottom:0.4rem; }
.rc-title { font-family:var(--font-display); font-size:1.1rem; font-weight:700; color:var(--navy-deep); margin-bottom:0.6rem; }
.rc-desc  { font-size:0.87rem; color:var(--text-muted); line-height:1.75; flex:1; margin-bottom:1.25rem; }
.rc-link  { font-family:var(--font-mono); font-size:0.68rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--orange); display:inline-flex; align-items:center; gap:0.4rem; transition:gap var(--transition); }
.rc-link:hover { gap: 0.8rem; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: var(--section-pad); }
.testimonials-inner   { max-width: var(--container); margin: 0 auto; }
.testimonials-grid    { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: var(--white); border: 1px solid rgba(27,45,91,0.07); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-card); position: relative;
}
.testimonial-card::before { content:'"'; font-family:var(--font-display); font-size:5rem; line-height:1; background:var(--grad-orange); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; position:absolute; top:0.8rem; left:2rem; opacity:0.18; }
.tc-text   { font-style:italic; font-weight:300; line-height:1.8; color:var(--dark-grey); padding-top:1.5rem; margin-bottom:1.5rem; font-size:1rem; }
.tc-author { display:flex; align-items:center; gap:0.75rem; }
.tc-avatar { width:40px; height:40px; border-radius:50%; background:var(--grad-hero); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:0.9rem; color:var(--white); flex-shrink:0; }
.tc-name   { font-weight:600; font-size:0.9rem; color:var(--navy-deep); }
.tc-role   { font-family:var(--font-mono); font-size:0.63rem; letter-spacing:0.08em; color:var(--text-muted); margin-top:0.1rem; }

/* ── CTA BANNER ── */
.cta-banner { padding: 5.5rem 2rem; background: linear-gradient(135deg,var(--navy-deep) 0%,var(--navy-mid) 100%); text-align:center; position:relative; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; inset:0; background:var(--grad-brand); opacity:0.05; }
.cta-banner-inner { position:relative; z-index:2; max-width:680px; margin:0 auto; }
.cta-banner h2    { color:var(--white); margin-bottom:1rem; }
.cta-banner p     { color:rgba(255,255,255,0.62); font-size:1.05rem; margin-bottom:2.5rem; }
.cta-banner-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ── BLOG ── */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
.blog-card { background:var(--white); border:1px solid rgba(27,45,91,0.07); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-card); transition:transform var(--transition),box-shadow var(--transition); display:flex; flex-direction:column; }
.blog-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-hover); }
.blog-thumb { height:170px; display:flex; align-items:center; justify-content:center; font-size:2.8rem; }
.blog-thumb-1 { background:linear-gradient(135deg,#0F1E3E 0%,#1B2D5B 100%); }
.blog-thumb-2 { background:linear-gradient(135deg,#1B2D5B 0%,#243570 100%); }
.blog-thumb-3 { background:linear-gradient(135deg,#243570 0%,#2E4080 100%); }
.blog-content  { padding:1.75rem; flex:1; display:flex; flex-direction:column; }
.blog-category { font-family:var(--font-mono); font-size:0.62rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--orange); margin-bottom:0.6rem; }
.blog-title    { font-family:var(--font-display); font-size:1.05rem; font-weight:700; color:var(--navy-deep); margin-bottom:0.65rem; line-height:1.3; flex:1; }
.blog-excerpt  { font-size:0.85rem; color:var(--text-muted); line-height:1.7; margin-bottom:1.1rem; }
.blog-meta     { font-family:var(--font-mono); font-size:0.63rem; letter-spacing:0.07em; color:var(--text-muted); display:flex; justify-content:space-between; border-top:1px solid var(--light-grey); padding-top:0.9rem; margin-top:auto; }

/* ── CONTACT ── */
.contact-section { padding: var(--section-pad); background: var(--off-white); }
.contact-inner   { max-width: var(--container); margin: 0 auto; display:grid; grid-template-columns:1fr 1.4fr; gap:5rem; align-items:start; }
.contact-detail  { display:flex; gap:1rem; margin-top:1.75rem; align-items:flex-start; }
.cd-icon  { width:44px; height:44px; background:linear-gradient(135deg,rgba(249,115,22,0.08),rgba(0,201,177,0.08)); border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
.cd-label { font-family:var(--font-mono); font-size:0.63rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-muted); margin-bottom:0.2rem; }
.cd-value { font-weight:600; color:var(--navy-deep); font-size:0.92rem; }

.contact-form-wrap { background:var(--white); border:1px solid rgba(27,45,91,0.07); border-radius:var(--radius-lg); padding:2.5rem; box-shadow:var(--shadow-card); }
.form-row   { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1.2rem; }
label { display:block; font-family:var(--font-mono); font-size:0.67rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-muted); margin-bottom:0.45rem; }
input,select,textarea { width:100%; font-family:var(--font-body); font-size:0.93rem; font-weight:400; color:var(--text-primary); background:var(--off-white); border:1.5px solid var(--light-grey); border-radius:var(--radius-sm); padding:0.82rem 1rem; transition:border-color var(--transition),box-shadow var(--transition); outline:none; }
input:focus,select:focus,textarea:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(249,115,22,0.09); background:var(--white); }
textarea { resize:vertical; min-height:130px; }
select   { appearance:none; cursor:pointer; }

/* ── PAGE HERO ── */
.page-hero { padding:9rem 2rem 4rem; background:var(--grad-hero); position:relative; overflow:hidden; }
.page-hero::after { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px); background-size:60px 60px; }
.page-hero-inner  { max-width:var(--container); margin:0 auto; position:relative; z-index:2; }
.page-hero h1     { color:var(--white); margin-bottom:1rem; }
.page-hero p      { color:rgba(255,255,255,0.58); font-size:1.1rem; max-width:52ch; font-weight:300; }
.page-eyebrow     { font-family:var(--font-mono); font-size:0.7rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--teal); margin-bottom:1rem; }

/* ── FOOTER ── */
.site-footer { background:var(--ink); padding:4rem 2rem 0; }
.footer-top  { max-width:var(--container); margin:0 auto; display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:3.5rem; padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,0.06); }
.footer-brand-logo img  { height:38px; margin-bottom:1rem; }
.footer-brand-desc      { font-size:0.86rem; color:rgba(255,255,255,0.38); line-height:1.8; font-weight:300; max-width:28ch; margin-bottom:1.5rem; }
.footer-col-title       { font-family:var(--font-mono); font-size:0.63rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:1.2rem; }
.footer-links           { display:flex; flex-direction:column; gap:0.55rem; }
.footer-links a         { font-size:0.86rem; color:rgba(255,255,255,0.38); transition:color var(--transition); font-weight:300; }
.footer-links a:hover   { color:var(--gold); }
.social-links           { display:flex; gap:0.65rem; margin-top:0.4rem; }
.social-btn             { width:34px; height:34px; border-radius:var(--radius-sm); background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.09); display:flex; align-items:center; justify-content:center; font-size:0.82rem; color:rgba(255,255,255,0.45); transition:background var(--transition),color var(--transition),border-color var(--transition); }
.social-btn:hover       { background:rgba(249,115,22,0.12); border-color:rgba(249,115,22,0.28); color:var(--gold); }
.footer-bottom          { max-width:var(--container); margin:0 auto; padding:1.5rem 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; }
.footer-copy,.footer-location { font-family:var(--font-mono); font-size:0.63rem; letter-spacing:0.1em; color:rgba(255,255,255,0.22); }

/* ── REVEAL ── */
.reveal { opacity:0; transform:translateY(26px); transition:opacity 0.65s ease,transform 0.65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }
.reveal-delay-4 { transition-delay:0.4s; }
.reveal-delay-5 { transition-delay:0.5s; }
.reveal-delay-6 { transition-delay:0.6s; }

@keyframes fade-up  { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fade-in  { from{opacity:0} to{opacity:1} }

/* ── CERTIFICATIONS STRIP ── */
.cert-strip { padding:2rem; background:var(--white); border-top:1px solid var(--light-grey); border-bottom:1px solid var(--light-grey); }
.cert-strip-inner { max-width:var(--container); margin:0 auto; display:flex; align-items:center; justify-content:center; gap:1.5rem; flex-wrap:wrap; }
.cert-badge { font-family:var(--font-mono); font-size:0.65rem; letter-spacing:0.12em; text-transform:uppercase; padding:0.45rem 1rem; border-radius:100px; border:1px solid rgba(27,45,91,0.15); color:var(--navy); background:var(--off-white); white-space:nowrap; }
.cert-strip-label { font-family:var(--font-mono); font-size:0.63rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .hero-inner          { grid-template-columns:1fr; }
  .hero-visual         { display:none; }
  .services-grid       { grid-template-columns:1fr 1fr; }
  .domains-grid        { grid-template-columns:1fr; }
  .resources-grid      { grid-template-columns:1fr 1fr; }
  .blog-grid           { grid-template-columns:1fr 1fr; }
  .footer-top          { grid-template-columns:1fr 1fr; gap:2.5rem; }
  .contact-inner       { grid-template-columns:1fr; gap:3rem; }
}
@media (max-width:768px) {
  nav .nav-links,nav .nav-cta { display:none; }
  .hamburger           { display:flex; }
  .services-grid       { grid-template-columns:1fr; }
  .process-steps       { grid-template-columns:1fr 1fr; }
  .process-steps::before { display:none; }
  .resources-grid      { grid-template-columns:1fr; }
  .testimonials-grid   { grid-template-columns:1fr; }
  .blog-grid           { grid-template-columns:1fr; }
  .footer-top          { grid-template-columns:1fr; gap:2rem; }
  .stats-inner         { justify-content:center; }
  .stat-divider        { display:none; }
  .form-row            { grid-template-columns:1fr; }
  section              { padding:4rem 1.25rem; }
  .page-hero           { padding:8rem 1.25rem 3rem; }
}
