/* ============================================================
   ASPINEX DIGITAL — PREMIUM WHITE DESIGN SYSTEM
   Theme: Clean White · Cyan Accents · Smooth Animations
   All-in-one single-file website
============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --bg:         #ffffff;
  --bg-2:       #f7f9fc;
  --bg-3:       #eef2f8;
  --bg-card:    #f8fafd;

  --cyan:       #00afc4;
  --cyan-light: #33c9db;
  --cyan-dark:  #007d8f;
  --cyan-soft:  rgba(0,175,196,0.10);
  --cyan-glow:  rgba(0,175,196,0.35);

  --text:       #0d1b2a;
  --text-2:     #3a4a5c;
  --text-3:     #6b7c93;

  --card-bg:      rgba(255,255,255,0.85);
  --card-border:  rgba(0,175,196,0.14);
  --card-shadow:  0 4px 28px rgba(0,40,80,0.08);
  --card-blur:    blur(16px);

  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(247,249,252,0.98) 100%);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

/* ── BODY ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position:fixed; width:8px; height:8px;
  background: var(--cyan); border-radius:50%;
  pointer-events:none; z-index:9999;
  transform:translate(-50%,-50%);
  transition: transform .1s ease;
}
.cursor-ring {
  position:fixed; width:36px; height:36px;
  border:1.5px solid rgba(0,194,212,0.55);
  border-radius:50%; pointer-events:none; z-index:9998;
  transform:translate(-50%,-50%);
  transition:all .2s ease;
}

/* ── PARTICLES CANVAS ── */
#particles { position:fixed; top:0; left:0; width:100%; height:100%; z-index:0; pointer-events:none; }

/* ════════════════════════════════════════
   SCROLL REVEAL SYSTEM
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.reveal.from-left  { transform: translateX(-60px); }
.reveal.from-right { transform: translateX(60px); }
.reveal.scale-in   { transform: scale(.9) translateY(20px); }
.reveal.visible {
  opacity: 1 !important;
  transform: translate(0,0) scale(1) !important;
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  padding: 20px 6%;
  display: flex; align-items:center; justify-content:space-between;
  transition: all .4s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 14px 6%;
  border-bottom: 1px solid rgba(0,175,196,0.12);
  box-shadow: 0 2px 24px rgba(0,40,80,0.08);
}

.nav-logo { display:flex; align-items:center; text-decoration:none; gap:0; flex-direction:column; line-height:1; }
.logo-main {
  font-family: 'Manrope', sans-serif; font-size:1.35rem; font-weight:800; letter-spacing:3px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color:transparent; background-clip:text;
  transition: filter .35s;
}
.logo-sub {
  font-family: 'DM Sans', sans-serif; font-size:.52rem; font-weight:500;
  letter-spacing:5px; color:var(--text-3); text-transform:uppercase; margin-top:1px;
  transition: color .35s;
}
.nav-logo:hover .logo-main { filter: brightness(1.15) drop-shadow(0 0 8px rgba(0,194,212,.4)); }
.nav-logo:hover .logo-sub  { color: var(--cyan); }

.nav-links { display:flex; gap:32px; list-style:none; }
.nav-links a {
  color: var(--text-2); text-decoration:none; font-size:.88rem;
  font-weight:500; letter-spacing:.3px; transition:color .3s;
  position: relative; padding-bottom:3px;
}
.nav-links a::after {
  content:''; position:absolute; left:0; bottom:0; height:1.5px; width:0;
  background: var(--cyan); transition:width .3s ease;
}
.nav-links a:hover { color:var(--cyan); }
.nav-links a:hover::after { width:100%; }

/* ── NAV CTA Button ── */
.nav-cta {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #fff; padding:10px 26px; border-radius:50px;
  font-weight:700; font-size:.85rem; text-decoration:none;
  font-family: 'Manrope', sans-serif; letter-spacing:.5px;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(0,194,212,0.28);
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,194,212,0.45);
}

/* ── HAMBURGER MENU (mobile) ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 101;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; transition: opacity .35s ease;
}
.mobile-menu.active { display: flex; opacity: 1; }
.mobile-menu a {
  color: var(--text); text-decoration: none; font-size: 1.3rem;
  font-weight: 600; font-family: 'Manrope', sans-serif; letter-spacing: 1px;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--cyan); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative; min-height:100vh;
  display: flex; align-items:center; padding:0 6%; z-index:1; overflow:hidden;
  background: linear-gradient(135deg, #f0fafc 0%, #ffffff 50%, #f5f9ff 100%);
  border-bottom: 1px solid var(--card-border);
}

/* Animated gradient orbs */
.hero::before {
  content:'';
  position:absolute; top:-150px; right:-60px;
  width:700px; height:700px;
  background: radial-gradient(circle at center,
    rgba(0,175,196,0.10) 0%,
    rgba(0,175,196,0.04) 45%,
    transparent 70%);
  border-radius:50%; pointer-events:none;
  animation: heroOrb1 8s ease-in-out infinite;
}
.hero::after {
  content:'';
  position:absolute; bottom:-120px; left:-80px;
  width:500px; height:500px;
  background: radial-gradient(circle, rgba(0,175,196,0.07), transparent 70%);
  border-radius:50%; pointer-events:none;
  animation: heroOrb2 6s ease-in-out infinite 2s;
}
@keyframes heroOrb1 {
  0%,100% { transform: scale(1) translate(0,0); }
  33% { transform: scale(1.1) translate(-20px, 15px); }
  66% { transform: scale(0.95) translate(10px, -10px); }
}
@keyframes heroOrb2 {
  0%,100% { transform: scale(1) translate(0,0); }
  50% { transform: scale(1.12) translate(15px, -20px); }
}

/* Extra floating gradient for motion effect */
.hero-glow-motion {
  position: absolute; top: 30%; left: 60%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,175,196,0.05), transparent 70%);
  border-radius: 50%; pointer-events: none;
  animation: heroGlowDrift 10s ease-in-out infinite;
}
@keyframes heroGlowDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  25% { transform: translate(-50px, 30px) scale(1.15); }
  50% { transform: translate(-80px, -20px) scale(0.9); }
  75% { transform: translate(-30px, -50px) scale(1.1); }
}

.hero-content { max-width:720px; position:relative; z-index:1; }

.hero-badge {
  display: inline-flex; align-items:center; gap:8px;
  background: rgba(0,194,212,0.08);
  border: 1px solid rgba(0,194,212,0.25);
  padding: 7px 20px; border-radius:50px;
  font-size:.78rem; color:var(--cyan); font-weight:600;
  margin-bottom: 30px; letter-spacing:.6px;
  opacity:0; transform:translateY(20px);
  animation: fadeUp .8s .2s forwards;
  backdrop-filter: blur(8px);
}
.hero-badge::before { content:'●'; font-size:7px; animation:blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800; line-height:1.07; letter-spacing:-1.5px;
  color: var(--text);
  opacity:0; transform:translateY(30px);
  animation: fadeUp .9s .4s forwards;
  margin-bottom: 24px;
}
h1 .hl {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

.hero-sub {
  font-size: 1.08rem; color:var(--text-3); line-height:1.8; max-width:560px;
  opacity:0; transform:translateY(20px);
  animation: fadeUp .9s .6s forwards; margin-bottom:42px;
  letter-spacing: .01em;
}
.hero-btns {
  display:flex; gap:14px; flex-wrap:wrap;
  opacity:0; transform:translateY(20px);
  animation: fadeUp .9s .8s forwards;
}

/* ── Buttons ── */
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #fff; padding:15px 36px; border-radius:50px;
  font-weight:700; font-family:'Manrope',sans-serif; font-size:.93rem;
  text-decoration:none;
  box-shadow: 0 4px 24px rgba(0,194,212,.35);
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  display: inline-flex; align-items:center; gap:9px;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.25), transparent);
  opacity:0; transition:opacity .3s;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(0,194,212,.45);
}
.btn-primary:hover::after { opacity:1; }

.btn-outline {
  border: 1.5px solid rgba(0,194,212,.45);
  color: var(--cyan); padding:15px 36px; border-radius:50px;
  font-weight:600; font-family:'Manrope',sans-serif; font-size:.93rem;
  text-decoration:none; transition: all .3s;
  display: inline-flex; align-items:center; gap:9px;
  background: rgba(0,194,212,.04);
}
.btn-outline:hover {
  background: rgba(0,194,212,.12);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,194,212,.18);
}

/* ════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════ */
.stats-strip {
  position:relative; z-index:1; display:flex;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: var(--bg-2);
}
.stat-item {
  flex:1; text-align:center; padding:38px 20px;
  border-right: 1px solid var(--card-border);
  transition: background .3s;
}
.stat-item:last-child { border-right:none; }
.stat-item:hover { background: rgba(0,194,212,.05); }
.stat-num {
  font-family:'Manrope',sans-serif; font-size:2.6rem; font-weight:800;
  color: var(--cyan); display:block; line-height:1; margin-bottom:7px;
}
.stat-label { font-size:.8rem; color:var(--text-3); letter-spacing:.4px; }

/* ════════════════════════════════════════
   SECTIONS — general
════════════════════════════════════════ */
section { position:relative; z-index:1; }
.section-pad { padding:116px 6%; }

.section-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  color:var(--cyan); font-size:.75rem; font-weight:700;
  letter-spacing:2.8px; text-transform:uppercase; margin-bottom:16px;
}
.section-eyebrow::before {
  content:''; width:22px; height:1.5px; background:var(--cyan); display:block;
}

h2 {
  font-family:'Manrope',sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight:800; line-height:1.1; letter-spacing:-.5px; margin-bottom:16px;
  color: var(--text);
}
.section-desc {
  color:var(--text-3); font-size:1rem; line-height:1.8;
  max-width:520px; margin-bottom:58px; letter-spacing:.01em;
}

/* ════════════════════════════════════════
   SERVICE CARDS (Upgraded with SVG icons & glow)
════════════════════════════════════════ */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--gradient-card);
  backdrop-filter: var(--card-blur);
  -webkit-backdrop-filter: var(--card-blur);
  border: 1px solid var(--card-border);
  border-radius: 22px; padding:36px 30px;
  box-shadow: var(--card-shadow);
  transition: all .4s cubic-bezier(.25,.8,.25,1);
  position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity:0; transition:opacity .4s;
}
.service-card:hover {
  border-color: rgba(0,194,212,.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 30px rgba(0,194,212,.15);
}
.service-card:hover::before { opacity:1; }

.service-icon {
  width:52px; height:52px; background: var(--cyan-soft);
  border-radius:14px; display:flex; align-items:center; justify-content:center;
  margin-bottom:22px; transition:background .3s, transform .3s;
  color: var(--cyan);
}
.service-icon svg { width:24px; height:24px; }
.service-card:hover .service-icon {
  background: rgba(0,194,212,.18);
  transform: scale(1.08) rotate(-3deg);
}
.service-card h3 {
  font-family:'Manrope',sans-serif; font-size:1.1rem; font-weight:700;
  margin-bottom:11px; color:var(--text);
}
.service-card p { color:var(--text-3); font-size:.89rem; line-height:1.7; margin-bottom:20px; }

.service-tags { display:flex; gap:7px; flex-wrap:wrap; }
.tag {
  font-size:.7rem; padding:5px 13px; border-radius:50px;
  background: var(--cyan-soft); border:1px solid rgba(0,194,212,.22);
  color:var(--cyan); font-weight:600; letter-spacing:.3px;
  transition: background .25s, border-color .25s;
}
.tag:hover { background:rgba(0,194,212,.18); border-color:rgba(0,194,212,.4); }

/* (Case Studies & Testimonials sections removed) */

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-section { background: var(--bg-2); border-top: 1px solid var(--card-border); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-visual { position:relative; height:400px; }

.about-card-float {
  position:absolute;
  background: var(--gradient-card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter:blur(20px);
  border-radius:18px; padding:20px 24px;
  box-shadow: var(--card-shadow);
  transition: box-shadow .35s;
}
.about-card-float:hover { box-shadow: 0 16px 48px rgba(0,194,212,.15); }

.card-1 { top:0; left:0; width:195px; animation:floatA 4s ease-in-out infinite; }
.card-2 { top:50%; left:48%; transform:translate(-20%,-50%); width:215px; animation:floatB 5s ease-in-out infinite; }
.card-3 { bottom:0; right:0; width:188px; animation:floatA 3.5s ease-in-out infinite 1s; }

@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes floatB { 0%,100%{transform:translate(-20%,-50%) translateY(0)} 50%{transform:translate(-20%,-50%) translateY(-10px)} }

.float-label { font-size:.7rem; color:var(--text-3); margin-bottom:5px; letter-spacing:.6px; text-transform:uppercase; }
.float-val   { font-family:'Manrope',sans-serif; font-size:1.5rem; font-weight:800; color:var(--cyan); }
.float-sub   { font-size:.75rem; color:var(--text-3); margin-top:3px; }

.about-glow {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:340px; height:340px;
  background: radial-gradient(circle, rgba(0,194,212,.08), transparent 70%);
  border-radius:50%;
}
.about-points { list-style:none; display:flex; flex-direction:column; gap:16px; }
.about-points li {
  display:flex; align-items:flex-start; gap:12px;
  color:var(--text-2); font-size:.96rem; line-height:1.6;
  transition: color .25s;
}
.about-points li:hover { color:var(--text); }
.about-points li::before { content:'→'; color:var(--cyan); font-weight:700; flex-shrink:0; margin-top:1px; }

/* ════════════════════════════════════════
   WHY US CARDS (with glow hover)
════════════════════════════════════════ */
.why-section { background: var(--bg); border-top: 1px solid var(--card-border); }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:58px; }
.why-card {
  padding:32px 28px; border-radius:20px;
  border: 1px solid var(--card-border);
  background: var(--gradient-card);
  box-shadow: var(--card-shadow);
  transition: all .35s cubic-bezier(.25,.8,.25,1);
}
.why-card:hover {
  border-color: rgba(0,194,212,.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 30px rgba(0,194,212,.12);
}
.why-num {
  font-family:'Manrope',sans-serif; font-size:3rem; font-weight:800;
  color: rgba(0,194,212,.2); line-height:1; margin-bottom:16px;
  transition: color .35s;
}
.why-card:hover .why-num { color:rgba(0,194,212,.45); }
.why-card h3 { font-family:'Manrope',sans-serif; font-size:1rem; font-weight:700; margin-bottom:9px; color:var(--text); }
.why-card p  { font-size:.87rem; color:var(--text-3); line-height:1.7; }

/* ════════════════════════════════════════
   TEAM MEMBERS (with border glow)
════════════════════════════════════════ */
.team-section { background: var(--bg-2); border-top: 1px solid var(--card-border); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 58px;
}
.team-card {
  background: var(--gradient-card);
  backdrop-filter: var(--card-blur);
  -webkit-backdrop-filter: var(--card-blur);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px 30px 34px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all .4s cubic-bezier(.25,.8,.25,1);
  position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity .4s;
}
.team-card:hover {
  border-color: rgba(0,194,212,.4);
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0,0,0,.4), 0 0 35px rgba(0,194,212,.15);
}
.team-card:hover::before { opacity: 1; }

.team-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 0 auto 22px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.team-avatar::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark), transparent 60%);
  z-index: -1; transition: opacity .4s; opacity: .4;
}
.team-card:hover .team-avatar::after { opacity: 1; }
.team-avatar .avatar-inner {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
  border: 2px solid rgba(0,194,212,.2);
  transition: border-color .4s;
  overflow: hidden;
}
.team-card:hover .avatar-inner { border-color: rgba(0,194,212,.6); }

.team-name {
  font-family: 'Manrope', sans-serif; font-size: 1.12rem; font-weight: 800;
  color: var(--text); margin-bottom: 6px; letter-spacing: -.2px;
}
.team-role {
  font-size: .8rem; font-weight: 700; color: var(--cyan);
  letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 14px;
}
.team-divider {
  width: 36px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  margin: 0 auto 14px; transition: width .4s;
}
.team-card:hover .team-divider { width: 64px; }
.team-specialization { color: var(--text-3); font-size: .88rem; line-height: 1.7; }
.team-specialization span {
  display: inline-block; margin: 3px 4px; padding: 4px 12px; border-radius: 50px;
  background: var(--cyan-soft); border: 1px solid rgba(0,194,212,.2);
  color: var(--cyan); font-size: .72rem; font-weight: 600; letter-spacing: .3px;
  transition: background .25s;
}
.team-specialization span:hover { background: rgba(0,194,212,.18); }

/* ════════════════════════════════════════
   FAQ SECTION
════════════════════════════════════════ */
.faq-section { background: var(--bg); border-top: 1px solid var(--card-border); }
.faq-grid { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--card-border);
  border-radius: 16px; margin-bottom: 14px;
  background: var(--gradient-card);
  backdrop-filter: var(--card-blur);
  -webkit-backdrop-filter: var(--card-blur);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: all .35s cubic-bezier(.25,.8,.25,1);
}
.faq-item:hover {
  border-color: rgba(0,194,212,.25);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.faq-question {
  width: 100%; padding: 22px 28px; border: none; background: transparent;
  font-family: 'Manrope', sans-serif; font-size: .98rem; font-weight: 700;
  color: var(--text); text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color .3s;
}
.faq-question:hover { color: var(--cyan); }
.faq-question::after {
  content: '+'; font-size: 1.4rem; color: var(--cyan); font-weight: 300;
  transition: transform .3s; flex-shrink: 0;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.25,.8,.25,1), padding .4s;
  padding: 0 28px;
}
.faq-item.active .faq-answer {
  max-height: 300px; padding: 0 28px 22px;
}
.faq-answer p {
  color: var(--text-3); font-size: .9rem; line-height: 1.8;
}

/* ════════════════════════════════════════
   CONTACT SECTION (with form)
════════════════════════════════════════ */
.contact-section {
  position:relative; z-index:1; padding:80px 6%;
  background: var(--bg-2);
  border-top: 1px solid var(--card-border);
}
.contact-inner {
  border-radius:32px;
  background: var(--gradient-card);
  border: 1px solid var(--card-border);
  padding:72px 64px; text-align:center; position:relative; overflow:hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,.3);
}
.contact-inner::before {
  content:''; position:absolute; top:-100px; left:50%; transform:translateX(-50%);
  width:500px; height:500px;
  background: radial-gradient(circle, rgba(0,194,212,.06), transparent 70%);
  border-radius:50%; pointer-events:none;
}
.contact-inner h2 { margin-bottom:16px; }
.contact-inner > p {
  color:var(--text-3); font-size:1.02rem; margin-bottom:40px;
  max-width:500px; margin-left:auto; margin-right:auto; line-height:1.75;
}
.contact-links { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; margin-bottom:48px; }
.contact-btn {
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 30px; border-radius:50px;
  font-weight:600; font-family:'Manrope',sans-serif; font-size:.88rem;
  text-decoration:none; transition:all .3s;
}
.contact-btn.whatsapp  { background:#25D366; color:#fff; box-shadow:0 4px 20px rgba(37,211,102,.3); }
.contact-btn.whatsapp:hover  { transform:translateY(-3px); box-shadow:0 8px 36px rgba(37,211,102,.4); }
.contact-btn.instagram { background:linear-gradient(135deg,#E1306C,#833AB4,#F77737); color:#fff; box-shadow:0 4px 20px rgba(225,48,108,.25); }
.contact-btn.instagram:hover { transform:translateY(-3px); box-shadow:0 8px 36px rgba(225,48,108,.35); }
.contact-btn.email { background: var(--cyan-soft); border:1.5px solid rgba(0,194,212,.35); color:var(--cyan); }
.contact-btn.email:hover { background:rgba(0,194,212,.15); transform:translateY(-3px); box-shadow:0 6px 24px rgba(0,194,212,.2); }

/* ── Contact Form ── */
.contact-form {
  max-width: 600px; margin: 0 auto; text-align: left;
  position: relative; z-index: 1;
}
.contact-form h3 {
  font-family: 'Manrope', sans-serif; font-size: 1.25rem; font-weight: 700;
  color: var(--text); text-align: center; margin-bottom: 28px;
}
.form-divider {
  width: 48px; height: 2px; margin: 0 auto 36px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--text-2); margin-bottom: 7px; letter-spacing: .3px;
}
.form-group label .req { color: #ef4444; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 18px; border-radius: 12px;
  border: 1px solid var(--card-border);
  background: var(--bg);
  color: var(--text); font-family: 'DM Sans', sans-serif; font-size: .92rem;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,175,196,.5);
  box-shadow: 0 0 0 3px rgba(0,175,196,.1);
}
.form-group select { cursor: pointer; }
.form-group select option { background: #ffffff; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* Checkbox group */
.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-label {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 50px;
  background: rgba(0,194,212,0.06);
  border: 1px solid rgba(0,194,212,.15);
  cursor: pointer; transition: all .3s;
  font-size: .82rem; color: var(--text-2); font-weight: 500;
}
.checkbox-label:hover { background: rgba(0,194,212,.12); border-color: rgba(0,194,212,.3); }
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-label.checked {
  background: rgba(0,194,212,.15);
  border-color: var(--cyan);
  color: var(--cyan);
}
.checkbox-check {
  width: 16px; height: 16px; border-radius: 4px;
  border: 1.5px solid rgba(0,194,212,.4);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; flex-shrink: 0;
}
.checkbox-label.checked .checkbox-check {
  background: var(--cyan);
  border-color: var(--cyan);
}
.checkbox-label.checked .checkbox-check::after {
  content: '✓'; color: #fff; font-size: .65rem; font-weight: 700;
}

.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px; border-radius: 14px; border: none;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #fff; font-family: 'Manrope', sans-serif;
  font-size: .95rem; font-weight: 700; cursor: pointer;
  transition: all .35s; margin-top: 8px;
  box-shadow: 0 4px 24px rgba(0,194,212,.3);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,194,212,.45);
}
.form-error {
  font-size: .78rem; color: #ef4444; margin-top: 4px; display: none;
}

/* ════════════════════════════════════════
   FOOTER (Professional multi-column)
════════════════════════════════════════ */
footer {
  position:relative; z-index:1;
  border-top: 1px solid var(--card-border);
  background: var(--bg-2);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding: 64px 6% 48px;
}
.footer-brand .logo-main {
  font-family:'Manrope',sans-serif; font-size:1.3rem; font-weight:800; letter-spacing:3px;
  background:linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  display: inline-block;
}
.footer-brand .logo-sub {
  font-family:'DM Sans',sans-serif; font-size:.46rem; font-weight:500;
  letter-spacing:5px; color:var(--text-3); text-transform:uppercase;
  display: block; margin-top: 2px; margin-bottom: 14px;
}
.footer-brand .footer-tagline {
  color: var(--text-3); font-size: .88rem; line-height: 1.7; margin-bottom: 14px;
  max-width: 280px;
}
.footer-brand .footer-location {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-3); font-size: .82rem;
}
.footer-brand .footer-location svg { color: var(--cyan); flex-shrink: 0; }

.footer-col h4 {
  font-family: 'Manrope', sans-serif; font-size: .82rem; font-weight: 700;
  color: var(--text); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: var(--text-3); text-decoration: none; font-size: .85rem;
  transition: color .3s;
}
.footer-col ul a:hover { color: var(--cyan); }

.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-3); font-size: .85rem; margin-bottom: 12px;
  text-decoration: none; transition: color .3s;
}
a.footer-contact-item:hover { color: var(--cyan); }
.footer-contact-item svg { color: var(--cyan); flex-shrink: 0; }

.footer-socials-row { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials-row a {
  width:36px; height:36px; border:1px solid var(--card-border);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  text-decoration:none; transition:all .3s; color:var(--text-3);
}
.footer-socials-row a:hover {
  border-color:var(--cyan); color:var(--cyan);
  background:var(--cyan-soft); box-shadow:0 0 12px rgba(0,194,212,.2);
}

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 22px 6%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-3); font-size: .78rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-3); text-decoration: none; font-size: .78rem; transition: color .3s; }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ════════════════════════════════════════
   MARQUEE LINE
════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden; background: var(--cyan); padding: 14px 0;
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: 'Manrope', sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: #fff;
  white-space: nowrap; display: flex; align-items: center; gap: 20px;
}
.marquee-item::after { content: '✦'; font-size: .6rem; opacity: .7; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   SCROLL PROGRESS BAR
════════════════════════════════════════ */
#scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  z-index: 9999; transition: width .1s linear;
}

/* ════════════════════════════════════════
   ANIMATIONS & SCROLLBAR
════════════════════════════════════════ */
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }
@keyframes slideInLeft { from{opacity:0;transform:translateX(-60px)} to{opacity:1;transform:translateX(0)} }
@keyframes slideInRight { from{opacity:0;transform:translateX(60px)} to{opacity:1;transform:translateX(0)} }
@keyframes scaleIn { from{opacity:0;transform:scale(.9)} to{opacity:1;transform:scale(1)} }

::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background:var(--cyan); border-radius:10px; }
::-webkit-scrollbar-thumb:hover { background:var(--cyan-dark); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media(max-width:1024px){
  .testimonial-card { min-width: calc(50% - 12px); }
}
@media(max-width:900px){
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .about-grid { grid-template-columns:1fr; }
  .about-visual { display:none; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media(max-width:700px){
  .testimonial-card { min-width: calc(100% - 0px); }
}
@media(max-width:600px){
  .stats-strip { flex-wrap:wrap; }
  .stat-item { flex:1 1 45%; border-right:none; border-bottom:1px solid var(--card-border); }
  .why-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-inner { padding:48px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .section-pad { padding:80px 5%; }
}
