/* ==========================================================================
   CloudQuit 1:1 Design Replica Stylesheet (Wide Layout & Prominent 3D Phone)
   ========================================================================== */

:root {
  /* Exact Color Palette */
  --color-green-primary: #3a9b73;
  --color-green-bright: #4ba87d;
  --color-dark-teal: #0f2621;
  --color-text-dark: #0f172a;
  --color-text-muted: #334155;
  --color-black: #000000;
  --color-white: #ffffff;
  
  /* Background Colors */
  --color-bg-page: #ffffff;
  --color-card-white: #ffffff;
  --color-card-blue: #bae0fd;
  --color-card-green: #4ba87d;
  --color-badge-green: #dcfce7;
  --color-step-num-bg: #d4ebf8;
  --color-footer-bg: #f4f8f6;

  /* Typography System */
  --font-display: 'Paytone One', 'Chakra Petch', 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Solid Neo-Brutalist Block Shadow & Border System */
  --shadow-hard-lg: 6px 6px 0px var(--color-black);
  --shadow-hard: 5px 5px 0px var(--color-black);
  --shadow-hard-sm: 4px 4px 0px var(--color-black);
  --border-hard: 2px solid var(--color-black);
  --border-hard-thick: 2.5px solid var(--color-black);
  --radius-card: 24px;
  --radius-card-sm: 18px;
  --radius-pill: 9999px;
}

/* Reset & Global Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-page);
  color: var(--color-text-dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 0;
  position: relative;
}

/* Expanded Global Container */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Global Typography Helpers */
.text-green { color: var(--color-green-primary) !important; }
.text-dark { color: var(--color-text-dark) !important; }
.text-white { color: var(--color-white) !important; }

/* Clean SVG Icon Utilities */
.icon-svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-svg-sm {
  width: 16px;
  height: 16px;
}

.icon-svg-lg {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   Navigation Bar (Static Top Capsule - Centered Wide Layout)
   ========================================================================== */
.navbar-wrapper {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 64px);
  max-width: 860px;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.navbar {
  background: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 8px 12px 8px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1.5px solid #e2eaf0;
}

.brand-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--color-green-bright);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-black);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-green-primary);
}

.btn-get-started {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger-btn {
  display: none;
}

.btn-get-started:hover {
  background-color: var(--color-dark-teal);
  transform: translateY(-1px);
}

/* ==========================================================================
   Hero Section (Expanded Layout & Prominent Phone)
   ========================================================================== */
.hero-section {
  padding: 140px 0 90px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: 1.02;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.title-dark {
  color: var(--color-dark-teal);
}

.title-green {
  color: var(--color-green-bright);
}

.hero-description {
  font-size: 1.12rem;
  color: var(--color-text-muted);
  font-weight: 600;
  max-width: 520px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.badge {
  background-color: var(--color-badge-green);
  color: #166534;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.check-icon {
  font-style: normal;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  background-color: #1e293b;
}

.btn-primary:active {
  transform: translate(1px, 1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(3px);
}

.btn-secondary {
  background-color: var(--color-green-bright);
  color: var(--color-dark-teal);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(75, 168, 125, 0.25);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.btn-secondary:hover {
  background-color: #3f996f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(75, 168, 125, 0.35);
}

.btn-secondary:active {
  transform: translate(1px, 1px);
  box-shadow: 0 2px 6px rgba(75, 168, 125, 0.2);
}

/* 3D Phone Container (Significantly Enlarged Phone Mockup) */
.hero-phone-wrapper {
  perspective: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

.phone-card-3d {
  position: relative;
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.phone-img {
  width: 100%;
  max-width: 440px; /* Increased from 320px to 440px */
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.18));
  transition: filter 0.3s ease;
}

.phone-card-3d:hover .phone-img {
  filter: drop-shadow(0 40px 55px rgba(0, 0, 0, 0.25));
}

/* ==========================================================================
   Designed for You Section (Wide 3-Card Grid)
   ========================================================================== */
.designed-section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 44px;
}

.section-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  font-weight: 600;
  max-width: 750px;
  line-height: 1.5;
}

/* Wide 3 Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  border-radius: var(--radius-card);
  padding: 40px 34px;
  border: var(--border-hard-thick);
  box-shadow: var(--shadow-hard);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 7px 7px 0px #000;
}

.card-progress {
  background-color: var(--color-card-white);
}

.card-cravings {
  background-color: var(--color-card-blue);
}

.card-habits {
  background-color: var(--color-card-green);
}

.card-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.25;
}

.card-text {
  font-size: 1.02rem;
  color: #1e293b;
  font-weight: 600;
  line-height: 1.55;
}

.card-text.text-white {
  color: #ffffff;
  opacity: 0.98;
}

/* ==========================================================================
   Split Feature / Steps Section (Expanded Width)
   ========================================================================== */
.steps-section {
  padding: 80px 0 100px 0;
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Big Green Left Card */
.big-green-card {
  background-color: var(--color-card-green);
  border: var(--border-hard-thick);
  box-shadow: var(--shadow-hard);
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 40px 0 40px;
  min-height: 420px;
}

.big-card-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 380px;
}

.white-arc-overlay {
  background-color: var(--color-white);
  border-top-left-radius: 160px;
  padding: 40px 36px 36px 40px;
  margin-left: -40px;
  margin-right: -40px;
  margin-top: 40px;
}

.white-arc-text {
  font-size: 1.05rem;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.5;
}

/* Right Stacked Steps */
.steps-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step-card {
  background-color: var(--color-white);
  border: var(--border-hard-thick);
  box-shadow: var(--shadow-hard-sm);
  border-radius: var(--radius-card-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hard);
}

.step-number {
  background-color: var(--color-step-num-bg);
  color: #0f172a;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover .step-number {
  transform: scale(1.08);
}

.step-info {
  display: flex;
  flex-direction: column;
}

.step-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.step-desc {
  font-size: 0.95rem;
  color: #334155;
  font-weight: 600;
  line-height: 1.45;
}

/* ==========================================================================
   Therapist Preview Section
   ========================================================================== */
.therapist-preview-section {
  padding: 20px 0 60px 0;
}

.therapist-preview-card {
  background-color: var(--color-card-blue);
  border: var(--border-hard-thick);
  box-shadow: var(--shadow-hard);
  border-radius: var(--radius-card);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.therapist-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 7px 7px 0px #000;
}

.therapist-preview-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2.1rem;
  color: #0f172a;
  margin: 14px 0 8px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.therapist-preview-desc {
  font-size: 1.05rem;
  color: #334155;
  font-weight: 600;
  max-width: 680px;
  line-height: 1.5;
}

.therapist-preview-btn {
  white-space: nowrap;
  padding: 16px 32px;
  font-size: 0.95rem;
}

/* ==========================================================================
   Bottom CTA Banner Section (Expanded)
   ========================================================================== */
.cta-section {
  padding: 20px 0 100px 0;
}

.cta-banner {
  background-color: var(--color-card-green);
  border: var(--border-hard-thick);
  box-shadow: var(--shadow-hard);
  border-radius: var(--radius-card);
  padding: 56px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-banner:hover {
  transform: translateY(-3px);
  box-shadow: 7px 7px 0px #000;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: #0f172a;
  letter-spacing: -0.5px;
  max-width: 780px;
  line-height: 1.1;
}

.btn-cta {
  background-color: #0f172a;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  padding: 16px 42px;
  border-radius: 18px;
  border: var(--border-hard);
  box-shadow: 4px 4px 0px var(--color-black);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px var(--color-black);
  background-color: #1e293b;
}

.btn-cta:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0px var(--color-black);
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */
.contact-section {
  padding: 80px 0 100px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-footer-bg);
  border: var(--border-hard);
  border-radius: var(--radius-card-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-hard-sm);
}

.contact-icon {
  font-size: 1.6rem;
}

.contact-detail-item strong {
  font-family: var(--font-body);
  font-weight: 800;
  color: #0f172a;
  font-size: 1rem;
}

.contact-detail-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Contact Form Card */
.contact-form-card {
  background-color: var(--color-white);
  border: var(--border-hard-thick);
  box-shadow: var(--shadow-hard);
  border-radius: var(--radius-card);
  padding: 36px;
}

.form-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.6rem;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.88rem;
  color: #0f172a;
}

.form-input, .form-select, .form-textarea {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;
  background-color: #f8faf8;
  border: var(--border-hard);
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, transform 0.2s ease;
  width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--color-green-primary);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.25);
  transform: translateY(-1px);
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 0.95rem;
  margin-top: 8px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.form-submit-btn:active {
  transform: translate(1px, 1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.form-success-msg {
  display: none;
  background-color: var(--color-badge-green);
  color: #166534;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid #bbf7d0;
  text-align: center;
  margin-top: 8px;
  animation: alertPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-success-msg.active {
  display: block;
}

/* ==========================================================================
   Unified Footer Section (Expanded)
   ========================================================================== */
.footer-section {
  background-color: var(--color-footer-bg);
  border-top: var(--border-hard-thick);
  padding: 70px 0 40px 0;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--color-green-bright);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #475569;
  font-weight: 600;
  max-width: 360px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-heading {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #334155;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-green-primary);
}

.footer-bottom {
  border-top: 1.5px solid #cbd5e1;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 600;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.social-btn {
  background-color: var(--color-white);
  color: #0f172a;
  border: var(--border-hard);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  text-decoration: none;
  box-shadow: 2px 2px 0px var(--color-black);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px var(--color-black);
}

/* ==========================================================================
   Interactive Modal Simulation
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--color-white);
  border: var(--border-hard-thick);
  box-shadow: 8px 8px 0px var(--color-black);
  border-radius: var(--radius-card);
  padding: 36px;
  max-width: 460px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-black);
}

.modal-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--color-green-primary);
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 1rem;
  color: #334155;
  font-weight: 600;
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsiveness System
   ========================================================================== */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 24px;
  }

  /* Keep the pill navbar centred and intact on tablets */
  .navbar-wrapper {
    max-width: 860px;
    width: calc(100% - 48px);
  }

  .nav-links {
    gap: 18px;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .phone-img {
    max-width: 380px;
  }

  .therapist-preview-card {
    padding: 36px 32px;
  }
}

@media (max-width: 768px) {
  /* Navbar Mobile Layout: Card disappears, Logo & Get Started remain, hamburger menu for rest */
  .navbar-wrapper {
    top: 18px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0;
    position: absolute;
    background: transparent;
    box-shadow: none;
  }

  .navbar {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .brand-logo {
    font-size: 1.45rem;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .btn-get-started {
    padding: 9px 18px;
    font-size: 0.78rem;
    font-weight: 800;
    display: inline-block;
  }

  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4.5px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid #000000;
    box-shadow: 2.5px 2.5px 0px #000000;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    z-index: 1001;
  }

  .hamburger-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px #000000;
  }

  .hamburger-bar {
    display: block;
    width: 19px;
    height: 2.5px;
    background-color: #0f172a;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .hamburger-btn.active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger-btn.active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile Nav Links Dropdown (Appears when 3 lines clicked) */
  .nav-links {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    flex-direction: column;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border: 2.5px solid #000000;
    box-shadow: 5px 5px 0px #000000;
    border-radius: 20px;
    padding: 18px;
    gap: 8px;
    z-index: 1000;
  }

  .nav-link {
    font-size: 0.95rem;
    font-weight: 800;
    padding: 12px 16px;
    border-radius: 12px;
    color: #0f172a;
    text-decoration: none;
    display: block;
    border: 1.5px solid transparent;
  }

  .nav-link:hover, .nav-link.active {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 90px 0 50px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero-title {
    font-size: 2.6rem;
    line-height: 1.06;
  }

  .hero-description {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .phone-img {
    max-width: 300px;
    margin: 0 auto;
  }

  /* Section Titles & Cards Mobile */
  .designed-section, .steps-section, .contact-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 28px 22px;
    min-height: auto;
  }

  /* Feature Steps Split Mobile */
  .steps-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .big-green-card {
    padding: 32px 24px 0 24px;
    min-height: auto;
  }

  .big-card-title {
    font-size: 1.75rem;
    max-width: 100%;
  }

  .white-arc-overlay {
    border-top-left-radius: 90px;
    padding: 28px 24px 24px 24px;
    margin-left: -24px;
    margin-right: -24px;
    margin-top: 32px;
  }

  .step-card {
    padding: 14px 16px;
    gap: 14px;
  }

  /* Therapist Preview Mobile */
  .therapist-preview-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 22px;
    gap: 20px;
  }

  .therapist-preview-title {
    font-size: 1.65rem;
  }

  .therapist-preview-btn {
    width: 100%;
    justify-content: center;
  }

  /* Contact Form Mobile */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .form-input, .form-select, .form-textarea {
    font-size: 16px; /* Prevents Safari auto-zoom on input tap */
  }

  /* CTA Banner Mobile */
  .cta-banner {
    padding: 36px 20px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .btn-cta {
    width: 100%;
    padding: 14px 24px;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  /* Coming Soon Therapist Page Mobile */
  .coming-soon-card {
    padding: 36px 20px;
  }

  .coming-soon-title {
    font-size: 2.1rem;
  }

  .waitlist-form {
    flex-direction: column;
    width: 100%;
  }

  .waitlist-input, .waitlist-btn {
    width: 100%;
    text-align: center;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .navbar-wrapper {
    padding: 0 16px;
    top: 14px;
  }

  .brand-logo {
    font-size: 1.2rem;
  }

  .btn-get-started {
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  .hamburger-btn {
    width: 36px;
    height: 36px;
  }

  .hamburger-bar {
    width: 17px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .phone-img {
    max-width: 260px;
  }
}
