@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --text: #1a1a2e;
  --text-muted: #5a6474;
  --bg: #ffffff;
  --bg-warm: #fafbfc;
  --bg-gray: #f2f4f8;
  --coral: #ff6b6b;
  --coral-hover: #ff5252;
  --blue: #4169e1;
  --gray: #5a6474;
  --gray-light: #d0d5dd;
  --border: #e8eaed;
  --card-bg: #ffffff;
  --sidebar-bg: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

/* ========== SIDEBAR ========== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border);
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  transition: transform 0.3s ease;
}

.sidebar-logo {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}

.sidebar-logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-logo svg {
  width: 24px;
  height: 24px;
  color: var(--coral);
}

.sidebar-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.sidebar-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0 1.5rem;
  margin-top: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.sidebar-nav {
  flex: 1;
  padding: 0 1rem;
}

.sidebar-nav a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
  margin-bottom: 0.25rem;
}

.sidebar-nav a:hover {
  color: var(--text);
  background: var(--bg-gray);
  border-left-color: var(--coral);
}

.sidebar-nav a.active {
  color: var(--text);
  background: var(--bg-gray);
  border-left-color: var(--coral);
  font-weight: 500;
}

.sidebar-cta {
  padding: 0 1rem;
}

.sidebar-cta a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  background: var(--coral);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 9999px;
  transition: background 0.2s ease;
}

.sidebar-cta a:hover {
  background: var(--coral-hover);
}

.sidebar-login {
  text-align: center;
  margin-top: 0.75rem;
  padding: 0 1rem;
}

.sidebar-login a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.sidebar-login a:hover {
  color: var(--text);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 60;
  width: 48px;
  height: 48px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 45;
}

/* ========== MAIN LAYOUT ========== */
.main-content {
  margin-left: 240px;
  min-height: 100vh;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(180deg, #f8f9fc 0%, #eef0f5 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--coral);
}

.hero-badge span {
  font-size: 0.8rem;
  color: var(--coral);
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 .accent {
  color: var(--coral);
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--coral);
  color: #ffffff;
  font-weight: 600;
  border-radius: 9999px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--coral-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #ffffff;
  color: var(--text);
  font-weight: 600;
  border-radius: 9999px;
  font-size: 0.95rem;
  border: 1px solid var(--gray-light);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--text);
  background: var(--bg-gray);
}

.hero-image {
  margin-top: 4rem;
  max-width: 900px;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
}

.hero-image img {
  width: 100%;
  display: block;
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 2rem;
}

.section-gray {
  background: var(--bg-gray);
}

.section-white {
  background: var(--bg);
}

.section-warm {
  background: var(--bg-warm);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  font-family: 'Inter', sans-serif;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.75rem;
  color: var(--text);
}

.section-header p {
  margin-top: 0.75rem;
  color: var(--gray);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== STATS ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-light);
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--text);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ========== FEATURES GRID ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(255,107,107,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,107,107,0.08);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--coral);
}

.feature-card span {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========== PLATFORM SHOWCASE ========== */
.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.showcase-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10,10,10,0.08);
  border: 1px solid var(--border);
}

.showcase-image img {
  width: 100%;
  display: block;
}

.showcase-content .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
}

.showcase-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: 0.75rem;
  color: var(--text);
}

.showcase-content > p {
  margin-top: 1rem;
  color: var(--gray);
  line-height: 1.6;
}

.feature-list {
  margin-top: 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}

.feature-list li svg {
  width: 18px;
  height: 18px;
  color: var(--coral);
  flex-shrink: 0;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--blue);
  font-weight: 500;
  font-size: 0.9rem;
  transition: gap 0.2s ease;
}

.link-arrow:hover {
  gap: 0.75rem;
}

/* ========== VALUES ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.value-card {
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(255,107,107,0.3);
  box-shadow: 0 4px 16px rgba(10,10,10,0.04);
}

.value-card svg {
  width: 32px;
  height: 32px;
  color: var(--coral);
}

.value-card h4 {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.value-card p {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ========== TESTIMONIALS ========== */
.testimonials-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(10,10,10,0.04);
  scroll-snap-align: start;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(10,10,10,0.08);
}

.testimonial-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  color: var(--coral);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-top: 0.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--coral) 0%, var(--blue) 100%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
}

.cta-banner p {
  margin-top: 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-white {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: var(--coral);
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.cta-banner .btn-white:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.cta-banner small {
  display: block;
  margin-top: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-gray);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo svg {
  width: 20px;
  height: 20px;
  color: var(--coral);
}

.footer-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

/* ========== PRICING ========== */
.pricing-toggle {
  display: inline-flex;
  background: var(--bg-gray);
  border-radius: 9999px;
  padding: 0.25rem;
  margin-top: 1.5rem;
}

.pricing-toggle button {
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.pricing-toggle button.active {
  background: #ffffff;
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.pricing-toggle button .badge {
  font-size: 0.6rem;
  background: var(--coral);
  color: #ffffff;
  padding: 0.15rem 0.4rem;
  border-radius: 9999px;
  margin-left: 0.5rem;
  font-weight: 600;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-cards-6 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}

.pricing-cards-6 .pricing-card {
  padding: 1.5rem;
}

.pricing-cards-6 .pricing-card .amount {
  font-size: 2rem;
}

.pricing-cards-6 .pricing-features {
  gap: 0.5rem;
}

.pricing-cards-6 .pricing-features li {
  font-size: 0.8rem;
}

.pricing-cards-6 .pricing-features li svg {
  width: 14px;
  height: 14px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(10,10,10,0.04);
  position: relative;
  transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 8px 24px rgba(10,10,10,0.08);
}

.pricing-card.featured {
  background: var(--text);
  color: #ffffff;
  box-shadow: 0 0 40px rgba(255,107,107,0.15);
  transform: scale(1.02);
  border-color: var(--text);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text);
}

.pricing-card.featured h3 {
  color: #ffffff;
}

.pricing-price {
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-price .amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text);
}

.pricing-card.featured .amount {
  color: #ffffff;
}

.pricing-price .period {
  font-size: 0.85rem;
  color: var(--gray);
}

.pricing-card.featured .period {
  color: rgba(255,255,255,0.6);
}

.pricing-card > p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.pricing-card.featured > p {
  color: rgba(255,255,255,0.7);
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.pricing-card.featured .pricing-divider {
  background: rgba(255,255,255,0.15);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: var(--coral);
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.85);
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.75rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pricing-btn-outline {
  border: 1px solid var(--gray-light);
  color: var(--text);
  background: transparent;
}

.pricing-btn-outline:hover {
  border-color: var(--text);
  background: var(--bg-gray);
}

.pricing-btn-filled {
  background: var(--coral);
  color: #ffffff;
}

.pricing-btn-filled:hover {
  background: var(--coral-hover);
}

/* ========== FAQ ========== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--coral);
}

.faq-question svg {
  width: 16px;
  height: 16px;
  color: var(--gray);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ========== ABOUT ========== */
.mission-highlight {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.mission-highlight .highlight {
  position: relative;
  display: inline;
  color: var(--text);
}

.mission-highlight .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--coral);
  border-radius: 2px;
}

.about-team-photo {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10,10,10,0.08);
  border: 1px solid var(--border);
}

.about-team-photo img {
  width: 100%;
  display: block;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,107,107,0.08);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  color: var(--coral);
}

.contact-method .label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-method .value {
  font-size: 0.9rem;
  color: var(--text);
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(10,10,10,0.04);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-light);
  padding: 0.75rem 0;
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--coral);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}

.form-group textarea {
  resize: none;
  min-height: 100px;
}

/* ========== AUTH PAGES ========== */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8f9fc 0%, #eef0f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-box {
  width: 100%;
  max-width: 420px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-logo svg {
  width: 24px;
  height: 24px;
  color: var(--coral);
}

.auth-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.auth-logo h1 {
  font-size: 1.75rem;
  color: var(--text);
  margin-top: 1.5rem;
}

.auth-logo p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.auth-form {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(10,10,10,0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--gray-light);
}

.input-icon-wrapper input,
.input-icon-wrapper select {
  padding-left: 2.5rem;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-light);
  cursor: pointer;
  padding: 0;
}

.password-toggle:hover {
  color: var(--text-muted);
}

.strength-bar {
  display: flex;
  gap: 4px;
  margin-top: 0.5rem;
}

.strength-bar .bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.2s ease;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-group input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--coral);
}

.checkbox-group span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-group a {
  color: var(--coral);
  text-decoration: underline;
}

.auth-submit {
  width: 100%;
  padding: 0.875rem;
  background: var(--coral);
  color: #ffffff;
  font-weight: 600;
  border-radius: 9999px;
  font-size: 0.9rem;
  transition: background 0.2s ease;
  margin-top: 0.5rem;
}

.auth-submit:hover {
  background: var(--coral-hover);
}

.auth-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.social-btn:hover {
  border-color: var(--gray-light);
  color: var(--text);
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--coral);
}

.auth-footer a:hover {
  color: var(--coral-hover);
}

/* ========== REGISTER STEPS ========== */
.steps-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.steps-indicator::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.step-dot .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--bg-gray);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.step-dot.done .dot {
  background: var(--coral);
  color: #ffffff;
}

.step-dot.active .dot {
  background: var(--coral);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255,107,107,0.2);
}

.step-dot span {
  font-size: 0.6rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.step-dot.active span,
.step-dot.done span {
  color: var(--coral);
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.step-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.step-nav button {
  flex: 1;
}

.btn-back {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gray-light);
  background: transparent;
  color: var(--text-muted);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-back:hover {
  border-color: var(--text);
  color: var(--text);
}

.plan-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  background: #ffffff;
}

.plan-option:hover {
  border-color: var(--gray-light);
}

.plan-option.selected {
  border-color: var(--coral);
  background: rgba(255,107,107,0.03);
}

.plan-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.plan-option.selected .plan-radio {
  border-color: var(--coral);
}

.plan-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  transform: scale(0);
  transition: transform 0.2s ease;
}

.plan-option.selected .plan-radio::after {
  transform: scale(1);
}

.plan-info h4 {
  font-size: 0.9rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.plan-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.plan-price {
  margin-left: auto;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

/* ========== TRUST LOGOS ========== */
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.trust-logos span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-light);
  transition: color 0.3s ease;
}

.trust-logos span:hover {
  color: var(--text-muted);
}

/* ========== LOCATIONS ========== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.location-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(10,10,10,0.04);
  transition: box-shadow 0.3s ease;
}

.location-card:hover {
  box-shadow: 0 8px 24px rgba(10,10,10,0.08);
}

.location-img {
  height: 140px;
  background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(65,105,225,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-img svg {
  width: 32px;
  height: 32px;
  color: var(--coral);
  opacity: 0.5;
}

.location-card h3 {
  font-size: 1.1rem;
  padding: 1.25rem 1.25rem 0;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.location-card p {
  font-size: 0.8rem;
  color: var(--gray);
  padding: 0.5rem 1.25rem;
  line-height: 1.5;
}

.location-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 500;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-overlay.show {
    display: block;
  }

  .hero {
    padding-top: 8rem;
  }

  .pricing-cards-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-cards,
  .pricing-cards-6 {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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