
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --royal-blue: #0A1F5C;
  --aqua: #00B4D8;
  --aqua-light: #90E0EF;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --font: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(10,31,92,0.08);
  --shadow-lg: 0 12px 48px rgba(10,31,92,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 12px;
}
.section-label.light { color: var(--aqua-light); }

.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--royal-blue);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-heading.light { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 560px;
  margin-bottom: 32px;
}
.section-sub.light { color: rgba(255,255,255,0.8); }

.gradient-text {
  background: linear-gradient(135deg, var(--aqua) 0%, var(--royal-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--royal-blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(10,31,92,0.25);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(10,31,92,0.35); }

.btn-secondary {
  background: transparent;
  color: var(--royal-blue);
  border: 2px solid var(--royal-blue);
}
.btn-secondary:hover { background: var(--royal-blue); color: var(--white); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover { box-shadow: 0 8px 32px rgba(201,168,76,0.5); }

.btn.full-width { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-img { height: 44px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover { color: var(--royal-blue); background: var(--gray-100); }
.nav-links li a.nav-cta {
  background: var(--royal-blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
}
.nav-links li a.nav-cta:hover { background: var(--aqua); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--royal-blue);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--white) 60%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-logo-wrap { margin-bottom: 24px; }
.hero-logo { height: 64px; width: auto; object-fit: contain; }

.hero-heading {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--royal-blue);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.store-badge { height: 44px; width: auto; }

/* ===== PHONE MOCKUP ===== */
.phone-frame {
  width: 280px;
  height: 560px;
  background: var(--royal-blue);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(201,168,76,0.3);
  margin: 0 auto;
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}
.phone-frame.small { width: 240px; height: 480px; }

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
}

.app-ui { padding: 20px 14px; height: 100%; display: flex; flex-direction: column; gap: 12px; }

.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-logo-small {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--royal-blue), var(--aqua));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 10px; font-weight: 800;
}
.app-title-text { font-size: 12px; font-weight: 700; color: var(--royal-blue); }

.app-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 11px;
  color: var(--gray-400);
}
.app-search i { color: var(--aqua); font-size: 11px; }

.app-card-row { display: flex; gap: 8px; }
.app-card {
  flex: 1;
  background: linear-gradient(135deg, var(--royal-blue), var(--aqua));
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  color: white;
}
.app-card-icon { font-size: 18px; margin-bottom: 4px; }
.app-card-label { font-size: 10px; font-weight: 600; }

.app-therapist-list { display: flex; flex-direction: column; gap: 8px; }
.app-therapist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: var(--gray-100);
  border-radius: 10px;
}
.app-avatar {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--aqua), var(--royal-blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 9px; font-weight: 700;
  flex-shrink: 0;
}
.app-avatar.sm { width: 26px; height: 26px; font-size: 8px; }
.app-info { flex: 1; }
.app-name { font-size: 10px; font-weight: 600; color: var(--royal-blue); }
.app-detail { font-size: 9px; color: var(--gray-400); }
.app-status {
  font-size: 9px;
  font-weight: 600;
  color: var(--gray-400);
  background: var(--gray-200);
  padding: 3px 7px;
  border-radius: 20px;
}
.app-status.available { color: #059669; background: #D1FAE5; }

.app-welcome { padding: 8px 0; }
.app-welcome-text { font-size: 13px; font-weight: 700; color: var(--royal-blue); }
.app-welcome-sub { font-size: 10px; color: var(--gray-400); }

.app-quick-actions {
  display: flex;
  justify-content: space-around;
  background: var(--gray-100);
  border-radius: 12px;
  padding: 10px 4px;
}
.quick-action {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 9px; color: var(--royal-blue); font-weight: 600;
}
.quick-action i { font-size: 14px; color: var(--aqua); }

.app-nearby { display: flex; flex-direction: column; gap: 6px; }
.nearby-label { font-size: 10px; font-weight: 700; color: var(--royal-blue); margin-bottom: 2px; }
.nearby-item { display: flex; align-items: center; gap: 8px; padding: 6px; background: var(--gray-100); border-radius: 8px; }
.nearby-info { flex: 1; }

.hero-mockup { display: flex; justify-content: center; align-items: center; }

/* ===== WHAT IS ===== */
.what-is {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.what-is .section-heading, .what-is .section-sub { margin-left: auto; margin-right: auto; }

.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.situation-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.situation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--aqua);
}
.situation-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--royal-blue), var(--aqua));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: white;
  font-size: 20px;
}
.situation-text { font-size: 15px; font-weight: 600; color: var(--royal-blue); }

.what-is-footer {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0,180,216,0.06), rgba(10,31,92,0.04));
  border-radius: var(--radius);
  border-left: 4px solid var(--aqua);
  text-align: left;
}

/* ===== FOR CLINICS ===== */
.for-clinics {
  padding: 100px 0;
  background: var(--off-white);
  text-align: center;
}
.for-clinics .section-heading, .for-clinics .section-sub { margin-left: auto; margin-right: auto; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.benefit-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--royal-blue), var(--aqua));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 16px; font-weight: 700; color: var(--royal-blue); margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

.section-cta { margin-top: 16px; }

/* ===== FOR THERAPISTS ===== */
.for-therapists { padding: 100px 0; background: var(--white); }

.therapists-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.therapist-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.therapist-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--gray-700);
  font-weight: 500;
}
.therapist-benefits li i { color: var(--aqua); font-size: 18px; flex-shrink: 0; }

.therapists-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visual-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s;
}
.visual-card:hover { transform: translateX(4px); }
.visual-card.accent {
  background: linear-gradient(135deg, var(--royal-blue), #1a3a8f);
  border-color: transparent;
  color: white;
}
.visual-card.accent .visual-stat-label { color: white; }
.visual-card.accent .visual-stat-desc { color: rgba(255,255,255,0.75); }
.visual-card.accent .visual-icon { background: rgba(255,255,255,0.15); color: var(--gold-light); }

.visual-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--royal-blue), var(--aqua));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}
.visual-stat-label { font-size: 15px; font-weight: 700; color: var(--royal-blue); margin-bottom: 4px; }
.visual-stat-desc { font-size: 13px; color: var(--gray-600); }

/* ===== DOWNLOAD ===== */
.download {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--royal-blue) 0%, #0d2d7a 50%, #0a4a6e 100%);
  position: relative;
  overflow: hidden;
}
.download::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.download-mockup { display: flex; justify-content: center; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--off-white); text-align: center; }
.about .section-heading { margin-left: auto; margin-right: auto; }

.about-inner { text-align: center; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.about-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 20px;
  margin-bottom: 20px;
}
.about-card h3 { font-size: 18px; font-weight: 700; color: var(--royal-blue); margin-bottom: 12px; }
.about-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ===== CAREERS ===== */
.careers {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.careers-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.careers .section-sub { margin-left: auto; margin-right: auto; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--off-white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--royal-blue), var(--aqua));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-label { font-size: 12px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-value { font-size: 15px; font-weight: 500; color: var(--royal-blue); }
a.contact-value:hover { color: var(--aqua); }

.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
  transition: transform 0.2s, opacity 0.2s;
}
.social-btn:hover { transform: translateY(-2px); opacity: 0.85; }
.social-btn.whatsapp { background: #25D366; }
.social-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.linkedin { background: #0077B5; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--royal-blue); }
.form-group input, .form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
  background: var(--white);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--royal-blue);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { height: 44px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 24px; max-width: 260px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 16px;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--aqua); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.footer-col h4 { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col ul li span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--aqua-light); }

.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .situations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 10px 16px; }

  .hero { padding: 100px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-mockup { order: -1; }
  .hero-heading { font-size: 32px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .situations-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .therapists-inner { grid-template-columns: 1fr; }
  .download-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .situations-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .store-badges { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 24px; }
}

