/* =====================
   VARIABLES & BASE
   ===================== */
:root {
  --bg: #F8F8F8;
  --bg-2: #E6F5FC;
  --text: #004875;
  --text-muted: #4A7A9B;
  --accent: #004875;
  --accent-hover: #003560;
  --accent-2: #F9E949;
  --white: #FFFFFF;
  --border: #C8E8F8;
  --radius: 12px;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }

/* =====================
   NAV
   ===================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 248, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  padding: 0 40px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo span { color: var(--accent); }

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  padding: 8px 12px;
}

.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: var(--accent) !important;
  color: var(--white) !important;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px !important;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s !important;
}

.btn-nav:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }

.lang-toggle {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--text-muted);
  font-family: var(--font-body);
  transition: all 0.2s;
  margin-left: 4px;
}

.lang-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lang-toggle-mobile {
  display: none;
  font-size: 12px;
  padding: 6px 10px;
  margin-right: 4px;
  margin-left: auto;
}

/* =====================
   HERO
   ===================== */
.hero {
  padding: 80px 0 64px;
  text-align: center;
}

.hero-market {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero-sub {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  transform: translateY(-1px);
}

/* =====================
   PROFILE TABS (in nav)
   ===================== */
.nav-profile-tabs {
  display: flex;
  gap: 4px;
}

.profile-tab {
  background: none;
  border: none;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}

.profile-tab:hover { color: var(--text); background: var(--bg-2); }

.profile-tab.active {
  color: var(--text);
  background: var(--bg-2);
  font-weight: 600;
}

.profile-content { display: none; }
.profile-content.active { display: block; }

/* =====================
   LANDING SELECTOR
   ===================== */
.landing-selector {
  padding: 64px 0 80px;
  text-align: center;
}

.landing-selector h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 56px;
}

.selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.selector-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.selector-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(0, 72, 117, 0.12);
  transform: translateY(-2px);
}

.selector-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.selector-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.selector-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 768px) {
  .selector-grid { grid-template-columns: 1fr; }
}

/* =====================
   PROBLEM
   ===================== */
.problem {
  padding: 52px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.problem-item {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.problem-icon {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  font-family: var(--font-head);
  margin-top: 2px;
}

.problem-item p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

/* =====================
   HOW IT WORKS
   ===================== */
.how {
  padding: 64px 0;
  background: var(--bg-2);
}

.how h2, .services h2, .faq h2, .about h2, .cta-final h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 64px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
}

.step-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-tools {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.step-tools span {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}

.step-arrow {
  font-size: 24px;
  color: var(--border);
  padding-top: 60px;
  flex-shrink: 0;
}

/* =====================
   METHOD CARD
   ===================== */
.method-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid var(--border);
}

.method-row {
  display: flex;
  gap: 48px;
  padding: 36px 48px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.method-row-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 220px;
  flex-shrink: 0;
}

.method-step-num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: rgba(0, 72, 117, 0.3);
  letter-spacing: 0.05em;
  padding-top: 5px;
}

.method-row-left h3 {
  color: #004875;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.method-row-right {
  flex: 1;
}

.method-row-right p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.method-row-right .step-tools {
  margin-top: 16px;
}

.method-row-right .step-tools span {
  background: rgba(0, 72, 117, 0.07);
  color: #004875;
  border: none;
}

.method-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  background: #004875;
  gap: 24px;
}

.method-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.method-cta-text > span:first-child {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-head);
}

.method-cta-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.btn-method-cta {
  background: #F9E949;
  border: 1px solid #F9E949;
  color: #004875;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.btn-method-cta:hover {
  background: #f0dc30;
  border-color: #f0dc30;
}

/* =====================
   SERVICES
   ===================== */
.services {
  padding: 64px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.service-card.featured {
  border-color: var(--accent);
  background: var(--bg);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-duration {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.service-card ul li {
  font-size: 14px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  gap: 12px;
}

.service-price {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}

.service-card.featured .service-price {
  color: var(--accent);
}

.btn-card {
  display: inline-block;
  padding: 10px 22px;
  background: var(--text);
  color: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-card:hover { background: #004875; }

.service-card.featured .btn-card {
  background: var(--accent);
}

.service-card.featured .btn-card:hover {
  background: var(--accent-hover);
}

/* =====================
   FAQ
   ===================== */
.faq {
  padding: 52px 0 64px;
  background: var(--bg-2);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-q span {
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
}

.faq-a p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { color: var(--accent); }

/* =====================
   ABOUT
   ===================== */
.about {
  padding: 64px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.team-photo {
  width: 200px;
  min-width: 200px;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.team-info {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.team-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.team-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================
   CTA FINAL
   ===================== */
.cta-final {
  padding: 64px 0;
  background: var(--text);
  text-align: center;
}

.cta-final h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-final p {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================
   FOOTER
   ===================== */
footer {
  padding: 48px 0 28px;
  background: #004875;
  border-radius: 48px 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-heading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-arrow {
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-heading h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.footer-sub {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.social-icon:hover { background: rgba(255,255,255,0.25); }

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.footer-cta-label {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.btn-footer-cta {
  display: inline-block;
  background: #F9E949;
  color: #004875;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
  transition: background 0.2s;
}

.btn-footer-cta:hover { background: #f0dc30; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}

.footer-contact-text {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  transition: color 0.2s;
}

a.footer-contact-text:hover { color: #fff; }

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copy {
  color: rgba(255,255,255,0.28);
  font-size: 11px;
}

.footer-nav {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: rgba(255,255,255,0.7);
}


/* =====================
   PROFILE HERO
   ===================== */
.profile-hero {
  background: var(--text);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 48px 48px;
}

.profile-hero-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  z-index: 0;
}

.profile-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 72, 117, 0.96);
}

.profile-hero .container {
  position: relative;
  z-index: 1;
}

.profile-hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.profile-hero h1 {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 860px;
  margin: 0 auto 24px;
}

.profile-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-wrap: balance;
}

.btn-profile-hero {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s, transform 0.1s;
}

.btn-profile-hero:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* =====================
   PROBLEM SECTION
   ===================== */
.problem-section {
  padding: 52px 0;
  background: var(--bg);
}

.problem-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.problem-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================
   WHY US
   ===================== */
.why-us {
  padding: 52px 0;
  background: var(--bg-2);
}

.why-us h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.why-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.why-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================
   RESULTS
   ===================== */
.results-section {
  padding: 52px 0;
  background: var(--bg);
}

.results-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.result-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 36px;
  border-left: 3px solid var(--accent);
}

.result-metric {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.result-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.result-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

/* =====================
   HERO SPLIT
   ===================== */
.hero-split {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 100px;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  border-radius: 0 0 48px 48px;
}

.hero-split-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-split-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 72, 117, 0.52);
  z-index: 0;
}

.hero-split-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-split-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 620px;
}

.hero-split-text h1 {
  font-size: clamp(36px, 3.8vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.hero-split-text .hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 420px;
  line-height: 1.6;
  margin: 0;
}

.hero-split-photos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-photo-single {
  width: 100%;
  max-width: 460px;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* =====================
   SELECTOR SECTION
   ===================== */
.selector-section {
  padding: 52px 0 64px;
  background: var(--bg-2);
  text-align: center;
}

.selector-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--text);
}

/* =====================
   REVIEWS
   ===================== */
.reviews-section {
  padding: 52px 0 64px;
}

.reviews-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.review-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =====================
   MOBILE MENU
   ===================== */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px 28px 40px;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
  padding: 4px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mobile-menu-item {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.mobile-menu-item:active { color: var(--accent); }

.mobile-menu-cta {
  display: block;
  text-align: center;
  padding: 18px;
  font-size: 17px;
  margin-top: 40px;
  border-radius: 12px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  /* NAV */
  .nav-inner { padding: 0 20px; height: 72px; }
  .nav-right { display: none; }
  .mobile-menu-btn { display: flex; }
  .lang-toggle-mobile { display: flex; align-items: center; }

  /* HERO SPLIT */
  .hero-split { min-height: auto; padding: 64px 20px 80px; }
  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-split-text h1 { font-size: clamp(32px, 8vw, 44px); }
  .hero-split-text .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-split-photos { display: none; }

  /* SELECTOR */
  .selector-section { padding: 56px 0 72px; }
  .selector-grid { grid-template-columns: 1fr; }
  .selector-card { padding: 28px; }

  /* REVIEWS */
  .reviews-grid { grid-template-columns: 1fr; }

  /* PROFILE HERO */
  .profile-hero { padding: 64px 0; }
  .profile-hero h1 { font-size: clamp(26px, 7vw, 38px); }
  .profile-hero-sub { font-size: 16px; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-heading h2 { font-size: clamp(32px, 10vw, 48px); }

  /* PROBLEM */
  .problem-grid { grid-template-columns: 1fr; }
  .problem-cards { grid-template-columns: 1fr; }

  /* HOW */
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .method-row { flex-direction: column; gap: 16px; padding: 28px 24px; align-items: center; text-align: center; }
  .method-row-left { min-width: auto; flex-direction: column; align-items: center; }
  .method-cta-row { flex-direction: column; align-items: center; gap: 20px; padding: 28px 24px; text-align: center; }

  /* WHY / RESULTS */
  .why-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }

  /* SERVICES */
  .services-grid { grid-template-columns: 1fr; }

  /* TEAM */
  .team-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
  .team-photo { width: 100%; min-width: unset; height: 380px; object-fit: cover; object-position: center 8%; }

  /* MISC */
  .hero { padding: 80px 0 60px; }
  .hero-photo-single { max-width: 100%; height: 300px; }
}

/* =====================
   CONTACT FORM SECTION
   ===================== */
.contact-form-section {
  background: var(--bg-2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.contact-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-form-text h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.contact-form-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  align-self: flex-start;
  padding: 14px 32px;
  font-size: 1rem;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-success {
  display: none;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-error {
  display: none;
  color: #e53e3e;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .contact-form-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-text h2 {
    font-size: 1.4rem;
  }
}

/* =====================
   VS / COMPARE SECTION
   ===================== */
.vs-section {
  padding: 64px 0;
  background: var(--text);
}

.vs-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.vs-section .section-sub {
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-bottom: 48px;
}

.vs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vs-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
}

.vs-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.vs-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.vs-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}

.vs-outcome {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--accent);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .vs-grid { grid-template-columns: 1fr; }
  .vs-section { padding: 70px 0; }
}

/* ── Comparison section (index + servicios) ── */
.idx-compare {
  padding: 72px 0;
  background: #0a1f2e;
}
.idx-compare h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #fff;
}
.idx-compare .section-sub {
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
}
.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cmp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px;
}
.cmp-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}
.cmp-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: baseline;
}
.cmp-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
  width: 72px;
}
.cmp-label.them { color: rgba(255,255,255,0.35); }
.cmp-label.us   { color: #F9E949; }
.cmp-val {
  font-size: 14px;
  line-height: 1.45;
}
.cmp-val.them { color: rgba(255,255,255,0.45); }
.cmp-val.us   { color: #fff; font-weight: 600; }
.cmp-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  font-style: italic;
}
@media (max-width: 700px) {
  .cmp-grid { grid-template-columns: 1fr; }
  .idx-compare { padding: 56px 0; }
}

/* ── Tab: Servicios ── */
.svc-hero {
  padding: 72px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.svc-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}
.svc-hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.services-tab-section {
  padding: 64px 0;
}
.svc-tabs {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
  gap: 4px;
}
.svc-tab {
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.svc-tab.active {
  background: var(--text);
  color: var(--white);
}
.svc-profile { display: none; }
.svc-profile.active { display: block; }

/* =====================
   QUIZ MODAL
   ===================== */
.quiz-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 72, 117, 0.96);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.quiz-overlay.open {
  display: flex;
}

.quiz-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 48px 40px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
}

.quiz-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.quiz-close:hover { color: var(--text); }

/* Progress */
.quiz-progress-bar-wrap {
  height: 4px;
  background: var(--bg-2);
  border-radius: 4px;
  margin-bottom: 36px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.quiz-step-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* Question */
.quiz-question {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 28px;
}

/* Options */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--white);
}

.quiz-option:hover {
  border-color: var(--accent);
  background: var(--bg-2);
}

.quiz-option.selected {
  border-color: var(--accent);
  background: rgba(0, 72, 117, 0.05);
}

.quiz-option-letter {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.2s;
}

.quiz-option.selected .quiz-option-letter {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.quiz-option-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
}

/* Nav buttons */
.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quiz-btn-back {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.quiz-btn-back:hover { border-color: var(--text-muted); color: var(--text); }
.quiz-btn-back:disabled { opacity: 0; pointer-events: none; }

.quiz-btn-next {
  background: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  margin-left: auto;
}

.quiz-btn-next:hover { background: var(--accent-hover); }
.quiz-btn-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* Email gate */
.quiz-email-gate {
  display: none;
}

.quiz-email-gate.active { display: block; }

.quiz-email-heading {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.quiz-email-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}

.quiz-email-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.quiz-email-fields input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.quiz-email-fields input:focus { border-color: var(--accent); }

.quiz-btn-submit {
  width: 100%;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}

.quiz-btn-submit:hover { background: var(--accent-hover); }
.quiz-btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.quiz-privacy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Results */
.quiz-results {
  display: none;
}

.quiz-results.active { display: block; }

.quiz-results-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 72, 117, 0.08);
  border: 1px solid rgba(0, 72, 117, 0.2);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.quiz-score-display {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.quiz-score-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.quiz-results-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.quiz-results-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.quiz-recommendation {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
}

.quiz-recommendation-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.quiz-recommendation-service {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.quiz-recommendation-price {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}

.quiz-results-cta {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--white);
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s;
  margin-bottom: 12px;
}

.quiz-results-cta:hover { background: var(--accent-hover); }

.quiz-results-secondary {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.quiz-guide-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}
.quiz-guide-link:hover { text-decoration: underline; }

/* Quiz trigger button */
.hero-quiz-hint {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.quiz-hint-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.quiz-hint-link:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .quiz-modal {
    padding: 36px 24px 32px;
    border-radius: 16px;
  }
  .quiz-question { font-size: 18px; }
  .quiz-score-display { font-size: 44px; }
}
