*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy-deep: #0a1628;
  --navy: #0f1f3a;
  --navy-mid: #152847;
  --navy-light: #1a3258;
  --cyan: #00d4ff;
  --cyan-muted: #00a8cc;
  --white: #ffffff;
  --gray-400: #6b82a0;
  --text-primary: #e8edf4;
  --text-secondary: #94a7c0;
  --accent-green: #22c97a;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px;
  background: var(--cyan); display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 20px; color: var(--white);
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  line-height: 1.75; max-width: 660px;
}

/* ICON SYSTEM */
.ico {
  display: flex; align-items: center; justify-content: center;
}
.ico svg {
  width: 24px; height: 24px;
  stroke: var(--cyan); stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.ico-sm svg { width: 20px; height: 20px; }
.ico-lg svg { width: 28px; height: 28px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; transition: all 0.4s ease; background: transparent;
}
nav.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}
nav.nav-solid {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 88px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img {
  height: 60px; width: auto;
  filter: brightness(1.1);
}
.nav-logo-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; color: var(--white);
  display: none;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 0.88rem; font-weight: 500;
  color: var(--text-secondary); transition: color 0.3s; position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--cyan); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-active { color: var(--cyan); }
.nav-links a.nav-active::after { width: 100%; }
.nav-cta {
  background: var(--cyan); color: var(--navy-deep) !important;
  padding: 10px 24px; border-radius: 8px; font-weight: 600 !important;
  transition: all 0.3s !important; box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}
.nav-cta:hover { background: var(--white) !important; box-shadow: 0 0 30px rgba(0, 212, 255, 0.3); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  cursor: pointer; background: none; border: none; padding: 10px 8px;
  min-width: 44px; min-height: 44px;
}
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(0, 212, 255, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0, 168, 204, 0.04) 0%, transparent 60%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black, transparent);
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.hero-orb:nth-child(1) { width: 400px; height: 400px; background: rgba(0, 212, 255, 0.07); top: 10%; right: -5%; }
.hero-orb:nth-child(2) { width: 300px; height: 300px; background: rgba(0, 168, 204, 0.05); bottom: 10%; left: -5%; animation-delay: -4s; }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15); border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; color: var(--cyan); margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.08; margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--cyan), #5ce4ff, var(--cyan-muted));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary);
  margin-bottom: 40px; max-width: 520px; animation: fadeUp 0.8s ease 0.2s both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.3s both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--cyan); color: var(--navy-deep);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  border: none; border-radius: 10px; cursor: pointer; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 4px 24px rgba(0, 212, 255, 0.25);
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent; color: var(--text-primary);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 10px;
  cursor: pointer; text-decoration: none; transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0, 212, 255, 0.05); }

/* Hero visual */
.hero-visual { position: relative; animation: fadeUp 1s ease 0.4s both; }
.agility-box {
  background: rgba(21, 40, 71, 0.5); border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 20px; padding: 32px 28px; backdrop-filter: blur(10px);
}
.agility-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.agility-header h3 {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
  color: var(--text-secondary); letter-spacing: 0.1em; text-transform: uppercase;
}
.agility-tag {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; color: var(--accent-green);
  background: rgba(34, 201, 122, 0.1); padding: 4px 12px; border-radius: 100px;
}
.agility-tag::before {
  content: ''; width: 6px; height: 6px; background: var(--accent-green);
  border-radius: 50%; animation: pulse-dot 1.5s ease-in-out infinite;
}
.agility-steps { display: flex; flex-direction: column; }
.a-step {
  display: grid; grid-template-columns: 48px 1fr auto;
  gap: 14px; align-items: center; padding: 12px 0; position: relative;
}
.a-step-ic {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.a-step:not(:last-child) .a-step-ic::after {
  content: ''; position: absolute;
  left: 50%; top: 100%;
  transform: translateX(-50%);
  width: 2px; height: 24px;
  background: rgba(0, 212, 255, 0.15);
  z-index: 1;
}
.a-step-ic.done { background: rgba(34, 201, 122, 0.12); border: 1px solid rgba(34, 201, 122, 0.25); }
.a-step-ic.active { background: rgba(0, 212, 255, 0.12); border: 1px solid rgba(0, 212, 255, 0.3); box-shadow: 0 0 20px rgba(0, 212, 255, 0.1); }
.a-step-ic.pending { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); }
.a-step-ic svg { width: 20px; height: 20px; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.a-step-ic.done svg { stroke: var(--accent-green); }
.a-step-ic.active svg { stroke: var(--cyan); }
.a-step-ic.pending svg { stroke: var(--text-secondary); opacity: 0.5; }
.a-step-text h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.a-step-text p { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.4; }
.a-step-time {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  color: var(--cyan); background: rgba(0, 212, 255, 0.06);
  padding: 4px 10px; border-radius: 6px; white-space: nowrap;
}
.a-step-time.green { color: var(--accent-green); background: rgba(34, 201, 122, 0.08); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* MANIFESTO */
.manifesto { padding: 72px 0 120px; }
.manifesto-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.manifesto-statement {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 600; line-height: 1.5; color: var(--white);
  padding-left: 28px; border-left: 3px solid var(--cyan);
}
.manifesto-statement em { font-style: normal; color: var(--cyan); }
.manifesto-points { display: flex; flex-direction: column; gap: 24px; }
.m-point { display: flex; gap: 16px; align-items: flex-start; }
.m-point-marker {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0, 212, 255, 0.08); border: 1px solid rgba(0, 212, 255, 0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.m-point-marker svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.m-point h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.m-point p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* PROBLEMS */
.problems { padding: 120px 0; }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.p-card {
  background: rgba(21, 40, 71, 0.4); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px; padding: 32px 28px; transition: all 0.4s ease;
}
.p-card:hover { background: rgba(21, 40, 71, 0.7); border-color: rgba(0, 212, 255, 0.15); transform: translateY(-4px); }
.p-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0, 212, 255, 0.08); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.p-card-icon svg { width: 24px; height: 24px; stroke: var(--cyan); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.p-card h3 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.p-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* VALUE */
.value { padding: 120px 0; }
.value-box {
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.03), transparent);
  border-radius: 24px; border: 1px solid rgba(0, 212, 255, 0.08); padding: 72px 56px;
}
.value-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.v-pillar {
  text-align: center; padding: 40px 28px; border-radius: 16px;
  background: rgba(15, 31, 58, 0.5); border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}
.v-pillar:hover { border-color: rgba(0, 212, 255, 0.2); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3); }
.v-pillar-icon {
  width: 64px; height: 64px; margin: 0 auto 24px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 212, 255, 0.04));
  display: flex; align-items: center; justify-content: center;
}
.v-pillar-icon svg { width: 28px; height: 28px; stroke: var(--cyan); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.v-pillar h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.v-pillar p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }
.value-outcomes { display: flex; justify-content: center; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.v-outcome { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 500; color: var(--cyan); }
.v-outcome svg { width: 20px; height: 20px; flex-shrink: 0; fill: currentColor; }

/* METHODOLOGY */
.methodology { padding: 120px 0; }
.method-header { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; margin-bottom: 64px; }
.method-metrics { display: flex; flex-direction: column; gap: 20px; }
.m-metric {
  display: flex; align-items: center; gap: 20px; padding: 20px 24px;
  background: rgba(21, 40, 71, 0.4); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px; transition: all 0.3s;
}
.m-metric:hover { border-color: rgba(0, 212, 255, 0.15); }
.m-metric-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--cyan); line-height: 1; white-space: nowrap; }
.m-metric-text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.method-timeline { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.method-timeline::before {
  content: ''; position: absolute; top: 40px;
  left: calc(12.5%); right: calc(12.5%);
  height: 2px; background: linear-gradient(90deg, var(--cyan), var(--cyan-muted), var(--cyan)); opacity: 0.3;
}
.m-step { text-align: center; padding: 0 16px; position: relative; }
.m-step-num {
  width: 56px; height: 56px; margin: 0 auto 24px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  color: var(--cyan); position: relative; z-index: 2; transition: all 0.4s;
}
.m-step:hover .m-step-num { background: var(--cyan); color: var(--navy-deep); box-shadow: 0 0 32px rgba(0, 212, 255, 0.3); }
.m-step h3 { font-family: var(--font-display); font-size: 0.98rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.m-step p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* SECTORS */
.sectors { padding: 120px 0; }
.sectors-intro { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center; margin-bottom: 56px; }
.sectors-intro-right { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.s-card {
  background: rgba(21, 40, 71, 0.4); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px; padding: 28px 24px; text-align: center; transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.s-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.s-card:hover::before { transform: scaleX(1); }
.s-card:hover { background: rgba(21, 40, 71, 0.7); border-color: rgba(0, 212, 255, 0.15); transform: translateY(-4px); }
.s-card-icon {
  width: 48px; height: 48px; margin: 0 auto 14px; border-radius: 12px;
  background: rgba(0, 212, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
}
.s-card-icon svg { width: 24px; height: 24px; stroke: var(--cyan); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.s-card h3 { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.s-card p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; }

/* SERVICES */
.services { padding: 120px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.sv-card {
  background: rgba(21, 40, 71, 0.4); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px; padding: 36px 28px; transition: all 0.4s ease; position: relative; overflow: hidden;
}
.sv-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.sv-card:hover::after { transform: scaleX(1); }
.sv-card:hover { background: rgba(21, 40, 71, 0.7); border-color: rgba(0, 212, 255, 0.15); transform: translateY(-4px); }
.sv-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(0, 212, 255, 0.08); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.sv-icon svg { width: 24px; height: 24px; stroke: var(--cyan); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.sv-card h3 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.sv-card > p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }
.sv-tag {
  display: inline-block; margin-top: 16px; font-size: 0.73rem; font-weight: 600;
  color: var(--cyan); background: rgba(0, 212, 255, 0.06); padding: 4px 12px;
  border-radius: 100px; border: 1px solid rgba(0, 212, 255, 0.12);
}

/* RESULTS */
.results { padding: 120px 0; }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.r-card {
  background: rgba(21, 40, 71, 0.4); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px; padding: 40px 36px; transition: all 0.4s ease;
}
.r-card:hover { background: rgba(21, 40, 71, 0.7); border-color: rgba(0, 212, 255, 0.15); transform: translateY(-4px); }
.r-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.r-badge {
  padding: 6px 14px; border-radius: 8px; background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15); font-family: var(--font-display);
  font-size: 0.73rem; font-weight: 700; color: var(--cyan);
}
.r-sector { font-size: 0.73rem; color: var(--text-secondary); font-weight: 500; }
.r-card h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.r-card > p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }
.r-impacts { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; gap: 6px; }
.r-impact { font-size: 0.81rem; color: var(--gray-400); line-height: 1.5; }

/* WHY */
.why { padding: 120px 0; }
.section-divider { height: 1px; background: linear-gradient(to right, transparent, rgba(0,212,255,0.18) 30%, rgba(255,255,255,0.1) 50%, rgba(0,212,255,0.18) 70%, transparent); margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.w-card {
  padding: 32px 28px; border-radius: 16px; background: rgba(21, 40, 71, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.4s;
}
.w-card:hover { border-color: rgba(0, 212, 255, 0.15); transform: translateY(-4px); }
.w-card h3 {
  font-family: var(--font-display); font-size: 0.98rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.w-card h3 .w-ico { flex-shrink: 0; }
.w-card h3 .w-ico svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.w-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* CTA BAND */
.cta-band { padding: 80px 0; }
.cta-inner {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 168, 204, 0.05));
  border: 1px solid rgba(0, 212, 255, 0.15); border-radius: 24px;
  padding: 56px; text-align: center; position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent 60%); border-radius: 50%;
}
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--white); margin-bottom: 12px; position: relative; }
.cta-inner p { font-size: 1.02rem; color: var(--text-secondary); margin-bottom: 32px; position: relative; }

/* CONTACT */
.contact { padding: 80px 0 120px; }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04), rgba(21, 40, 71, 0.5));
  border: 1px solid rgba(0, 212, 255, 0.1); border-radius: 24px; padding: 64px 56px;
}
.contact-info h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.contact-info > p { font-size: 1.02rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 40px; }
.c-details { display: flex; flex-direction: column; gap: 20px; }
.c-detail { display: flex; align-items: center; gap: 14px; }
.c-detail-icon {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(0, 212, 255, 0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--cyan);
}
.c-detail-text { font-size: 0.95rem; color: var(--text-primary); }
.c-detail-text small { display: block; font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 2px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text-secondary); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(15, 31, 58, 0.6); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px; padding: 13px 16px; font-family: var(--font-body);
  font-size: 0.95rem; color: var(--text-primary); transition: all 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--navy); }
.form-submit {
  margin-top: 8px; padding: 15px 40px; background: var(--cyan); color: var(--navy-deep);
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; border: none;
  border-radius: 10px; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0, 212, 255, 0.25); align-self: flex-start;
}
.form-submit:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3); }
.form-success {
  background: rgba(34, 201, 122, 0.08); border: 1px solid rgba(34, 201, 122, 0.2);
  border-radius: 12px; padding: 20px 24px; text-align: center; color: var(--accent-green); font-weight: 500;
}
.gdpr-notice {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.74rem; color: var(--gray-400); line-height: 1.65;
  display: flex; flex-direction: column; gap: 3px;
}
.gdpr-notice p { margin: 0; }
.gdpr-notice .gdpr-title { font-weight: 600; color: var(--gray-300); margin-bottom: 2px; }
.gdpr-notice strong { color: var(--gray-300); font-weight: 600; }
.gdpr-notice a { color: var(--cyan); text-decoration: none; }
.gdpr-notice a:hover { text-decoration: underline; }

/* FOOTER */
footer { padding: 48px 0 32px; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-copy { font-size: 0.85rem; color: var(--text-secondary); }
.footer-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.footer-links a { text-decoration: none; font-size: 0.85rem; color: var(--text-secondary); transition: color 0.3s; }
.footer-links a:hover { color: var(--cyan); }
.footer-linkedin { display: inline-flex; align-items: center; gap: 6px; }
.footer-linkedin svg { flex-shrink: 0; transition: color 0.3s; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; padding-top: 16px; margin-top: 16px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-legal a { font-size: 0.78rem; color: var(--gray-400); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-secondary); }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(15, 31, 58, 0.97); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-text {
  flex: 1; min-width: 280px;
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6;
}
.cookie-text a { color: var(--cyan); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 24px; border-radius: 8px; font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  border: none; transition: all 0.3s;
}
.cookie-btn-accept { background: var(--cyan); color: var(--navy-deep); }
.cookie-btn-accept:hover { background: var(--white); }
.cookie-btn-reject {
  background: transparent; color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cookie-btn-reject:hover { border-color: var(--text-secondary); color: var(--white); }

/* PAGE HERO (sub-pages) */
.page-hero {
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  text-align: center;
}
.page-hero .section-label { justify-content: center; }
.page-hero .section-label::before { display: none; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: var(--white);
}
.page-hero-title .grad {
  background: linear-gradient(135deg, var(--cyan), #5ce4ff, var(--cyan-muted));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero-desc {
  font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary);
  max-width: 620px; margin: 0 auto 40px;
}
.page-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* PAGES TEASER (index) */
.pages-teaser { padding: 80px 0 0; }
.pages-teaser-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.teaser-card {
  display: flex; flex-direction: column;
  background: rgba(21, 40, 71, 0.4); border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 20px; padding: 40px 36px; text-decoration: none;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.teaser-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.teaser-card:hover::after { transform: scaleX(1); }
.teaser-card:hover { background: rgba(21, 40, 71, 0.7); border-color: rgba(0, 212, 255, 0.2); transform: translateY(-4px); }
.teaser-card-label {
  font-family: var(--font-display); font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px;
}
.teaser-card h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.teaser-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; flex: 1; }
.teaser-card-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-size: 0.9rem; font-weight: 600; color: var(--cyan);
}

/* PRODUCTS GRID */
.products-section { padding: 80px 0 120px; }
.products-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 56px;
}
.product-card {
  background: rgba(21, 40, 71, 0.4); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px; overflow: hidden; transition: all 0.4s ease;
}
.product-card:hover { border-color: rgba(0, 212, 255, 0.2); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3); }
.product-card-body { padding: 28px 32px 32px; }
.product-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.product-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.product-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600; color: var(--cyan); text-decoration: none; transition: gap 0.3s;
}
.product-card-cta:hover { gap: 12px; }

/* VIDEO EMBED — reutilizable en cualquier página */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}
.video-wrap iframe,
.video-wrap video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-mid);
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--text-secondary); gap: 10px; cursor: default;
}
.video-placeholder svg { width: 40px; height: 40px; stroke: var(--cyan); fill: none; stroke-width: 1.5; }

/* POLÍTICA COOKIES PAGE */
.policy-section { padding: 160px 0 120px; }
.policy-section h1 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.policy-section .lead { font-size: 1rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 48px; max-width: 860px; }
.policy-section h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin: 40px 0 12px; }
.policy-section h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin: 28px 0 10px; }
.policy-section p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.policy-section ul { padding-left: 20px; margin: 0 0 20px; }
.policy-section li { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; margin-bottom: 6px; }
.policy-section table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.policy-section th, .policy-section td { text-align: left; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.08); font-size: 0.88rem; }
.policy-section th { background: rgba(0,212,255,0.06); color: var(--cyan); font-family: var(--font-display); font-weight: 600; }
.policy-section td { color: var(--text-secondary); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .manifesto-wrap, .method-header, .sectors-intro { grid-template-columns: 1fr; gap: 40px; }
  .sectors-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .method-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .method-timeline::before { display: none; }
  .products-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 88px; left: 0; right: 0; background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(20px); padding: 24px; gap: 16px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  }
  .problems-grid, .value-pillars, .why-grid, .services-grid, .sectors-grid { grid-template-columns: 1fr; }
  .results-grid, .method-timeline, .pages-teaser-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .value-box, .cta-inner { padding: 40px 24px; }
  .hero { padding-top: 100px; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
  .manifesto, .problems, .value, .methodology,
  .sectors, .why, .services, .results { padding: 72px 0; }
  .cta-band { padding: 52px 0; }
  .lang-switch { margin-left: 0; margin-right: 4px; }
}

/* ─── LANGUAGE SWITCHER ─────────────────────────────────────────────── */
.lang-switch {
  display: flex; align-items: center; gap: 4px; margin-left: 8px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  color: var(--gray-400); padding: 5px 7px; border-radius: 4px;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; transition: color 0.2s; line-height: 1;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active { color: var(--cyan); }
.lang-divider { color: rgba(255,255,255,0.2); font-size: 0.7rem; user-select: none; }

/* ─── RESPONSIVE — LARGE DESKTOP (≥1440px) ─────────────────────────── */
@media (min-width: 1440px) {
  .container { max-width: 1360px; }
}

/* ─── RESPONSIVE — TABLET (≤1024px): reducir padding vertical ────────── */
@media (max-width: 1024px) {
  .manifesto, .problems, .value, .methodology,
  .sectors, .why, .services, .results { padding: 96px 0; }
  .method-timeline { gap: 40px; }
}

/* ─── RESPONSIVE — MÓVIL PEQUEÑO (≤480px) ──────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 90px; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .hero-desc { font-size: 0.96rem; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .manifesto, .problems, .value, .methodology,
  .sectors, .why, .services, .results { padding: 60px 0; }
  .cta-band { padding: 44px 0; }
  .manifesto-statement { font-size: 1.2rem; padding-left: 16px; }
  .value-box { padding: 32px 20px; }
  .value-pillars { gap: 14px; }
  .value-outcomes { gap: 12px 18px; font-size: 0.88rem; }
  .m-metric { padding: 14px 16px; gap: 14px; }
  .m-metric-num { font-size: 1.5rem; }
  .contact-wrap { padding: 28px 20px; }
  .cta-inner { padding: 32px 20px; }
  .r-card { padding: 28px 22px; }
  .page-hero { padding: 128px 0 56px; }
  .products-section { padding: 56px 0 80px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .policy-section { padding: 120px 0 80px; }
}
