/* ============================================================
   SWW DIGITAL SOLUTIONS — styles.css
   © SWW Digital Solutions | www.swwds.com
   ============================================================ */

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

/* ============================================================
   AURORA PLASMA BACKGROUND
   ============================================================ */
.aurora-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  display: block;
}
.aurora-section {
  position: relative;
  overflow: hidden;
}
.aurora-section > * {
  position: relative;
  z-index: 1;
}
#home { overflow: hidden; }
#home .aurora-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100vw;
}

/* ============================================================
   CALGARY BRANDING
   ============================================================ */
.yyc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,169,140,0.12);
  border: 1px solid rgba(0,201,167,0.4);
  color: #00C9A7;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.yyc-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00C9A7;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
.calgary-skyline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
}
.nav-location {
  font-size: 10px;
  letter-spacing: 2px;
  color: #4A6A84;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-location::before {
  content: '◎';
  color: #00C9A7;
  font-size: 9px;
}

/* ============================================================
   RESET & ROOT
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal:        #00C9A7;
  --teal2:       #008F76;
  --teal-light:  #E8F4F1;
  --teal-mid:    #00A88C;
  --navy:        #0D1B2A;
  --navy2:       #112233;
  --navy3:       #0a1520;
  --slate:       #4A6A84;
  --text:        #D4EDE8;
  --muted:       #4A6A84;
  --ai-blue:     #60CFFF;
  --bc-purple:   #A088FF;
  --bc-pink:     #FF70C0;
}

html  { scroll-behavior: smooth; }
body  {
  background: var(--navy);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,42,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,201,167,0.15);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-svg { height: 38px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600; transition: color .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta {
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 2px;
  font-weight: 700; padding: 8px 20px; border: none; cursor: pointer;
  text-transform: uppercase; transition: opacity .2s; text-decoration: none; display: inline-block;
  border-radius: 2px;
}
.nav-cta:hover { opacity: .85; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--teal); transition: all .3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(13,27,42,0.99); z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); text-decoration: none; font-family: 'Playfair Display', serif;
  font-size: 36px; letter-spacing: 2px; transition: color .2s;
}
.mobile-menu a:hover { color: var(--teal); }

/* ============================================================
   HERO
   ============================================================ */
#home {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 80px 2rem 2rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,169,140,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(96,207,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(0,143,118,0.05) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,201,167,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,167,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-inner {
  max-width: 1100px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 8px;
}
.hero-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--teal); }
h1.hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(46px, 6vw, 82px);
  line-height: 1.0; letter-spacing: -1px;
  background: linear-gradient(160deg, #E8F4F1 0%, #00C9A7 50%, #008F76 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: rgba(212,237,232,0.7); margin-bottom: 2rem; max-width: 440px;
}
.hero-badges { display: flex; gap: 10px; margin-bottom: 2.5rem; flex-wrap: wrap; }
.badge-ai {
  background: rgba(13,42,74,0.9); border: 1px solid rgba(64,144,221,0.5);
  color: var(--ai-blue); font-size: 10px; letter-spacing: 2px;
  padding: 6px 14px; border-radius: 20px; font-weight: 600;
}
.badge-bc {
  background: rgba(26,10,48,0.9); border: 1px solid rgba(128,80,221,0.5);
  color: var(--bc-purple); font-size: 10px; letter-spacing: 2px;
  padding: 6px 14px; border-radius: 20px; font-weight: 600;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Logo stage */
.hero-right { display: flex; justify-content: center; align-items: center; }
.logo-stage { position: relative; width: 340px; height: 340px; }
.logo-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(0,201,167,0.12); animation: spinRing 20s linear infinite;
}
.logo-ring2 {
  position: absolute; inset: 20px; border-radius: 50%;
  border: 1px solid rgba(0,201,167,0.06); animation: spinRing 30s linear infinite reverse;
}
.logo-glow {
  position: absolute; inset: 30px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,169,140,0.14) 0%, transparent 70%);
}
.logo-cycle-wrap { position: relative; width: 100%; height: 100%; }
.lc-item {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.lc-item.active { opacity: 1; }
@keyframes spinRing  { to { transform: rotate(360deg); } }
@keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: linear-gradient(90deg, var(--teal), var(--teal2)); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 2px;
  font-weight: 700; padding: 14px 32px; border: none; cursor: pointer;
  text-transform: uppercase; transition: all .25s; text-decoration: none;
  display: inline-block; border-radius: 2px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,201,167,0.25); }
.btn-outline {
  background: transparent; color: var(--teal);
  border: 1px solid rgba(0,201,167,0.4);
  font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 2px;
  font-weight: 700; padding: 14px 32px; cursor: pointer;
  text-transform: uppercase; transition: all .25s; text-decoration: none;
  display: inline-block; border-radius: 2px;
}
.btn-outline:hover { border-color: var(--teal); background: rgba(0,201,167,0.06); }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
section { padding: 100px 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--teal); margin-bottom: .75rem; display: flex; align-items: center; gap: 8px;
}
.section-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--teal); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08; letter-spacing: -0.5px; margin-bottom: 1rem;
}
.section-title span {
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-sub { font-size: 17px; font-weight: 300; color: rgba(212,237,232,0.6); max-width: 600px; line-height: 1.75; }

/* ============================================================
   STATS BAR
   ============================================================ */
#stats {
  background: linear-gradient(90deg, rgba(0,201,167,0.06), rgba(0,143,118,0.06));
  border-top: 1px solid rgba(0,201,167,0.15);
  border-bottom: 1px solid rgba(0,201,167,0.15);
  padding: 50px 2rem;
}
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 52px; line-height: 1;
  background: linear-gradient(135deg, #E8F4F1, #00C9A7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--navy2); }
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem;
}
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(0,201,167,0.08); }
.service-card {
  background: var(--navy2); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; cursor: pointer; transition: background .3s;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.service-card:hover { background: #0f1f30; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .sc-icon { color: var(--teal); }
.sc-icon { font-size: 28px; margin-bottom: 1.25rem; color: var(--muted); transition: color .3s; line-height: 1; }
.sc-num { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 3px; color: rgba(0,201,167,0.3); margin-bottom: .5rem; }
.sc-title { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 1px; color: var(--teal); text-transform: uppercase; margin-bottom: .75rem; }
.sc-desc { font-size: 14px; line-height: 1.7; color: rgba(212,237,232,0.5); margin-bottom: 1.25rem; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sc-tag { font-size: 10px; letter-spacing: 1.5px; color: var(--muted); border: 1px solid rgba(74,106,132,0.3); padding: 3px 8px; text-transform: uppercase; }
.service-card:hover .sc-tag { color: rgba(0,201,167,0.7); border-color: rgba(0,201,167,0.2); }
.service-card-cta {
  background: linear-gradient(135deg, rgba(0,201,167,0.05), rgba(0,143,118,0.05));
  border-bottom: 2px solid var(--teal);
}

/* ============================================================
   TECH SECTION
   ============================================================ */
#tech { padding: 100px 2rem; background: var(--navy); }
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(0,201,167,0.06); margin-top: 4rem; }
.tech-card { padding: 3rem; position: relative; overflow: hidden; }
.tech-ai { background: linear-gradient(135deg, rgba(13,42,74,0.6) 0%, rgba(13,27,42,0.9) 100%); }
.tech-bc { background: linear-gradient(135deg, rgba(26,10,48,0.6) 0%, rgba(13,27,42,0.9) 100%); }
.tech-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; }
.tech-ai .tech-label { color: var(--ai-blue); }
.tech-bc .tech-label { color: var(--bc-purple); }
.tech-heading { font-family: 'Playfair Display', serif; font-size: 42px; letter-spacing: -0.5px; margin-bottom: 1rem; line-height: 1.05; }
.tech-ai .tech-heading { color: var(--ai-blue); }
.tech-bc .tech-heading { color: var(--bc-purple); }
.tech-body { font-size: 15px; line-height: 1.75; color: rgba(212,237,232,0.55); margin-bottom: 2rem; }
.tech-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.tech-list li { font-size: 13px; color: rgba(212,237,232,0.5); display: flex; align-items: center; gap: .6rem; }
.tech-list li::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; }
.tech-ai .tech-list li::before { background: var(--ai-blue); }
.tech-bc .tech-list li::before { background: var(--bc-purple); }
.tech-glow-ai { position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(96,207,255,0.05); filter: blur(40px); pointer-events: none; }
.tech-glow-bc { position: absolute; bottom: -40px; left: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(160,136,255,0.05); filter: blur(40px); pointer-events: none; }

/* ============================================================
   PROCESS
   ============================================================ */
#process { background: var(--navy2); padding: 100px 2rem; }
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 4rem; position: relative; }
.process-steps::after {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(0,201,167,0.3), transparent);
}
.process-step { text-align: center; padding: 0 1rem; }
.ps-num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(0,201,167,0.3); display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace; font-size: 16px; color: var(--teal);
  margin: 0 auto 1.25rem; background: var(--navy2); position: relative; z-index: 1;
}
.ps-title { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: .5rem; }
.ps-desc { font-size: 12px; line-height: 1.6; color: rgba(212,237,232,0.4); }

/* ============================================================
   ABOUT
   ============================================================ */
#about { padding: 100px 2rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem; }
.about-content p { font-size: 16px; line-height: 1.8; color: rgba(212,237,232,0.65); margin-bottom: 1.25rem; }
.about-quote { color: var(--teal); font-style: italic; font-size: 15px; border-left: 2px solid var(--teal); padding-left: 1rem; margin-top: 1.5rem; }
.about-box { border: 1px solid rgba(0,201,167,0.15); padding: 3rem; position: relative; }
.about-box::before, .about-box::after { content: ''; position: absolute; width: 20px; height: 20px; }
.about-box::before { top: -1px; left: -1px; border-top: 2px solid var(--teal); border-left: 2px solid var(--teal); }
.about-box::after  { bottom: -1px; right: -1px; border-bottom: 2px solid var(--teal); border-right: 2px solid var(--teal); }
.about-slogan {
  font-family: 'Playfair Display', serif; font-size: 42px; letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #E8F4F1, #00C9A7, #008F76);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-tagline { font-size: 13px; font-style: italic; color: var(--muted); letter-spacing: 2px; }
.about-stats { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.about-stat-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: .75rem; border-bottom: 1px solid rgba(0,201,167,0.08); }
.about-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.about-stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.about-stat-val { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--teal); letter-spacing: 1px; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--navy2); padding: 100px 2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; margin-top: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.ci-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: .25rem; }
.ci-value { font-size: 16px; color: rgba(212,237,232,0.7); }
.ci-value-sm { font-size: 13px; line-height: 1.8; color: rgba(212,237,232,0.5); }
.contact-cta-box { margin-top: 1rem; padding: 1.5rem; border: 1px solid rgba(0,201,167,0.1); }
.contact-cta-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.contact-cta-headline {
  font-family: 'Playfair Display', serif; font-size: 26px; letter-spacing: -0.5px; line-height: 1.15;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.cf-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.cf-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.cf-input {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(0,201,167,0.12);
  color: var(--text); padding: 12px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none;
  transition: border-color .2s; width: 100%; border-radius: 2px;
}
.cf-input:focus { border-color: rgba(0,201,167,0.4); }
.cf-input::placeholder { color: rgba(74,106,132,0.6); }
textarea.cf-input { resize: vertical; min-height: 120px; }
.recaptcha-note { font-size: 11px; color: rgba(74,106,132,0.5); margin: 1rem 0; letter-spacing: 1px; }
.recaptcha-box {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(0,201,167,0.08);
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.5rem; width: fit-content;
}
.recaptcha-check {
  width: 20px; height: 20px; border: 2px solid rgba(0,201,167,0.3);
  background: transparent; cursor: pointer; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.recaptcha-text { font-size: 12px; color: var(--muted); }
.form-success {
  display: none; background: rgba(0,201,167,0.05);
  border: 1px solid rgba(0,201,167,0.3); padding: 3rem;
  text-align: center; color: var(--teal);
  font-family: 'DM Sans', sans-serif; letter-spacing: 2px;
}
.form-success-icon { font-size: 40px; margin-bottom: 1rem; }
.form-success-title { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: .5rem; }
.form-success-sub { font-size: 13px; color: var(--muted); letter-spacing: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #080f18; border-top: 1px solid rgba(0,201,167,0.1); padding: 60px 2rem 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name {
  display: block; height: 32px; margin-bottom: .75rem;
}
.footer-tagline { font-size: 13px; font-style: italic; color: var(--muted); letter-spacing: 1px; margin-bottom: 1.5rem; }
.footer-brand-desc { font-size: 13px; color: rgba(74,106,132,0.6); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(0,201,167,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 12px; color: rgba(74,106,132,0.5); letter-spacing: 1px; }
.footer-domain { font-family: 'DM Mono', monospace; font-size: 14px; letter-spacing: 3px; color: rgba(0,201,167,0.4); text-decoration: none; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
  .hero-inner, .about-grid, .tech-grid, .contact-grid, .services-intro { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { order: -1; }
  .logo-stage { width: 220px; height: 220px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::after { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cf-row { grid-template-columns: 1fr; }
  .tech-grid .tech-card { grid-column: auto; display: block; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-location { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-inner { text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-badges { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 70px 1.25rem; }
}
