@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Tinos:wght@400;700&display=swap');

:root {
  --primary: #2C3E50;
  --gray: #555555;
  --dark: #1A1A1A;
  --accent: #FF724F;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Tinos', serif;
  color: #FFFFFF;
  background-color: var(--dark);
  width: 100%;
  overflow-x: hidden;
}

/* HEADER & NAVIGATION */
header, .header {
  background-color: var(--primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1800px;
  width: 100%;
  gap: 2rem;
  padding: 0 2rem;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 60px;
  display: block;
  width: auto;
}

.brand-name {
  height: 40px;
  display: block;
  width: auto;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 2px;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  font-family: 'Orbitron', sans-serif;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.nav-user-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-name {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: 'Orbitron', sans-serif;
}

#settingsBtn {
  font-size: 1.1rem;
  padding: 0.6rem 0.8rem;
}

/* BUTTONS */
.btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--accent);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #E55A35;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 114, 79, 0.4);
}

.btn-secondary {
  background-color: var(--primary);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
}

.btn-outline:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
}

/* MAIN CONTENT */
main {
  min-height: calc(100vh - 80px);
  background-color: var(--dark);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(255, 255, 255, 0.03) 100%);
}

/* Auth pages container centering */
main > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 80px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* FOOTER */
footer {
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 2.5rem 1.5rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-top: 3px solid var(--accent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.footer-brand img {
  height: 35px;
  display: block;
  width: auto;
}

.footer-phrase {
  font-size: 0.8rem;
  color: #FFFFFF;
  opacity: 0.85;
  font-style: italic;
  letter-spacing: 0.5px;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex: 1;
}

.footer-nav a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  opacity: 0.85;
}

.footer-nav a:hover {
  color: var(--accent);
  opacity: 1;
}

.footer-right {
  text-align: right;
  flex-shrink: 0;
}

.footer-right p {
  margin: 0;
  opacity: 0.85;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-left {
    flex-direction: column;
    justify-content: center;
  }

  .footer-nav {
    flex-direction: row;
  }

  .footer-right {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: #FFFFFF;
  padding: 7rem 1.5rem;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--accent);
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-family: 'Tinos', serif;
  font-weight: 400;
  color: #FFFFFF;
  opacity: 0.9;
}

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

/* FEATURES SECTION */
.features {
  padding: 5rem 1.5rem;
  background-color: var(--primary);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 40%, rgba(0, 0, 0, 0.08) 100%);
}

.features h2 {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 3.5rem;
  color: #FFFFFF;
  letter-spacing: 2px;
}

.features h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  margin: 1rem auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--dark);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(255, 114, 79, 0.15);
}

.feature-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.feature-card p {
  color: #FFFFFF;
  line-height: 1.7;
  font-family: 'Tinos', serif;
  font-weight: 400;
  opacity: 0.85;
  font-size: 1.15rem;
}

/* CTA SECTION */
.cta-section {
  padding: 5rem 1.5rem;
  background-color: var(--gray);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%, rgba(255, 255, 255, 0.02) 100%);
  color: #FFFFFF;
  text-align: center;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}

.cta-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.cta-section p {
  font-size: 1.35rem;
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Tinos', serif;
  font-weight: 400;
  color: #FFFFFF;
  opacity: 0.95;
  line-height: 1.7;
}

/* PRICING SECTION */
.pricing-section {
  padding: 5rem 1.5rem;
  background-color: var(--dark);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(255, 255, 255, 0.03) 100%);
}

.pricing-section h1 {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: #FFFFFF;
}

.pricing-section h1:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  margin: 1.5rem auto 0;
}

.pricing-hero {
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 3rem;
}

.big-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(255, 114, 79, 0.3);
}

.pricing-hero p {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  font-family: 'Tinos', serif;
}

.subtitle {
  font-size: 1rem;
  color: #FFFFFF;
  font-family: 'Orbitron', sans-serif;
  opacity: 0.7;
  letter-spacing: 1px;
}

.price-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-content {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--primary);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
  padding: 3rem 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-content h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-align: center;
}

.pricing-list {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-family: 'Tinos', serif;
  font-weight: 400;
  font-size: 1.15rem;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list li:before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  margin-right: 0.75rem;
}

.pricing-cta {
  text-align: center;
  margin-top: 2rem;
}

/* FAQ SECTION */
.faq-section {
  padding: 5rem 1.5rem;
  background-color: var(--primary);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 40%, rgba(0, 0, 0, 0.08) 100%);
}

.faq-section h2 {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: #FFFFFF;
}

.faq-section h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  margin: 1rem auto 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--dark);
  padding: 2rem;
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.faq-item h4 {
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.faq-item p {
  color: #FFFFFF;
  line-height: 1.6;
  font-family: 'Tinos', serif;
  font-weight: 400;
  opacity: 0.85;
  font-size: 1.1rem;
}

/* ABOUT SECTION */
.about-section {
  padding: 5rem 1.5rem;
  background-color: var(--dark);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(255, 255, 255, 0.03) 100%);
}

.about-section h1 {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: #FFFFFF;
}

.about-section h1:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  margin: 1.5rem auto 3rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--primary);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
  padding: 3rem;
  border-radius: 8px;
}

.about-content h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent);
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content p, .about-content ul {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-family: 'Tinos', serif;
  font-weight: 400;
  font-size: 1.15rem;
  opacity: 0.9;
}

.about-content ul {
  list-style: none;
  margin-left: 0;
}

.about-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.about-content li:before {
  content: "●";
  color: var(--accent);
  position: absolute;
  left: 0;
}

.about-cta {
  text-align: center;
  margin-top: 3rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: #FFFFFF;
  background-color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 114, 79, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper input {
  padding-right: 3rem;
}

.toggle-password {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0;
  transition: opacity 0.3s;
}

.toggle-password:hover {
  opacity: 0.8;
}

.error-message {
  background-color: rgba(255, 114, 79, 0.15);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-family: 'Tinos', serif;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.5px;
}

/* AUTH CONTAINER */
.auth-container {
  max-width: 450px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background-color: var(--primary);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.auth-container h1 {
  font-family: 'Orbitron', sans-serif;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.auth-container h1:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 1rem auto 2rem;
}

.auth-container p {
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-family: 'Tinos', serif;
  opacity: 0.8;
}

.auth-container h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  text-align: center;
  margin-bottom: 1rem;
}

.auth-link {
  text-align: center;
  margin-top: 1.5rem;
  color: #FFFFFF;
  font-size: 0.9rem;
}

.auth-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
}

.auth-link a:hover {
  text-decoration: underline;
}

/* DASHBOARD */
.dashboard-wrapper {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 0;
  height: calc(100vh - 80px);
  background: var(--dark);
}

.sidebar {
  background-color: #2C3E50;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-section h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FF724F;
  margin: 0;
}

.sidebar select,
.sidebar input {
  width: 100%;
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 10px 12px;
  color: #FFFFFF;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
}

.sidebar select:focus,
.sidebar input:focus {
  outline: none;
  border-color: var(--accent);
}

.sidebar select option {
  background: #1A1A1A;
  color: #FFFFFF;
}

.sidebar input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.selected-info {
  background-color: var(--dark);
  border-left: 3px solid var(--accent);
  padding: 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #FFFFFF;
  font-family: 'Orbitron', sans-serif;
}

.selected-info p {
  margin: 4px 0;
  font-size: 0.85rem;
}

.selected-info strong {
  color: var(--accent);
}

.user-info {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.user-info .email {
  font-size: 0.85rem;
  color: #FFFFFF;
  opacity: 0.9;
  font-family: 'Tinos', serif;
}

.generate-btn {
  background-color: var(--accent);
  color: #FFFFFF;
  margin-top: auto;
  width: 100%;
}

.generate-btn:hover {
  background-color: #E55A35;
}

.map-container {
  position: relative;
  flex: 1;
}

#map {
  width: 100%;
  height: 100%;
}

/* RESPONSIVE - TABLET / MOBILE MENU */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--primary);
    padding: 1.5rem;
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    border-bottom: 2px solid var(--accent);
  }

  .nav.active {
    max-height: 500px;
  }

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

  .nav-buttons .btn {
    width: 100%;
  }

  .dashboard-wrapper {
    grid-template-columns: 1fr;
    height: auto;
  }

  .sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
  }

  #map {
    height: 500px;
  }
}

/* RESPONSIVE - TABLET */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .hero p {
    font-size: 1rem;
  }

  .features h2,
  .faq-section h2,
  .pricing-section h1,
  .about-section h1,
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .big-price {
    font-size: 3.5rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .pricing-content {
    padding: 2rem 1.5rem;
  }

  .about-content {
    padding: 2rem 1.5rem;
  }

  .auth-container {
    margin: 2rem 1rem;
    padding: 2rem 1.5rem;
  }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 480px) {
  .header-container {
    padding: 0 1rem;
  }

  .brand-logo {
    height: 45px;
  }

  .brand-name {
    height: 30px;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .features,
  .cta-section,
  .faq-section,
  .pricing-section,
  .about-section {
    padding: 3rem 1rem;
  }

  .features h2,
  .faq-section h2,
  .pricing-section h1,
  .about-section h1,
  .cta-section h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .big-price {
    font-size: 2.8rem;
  }

  .feature-card,
  .faq-item {
    padding: 1.5rem;
  }

  .feature-card h3,
  .faq-item h4 {
    font-size: 1rem;
  }

  .pricing-content,
  .about-content {
    padding: 1.5rem 1.2rem;
  }

  .auth-container {
    margin: 1rem;
    padding: 1.5rem 1.2rem;
  }

  .auth-container h1 {
    font-size: 1.3rem;
  }

  .sidebar {
    padding: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  .btn-lg {
    padding: 0.75rem 1.4rem;
    font-size: 0.85rem;
  }
}
