:root {
  --bg: #ffffff;
  --bg-alt: #eefaf6;
  --panel: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #55524c;
  --muted: #6b6862;
  --accent: #2dd4a8;
  --accent-dark: #1fb892;
  --ink-brand: #2c3335;
  --dark: #17181c;
  --border: rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --max: 1120px;
}

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

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: "Sora", sans-serif; line-height: 1.12; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }

.eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.75rem; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.eyebrow--light { color: #7aefcb; }

/* Buttons */
.btn {
  display: inline-block; background: var(--dark); color: #fff;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; border: none; cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid rgba(0,0,0,0.2); }
.btn--ghost:hover { background: rgba(0,0,0,0.04); }
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.65rem; letter-spacing: -0.02em; color: var(--ink-brand); }
.brand--logo { display: inline-flex; align-items: center; }
.brand__img { height: 48px; width: auto; display: block; }
.brand--footer .brand__img { height: 40px; }
.nav__links { display: flex; align-items: center; gap: 24px; }
.nav__links a { color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; transition: color 0.15s; }
.nav__links a:hover { color: var(--ink); }
.nav__links .btn--sm { color: #fff; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav__mobile { display: none; flex-direction: column; padding: 12px 24px 20px; border-bottom: 1px solid var(--border); background: var(--bg); }
.nav__mobile a { padding: 12px 0; color: var(--ink-soft); border-bottom: 1px solid var(--border); }
.nav__mobile.open { display: flex; }

/* Hero */
.hero {
  padding: 48px 0 64px; text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 50% -80px, rgba(45, 212, 168, 0.16), transparent 70%),
    linear-gradient(180deg, #f4fdfa 0%, #ffffff 100%);
}
.hero__inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
.pill { display: inline-block; background: #fff; border: 1px solid rgba(45, 212, 168, 0.35); color: var(--accent-dark); font-weight: 600; font-size: 0.82rem; padding: 7px 16px; border-radius: 999px; margin-bottom: 26px; box-shadow: 0 2px 10px rgba(45, 212, 168, 0.12); }
.hero__title { font-size: clamp(2.6rem, 7vw, 4.6rem); font-weight: 800; }
.hero__sub { color: var(--ink-soft); font-size: 1.14rem; margin: 22px auto 32px; max-width: 560px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__mini { margin-top: 34px; color: var(--muted); font-size: 0.9rem; background: #fff; border: 1px solid rgba(45, 212, 168, 0.25); display: inline-block; padding: 12px 22px; border-radius: 12px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04); }

/* Sections */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 680px; margin: 0 auto 46px; text-align: center; }
.section__head h2 { font-size: clamp(2.1rem, 4.5vw, 3.1rem); font-weight: 800; }
.section__note { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* Panel + Mission/Vision */
.panel-lg { background: linear-gradient(135deg, #f6fdfb, #ffffff); border: 1px solid rgba(45, 212, 168, 0.2); border-radius: var(--radius); padding: 44px; margin-bottom: 22px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); }
.panel-lg h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; margin-bottom: 16px; }
.panel-lg p { color: var(--ink-soft); font-size: 1.05rem; }
.mv__card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); }
.mv__card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.mv__card p { color: var(--ink-soft); font-size: 0.98rem; }
.mv__card--dark { background: var(--dark); color: #fff; }
.mv__card--dark p { color: rgba(255,255,255,0.75); }

/* Grid */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; box-shadow: 0 3px 14px rgba(0, 0, 0, 0.04); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.1); border-color: rgba(45, 212, 168, 0.45); }
.card__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 1.2rem; margin-bottom: 18px; background: #e8faf4; color: var(--accent-dark); }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* Chips */
.chips { gap: 14px; }
.chip { background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 14px 20px; font-size: 0.94rem; color: var(--ink-soft); text-align: center; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04); }

/* Process */
.process { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.process__left { background: var(--dark); color: #fff; border-radius: var(--radius); padding: 40px; }
.process__left h2 { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; margin: 6px 0 14px; }
.process__left p { color: rgba(255,255,255,0.72); }
.process__stats { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.process__stats div { background: rgba(255,255,255,0.08); border-radius: 12px; padding: 16px; flex: 1; min-width: 96px; }
.process__stats strong { display: block; font-family: "Sora", sans-serif; font-size: 1.5rem; }
.process__stats span { color: rgba(255,255,255,0.65); font-size: 0.8rem; }
.process__right { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.process__eyebrow { font-weight: 700; margin-bottom: 18px; }
.steps { list-style: none; counter-reset: step; }
.steps li { padding: 14px 0 14px 42px; position: relative; color: var(--ink-soft); border-bottom: 1px solid var(--border); }
.steps li:last-child { border-bottom: none; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 14px; width: 26px; height: 26px; border-radius: 50%; background: #e8faf4; color: var(--accent-dark); display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; }
.steps strong { color: var(--ink); }

/* Dark services section (premium glass cards) */
.section--dark {
  background:
    radial-gradient(700px 380px at 15% 10%, rgba(45, 212, 168, 0.14), transparent 65%),
    radial-gradient(700px 420px at 85% 90%, rgba(99, 102, 241, 0.16), transparent 65%),
    #101418;
}
.section--dark .section__head h2 { color: #ffffff; }
.section--dark .section__note { color: rgba(255, 255, 255, 0.72); }
.section--dark .eyebrow { color: #4be3b8; }
.section--dark .grid { counter-reset: svc; }
.section--dark .card {
  position: relative;
  counter-increment: svc;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.section--dark .card::before {
  content: counter(svc, decimal-leading-zero);
  position: absolute; top: 22px; right: 24px;
  font-family: "Sora", sans-serif; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.3);
}
.section--dark .card::after {
  content: "";
  display: block; width: 46px; height: 3px; border-radius: 999px;
  margin-top: 18px;
  background: linear-gradient(90deg, #2dd4a8, rgba(45, 212, 168, 0));
}
.section--dark .card:nth-of-type(3n+2)::after { background: linear-gradient(90deg, #6366f1, rgba(99, 102, 241, 0)); }
.section--dark .card:nth-of-type(3n)::after { background: linear-gradient(90deg, #f59e0b, rgba(245, 158, 11, 0)); }
.section--dark .card h3 { color: #ffffff; }
.section--dark .card p { color: rgba(255, 255, 255, 0.62); }
.section--dark .card:hover {
  border-color: rgba(45, 212, 168, 0.55);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.section--dark .card__icon {
  border-radius: 14px; font-size: 1.25rem; color: #fff;
  background: linear-gradient(135deg, #14b8a6, #2dd4a8);
  box-shadow: 0 6px 18px rgba(45, 212, 168, 0.3);
}
.section--dark .card:nth-of-type(3n+2) .card__icon { background: linear-gradient(135deg, #4f46e5, #818cf8); box-shadow: 0 6px 18px rgba(99, 102, 241, 0.35); }
.section--dark .card:nth-of-type(3n) .card__icon { background: linear-gradient(135deg, #d97706, #fbbf24); box-shadow: 0 6px 18px rgba(245, 158, 11, 0.3); }

/* Get Started CTA */
.getstarted__cta { text-align: center; margin-top: 40px; }

/* Floating WhatsApp button */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* Team / Cofounders */
.team { max-width: 760px; margin: 0 auto; }
.member { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; text-align: center; box-shadow: 0 3px 14px rgba(0, 0, 0, 0.04); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.member:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.08); }
.member__photo { width: 120px; height: 120px; margin: 0 auto 18px; border-radius: 50%; overflow: hidden; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member__initials { width: 100%; height: 100%; display: grid; place-items: center; font-family: "Sora", sans-serif; font-weight: 700; font-size: 2rem; color: #fff; background: linear-gradient(135deg, #1fb892, #2dd4a8); }
.member h3 { font-size: 1.45rem; font-weight: 700; }
.member__role { display: inline-block; color: var(--accent); font-weight: 600; font-size: 0.9rem; margin: 4px 0 12px; }
.member p { color: var(--muted); font-size: 0.95rem; }

/* Contact */
.section--cta { background: var(--bg-alt); }
.form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form input, .form textarea { width: 100%; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; color: var(--ink); font-family: inherit; font-size: 0.98rem; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--accent); }
.form .btn { align-self: flex-start; }
.contact__methods { display: flex; gap: 24px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.contact__methods a, .contact__methods span { color: var(--ink); font-weight: 600; }
.contact__methods a:hover { color: var(--accent); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 30px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer p { color: var(--muted); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 900px) {
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  .panel-lg, .process__left, .process__right { padding: 28px; }
}
