:root{
  --dark:#080b10;
  --dark-2:#111827;
  --white:#ffffff;
  --soft:#f8f9fb;
  --soft-2:#f1f3f7;
  --text:#111827;
  --muted:#64748b;
  --pink:#ec0b5f;
  --pink-2:#ff4d8d;
  --yellow:#ffb800;
  --line:#e8ecf3;
  --shadow:0 24px 70px rgba(15,23,42,.12);
  --shadow-soft:0 16px 42px rgba(15,23,42,.09);
  --radius:26px;
  --max:1180px;
}

*{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth}

body{
  font-family:Inter,Arial,sans-serif;
  background:var(--soft);
  color:var(--text);
  overflow-x:hidden;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(var(--max),calc(100% - 36px));
  margin:auto;
}

/* HEADER */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:80;
  background:rgba(248,249,251,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(15,23,42,.06);
  transition:.25s ease;
}

.site-header.is-scrolled{
  background:rgba(255,255,255,.96);
  box-shadow:0 12px 34px rgba(15,23,42,.08);
}

.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo img{height:44px}

.nav-menu{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  font-weight:800;
  color:#263244;
}

.nav-menu>a{position:relative}

.nav-menu>a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--pink);
  transition:.25s ease;
}

.nav-menu>a:hover::after{width:100%}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 26px rgba(15,23,42,.08);
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:var(--text);
  margin:5px auto;
  transition:.25s ease;
}

.menu-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.is-active span:nth-child(2){opacity:0}
.menu-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:14px;
  font-weight:900;
  border:1px solid transparent;
  transition:.25s ease;
  cursor:pointer;
  white-space:nowrap;
}

.btn:hover{transform:translateY(-2px)}

.btn-pink{
  background:linear-gradient(135deg,var(--pink),var(--pink-2));
  color:#fff;
  box-shadow:0 14px 28px rgba(236,11,95,.25);
}

.btn-soft,
.btn-ghost{
  background:#fff;
  color:var(--text);
  border-color:var(--line);
}

.btn-soft{box-shadow:0 12px 28px rgba(15,23,42,.08)}
.btn-light{background:#fff;color:var(--text)}

/* HERO */

.hero{
  position:relative;
  padding:118px 0 54px;
  overflow:hidden;
  background:
    radial-gradient(circle at 20% 12%,rgba(236,11,95,.15),transparent 28%),
    radial-gradient(circle at 88% 10%,rgba(255,184,0,.18),transparent 26%),
    linear-gradient(180deg,#ffffff 0%,#f8f9fb 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1.12fr;
  align-items:center;
  gap:46px;
}

.hero-visual{
  width:100%;
  align-self:center;
}

.kicker{
  display:inline-flex;
  padding:10px 15px;
  border-radius:999px;
  background:rgba(236,11,95,.09);
  color:var(--pink);
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:20px;
}

.hero-copy h1{
  font-size:clamp(40px,5.2vw,66px);
  line-height:.96;
  letter-spacing:-.055em;
  font-weight:950;
  margin-bottom:22px;
}

.hero-copy h1 span{
  display:block;
  background:linear-gradient(90deg,var(--pink),#ff8a00);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero-copy p{
  max-width:500px;
  color:var(--muted);
  font-size:18px;
  line-height:1.72;
  margin-bottom:28px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.hero-trust{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  color:#475569;
  font-size:13px;
  font-weight:800;
}

.hero-trust span{
  display:inline-flex;
  align-items:center;
  gap:7px;
}

.hero-trust i{color:var(--pink)}

/* HERO MAIN SLIDER */

.hero-main-slider{
  position:relative;
  width:100%;
  height:560px;
  border-radius:34px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.hero-main-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.025);
  transition:opacity .9s ease, transform 1.8s ease;
}

.hero-main-slide.is-active{
  opacity:1;
  transform:scale(1);
}

.hero-main-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.hero-main-slider::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 52%,rgba(0,0,0,.24));
  pointer-events:none;
}

.hero-image-badge{
  position:absolute;
  left:22px;
  bottom:22px;
  z-index:4;
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:13px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  box-shadow:0 14px 32px rgba(15,23,42,.18);
  color:var(--text);
  font-size:13px;
  font-weight:900;
  transition:.25s ease;
}

.hero-image-badge:hover{
  transform:translateY(-2px);
  background:#fff;
  color:var(--pink);
}

.hero-image-badge i{color:var(--pink)}

.hero-main-dots{
  position:absolute;
  right:22px;
  bottom:24px;
  z-index:4;
  display:flex;
  gap:7px;
}

.hero-main-dot{
  width:8px;
  height:8px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.55);
  cursor:pointer;
  transition:.25s ease;
}

.hero-main-dot.is-active{
  width:22px;
  background:#fff;
}

/* METRICS */

.metrics-section{
  padding:0 0 48px;
  margin-top:-16px;
  position:relative;
  z-index:5;
}

.metrics-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.metric-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow-soft);
  min-width:0;
}

.metric-card strong{
  display:block;
  font-size:32px;
  letter-spacing:-.03em;
  margin-bottom:6px;
  word-break:break-word;
}

.metric-card span{
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}

/* SECTIONS */

.section{padding:86px 0}

.section-head{
  max-width:760px;
  margin-bottom:38px;
}

.section-head.center{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.section-label{
  color:var(--pink);
  font-size:13px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:12px;
  display:block;
}

.section h2,
.section-head h2{
  font-size:clamp(34px,4.5vw,58px);
  line-height:1.02;
  letter-spacing:-.045em;
  margin-bottom:16px;
}

.section p{
  color:var(--muted);
  line-height:1.75;
  font-size:17px;
}

/* FEATURES */

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:30px;
  box-shadow:var(--shadow-soft);
  min-width:0;
}

.feature-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  font-size:24px;
}

.pink-icon{background:rgba(236,11,95,.1);color:var(--pink)}
.yellow-icon{background:rgba(255,184,0,.16);color:#cc8b00}
.dark-icon{background:#111827;color:#fff}

.feature-card h3{
  font-size:21px;
  margin-bottom:10px;
}

/* STEPS */

.steps-section{background:#fff}

.steps-list{
  display:grid;
  gap:16px;
}

.step-row{
  display:grid;
  grid-template-columns:82px 1fr;
  gap:18px;
  align-items:start;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
}

.step-row strong{
  font-size:32px;
  color:var(--pink);
  letter-spacing:-.04em;
}

.step-row h3{
  font-size:22px;
  margin-bottom:8px;
}

/* SHOWCASE SLIDER */

.showcase-section{
  background:linear-gradient(180deg,#f8f9fb,#fff);
}

.showcase-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:46px;
  align-items:center;
}

.showcase-grid .btn{margin-top:24px}

.showcase-slider{
  position:relative;
  aspect-ratio:3/2;
  border-radius:32px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  width:100%;
}

.showcase-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.025);
  transition:opacity .8s ease, transform 1.6s ease;
}

.showcase-slide.is-active{
  opacity:1;
  transform:scale(1);
}

.showcase-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.6);
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(12px);
  color:var(--text);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s ease;
}

.slider-btn:hover{
  background:#fff;
  transform:translateY(-50%) scale(1.05);
}

.slider-prev{left:16px}
.slider-next{right:16px}

.slider-dots{
  position:absolute;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  z-index:5;
  display:flex;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(12px);
}

.slider-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:none;
  background:rgba(17,24,39,.28);
  cursor:pointer;
  transition:.25s ease;
}

.slider-dot.is-active{
  width:22px;
  background:var(--pink);
}

/* AUDIENCE */

.audience-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.audience-card{
  min-height:320px;
  border-radius:32px;
  padding:34px;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-end;
  overflow:hidden;
  position:relative;
  min-width:0;
}

.audience-card::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.18;
  background:radial-gradient(circle at top right,#fff,transparent 34%);
}

.brand-card{background:linear-gradient(135deg,var(--pink),#8b1044)}
.space-card{background:linear-gradient(135deg,#111827,#2d3748)}

.audience-card span,
.audience-card h3,
.audience-card p,
.audience-card .btn{position:relative}

.audience-card span{
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  margin-bottom:12px;
}

.audience-card h3{
  font-size:clamp(28px,4vw,42px);
  line-height:1.04;
  letter-spacing:-.04em;
  max-width:520px;
  margin-bottom:12px;
}

.audience-card p{
  color:rgba(255,255,255,.78);
  margin-bottom:22px;
}

/* CTA */

.cta{
  background:
    radial-gradient(circle at top left,rgba(236,11,95,.22),transparent 32%),
    radial-gradient(circle at bottom right,rgba(255,184,0,.2),transparent 30%),
    #111827;
  color:#fff;
  text-align:center;
  border-radius:34px;
  padding:70px 30px;
  box-shadow:var(--shadow);
}

.cta p{
  color:rgba(255,255,255,.72);
  max-width:640px;
  margin:0 auto 26px;
}

/* FOOTER */

.footer{
  background:#fff;
  color:var(--text);
  padding:46px 0;
  border-top:1px solid var(--line);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr auto;
  align-items:center;
  gap:28px;
}

.footer-logo img{
  height:42px;
  margin-bottom:10px;
}

.footer p,
.footer small{color:var(--muted)}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
  color:#334155;
  font-size:14px;
  font-weight:800;
}

.footer-links a:hover{color:var(--pink)}

.social-icons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.social-icons a{
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
  background:var(--soft);
  border:1px solid var(--line);
  font-size:18px;
  transition:.25s ease;
}

.social-icons a:hover{
  transform:translateY(-3px);
  background:var(--pink);
  border-color:var(--pink);
  color:#fff;
}

.whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:90;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:25px;
  box-shadow:0 12px 34px rgba(0,0,0,.22);
}

/* ANIMATIONS */

[data-reveal]{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .75s ease, transform .75s ease;
}

[data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

/* TABLET */

@media(max-width:980px){
  .menu-toggle{
    display:block;
  }

  .nav{
    min-height:72px;
  }

  .nav-menu{
    position:absolute;
    top:82px;
    left:18px;
    right:18px;
    display:grid;
    gap:4px;
    padding:18px;
    border-radius:24px;
    background:rgba(255,255,255,.98);
    box-shadow:var(--shadow);
    border:1px solid var(--line);
    opacity:0;
    pointer-events:none;
    transform:translateY(-12px);
    transition:.25s ease;
  }

  .nav-menu.is-open{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }

  .nav-menu a{
    padding:14px;
    border-radius:14px;
  }

  .nav-menu a:hover{
    background:var(--soft);
  }

  .nav-menu>a::after{
    display:none;
  }

  .nav-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-top:8px;
  }

  .hero{
    padding:108px 0 48px;
  }

  .hero-grid,
  .showcase-grid,
  .audience-grid{
    grid-template-columns:1fr;
    gap:36px;
  }

  .hero-copy{
    text-align:center;
  }

  .hero-copy p{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-trust{
    justify-content:center;
  }

  .hero-main-slider{
    height:420px;
  }

  .metrics-grid,
  .feature-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
    align-items:flex-start;
  }
}

/* MOBILE */

@media(max-width:620px){
  .container{
    width:min(100% - 28px, var(--max));
  }

  .nav{
    min-height:66px;
  }

  .logo img{
    height:38px;
  }

  .menu-toggle{
    width:42px;
    height:42px;
  }

  .nav-menu{
    top:74px;
    left:14px;
    right:14px;
    border-radius:20px;
  }

  .hero{
    padding:92px 0 36px;
  }

  .kicker{
    font-size:10px;
    padding:8px 12px;
    margin-bottom:16px;
  }

  .hero-copy h1{
    font-size:34px;
    line-height:1.04;
    letter-spacing:-.04em;
    margin-bottom:16px;
  }

  .hero-copy p{
    font-size:15px;
    line-height:1.65;
    max-width:100%;
    margin-bottom:22px;
  }

  .hero-buttons{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-bottom:18px;
  }

  .hero-buttons .btn{
    width:100%;
    min-height:46px;
  }

  .hero-trust{
    display:grid;
    gap:8px;
    justify-content:center;
    font-size:12px;
  }

  .hero-main-slider{
    height:260px;
    border-radius:24px;
  }

  .hero-main-slide img{
    object-position:center;
  }

  .hero-image-badge{
    left:14px;
    bottom:14px;
    font-size:11px;
    padding:10px 12px;
  }

  .hero-main-dots{
    right:14px;
    bottom:18px;
  }

  .metrics-section{
    margin-top:0;
    padding:28px 0 34px;
  }

  .metrics-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .metric-card{
    padding:18px;
    border-radius:20px;
  }

  .metric-card strong{
    font-size:22px;
  }

  .metric-card span{
    font-size:12px;
  }

  .section{
    padding:62px 0;
  }

  .section h2,
  .section-head h2{
    font-size:31px;
    line-height:1.08;
  }

  .section p{
    font-size:15px;
  }

  .feature-grid{
    grid-template-columns:1fr;
  }

  .feature-card{
    padding:24px;
    border-radius:22px;
  }

  .step-row{
    grid-template-columns:1fr;
    padding:22px;
  }

  .showcase-slider{
    border-radius:24px;
    aspect-ratio:3/2;
  }

  .slider-btn{
    width:38px;
    height:38px;
  }

  .audience-card{
    min-height:auto;
    padding:28px;
    border-radius:26px;
  }

  .audience-card h3{
    font-size:29px;
  }

  .audience-card .btn{
    width:100%;
  }

  .cta{
    padding:50px 22px;
    border-radius:28px;
  }

  .footer{
    padding:38px 0;
  }

  .footer-links{
    display:grid;
    gap:10px;
  }

  .social-icons a{
    width:44px;
    height:44px;
  }

  .whatsapp{
    width:54px;
    height:54px;
    right:16px;
    bottom:16px;
  }
}

/* EXTRA SMALL */

@media(max-width:390px){
  .hero-copy h1{
    font-size:31px;
  }

  .hero-main-slider{
    height:230px;
  }

  .metrics-grid{
    grid-template-columns:1fr;
  }
}

/* INNER PAGE HERO */

.page-hero{
  padding:118px 0 70px;
  background:
    radial-gradient(circle at 20% 12%,rgba(236,11,95,.13),transparent 28%),
    radial-gradient(circle at 88% 10%,rgba(255,184,0,.17),transparent 26%),
    linear-gradient(180deg,#ffffff 0%,#f8f9fb 100%);
}

.page-hero-grid{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  align-items:center;
  gap:46px;
}

.page-hero-copy h1{
  font-size:clamp(40px,5vw,64px);
  line-height:.98;
  letter-spacing:-.05em;
  font-weight:950;
  margin-bottom:22px;
}

.page-hero-copy p{
  max-width:540px;
  color:var(--muted);
  font-size:18px;
  line-height:1.72;
  margin-bottom:28px;
}

.page-hero-image{
  border-radius:34px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  background:#fff;
}

.page-hero-image img{
  width:100%;
  height:520px;
  object-fit:cover;
}

@media(max-width:980px){
  .page-hero{
    padding:108px 0 58px;
  }

  .page-hero-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .page-hero-copy{
    text-align:center;
  }

  .page-hero-copy p{
    margin-left:auto;
    margin-right:auto;
  }

  .page-hero-image img{
    height:420px;
  }
}

@media(max-width:620px){
  .page-hero{
    padding:92px 0 44px;
  }

  .page-hero-copy h1{
    font-size:34px;
    line-height:1.04;
  }

  .page-hero-copy p{
    font-size:15px;
  }

  .page-hero-image{
    border-radius:24px;
  }

  .page-hero-image img{
    height:260px;
  }
}
/* ABOUT PAGE */

.about-hero{
  padding:118px 0 70px;
  background:
    radial-gradient(circle at 20% 12%,rgba(236,11,95,.13),transparent 28%),
    radial-gradient(circle at 88% 10%,rgba(255,184,0,.17),transparent 26%),
    linear-gradient(180deg,#ffffff 0%,#f8f9fb 100%);
}

.about-hero-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  align-items:center;
  gap:46px;
}

.about-hero-copy h1{
  font-size:clamp(40px,5vw,64px);
  line-height:.98;
  letter-spacing:-.05em;
  font-weight:950;
  margin-bottom:22px;
}

.about-hero-copy p{
  max-width:560px;
  color:var(--muted);
  font-size:18px;
  line-height:1.72;
  margin-bottom:28px;
}

.about-hero-image{
  border-radius:34px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  background:#fff;
}

.about-hero-image img{
  width:100%;
  height:560px;
  object-fit:cover;
}

.about-story-card,
.about-vision-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:34px;
  padding:52px;
  box-shadow:var(--shadow-soft);
}

.about-story-card h2,
.about-vision-card h2{
  font-size:clamp(34px,4.5vw,56px);
  line-height:1.04;
  letter-spacing:-.045em;
  margin-bottom:18px;
}

.about-story-card p,
.about-vision-card p{
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
  max-width:900px;
}

.about-story-card p + p{
  margin-top:18px;
}

.expertise-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.expertise-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow-soft);
}

.expertise-card i{
  width:56px;
  height:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(236,11,95,.1);
  color:var(--pink);
  font-size:22px;
  margin-bottom:18px;
}

.expertise-card:nth-child(even) i{
  background:rgba(255,184,0,.16);
  color:#cc8b00;
}

.expertise-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.expertise-card p{
  color:var(--muted);
  line-height:1.72;
}

.about-slider{
  height:620px;
  aspect-ratio:auto;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.value-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow-soft);
}

.value-card strong{
  display:block;
  color:var(--pink);
  font-size:28px;
  letter-spacing:-.04em;
  margin-bottom:18px;
}

.value-card h3{
  font-size:21px;
  margin-bottom:10px;
}

.value-card p{
  color:var(--muted);
  line-height:1.72;
}

.about-vision-card{
  background:
    radial-gradient(circle at top left,rgba(236,11,95,.12),transparent 30%),
    radial-gradient(circle at bottom right,rgba(255,184,0,.14),transparent 28%),
    #fff;
}

@media(max-width:980px){
  .about-hero{
    padding:108px 0 58px;
  }

  .about-hero-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .about-hero-copy{
    text-align:center;
  }

  .about-hero-copy p{
    margin-left:auto;
    margin-right:auto;
  }

  .about-hero-image img{
    height:420px;
  }

  .expertise-grid,
  .values-grid{
    grid-template-columns:1fr 1fr;
  }

  .about-slider{
    height:420px;
  }
}

@media(max-width:620px){
  .about-hero{
    padding:92px 0 44px;
  }

  .about-hero-copy h1{
    font-size:34px;
    line-height:1.04;
  }

  .about-hero-copy p{
    font-size:15px;
  }

  .about-hero-image{
    border-radius:24px;
  }

  .about-hero-image img{
    height:270px;
  }

  .about-story-card,
  .about-vision-card{
    padding:28px;
    border-radius:26px;
  }

  .about-story-card p,
  .about-vision-card p{
    font-size:15px;
  }

  .expertise-grid,
  .values-grid{
    grid-template-columns:1fr;
  }

  .about-slider{
    height:280px;
    border-radius:24px;
  }
}.mini-proof{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.mini-proof span{
  background:#fff;
  border:1px solid var(--line);
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
}

.income-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.income-card{
  background:#fff;
  padding:24px;
  border-radius:20px;
  text-align:center;
}

.income-card strong{
  font-size:32px;
  color:var(--pink);
}

.slide-label{
  position:absolute;
  bottom:16px;
  left:16px;
  background:rgba(0,0,0,.6);
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
}
.feature-icon{
  width:56px;
  height:56px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}

.pink-icon{
  background:rgba(236,11,95,.1);
  color:var(--pink);
}

.yellow-icon{
  background:rgba(255,184,0,.15);
  color:#cc8b00;
}

.dark-icon{
  background:#111;
  color:#fff;
}

/* CONTACT PAGE V2 */

.contact-hero-v2{
  padding:118px 0 76px;
  min-height:100vh;
  background:
    radial-gradient(circle at 18% 12%,rgba(236,11,95,.13),transparent 30%),
    radial-gradient(circle at 92% 14%,rgba(255,184,0,.18),transparent 28%),
    linear-gradient(180deg,#ffffff 0%,#f8f9fb 100%);
}

.contact-v2-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  align-items:center;
  gap:46px;
}

.contact-v2-copy h1{
  font-size:clamp(40px,5vw,64px);
  line-height:.98;
  letter-spacing:-.05em;
  font-weight:950;
  margin-bottom:22px;
}

.contact-v2-copy p{
  color:var(--muted);
  font-size:18px;
  line-height:1.72;
  max-width:560px;
  margin-bottom:28px;
}

.contact-choice-grid{
  display:grid;
  gap:12px;
  margin:26px 0;
}

.contact-choice{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:14px;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px;
  box-shadow:var(--shadow-soft);
}

.contact-choice i{
  grid-row:span 2;
  width:48px;
  height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--pink);
  background:rgba(236,11,95,.1);
  font-size:20px;
}

.contact-choice:nth-child(2) i{
  color:#cc8b00;
  background:rgba(255,184,0,.16);
}

.contact-choice:nth-child(3) i{
  color:#fff;
  background:#111827;
}

.contact-choice strong{
  font-size:16px;
}

.contact-choice span{
  color:var(--muted);
  font-size:14px;
}

.contact-points-v2{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.contact-points-v2 div{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:9px 13px;
  color:#475569;
  font-size:13px;
  font-weight:800;
}

.contact-points-v2 i{
  color:var(--pink);
}

.contact-card-v2{
  background:#fff;
  border:1px solid var(--line);
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow);
}

.form-pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(236,11,95,.09);
  color:var(--pink);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:14px;
}

.contact-card-v2 h2{
  font-size:34px;
  letter-spacing:-.04em;
  margin-bottom:10px;
}

.contact-card-v2 > p{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:22px;
}

.form-field{
  display:grid;
  gap:8px;
}

.form-field label{
  font-size:13px;
  color:#334155;
  font-weight:900;
}

.contact-card-v2 .input,
.contact-card-v2 .textarea,
.contact-card-v2 select.input{
  background:#f8fafc;
  color:var(--text);
  border:1px solid var(--line);
}

.contact-card-v2 .input::placeholder,
.contact-card-v2 .textarea::placeholder{
  color:#94a3b8;
}

.contact-card-v2 .input:focus,
.contact-card-v2 .textarea:focus{
  border-color:rgba(236,11,95,.6);
  background:#fff;
  box-shadow:0 0 0 4px rgba(236,11,95,.1);
}

.form-note-v2{
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
  text-align:center;
}

@media(max-width:980px){
  .contact-hero-v2{
    padding:108px 0 58px;
  }

  .contact-v2-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .contact-v2-copy{
    text-align:center;
  }

  .contact-v2-copy p{
    margin-left:auto;
    margin-right:auto;
  }

  .contact-points-v2{
    justify-content:center;
  }
}

@media(max-width:620px){
  .contact-hero-v2{
    padding:92px 0 44px;
  }

  .contact-v2-copy h1{
    font-size:34px;
    line-height:1.04;
  }

  .contact-v2-copy p{
    font-size:15px;
  }

  .contact-card-v2{
    padding:24px;
    border-radius:26px;
  }

  .contact-choice{
    grid-template-columns:42px 1fr;
    padding:14px;
  }

  .contact-choice i{
    width:42px;
    height:42px;
  }

  .field-row{
    grid-template-columns:1fr;
  }
}

/* FORM FIX GLOBAL */

.field-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}

.contact-form{
  display:grid;
  gap:14px;
}

.input,
.textarea,
select.input{
  width:100%;
  min-height:52px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#f8fafc;
  padding:0 16px;
  font-family:Inter,Arial,sans-serif;
  font-size:14px;
  color:var(--text);
  outline:none;
  transition:.25s ease;
}

.textarea{
  min-height:130px;
  padding:16px;
  resize:vertical;
}

.input:focus,
.textarea:focus,
select.input:focus{
  border-color:rgba(236,11,95,.65);
  background:#fff;
  box-shadow:0 0 0 4px rgba(236,11,95,.10);
}

.input::placeholder,
.textarea::placeholder{
  color:#94a3b8;
}

.full-btn{
  width:100%;
  gap:8px;
}

.hidden-field{
  display:none !important;
}

.form-note-v2{
  margin-top:2px;
}

@media(max-width:620px){
  .field-row{
    grid-template-columns:1fr;
    gap:14px;
  }

  .input,
  .textarea,
  select.input{
    min-height:50px;
    font-size:14px;
  }

  .textarea{
    min-height:120px;
  }
}

.btn-disabled{
  pointer-events:none;
  opacity:.75;
  position:relative;
}

.badge-soon{
  margin-left:6px;
  font-size:10px;
  background:rgba(236,11,95,.12);
  color:var(--pink);
  padding:3px 6px;
  border-radius:6px;
  font-weight:700;
}
/* COMING PAGE */

.coming-wrap{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
  background:
    radial-gradient(circle at 20% 20%,rgba(236,11,95,.15),transparent 40%),
    radial-gradient(circle at 80% 20%,rgba(255,184,0,.18),transparent 40%),
    #fff;
}

.coming-card{
  max-width:520px;
  width:100%;
  background:#fff;
  border-radius:28px;
  padding:36px;
  text-align:center;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.coming-card h1{
  font-size:32px;
  margin:14px 0;
  line-height:1.2;
}

.coming-card p{
  color:var(--muted);
  margin-bottom:24px;
}

.coming-form{
  display:grid;
  gap:12px;
  margin-bottom:18px;
}

.coming-form input{
  height:50px;
  border-radius:12px;
  border:1px solid var(--line);
  padding:0 14px;
}

.alt-option{
  font-size:14px;
  color:var(--muted);
}

.alt-option a{
  display:block;
  margin-top:6px;
  color:var(--pink);
  font-weight:600;
}