/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem;

  /*========== Colors (matching main app) ==========*/
  --background-color: #121212;
  --surface-color: #1e1e1e;
  --primary-color: #3d8bfd;
  --primary-hover-color: #5a9fff;
  --secondary-color: #333;
  --text-color: #e0e0e0;
  --text-secondary-color: #a0a0a0;
  --success-color: #4CAF50;
  --error-color: #f44336;
  --warning-color: #ff9500;
  --border-color: #333;
  --gradient-primary: linear-gradient(135deg, #3d8bfd, #5a9fff);
  --gradient-dark: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  --shadow-light: 0 4px 20px rgba(61, 139, 253, 0.1);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.3);
  --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.4);

  /*========== Font and typography ==========*/
  --body-font: 'Inter', sans-serif;
  --biggest-font-size: 3.5rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.75rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /*========== Border radius ==========*/
  --border-radius: 12px;
  --border-radius-small: 8px;
  --border-radius-large: 20px;

  /*========== z-index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (max-width: 968px) {
  :root {
    --biggest-font-size: 2.5rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.125rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  color: var(--text-color);
  font-weight: var(--font-semibold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 6rem 0 4rem;
}

.section__title {
  font-size: var(--h2-font-size);
  text-align: center;
  margin-bottom: 4rem;
  font-weight: var(--font-bold);
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: var(--font-semibold);
  font-size: var(--normal-font-size);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-light);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(61, 139, 253, 0.3);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn--block {
  width: 100%;
}

.btn--glow {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 4px 20px rgba(61, 139, 253, 0.3);
  }
  to {
    box-shadow: 0 8px 40px rgba(61, 139, 253, 0.6);
  }
}

/*=============== HEADER & NAV ===============*/
.header {
  width: 100%;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  border-bottom: 1px solid var(--border-color);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  font-weight: var(--font-bold);
  font-size: 1.125rem;
  color: var(--text-color);
  gap: 0.75rem;
}

.nav__logo-img {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-small);
}

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__link {
  color: var(--text-secondary-color);
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  position: relative;
}

.nav__link:hover {
  color: var(--primary-color);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--background-color);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 0;
    transition: left 0.3s ease;
    z-index: 100;
    border-top: 1px solid var(--border-color);
  }

  .nav__menu.active {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .nav__link {
    font-size: 1.125rem;
    padding: 1rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
  }

  .mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .nav__logo {
    font-size: 0.9rem;
  }

  .nav__logo-img {
    width: 24px;
    height: 24px;
  }
}

/* Hide mobile toggle on desktop */
@media screen and (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/*=============== HERO ===============*/
.hero {
  padding: calc(var(--header-height) + 4rem) 0 6rem;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(61, 139, 253, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title-highlight {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary-color);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.hero__feature-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
}

.hero__disclaimer {
  font-size: var(--smaller-font-size);
  color: var(--text-secondary-color);
  margin-top: 1rem;
  font-style: italic;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-heavy);
  animation: float 6s ease-in-out infinite;
}

.hero__floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  animation: float 4s ease-in-out infinite;
}

.floating-element svg {
  width: 30px;
  height: 30px;
  color: var(--primary-color);
}

.floating-element--calendar {
  top: 20%;
  left: -10%;
  animation-delay: -1s;
}

.floating-element--climate {
  bottom: 20%;
  right: -10%;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media screen and (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero__title {
    font-size: var(--h1-font-size);
  }
  
  .hero__subtitle {
    font-size: 1.125rem;
  }
  
  .hero__features {
    justify-content: center;
  }
}

/*=============== FEATURES PREVIEW ===============*/
.features-preview {
  padding: 4rem 0;
  background: var(--surface-color);
}

.features-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-preview {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--border-radius);
  background: rgba(61, 139, 253, 0.05);
  border: 1px solid rgba(61, 139, 253, 0.1);
  transition: all 0.3s ease;
}

.feature-preview:hover {
  transform: translateY(-5px);
  background: rgba(61, 139, 253, 0.1);
  border-color: rgba(61, 139, 253, 0.2);
}

.feature-preview__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-preview h3 {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.feature-preview p {
  color: var(--text-secondary-color);
  font-size: var(--small-font-size);
}

/*=============== HOW IT WORKS ===============*/
.how__container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.how__step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.how__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(61, 139, 253, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.how__step:hover::before {
  opacity: 1;
}

.how__step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(61, 139, 253, 0.3);
}

.how__step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: white;
  box-shadow: var(--shadow-light);
}

.how__step-content {
  z-index: 1;
}

.how__step-title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.how__step-description {
  color: var(--text-secondary-color);
  line-height: 1.6;
}

.how__step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.how__step-icon {
  width: 80px;
  height: 80px;
  color: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .how__step {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .how__step-number {
    position: relative;
    margin-bottom: 1rem;
  }

  .how__step-visual {
    display: none; /* Hide SVG icons on mobile */
  }

  .how__step-title {
    font-size: 1.25rem;
  }

  .how__step-description {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/*=============== FEATURES ===============*/
.features__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature {
  background: var(--surface-color);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(61, 139, 253, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature:hover::before {
  opacity: 1;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(61, 139, 253, 0.3);
}

.feature__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature__icon {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
}

.feature__title {
  font-size: var(--h3-font-size);
  color: var(--text-color);
}

.feature__description {
  color: var(--text-secondary-color);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/*=============== AUTH SECTION ===============*/
.auth-section {
  background: var(--gradient-dark);
  position: relative;
}

.auth-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(61, 139, 253, 0.1) 0%, transparent 70%);
}

.auth-container {
  max-width: 500px;
  margin: 0 auto;
  background: var(--surface-color);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-heavy);
  position: relative;
  z-index: 1;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-title {
  font-size: var(--h2-font-size);
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.auth-subtitle {
  color: var(--text-secondary-color);
  font-size: var(--normal-font-size);
}

.auth-toggle {
  display: flex;
  background: var(--background-color);
  border-radius: var(--border-radius);
  padding: 0.25rem;
  margin-bottom: 2rem;
}

.auth-toggle button {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  color: var(--text-secondary-color);
  border-radius: var(--border-radius-small);
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
}

.auth-toggle button.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-light);
}

.auth-form {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: var(--font-medium);
  font-size: var(--small-font-size);
}

.form-group input {
  width: 100%;
  padding: 1rem;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-size: var(--normal-font-size);
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(61, 139, 253, 0.1);
}

.form-group input::placeholder {
  color: var(--text-secondary-color);
}

.auth-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--border-radius);
  font-size: var(--normal-font-size);
  font-weight: var(--font-semibold);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(61, 139, 253, 0.3);
}

.auth-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-footer {
  text-align: center;
}

.auth-footer p {
  color: var(--text-secondary-color);
  font-size: var(--small-font-size);
}

.error-message, .success-message {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  display: none;
}

.error-message {
  background: rgba(244, 67, 54, 0.1);
  color: var(--error-color);
  border: 1px solid rgba(244, 67, 54, 0.2);
}

.success-message {
  background: rgba(76, 175, 80, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(76, 175, 80, 0.2);
}

/*=============== PRICING ===============*/
.pricing__container {
  display: flex;
  justify-content: center;
}

.pricing__card {
  max-width: 400px;
  background: var(--surface-color);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-large);
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-heavy);
  position: relative;
  overflow: hidden;
}

.pricing__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(61, 139, 253, 0.05) 0%, transparent 50%);
}

.pricing__header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.pricing__plan-name {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.pricing__price-currency {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: var(--font-bold);
}

.pricing__price-amount {
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: var(--font-bold);
}

.pricing__price-period {
  font-size: 1.125rem;
  color: var(--text-secondary-color);
  font-weight: var(--font-medium);
}

.pricing__description {
  color: var(--text-secondary-color);
  text-align: center;
  font-size: var(--small-font-size);
}

.pricing__features {
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.pricing__features li {
  padding: 0.5rem 0;
  color: var(--text-color);
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing__note {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 149, 0, 0.1);
  border: 1px solid rgba(255, 149, 0, 0.2);
  border-radius: var(--border-radius);
  position: relative;
  z-index: 1;
}

.pricing__note p {
  color: var(--warning-color);
  font-size: var(--smaller-font-size);
  text-align: center;
  margin: 0;
}

/*=============== FAQ ===============*/
.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item:hover {
  border-color: rgba(61, 139, 253, 0.3);
  box-shadow: var(--shadow-light);
}

.faq__question {
  padding: 1.5rem 2rem;
  margin: 0;
  font-size: var(--h3-font-size);
  color: var(--text-color);
  cursor: pointer;
  position: relative;
}

.faq__question::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: var(--font-bold);
}

.faq__answer {
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary-color);
  line-height: 1.6;
  margin: 0;
}

/*=============== FOOTER ===============*/
.footer {
  background: var(--background-color);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 300px;
}

.footer__brand h4 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.footer__logo {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-small);
  margin-bottom: 0.5rem;
}

.footer__description {
  color: var(--text-secondary-color);
  font-size: var(--small-font-size);
  line-height: 1.5;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__column h4 {
  color: var(--text-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-semibold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__links a {
  color: var(--text-secondary-color);
  font-size: var(--small-font-size);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.footer__bottom p {
  color: var(--text-secondary-color);
  font-size: var(--smaller-font-size);
  margin: 0.25rem 0;
}

@media screen and (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer__links {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  .footer__column {
    align-items: center;
  }
}

/*=============== SCROLLBAR ===============*/
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-color);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/*=============== ANIMATIONS ===============*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/*=============== RESPONSIVE ===============*/
@media screen and (max-width: 320px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .section {
    padding: 4rem 0 2rem;
  }
  
  .hero {
    padding: calc(var(--header-height) + 2rem) 0 4rem;
  }
}

/* Enhanced mobile responsiveness for auth section */
@media screen and (max-width: 768px) {
  .auth-container {
    padding: 2rem 1rem;
    margin: 0 1rem;
  }

  .auth-title {
    font-size: var(--h2-font-size);
  }

  .auth-toggle {
    gap: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
  }

  .auth-toggle button {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 0;
  }

  .form-group input {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 1rem;
  }

  .auth-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Improve button touch targets */
@media screen and (max-width: 768px) {
  .btn {
    min-height: 44px;
    padding: 12px 24px;
    font-size: 1rem;
    touch-action: manipulation;
  }

  .btn--large {
    min-height: 56px;
    padding: 16px 32px;
  }

  /* Make nav button 20% smaller on mobile phones */
  .nav__buttons .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    min-height: 36px;
  }
}

/* Enhanced features section for mobile */
@media screen and (max-width: 768px) {
  .features__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature {
    padding: 1.5rem;
    text-align: center;
  }

  .feature__header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .feature__icon {
    width: 48px;
    height: 48px;
  }

  .feature__title {
    font-size: 1.25rem;
  }

  .feature__description {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Enhanced pricing section for mobile */
@media screen and (max-width: 768px) {
  .pricing__container {
    padding: 0 1rem;
  }

  .pricing__card {
    padding: 2rem 1.5rem;
    margin: 0 auto 2rem;
    max-width: 350px;
  }

  .pricing__price-amount {
    font-size: 2.5rem;
  }

  .pricing__features {
    margin: 1.5rem 0;
  }

  .pricing__features li {
    padding: 0.75rem 0;
    font-size: 0.95rem;
  }
}

/* Enhanced FAQ section for mobile */
@media screen and (max-width: 768px) {
  .faq__question {
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
  }

  .faq__question::after {
    right: 1.5rem;
    font-size: 1.25rem;
  }

  .faq__answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
} 