/* === SKELETON — sections filled via Edit === */

/* RESET & BASE */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --navy: #0f1646;
  --navy-light: #1e2661;
  --navy-mid: #1b2258;
  --cyan: #00a0dc;
  --cyan-glow: #15b7f4;
  --orange: #ff6b35;
  --orange-soft: #ff8c5a;
  --white: #f4f6f9;
  --gray-100: #e8ecf1;
  --gray-200: #c9d1dc;
  --gray-400: #8896a8;
  --gray-500: #1a1a1a;
  --gray-600: #556477;
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'DM Sans', serif;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* UTILITY */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes scaleIn {
  from { opacity:0; transform:scale(.92); }
  to   { opacity:1; transform:scale(1); }
}
@keyframes slideRight {
  from { opacity:0; transform:translateX(-30px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,170,.4); }
  50% { box-shadow: 0 0 0 14px rgba(0,212,170,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.reveal { opacity:0; transform:translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }

/* === NAVBAR === */
.navbar {
  position: fixed; top:0; left:0; width:100%; z-index:100;
  padding: 18px 0;
  background: #fff;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: padding .3s ease, background .3s ease;
}
.navbar.scrolled { padding: 10px 0; background: #fff; }
.navbar .container { display:flex; align-items:center; justify-content:space-between; }
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight:700; color:#fff;
  letter-spacing: -.5px;
}
.logo span { color: var(--cyan); }
.nav-links { display:flex; gap:32px; align-items:center; }
.nav-links a {
  color: var(--gray-600); font-size:.90rem; font-weight:400;
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px;
  background: var(--cyan); transition: width .3s ease;
}
.nav-links a:hover { color:#3a3939; }
.nav-links a:hover::after { width:100%; }
.btn-nav {
  background: var(--cyan); color: var(--navy); padding: 10px 24px;
  border-radius: 8px; font-weight:600; font-size:.88rem;
  transition: background .25s, transform .2s;
}
.btn-nav:hover { background: #06abe9; transform: translateY(-1px); }
.btn-nav::after { display:none !important; }
.mobile-toggle { display:none; background:none; border:none; cursor:pointer; }
.mobile-toggle span { display:block; width:24px; height:2px; background:#fff; margin:5px 0; transition: .3s; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
}
.hero-bg::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0,212,170,.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,107,53,.07) 0%, transparent 50%);
}
.hero-grid-pattern {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-float-shape {
  position:absolute; border-radius:50%; filter:blur(80px); opacity:.35;
  animation: float 8s ease-in-out infinite;
}
.hero-float-shape.s1 {
  width:400px; height:400px; top:-100px; right:-80px;
  background: var(--cyan); opacity:.08;
}
.hero-float-shape.s2 {
  width:300px; height:300px; bottom:-60px; left:10%;
  background: var(--orange); opacity:.06; animation-delay:3s;
}
.hero .container { position:relative; z-index:1; padding-top:120px; padding-bottom:80px; }
.hero-content { max-width: 720px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(0,212,170,.1); border:1px solid rgba(0,212,170,.25);
  padding: 8px 18px; border-radius:100px;
  font-size:.95rem; font-weight:600; color: var(--cyan);
  margin-bottom:28px;
  animation: fadeUp .7s ease both;
}
.hero-badge svg { width:16px; height:16px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight:800; line-height:1.1;
  color:#fff;
  margin-bottom:24px;
  animation: fadeUp .7s ease .15s both;
}
.hero h1 em {
  font-style:normal;
  background: linear-gradient(135deg, var(--cyan));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.hero p {
  font-size:1.2rem; line-height:1.7; color: var(--gray-200);
  max-width:690px; margin-bottom:40px;
  animation: fadeUp .7s ease .3s both;
}
.hero-ctas {
  display:flex; gap:16px; flex-wrap:wrap;
  animation: fadeUp .7s ease .45s both;
}
.btn-primary {
  display:inline-flex; align-items:center; gap:10px;
  background: var(--cyan); color: var(--navy);
  padding: 16px 36px; border-radius:12px;
  font-weight:700; font-size:1rem;
  transition: background .25s, transform .2s, box-shadow .3s;
  border:none; cursor:pointer;
}
.btn-primary:hover {
  background: #06abe9; transform:translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,170,.3);
}
.btn-secondary {
  display:inline-flex; align-items:center; gap:10px;
  background: transparent; color:#fff;
  padding: 16px 36px; border-radius:12px;
  font-weight:600; font-size:1rem;
  border:1px solid rgba(255,255,255,.18);
  transition: border-color .25s, background .25s, transform .2s;
  cursor:pointer;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.05);
  transform:translateY(-2px);
}
.hero-stats {
  display:flex; gap:48px; margin-top:64px;
  animation: fadeUp .7s ease .6s both;
}
.hero-stat { text-align:left; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size:3rem; font-weight:700; color:#fff;
}
.hero-stat .num span { color: var(--cyan); }
.hero-stat .label {
  font-size:1rem; color: var(--gray-400); margin-top:4px;
}

/* === SERVICES BAR === */
.services-bar {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 48px 0;
}
.services-bar .container {
  display:grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 32px;
}
.service-item {
  display:flex; align-items:flex-start; gap:14px;
  opacity:0; animation: fadeUp .6s ease forwards;
}
.service-item:nth-child(1) { animation-delay:.1s; }
.service-item:nth-child(2) { animation-delay:.18s; }
.service-item:nth-child(3) { animation-delay:.26s; }
.service-item:nth-child(4) { animation-delay:.34s; }
.service-item:nth-child(5) { animation-delay:.42s; }
.service-item:nth-child(6) { animation-delay:.5s; }
.service-item:nth-child(7) { animation-delay:.58s; }
.service-item:nth-child(8) { animation-delay:.66s; }
.service-item:nth-child(9) { animation-delay:.74s; }
.service-icon {
  flex-shrink:0; width:40px; height:40px;
  background: var(--cyan-glow); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
}
.service-icon svg { width:20px; height:20px; color: var(--navy-light); }
.service-item h4 { font-size:1rem; font-weight:300; color:#fff; line-height:1.3; }

/* === WHY SECTION === */
.why-section { background: var(--white); }
.section-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:1rem; font-weight:700; text-transform:uppercase;
  letter-spacing:2px; color: var(--cyan);
  margin-bottom:16px;
}
.section-label::before {
  content:''; width:24px; height:2px; background: var(--cyan); border-radius:2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight:700; line-height:1.2;
  margin-bottom:20px;
}
.section-subtitle {
  font-size:1.2rem; color: var(--gray-600); line-height:1.7;
  max-width:650px; margin-bottom:56px;
}
.why-grid {
  display:grid; grid-template-columns: repeat(2, 1fr);
  gap:28px;
}
.why-card {
  background:#fff; border-radius:16px; padding:36px;
  border:1px solid var(--gray-100);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position:relative; overflow:hidden;
}
.why-card::before {
  content:''; position:absolute; top:0; left:0; width:4px; height:0;
  background: var(--cyan); border-radius:0 0 4px 0;
  transition: height .4s ease;
}
.why-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(10,22,40,.08); border-color:transparent; }
.why-card:hover::before { height:100%; }
.why-card-icon {
  width:52px; height:52px; border-radius:14px;
  background: linear-gradient(135deg, var(--white), rgba(0,212,170,.1));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.why-card-icon svg { width:24px; height:24px; color: var(--cyan); }
.why-card h3 {
  font-family: var(--font-display);
  font-size:1.25rem; font-weight:700; margin-bottom:12px;
}
.why-card p { font-size:1rem; color: var(--gray-600); line-height:1.7; }

/* === INCLUSO SECTION === */
.incluso-section {
  background: var(--navy);
  position:relative; overflow:hidden;
}
.incluso-section::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(0,212,170,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 70%, rgba(255,107,53,.04) 0%, transparent 50%);
}
.incluso-section .container { position:relative; z-index:1; }
.incluso-section .section-title { color:#fff; }
.incluso-section .section-subtitle { color: var(--gray-400); }
.incluso-grid {
  display:grid; grid-template-columns: repeat(3,1fr);
  gap:28px;
}
.incluso-card {
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px; padding:36px;
  transition: background .3s, border-color .3s, transform .3s;
}
.incluso-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(0,212,170,.25);
  transform:translateY(-4px);
}
.incluso-card-header {
  display:flex; align-items:center; gap:14px;
  margin-bottom:24px;
}
.incluso-card-icon {
  width:48px; height:48px; border-radius:12px;
  background: var(--cyan-glow);
  display:flex; align-items:center; justify-content:center;
}
.incluso-card-icon svg { width:22px; height:22px; color: var(--navy-light); }
.incluso-card h3 {
  font-family: var(--font-display);
  font-size:1.2rem; font-weight:700; color:#fff;
}
.incluso-list { list-style:none; }
.incluso-list li {
  display:flex; align-items:flex-start; gap:12px;
  padding:10px 0;
  font-size:1rem; color: var(--gray-200);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.incluso-list li:last-child { border-bottom:none; }
.incluso-list li::before {
  content:''; flex-shrink:0;
  width:6px; height:6px; border-radius:50%;
  background: var(--cyan); margin-top:8px;
}

/* === AUDIENCE === */
.audience-section { background: var(--white); }
.audience-grid {
  display:grid; grid-template-columns: repeat(3,1fr);
  gap:20px;
}
.audience-card {
  background:#fff; border:1px solid var(--gray-100);
  border-radius:14px; padding:28px 24px;
  display:flex; align-items:center; gap:16px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.audience-card:hover {
  transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(10,22,40,.07);
  border-color: var(--cyan);
}
.audience-icon {
  flex-shrink:0; width:48px; height:48px; border-radius:12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display:flex; align-items:center; justify-content:center;
}
.audience-icon svg { width:22px; height:22px; color: var(--cyan); }
.audience-card h4 { font-size:1.2rem; font-weight:600; }
.audience-card p { font-size:1rem; color: var(--gray-600); margin-top:2px; }

/* === CASES === */
.cases-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  position:relative; overflow:hidden;
  text-align:center;
}
.cases-section::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
.cases-section .container { position:relative; z-index:1; }
.cases-section .section-title { color:#fff; margin-bottom:24px; }
.cases-section p {
  font-size:1.2rem; color: var(--gray-400); line-height:1.8;
  max-width:640px; margin:0 auto 48px;
}
.cases-numbers {
  display:flex; justify-content:center; gap:64px; flex-wrap:wrap;
}
.case-num {
  text-align:center;
}
.case-num .val {
  font-family: var(--font-display);
  font-size:3rem; font-weight:700; color: var(--cyan);
}
.case-num .desc {
  font-size:1rem; color: var(--gray-400); margin-top:6px;
}

/* === CTA SECTION === */
.cta-section {
  background: var(--white);
  position:relative;
}
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius:24px; padding:72px 64px;
  position:relative; overflow:hidden;
  text-align:center;
}
.cta-box::before {
  content:''; position:absolute; top:-50%; right:-20%; width:500px; height:500px;
  background: radial-gradient(circle, rgba(0,212,170,.12) 0%, transparent 70%);
  border-radius:50%;
}
.cta-box::after {
  content:''; position:absolute; bottom:-40%; left:-10%; width:400px; height:400px;
  background: radial-gradient(circle, rgba(255,107,53,.08) 0%, transparent 70%);
  border-radius:50%;
}
.cta-box > * { position:relative; z-index:1; }
.cta-box .section-title { color:#fff; margin-bottom:16px; }
.cta-box p {
  font-size:1.2rem; color: var(--gray-400); line-height:1.7;
  max-width:520px; margin:0 auto 40px;
}
.cta-contacts {
  display:flex; justify-content:center; gap:40px; flex-wrap:wrap;
  margin-bottom:40px;
}
.cta-contact-item {
  display:flex; align-items:center; gap:12px;
  color: var(--gray-200); font-size:1.2rem;
}
.cta-contact-item svg { width:20px; height:20px; color: var(--cyan); flex-shrink:0; }
.cta-contact-item a { transition: color .25s; }
.cta-contact-item a:hover { color: var(--cyan); }
.cta-box .btn-primary {
  font-size:1.1rem; padding:18px 48px;
  animation: pulse 2.5s ease-in-out infinite;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  border-top:1px solid rgba(255,255,255,.06);
  padding:48px 0 32px;
}
.footer-inner {
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:20px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size:1.3rem; font-weight:700; color:#fff;
}
.footer-logo span { color: var(--cyan); }
.footer-text { font-size:.85rem; color: var(--gray-400); }
.footer-tagline {
  font-size:.88rem; color: var(--gray-400); font-style:italic;
  margin-top:4px;
}

/* === RESPONSIVE === */
@media (max-width:1024px) {
  .why-grid { grid-template-columns:1fr; }
  .incluso-grid { grid-template-columns:1fr; }
  .audience-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  .nav-links { display:none; }
  .mobile-toggle { display:block; }
  .hero h1 { font-size:2.2rem; }
  .hero-stats { flex-direction:column; gap:24px; }
  .services-bar .container { grid-template-columns:1fr 1fr; }
  .audience-grid { grid-template-columns:1fr; }
  .cta-box { padding:48px 28px; }
  .cta-contacts { flex-direction:column; align-items:center; gap:20px; }
  .cases-numbers { gap:32px; }
  .footer-inner { flex-direction:column; text-align:center; }
}
@media (max-width:480px) {
  .services-bar .container { grid-template-columns:1fr; }
  .hero-ctas { flex-direction:column; }
  .btn-primary, .btn-secondary { width:100%; justify-content:center; }
}