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

:root {
  --bg:      #ffffff;
  --bg-2:    #f5f7fc;
  --bg-3:    #edf0f8;
  --border:  rgba(13,36,97,0.1);
  --border-h:rgba(13,36,97,0.2);
  --text:    #0a0a0a;
  --muted:   #666;
  --subtle:  #aaa;
  --navy:    #0d2461;
  --navy-2:  #1a3a8f;
  --blue:    #1a6bdb;
  --teal:    #00c896;
  --green:   #16a34a;
  --green-2: #00c896;
  --navy-l:  rgba(13,36,97,0.08);
  --navy-ll: rgba(13,36,97,0.04);
  /* Gradient shortcuts */
  --g-main: linear-gradient(135deg, #0d2461 0%, #1a6bdb 55%, #00c896 100%);
  --g-soft: linear-gradient(135deg, #1a6bdb 0%, #00c896 100%);
  --r: 12px; --rl: 18px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--g-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CURSOR ===== */
.cursor {
  position: fixed; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,219,0.05) 0%, transparent 70%);
  pointer-events: none; transform: translate(-50%,-50%); z-index: 0;
  transition: left .08s linear, top .08s linear;
}

/* ===== ANIMATIONS ===== */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* ===== LAYOUT ===== */
.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; position: relative; overflow: hidden; }

/* ===== LABELS ===== */
.label {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px; opacity: .7;
}
.section__header { margin-bottom: 56px; }
.section__header h2 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; letter-spacing: -2px; line-height: 1.15; }

/* ===== GEOMETRIC SHAPES ===== */
.geo { position: absolute; pointer-events: none; border-radius: 50%; }

/* Hero shapes */
.geo--blob-1 {
  width: 700px; height: 700px; top: -200px; right: -180px;
  background: radial-gradient(circle at 40% 40%, rgba(26,107,219,.13) 0%, rgba(13,36,97,.06) 50%, transparent 75%);
  filter: blur(48px);
}
.geo--blob-2 {
  width: 500px; height: 500px; bottom: -150px; left: -120px;
  background: radial-gradient(circle, rgba(0,200,150,.1) 0%, transparent 70%);
  filter: blur(56px);
}
.geo--blob-3 {
  width: 280px; height: 280px; top: 20%; left: 40%;
  background: radial-gradient(circle, rgba(13,36,97,.07) 0%, transparent 70%);
  filter: blur(36px);
}
.geo--ring-1 {
  width: 220px; height: 220px; top: 15%; right: 12%;
  border: 1.5px solid rgba(26,107,219,.12); background: transparent;
  border-radius: 50%; filter: none;
  animation: spin-slow 28s linear infinite;
}
.geo--ring-2 {
  width: 100px; height: 100px; bottom: 20%; right: 20%;
  border: 1.5px solid rgba(0,200,150,.15); background: transparent;
  border-radius: 50%; filter: none;
  animation: spin-slow 18s linear infinite reverse;
}
.geo--dot-1 {
  width: 14px; height: 14px; top: 35%; right: 18%;
  background: var(--g-soft); border-radius: 50%; filter: none;
}
.geo--dot-2 {
  width: 8px; height: 8px; bottom: 30%; left: 20%;
  background: var(--blue); opacity: .3; border-radius: 50%; filter: none;
}
.geo--poly-1 {
  width: 180px; height: 180px; top: 60%; right: 8%;
  background: linear-gradient(135deg, rgba(26,107,219,.06), rgba(0,200,150,.04));
  border-radius: 30% 70% 55% 45% / 45% 30% 70% 55%;
  filter: blur(20px);
  animation: morph 12s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 30% 70% 55% 45% / 45% 30% 70% 55%; }
  50%      { border-radius: 60% 40% 35% 65% / 65% 55% 45% 35%; }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* Section-specific shapes */
.geo--pain-blob {
  width: 400px; height: 400px; top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(26,107,219,.07) 0%, transparent 70%);
  filter: blur(40px);
}
.geo--process-ring {
  width: 300px; height: 300px; top: 50%; right: -80px; transform: translateY(-50%);
  border: 1px solid rgba(0,200,150,.1); background: transparent; filter: none;
  border-radius: 50%; animation: spin-slow 35s linear infinite;
}
.geo--process-blob {
  width: 350px; height: 350px; bottom: -80px; left: -60px;
  background: radial-gradient(circle, rgba(13,36,97,.07) 0%, transparent 70%);
  filter: blur(48px);
}
.geo--proj-blob {
  width: 450px; height: 450px; top: 0; right: -100px;
  background: radial-gradient(circle, rgba(0,200,150,.06) 0%, transparent 70%);
  filter: blur(50px);
}
.geo--price-blob {
  width: 500px; height: 500px; top: -100px; left: -120px;
  background: radial-gradient(circle, rgba(26,107,219,.07) 0%, transparent 70%);
  filter: blur(52px);
}
.geo--price-ring {
  width: 200px; height: 200px; bottom: 10%; right: 5%;
  border: 1.5px solid rgba(26,107,219,.1); background: transparent;
  border-radius: 50%; filter: none; animation: spin-slow 22s linear infinite reverse;
}
.geo--test-blob {
  width: 400px; height: 400px; bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(0,200,150,.06) 0%, transparent 70%);
  filter: blur(44px);
}
.geo--contact-blob-1 {
  width: 600px; height: 600px; top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(26,107,219,.25) 0%, transparent 70%);
  filter: blur(60px);
}
.geo--contact-blob-2 {
  width: 400px; height: 400px; bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(0,200,150,.2) 0%, transparent 70%);
  filter: blur(48px);
}
.geo--contact-ring {
  width: 280px; height: 280px; top: 50%; right: 8%; transform: translateY(-50%);
  border: 1.5px solid rgba(255,255,255,.12); background: transparent;
  border-radius: 50%; filter: none; animation: spin-slow 30s linear infinite;
}
.geo--foot-blob {
  width: 500px; height: 300px; top: 0; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(26,107,219,.15) 0%, transparent 70%);
  filter: blur(40px);
}

/* Geometric shapes hidden */
.geo { display: none !important; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { font-size: 19px; font-weight: 900; letter-spacing: -.5px; text-decoration: none; color: var(--text); }
.logo span { color: var(--blue); font-weight: 400; font-size: 15px; margin-left: 1px; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav__links a:hover, .nav__links a.active { color: var(--navy); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 600; cursor: pointer; border: none; }

.btn--nav { font-size: 12px; padding: 8px 16px; border-radius: 8px; border: 1px solid var(--border-h); color: var(--text); background: transparent; transition: all .2s; }
.btn--nav:hover { background: var(--navy); color: white; border-color: var(--navy); }

.btn--cta { padding: 15px 30px; font-size: 14px; border-radius: 10px; background: var(--g-main); color: white; transition: opacity .2s, box-shadow .2s, transform .15s; }
.btn--cta:hover { opacity: .9; box-shadow: 0 8px 28px rgba(13,36,97,.3); }

.btn--link { font-size: 14px; color: var(--muted); transition: color .2s; }
.btn--link:hover { color: var(--navy); }

.btn--plan { display: flex; align-items: center; justify-content: center; width: 100%; padding: 13px; font-size: 13px; border-radius: 10px; border: 1px solid var(--border-h); color: var(--text); background: transparent; transition: all .2s; margin-top: auto; text-decoration: none; }
.btn--plan:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-ll); }

.btn--plan-featured { background: var(--g-main); color: white; border-color: transparent; }
.btn--plan-featured:hover { opacity: .9; border-color: transparent; }

.btn--whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 17px 36px; min-width: 240px; font-size: 15px; font-weight: 700; background: #25D366; color: white; border-radius: 12px; transition: background .2s, box-shadow .3s, transform .15s; text-decoration: none; }
.btn--whatsapp:hover { background: #20bd5a; box-shadow: 0 8px 32px rgba(37,211,102,.28); }

/* ===== HERO ===== */
.hero { position: relative; padding: 160px 0 120px; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__inner { position: relative; z-index: 1; max-width: 700px; }

.badge { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; color: var(--muted); border: 1px solid var(--border); border-radius: 100px; padding: 6px 14px; margin-bottom: 36px; background: var(--bg-2); }
.badge__pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 2.2s ease infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,200,150,.5); } 70% { box-shadow: 0 0 0 7px rgba(0,200,150,0); } 100% { box-shadow: 0 0 0 0 rgba(0,200,150,0); } }

.hero__title { font-size: clamp(52px,8vw,86px); font-weight: 900; letter-spacing: -4px; line-height: 1.0; margin-bottom: 24px; color: var(--text); }
.hero__sub { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 440px; margin-bottom: 40px; }
.hero__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero__stats { display: flex; align-items: center; gap: 28px; padding-top: 36px; border-top: 1px solid var(--border); }
.stat__value { display: block; font-size: 28px; font-weight: 800; letter-spacing: -1px; }
.stat__label { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
.stat__div { width: 1px; height: 30px; background: var(--border); flex-shrink: 0; }

/* ===== ICON WRAPS ===== */
.icon__wrap {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 20px;
  background: var(--g-main);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(13,36,97,.2);
  transition: transform .2s, box-shadow .2s;
}
.pain__card:hover .icon__wrap { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,36,97,.28); }
.icon__wrap svg { width: 22px; height: 22px; stroke: white; }

/* ===== PAIN ===== */
.pain { border-top: 1px solid var(--border); background: var(--bg); }
.pain__grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; }
.pain__card { padding: 36px 28px; border-right: 1px solid var(--border); transition: background .25s; }
.pain__card:last-child { border-right: none; }
.pain__card:hover { background: var(--bg-2); }
.pain__card h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.pain__card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ===== PROCESS ===== */
.process { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process__list { border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; background: white; }
.process__item { display: flex; align-items: flex-start; gap: 28px; padding: 36px 40px; border-bottom: 1px solid var(--border); transition: background .2s; }
.process__item:last-child { border-bottom: none; }
.process__item:hover { background: var(--bg-2); }
.process__num-wrap { flex-shrink: 0; }
.process__num { font-size: 28px; font-weight: 900; letter-spacing: -1px; display: block; }
.process__body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.process__body p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 540px; }

/* ===== PROJECTS ===== */
.projects__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.project__card { display: block; text-decoration: none; color: var(--text); border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s; background: white; }
.project__card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,36,97,.12); }
.project__cover { position: relative; height: 210px; overflow: hidden; background: var(--bg-2); }
.project__cover img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .55s ease; }
.project__card:hover .project__cover img { transform: scale(1.06); }
.project__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,36,97,.8), rgba(0,200,150,.6)); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.project__overlay span { font-size: 13px; font-weight: 700; color: white; letter-spacing: .3px; }
.project__card:hover .project__overlay { opacity: 1; }
.project__overlay--next { background: linear-gradient(135deg, rgba(13,36,97,.75), rgba(26,107,219,.65)); }
.project__next-label { position: absolute; top: 12px; left: 14px; background: var(--g-main); color: white; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.project__info { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-top: 1px solid var(--border); }
.project__tag { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.project__info h4 { font-size: 14px; font-weight: 700; }
.project__arrow { font-size: 16px; color: var(--muted); text-decoration: none; transition: color .2s, transform .2s; }
.project__card:hover .project__arrow { color: var(--navy); transform: translate(2px,-2px); }

/* ===== PRICING ===== */
.pricing { background: var(--bg-2); border-top: 1px solid var(--border); }
.pricing__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 20px; align-items: stretch; }
.pricing__card { background: white; border: 1px solid var(--border); border-radius: var(--rl); padding: 30px 26px; display: flex; flex-direction: column; position: relative; transition: border-color .3s, box-shadow .3s; }
.pricing__card:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(13,36,97,.1); }
.pricing__card--featured { border-color: var(--navy); background: var(--navy-ll); }
.pricing__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; background: var(--g-main); color: white; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.pricing__top { padding-bottom: 22px; border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.pricing__top h3 { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.price { display: flex; align-items: baseline; gap: 4px; }
.price span { font-size: 14px; font-weight: 600; color: var(--muted); }
.price strong {
  font-size: 44px; font-weight: 900; letter-spacing: -2px; line-height: 1;
  background: linear-gradient(135deg, #16a34a 0%, #00c896 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.price em { font-size: 11px; color: var(--muted); font-style: normal; margin-left: 4px; }

.pricing__card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 22px; }
.pricing__card li { font-size: 12px; display: flex; align-items: center; gap: 9px; }
.pricing__card li.ok { color: var(--text); }
.pricing__card li.ok::before {
  content: ''; display: inline-flex; flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(22,163,74,.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
.pricing__card li.no { color: var(--subtle); }
.pricing__card li.no::before {
  content: ''; display: inline-flex; flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(220,50,50,.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e04040' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/9px no-repeat;
}
.pricing__note { text-align: center; font-size: 11px; color: var(--subtle); }

/* ===== PRICING TABS ===== */
.pricing__tabs { display: flex; gap: 6px; margin-bottom: 40px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 5px; width: fit-content; }
.pricing__tab { padding: 9px 28px; font-size: 13px; font-weight: 600; border: none; border-radius: 8px; cursor: pointer; background: transparent; color: rgba(255,255,255,.4); transition: background .15s ease, color .15s ease, transform .12s ease, box-shadow .15s ease; font-family: 'Inter', sans-serif; }
.pricing__tab--active { background: var(--g-main); color: white; transform: scale(1.03); box-shadow: 0 4px 16px rgba(13,36,97,.35); }
.pricing__tab:not(.pricing__tab--active):hover { color: rgba(255,255,255,.8); background: rgba(255,255,255,.07); }
.pricing__grid--hidden { display: none; }
@keyframes tab-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.pricing__grid:not(.pricing__grid--hidden) { animation: tab-in .18s ease-out forwards; }

/* ===== TESTIMONIALS ===== */
.testimonials { border-top: 1px solid var(--border); background: var(--bg); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; background: white; }
.testimonial { padding: 36px 32px; border-right: 1px solid var(--border); transition: background .2s; }
.testimonial:last-child { border-right: none; }
.testimonial:hover { background: var(--bg-2); }
.stars { color: #e6a800; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial p { font-size: 14px; line-height: 1.75; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
.testimonial__author strong { display: block; font-size: 13px; font-weight: 700; }
.testimonial__author span { font-size: 11px; color: var(--muted); }

/* ===== CONTACT ===== */
.contact { background: var(--navy); border-top: 1px solid var(--border); }
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(26,107,219,.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,200,150,.2) 0%, transparent 40%);
  pointer-events: none;
}
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact .label { color: rgba(255,255,255,.5); opacity: 1; }
.contact__inner h2 { font-size: clamp(30px,4vw,46px); font-weight: 800; letter-spacing: -2px; line-height: 1.15; margin-bottom: 14px; color: white; }
.contact__sub { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }
.contact__action { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.contact__trust { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,.4); flex-wrap: wrap; }
.dot { color: rgba(255,255,255,.25); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); padding: 28px 0; position: relative; overflow: hidden; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.footer .logo { color: white; }
.footer .logo span { color: var(--teal); }
.footer p { font-size: 11px; color: rgba(255,255,255,.35); }

/* ===== DARK: HERO ===== */
.hero { background: #060810; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(26,107,219,.52) 0%, transparent 38%),
    radial-gradient(circle at 12% 76%, rgba(0,200,150,.28) 0%, transparent 32%),
    radial-gradient(circle at 50% 55%, rgba(80,40,200,.14) 0%, transparent 44%);
  pointer-events: none;
}
.hero .hero__title { color: #fff; }
.hero .hero__sub { color: rgba(255,255,255,.58); }
.hero .badge { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.55); }
.hero .hero__stats { border-top-color: rgba(255,255,255,.08); }
.hero .stat__value { color: #fff; }
.hero .stat__label { color: rgba(255,255,255,.45); }
.hero .stat__div { background: rgba(255,255,255,.1); }
.hero .btn--link { color: rgba(255,255,255,.52); }
.hero .btn--link:hover { color: #fff; }

/* ===== DARK: PROCESS ===== */
.process {
  background: #060810;
  border-top-color: rgba(255,255,255,.06) !important;
  border-bottom-color: rgba(255,255,255,.06) !important;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 48%, rgba(26,107,219,.38) 0%, transparent 40%),
    radial-gradient(circle at 18% 82%, rgba(0,200,150,.22) 0%, transparent 35%);
  pointer-events: none;
}
.process .label { color: rgba(255,255,255,.35); opacity: 1; }
.process .section__header h2 { color: #fff; }
.process .process__list { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.07); }
.process .process__item { border-bottom-color: rgba(255,255,255,.07); }
.process .process__item:hover { background: rgba(255,255,255,.04); }
.process .process__body h3 { color: #fff; }
.process .process__body p { color: rgba(255,255,255,.5); }

/* ===== DARK: PRICING ===== */
.pricing {
  background: #060810;
  border-top-color: rgba(255,255,255,.06) !important;
}
.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(26,107,219,.42) 0%, transparent 40%),
    radial-gradient(circle at 86% 82%, rgba(0,200,150,.24) 0%, transparent 35%);
  pointer-events: none;
}
.pricing .label { color: rgba(255,255,255,.35); opacity: 1; }
.pricing .section__header h2 { color: #fff; }
.pricing .pricing__card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.pricing .pricing__card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(0,0,0,.5); }
.pricing .pricing__card--featured { background: rgba(26,107,219,.1); border-color: rgba(26,107,219,.38); }
.pricing .pricing__top { border-bottom-color: rgba(255,255,255,.08); }
.pricing .pricing__top h3 { color: rgba(255,255,255,.4); }
.pricing .price span { color: rgba(255,255,255,.4); }
.pricing .price em { color: rgba(255,255,255,.35); }
.pricing .pricing__card li.ok { color: rgba(255,255,255,.85); }
.pricing .pricing__card li.no { color: rgba(255,255,255,.28); }
.pricing .pricing__note { color: rgba(255,255,255,.25); }
.pricing .btn--plan,
.pricing .btn--plan-featured {
  background: linear-gradient(135deg, #16a34a 0%, #00c896 100%);
  color: #fff;
  border-color: transparent;
}
.pricing .btn--plan:hover,
.pricing .btn--plan-featured:hover {
  opacity: .88;
  box-shadow: 0 6px 22px rgba(22,163,74,.3);
  border-color: transparent;
}

/* ===== BROWSER MOCKUP ===== */
.project__cover--mockup {
  background: #f0f0f2;
  padding: 11px 12px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.mock-browser {
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.09);
}
/* Browser chrome */
.mock-bar {
  background: #1e1e24;
  padding: 5px 9px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.mock-dots { display: flex; gap: 3.5px; }
.mock-dots i { display: block; width: 6px; height: 6px; border-radius: 50%; font-style: normal; }
.mock-dots i:nth-child(1) { background: #ff5f57; }
.mock-dots i:nth-child(2) { background: #febc2e; }
.mock-dots i:nth-child(3) { background: #28c840; }
.mock-addr {
  flex: 1; height: 12px; background: #2a2a33; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6px; color: rgba(255,255,255,.3); letter-spacing: .2px;
  font-family: 'Inter', sans-serif;
}

/* Website inside browser */
.mock-site { display: flex; flex-direction: column; background: #fff; }

/* Nav */
.mock-nav {
  background: #fff;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0ece6;
}
.mock-logo {
  font-size: 8.5px; font-weight: 900; letter-spacing: -.3px; color: #1a1208;
  font-family: 'Inter', sans-serif;
}
.mock-logo em { font-style: normal; color: #b07d2e; }
.mock-navlinks { display: flex; gap: 7px; }
.mock-navlinks span { font-size: 5px; color: #888; font-family: 'Inter', sans-serif; }
.mock-navcta {
  font-size: 5px; font-weight: 700; color: #fff;
  background: #b07d2e;
  padding: 2.5px 7px; border-radius: 20px;
  font-family: 'Inter', sans-serif;
}

/* Hero */
.mock-hero {
  position: relative;
  padding: 12px 10px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 100px;
  overflow: hidden;
  background: #fff;
}
.mock-hero-glow {
  position: absolute;
  width: 100px; height: 100px;
  top: -20px; right: 5px;
  background: radial-gradient(circle, rgba(176,125,46,.12) 0%, transparent 70%);
  pointer-events: none;
}
.mock-hero-content { flex: 1; display: flex; flex-direction: column; gap: 4px; position: relative; z-index: 1; }
.mock-pill {
  display: inline-flex; align-items: center; gap: 3px;
  background: #fdf6ec; border: 1px solid #e8d5b0;
  border-radius: 20px; padding: 1.5px 5px; width: fit-content;
  font-size: 4.5px; color: #8a6020; font-family: 'Inter', sans-serif;
}
.mock-pill-dot { width: 3.5px; height: 3.5px; border-radius: 50%; background: #b07d2e; flex-shrink: 0; }
.mock-heading {
  font-size: 11.5px; font-weight: 900; letter-spacing: -.4px; line-height: 1.15;
  color: #1a1208; font-family: 'Inter', sans-serif;
}
.mock-grad {
  background: linear-gradient(135deg, #b07d2e 0%, #d4a44e 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mock-desc {
  font-size: 4.8px; color: #888; line-height: 1.5;
  font-family: 'Inter', sans-serif; max-width: 110px;
}
.mock-btns { display: flex; gap: 4px; align-items: center; margin-top: 2px; }
.mock-btn-primary {
  font-size: 5px; font-weight: 700; color: #fff;
  background: #b07d2e;
  padding: 3px 8px; border-radius: 20px;
  font-family: 'Inter', sans-serif;
}
.mock-btn-ghost {
  font-size: 5px; color: #b07d2e; font-weight: 600;
  font-family: 'Inter', sans-serif;
}

/* Dish illustration (right side) */
.mock-hero-img {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 35% 35%, #f5ede0 0%, #e8d5b5 100%);
  border: 2px solid #e8d5b0;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 16px rgba(176,125,46,.2);
}
.mock-dish {
  position: absolute;
  width: 34px; height: 34px; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(circle at 40% 35%, #d4a44e 0%, #b07d2e 60%, #8a5e1a 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.mock-dish::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.35) 0%, transparent 50%);
}
.mock-dish-shine {
  position: absolute;
  width: 12px; height: 12px; border-radius: 50%;
  top: 8px; right: 8px;
  background: radial-gradient(circle, rgba(255,255,255,.25) 0%, transparent 70%);
}

/* Trust bar */
.mock-trust {
  display: flex; align-items: center; justify-content: center;
  background: #fdf8f2;
  border-top: 1px solid #f0ece6;
  padding: 5px 10px; gap: 0;
}
.mock-trust-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 1px; }
.mock-trust-num {
  font-size: 7px; font-weight: 800; color: #b07d2e; letter-spacing: -.2px;
  font-family: 'Inter', sans-serif;
}
.mock-trust-lbl { font-size: 4px; color: #aaa; font-family: 'Inter', sans-serif; }
.mock-trust-div { width: 1px; height: 16px; background: #e8e0d4; flex-shrink: 0; }

/* ===== APP MOCKUP ===== */
.project__cover--app {
  background: #07070f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.mapp-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(28px);
}
.mapp-bg-glow-1 {
  width: 90px; height: 90px; top: 10px; left: 28%;
  background: radial-gradient(circle, rgba(124,58,237,.4) 0%, transparent 70%);
}
.mapp-bg-glow-2 {
  width: 70px; height: 70px; bottom: 14px; right: 22%;
  background: radial-gradient(circle, rgba(236,72,153,.35) 0%, transparent 70%);
}
.mapp-phone {
  width: 94px; height: 178px;
  background: #0f0f18;
  border-radius: 16px;
  border: 1.5px solid rgba(255,255,255,.1);
  overflow: hidden;
  box-shadow: 0 14px 48px rgba(0,0,0,.75), inset 0 0 0 0.5px rgba(255,255,255,.05);
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
}
.mapp-island {
  width: 24px; height: 6px;
  background: #000;
  border-radius: 0 0 6px 6px;
  margin: 0 auto; flex-shrink: 0;
}
.mapp-screen {
  flex: 1; display: flex; flex-direction: column;
  background: #080811; overflow: hidden;
}
.mapp-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 3px 8px 2px;
}
.mapp-time {
  font-size: 4.5px; font-weight: 700;
  color: rgba(255,255,255,.8); font-family: 'Inter', sans-serif;
}
.mapp-signal { display: flex; align-items: flex-end; gap: 1px; }
.mapp-signal i {
  display: block; width: 2px; background: rgba(255,255,255,.7);
  border-radius: 1px; font-style: normal;
}
.mapp-signal i:nth-child(1) { height: 3px; }
.mapp-signal i:nth-child(2) { height: 5px; }
.mapp-signal i:nth-child(3) { height: 7px; }
.mapp-signal i:nth-child(4) { height: 9px; }
.mapp-header {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 8px 5px;
}
.mapp-ava {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border: 1px solid rgba(168,85,247,.4);
}
.mapp-uinfo { flex: 1; display: flex; flex-direction: column; }
.mapp-hi {
  font-size: 5.5px; font-weight: 700;
  color: rgba(255,255,255,.9); font-family: 'Inter', sans-serif;
}
.mapp-sub {
  font-size: 4px; color: rgba(255,255,255,.35); font-family: 'Inter', sans-serif;
}
.mapp-notif {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.mapp-notif::after {
  content: ''; position: absolute;
  width: 4px; height: 4px; background: #ec4899; border-radius: 50%;
  top: -1px; right: -1px; border: 1px solid #080811;
}
.mapp-banner {
  margin: 0 8px 6px; border-radius: 8px;
  overflow: hidden; position: relative; height: 38px; flex-shrink: 0;
}
.mapp-banner-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 45%, #a855f7 75%, #ec4899 100%);
}
.mapp-banner-content {
  position: relative; z-index: 1;
  padding: 7px 9px; display: flex; flex-direction: column; gap: 2px;
}
.mapp-banner-pill {
  display: inline-block; background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); font-size: 3.5px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 1px 5px; border-radius: 20px; width: fit-content;
  font-family: 'Inter', sans-serif;
}
.mapp-banner-title {
  font-size: 8px; font-weight: 900; color: #fff;
  letter-spacing: -.2px; font-family: 'Inter', sans-serif;
}
.mapp-banner-cta {
  font-size: 4px; color: rgba(255,255,255,.7); font-family: 'Inter', sans-serif;
}
.mapp-banner-deco {
  position: absolute; width: 40px; height: 40px; border-radius: 50%;
  right: -5px; top: -10px; background: rgba(255,255,255,.08);
}
.mapp-banner-deco::after {
  content: ''; position: absolute;
  width: 28px; height: 28px; border-radius: 50%;
  right: -8px; bottom: -8px; background: rgba(255,255,255,.06);
}
.mapp-cats { display: flex; gap: 4px; padding: 0 8px 6px; }
.mapp-cat {
  font-size: 4px; font-weight: 600; color: rgba(255,255,255,.35);
  padding: 2.5px 7px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03); font-family: 'Inter', sans-serif;
}
.mapp-cat-on {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: white; border-color: transparent;
}
.mapp-cards { display: flex; gap: 5px; padding: 0 8px 5px; flex: 1; }
.mapp-card {
  flex: 1; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 7px; overflow: hidden;
  display: flex; flex-direction: column;
}
.mapp-card-img {
  height: 34px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a0d3d 0%, #2d1b6e 100%);
}
.mapp-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,.25) 0%, rgba(168,85,247,.15) 100%);
}
.mapp-card-img-1::before {
  content: '💆'; position: absolute; font-size: 14px;
  top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1;
}
.mapp-card-img-2::before {
  content: '💅'; position: absolute; font-size: 14px;
  top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1;
}
.mapp-card-name {
  font-size: 4.5px; font-weight: 700;
  color: rgba(255,255,255,.85); padding: 4px 5px 1px;
  font-family: 'Inter', sans-serif;
}
.mapp-card-price {
  font-size: 4px; color: #a855f7; font-weight: 600;
  padding: 0 5px 4px; font-family: 'Inter', sans-serif;
}
.mapp-nav {
  display: flex; align-items: center; justify-content: space-around;
  padding: 5px 8px 6px;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06); flex-shrink: 0;
}
.mapp-nav-i { font-size: 9px; color: rgba(255,255,255,.2); }
.mapp-nav-on { color: #a855f7; }

/* ===== REVIEWS SCROLL ===== */
.reviews-scroll { padding: 100px 0 0; background: var(--bg); border-top: 1px solid var(--border); overflow: hidden; }
.reviews-scroll__header { margin-bottom: 56px; }
.reviews-tracks { display: flex; flex-direction: column; gap: 14px; padding-bottom: 100px; }
.reviews-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scroll-reviews-l 55s linear infinite;
  padding: 4px 0;
}
.reviews-track--reverse { animation: scroll-reviews-r 55s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes scroll-reviews-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-reviews-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.review-card {
  width: 290px;
  flex-shrink: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  transition: border-color .25s, box-shadow .25s;
  cursor: default;
}
.review-card:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(13,36,97,.1); }
.review-card .stars { font-size: 12px; letter-spacing: 2px; color: #e6a800; margin-bottom: 12px; }
.review-card p { font-size: 13px; line-height: 1.72; color: var(--text); margin-bottom: 18px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 10px; }
.review-card__author strong { display: block; font-size: 12px; font-weight: 700; }
.review-card__author span { font-size: 11px; color: var(--muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .pain__grid { grid-template-columns: repeat(2,1fr); }
  .pain__card:nth-child(2) { border-right: none; }
  .pain__card:nth-child(1), .pain__card:nth-child(2) { border-bottom: 1px solid var(--border); }
  .projects__grid { grid-template-columns: repeat(2,1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 20px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial { border-right: none; border-bottom: 1px solid var(--border); }
  .testimonial:last-child { border-bottom: none; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .hero { padding: 120px 0 72px; min-height: auto; }
  .hero__title { letter-spacing: -2.5px; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 14px; }
  .stat__div { display: none; }
  .pain__grid { grid-template-columns: 1fr; }
  .pain__card { border-right: none !important; border-bottom: 1px solid var(--border); }
  .pain__card:last-child { border-bottom: none; }
  .projects__grid { grid-template-columns: 1fr; }
  .process__item { padding: 28px 24px; gap: 20px; }
  .footer__inner { flex-direction: column; gap: 8px; text-align: center; }
  .btn--whatsapp { width: 100%; justify-content: center; }
}
