:root {
  --purple-deep: #2c2058;
  --purple: #3d2a6d;
  --purple-light: #5a3f9c;
  --purple-soft: #f1eef9;
  --orange: #f5821f;
  --orange-dark: #d96c10;
  --ink: #1f1730;
  --white: #ffffff;
  --gray: #6b6478;
  --radius: 16px;
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

h1, h2, h3, .logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

a { color: inherit; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--purple);
  flex-shrink: 0;
}

.logo-text { font-size: 1.1rem; margin: 0; }
.logo-text strong { color: var(--orange); }

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
}

.main-nav a:hover { color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  border: 1px solid var(--purple);
  background: none;
  color: var(--purple);
  font-weight: 700;
  font-size: .8rem;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}
.btn-primary:hover { background: var(--purple-light); }

.btn-accent {
  background: var(--orange);
  color: var(--white);
}
.btn-accent:hover { background: var(--orange-dark); }

/* Hero */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 110px 0 130px;
  overflow: hidden;
}

.hero-inner { position: relative; z-index: 2; max-width: 760px; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 14px;
}

.eyebrow-dark { color: var(--orange-dark); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.9);
  max-width: 560px;
}

.hero-cta { margin-top: 28px; }

.hero-shape {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 420px;
  height: 420px;
  background: var(--orange);
  opacity: .18;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  z-index: 1;
}

/* Sections */
.section { padding: 90px 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--purple-deep); color: var(--white); }
.section-dark .lead, .section-dark p { color: rgba(255,255,255,.85); }
.section-purple-soft { background: var(--purple-soft); }
.section-purple { background: var(--purple); color: var(--white); }
.section-purple .lead { color: rgba(255,255,255,.85); }

.h2-accent { color: var(--orange); }
.section-dark .h2-accent { color: var(--orange); }

.lead { font-size: 1.1rem; max-width: 640px; }
.lead-small { font-size: 1rem; max-width: 560px; color: var(--gray); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}
.align-center { align-items: center; }
.align-start { align-items: start; }

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}
.problem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
}

.result-card {
  background: var(--purple);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
}
.result-card h3 { color: var(--orange); }

.tag-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0; }
.tag {
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .9rem;
  font-weight: 600;
}

.callout {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-display);
  max-width: 640px;
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.service-card {
  background: var(--purple-soft);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.service-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 10px;
}
.service-card h3 { margin: 0 0 8px; }
.service-card p { margin: 0; font-size: .92rem; color: var(--gray); }

.services-footnote { margin: 0; color: var(--gray); max-width: 480px; }

.services-photo-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.services-photo-row img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.team-photo-card {
  margin-top: 32px;
  max-width: 520px;
}
.team-photo-card img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.team-names {
  display: flex;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.team-names h3 { margin: 0 0 2px; }
.team-names p { margin: 0; color: var(--gray); }

.check-list { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; font-weight: 500; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--white);
  background: var(--purple);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 1px;
}

.why-card {
  background: var(--purple);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}
.why-card h3 { color: var(--orange); }
.why-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.why-card li { position: relative; padding-left: 22px; }
.why-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.clients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 28px 0 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.clients-row span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
}

.case-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 28px;
}
.case-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 20px;
}
.case-tag { color: rgba(255,255,255,.6); font-weight: 600; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.team-card {
  text-align: center;
  background: var(--purple-soft);
  border-radius: var(--radius);
  padding: 28px;
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.2rem;
}
.team-card p { margin: 0; color: var(--gray); }

.contact-details {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details a { text-decoration: underline; }

.contact-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: .9rem; }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body);
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}
.form-note { color: var(--orange-dark); font-weight: 600; }

.process-list {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.process-list li {
  counter-increment: step;
  position: relative;
  padding-top: 44px;
}
.process-list li::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-list strong { display: block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; }
.process-list span { color: rgba(255,255,255,.75); font-size: .92rem; }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  z-index: 60;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.06); }

/* Footer */
.site-footer {
  background: var(--purple-deep);
  color: rgba(255,255,255,.7);
  padding: 24px 0;
  font-size: .9rem;
}

/* Responsive */
@media (max-width: 860px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 16px rgba(0,0,0,.06);
  }
  .main-nav.nav-open { display: flex; }
  .main-nav a { padding: 14px 24px; border-top: 1px solid #f2f2f2; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .nav-toggle { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .header-actions .btn { display: none; }
}
