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

:root {
  --primary-color: #000;
  --secondary-color: #333;
  --text-color: #1a1a1a;
  --text-light: #666;
  --bg-color: #fff;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --hover-color: #555;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-color);
  scroll-behavior: smooth;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* RTL Support for Arabic */
body[lang="ar"] {
  direction: rtl;
  text-align: right;
  font-family: "Segoe UI", Roboto, "Arabic Typesetting", sans-serif;
}

body[lang="ar"] header,
body[lang="ar"] .language-dropdown {
  direction: rtl;
}

body[lang="ar"] header .nav ul {
  flex-direction: row-reverse;
}

body[lang="ar"] .language-dropdown {
  right: auto;
  left: 0;
}

/* ===========================
   HEADER
=========================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

header .logo h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header .nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

header .nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

header .nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

header .nav ul li a:hover {
  color: var(--primary-color);
}

header .nav ul li a:hover::after {
  width: 100%;
}

/* Language Switcher */
.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-color);
  transition: var(--transition);
}

.language-btn:hover {
  border-color: var(--primary-color);
  background: rgba(0, 0, 0, 0.02);
}

.language-btn svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
}

.lang-label {
  letter-spacing: 1px;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}

.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-color);
  transition: var(--transition);
  font-family: inherit;
}

.lang-option:hover {
  background: var(--bg-light);
  color: var(--primary-color);
  font-weight: 600;
}

.lang-option.active {
  background: rgba(0, 0, 0, 0.08);
  color: var(--primary-color);
  font-weight: 700;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

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

/* ===========================
   HERO SECTION
=========================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 85vh;
  gap: 4rem;
  margin-bottom: 6rem;
  padding: 2rem 0;
}

.hero .content {
  flex: 1;
  max-width: 600px;
}

.hero .content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  color: var(--text-color);
}

.hero .content h2 big {
  display: inline-block;
  background: linear-gradient(135deg, #000 0%, #555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .content .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero .button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--bg-color);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  width: fit-content;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.hero .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.hero .button:active {
  transform: translateY(0);
}

.hero .image {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.hero .image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.hero .image:hover img {
  transform: scale(1.02);
}

/* ===========================
   ABOUT SECTION
=========================== */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  margin: 10rem 0;
  padding: 4rem 0;
  position: relative;
}

.about h1 {
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-color);
  letter-spacing: -0.5px;
}

.about .image2 {
  flex: 1;
  max-width: 500px;
  order: -1;
}

.about .image2 img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 550px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.about .image2:hover img {
  transform: scale(1.02);
}

.about p {
  flex: 1;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
  margin-top: 3rem;
}

/* ===========================
   HOW IT WORKS SECTION
=========================== */
.howork {
  margin: 10rem 0;
  padding: 4rem 0;
}

.howork > h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 4rem;
  text-align: center;
  color: var(--text-color);
  letter-spacing: -0.5px;
}

.howork .section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 8rem;
  padding: 2rem 0;
}

.howork .section:last-child {
  margin-bottom: 0;
}

.howork .section .image2,
.howork .section .image {
  flex: 1;
  max-width: 500px;
  order: -1;
}

.howork .section .image2 img,
.howork .section .image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.howork .section .image2:hover img,
.howork .section .image:hover img {
  transform: scale(1.02);
}

.howork .section h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.3;
}

.howork .section p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
}

.howork .section > div:not(.image):not(.image2) {
  flex: 1;
  max-width: 600px;
}

/* ===========================
   COMMUNITY SECTION (WAITLIST)
=========================== */
.community {
  margin: 10rem 0 6rem;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.community::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist-container {
  width: 100%;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

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

.waitlist-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-color);
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #000 0%, #444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.waitlist-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* Benefits Preview */
.benefits-preview {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.benefit-item:hover {
  border-color: var(--primary-color);
  background: rgba(0, 0, 0, 0.02);
  transform: translateY(-2px);
}

.benefit-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

/* Form Styling */
.post {
  width: 100%;
  background: white;
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-group label .optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.85rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.post input[type="text"],
.post input[type="email"],
.post textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background-color: white;
  color: var(--text-color);
}

.post input[type="text"]::placeholder,
.post input[type="email"]::placeholder,
.post textarea::placeholder {
  color: #aaa;
}

.post input[type="text"]:focus,
.post input[type="email"]:focus,
.post textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
  background-color: rgba(0, 0, 0, 0.01);
}

.post input.error {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.02);
}

.post input.error:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.post textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.input-error {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.4rem;
  display: none;
}

.input-error.show {
  display: block;
}

/* Privacy Note */
.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.privacy-note svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #10b981;
  width: 18px;
  height: 18px;
}

.privacy-note p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Button Primary */
.button-primary {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
}

.button-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
}

.button-primary:active:not(:disabled) {
  transform: translateY(0);
}

.button-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.button-text {
  display: inline;
}

.button-loader {
  display: none;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Response Message */
.response-message {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  animation: slideIn 0.3s ease-out;
}

.response-message.success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.response-message.error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  color: #7f1d1d;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Waitlist Stats */
.waitlist-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
}

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

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

#response {
  margin-top: 1.5rem;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
  body {
    padding: 0 1.5rem;
  }
  
  .hero,
  .about,
  .howork .section {
    gap: 3rem;
  }
}

/* Tablets */
@media (max-width: 968px) {
  body {
    padding: 0 1.5rem;
  }

  header {
    padding: 1.5rem 0;
  }

  header .nav ul {
    gap: 1.5rem;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0;
    margin-bottom: 4rem;
  }

  .hero .image img {
    min-height: 400px;
    max-height: 450px;
  }

  .about {
    margin: 6rem 0;
    padding: 3rem 0;
  }

  .about .image2 img {
    min-height: 350px;
    max-height: 450px;
  }

  .howork {
    margin: 6rem 0;
    padding: 3rem 0;
  }

  .howork .section {
    margin-bottom: 5rem;
    gap: 3rem;
  }

  .howork .section .image2 img,
  .howork .section .image img {
    min-height: 300px;
    max-height: 400px;
  }

  .community {
    margin: 6rem 0 4rem;
    padding: 3rem 1.5rem;
  }

  .community .post {
    padding: 2.5rem;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  body {
    padding: 0 1rem;
  }

  header {
    padding: 1.25rem 0;
    position: relative;
  }

  header .logo h1 {
    font-size: 1.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  header .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  header .nav.active {
    max-height: 300px;
  }

  header .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  header .nav ul li {
    width: 100%;
  }

  header .nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
  }

  header .nav ul li a::after {
    display: none;
  }

  .language-switcher {
    position: absolute;
    top: 1.25rem;
    right: 60px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    min-height: auto;
    padding: 2rem 0;
    margin-bottom: 4rem;
  }

  .hero .content {
    max-width: 100%;
  }

  .hero .content h2 {
    text-align: center;
  }

  .hero .button {
    margin: 1.5rem auto 0;
  }

  .hero .image {
    max-width: 100%;
    order: -1;
  }

  .hero .image img {
    min-height: 300px;
    max-height: 350px;
  }

  .about {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    margin: 5rem 0;
    padding: 2rem 0;
  }

  .about h1 {
    position: static;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .about .image2 {
    max-width: 100%;
    order: 0;
  }

  .about .image2 img {
    min-height: 300px;
    max-height: 350px;
  }

  .about p {
    margin-top: 0;
    text-align: left;
  }

  .howork {
    margin: 5rem 0;
    padding: 2rem 0;
  }

  .howork > h1 {
    margin-bottom: 3rem;
  }

  .howork .section {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0;
  }

  .howork .section .image2,
  .howork .section .image {
    max-width: 100%;
    order: 0;
  }

  .howork .section .image2 img,
  .howork .section .image img {
    min-height: 250px;
    max-height: 300px;
  }

  .howork .section > h2 {
    text-align: center;
  }

  .howork .section > p {
    text-align: left;
    max-width: 100%;
  }

  .howork .section > div:not(.image):not(.image2) {
    max-width: 100%;
  }

  .community {
    margin: 5rem 0 3rem;
    padding: 2rem 1rem;
  }

  .waitlist-header {
    margin-bottom: 2rem;
  }

  .waitlist-header h2 {
    font-size: 1.5rem;
  }

  .waitlist-description {
    font-size: 1rem;
  }

  .benefits-preview {
    margin-bottom: 2rem;
    gap: 1rem;
  }

  .benefit-item {
    flex: 1;
    min-width: 140px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .post {
    padding: 2rem 1.5rem;
  }

  .privacy-note {
    padding: 0.875rem;
    gap: 0.625rem;
  }

  .privacy-note p {
    font-size: 0.85rem;
  }

  .button-primary {
    padding: 0.95rem 2rem;
  }

  .waitlist-stats {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .stat-divider {
    height: 35px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  body {
    padding: 0 0.75rem;
  }

  header {
    padding: 1rem 0;
  }

  header .logo h1 {
    font-size: 1.3rem;
  }

  .hero {
    padding: 1.5rem 0;
    margin-bottom: 3rem;
  }

  .hero .content h2 {
    margin-bottom: 1rem;
  }

  .hero .button {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
  }

  .hero .image img {
    min-height: 250px;
    max-height: 280px;
  }

  .about {
    margin: 4rem 0;
    padding: 1.5rem 0;
  }

  .about h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

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

  .about .image2 img {
    min-height: 250px;
    max-height: 280px;
  }

  .howork {
    margin: 4rem 0;
    padding: 1.5rem 0;
  }

  .howork > h1 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .howork .section {
    margin-bottom: 3rem;
  }

  .howork .section > h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .howork .section > p {
    font-size: 0.95rem;
  }

  .howork .section .image2 img,
  .howork .section .image img {
    min-height: 200px;
    max-height: 250px;
  }

  .community {
    margin: 4rem 0 2rem;
    padding: 1.5rem 0.75rem;
  }

  .badge {
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
  }

  .waitlist-header {
    margin-bottom: 1.5rem;
  }

  .waitlist-header h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .waitlist-description {
    font-size: 0.95rem;
  }

  .benefits-preview {
    margin-bottom: 1.5rem;
    gap: 0.75rem;
    justify-content: space-between;
  }

  .benefit-item {
    flex: 1;
    min-width: auto;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    justify-content: center;
    flex-direction: column;
  }

  .benefit-item svg {
    width: 16px;
    height: 16px;
    margin-bottom: 0.3rem;
  }

  .post {
    padding: 1.5rem 1rem;
  }

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

  .post input[type="text"],
  .post input[type="email"],
  .post textarea {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .privacy-note {
    padding: 0.75rem;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .privacy-note svg {
    width: 14px;
    height: 14px;
  }

  .privacy-note p {
    font-size: 0.8rem;
  }

  .button-primary {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }

  .waitlist-stats {
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-divider {
    height: 30px;
  }

  .language-switcher {
    top: 1rem;
    right: 50px;
  }

  .language-btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.75rem;
  }

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

  .language-dropdown {
    min-width: 120px;
    padding: 0.4rem;
  }

  .lang-option {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
  body {
    padding: 0 3rem;
  }

  .hero {
    min-height: 90vh;
  }

  .hero .image img {
    max-height: 650px;
  }

  .about .image2 img {
    max-height: 600px;
  }

  .howork .section .image2 img,
  .howork .section .image img {
    max-height: 550px;
  }
}

/* Landscape Orientation for Tablets */
@media (max-width: 968px) and (orientation: landscape) {
  .hero {
    min-height: auto;
  }

  .hero .image img {
    min-height: 350px;
    max-height: 400px;
  }
}

/* ===========================
   IMPROVED HERO SECTION
=========================== */
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
}

.hero h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.value-props {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}

.value-prop-item {
  font-size: 1.05rem;
  font-weight: 600;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-cta {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.about-text h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: var(--text-color);
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.problem-solution,
.solution-box {
  margin-bottom: 2.5rem;
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid #ef4444;
}

.solution-box {
  border-left-color: #16a34a;
}

.problem-solution h3,
.solution-box h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--text-color);
}

.problem-solution ul,
.solution-box ul {
  list-style: none;
  padding: 0;
}

.problem-solution li,
.solution-box li {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
}

.problem-solution li::before {
  content: '❌ ';
  margin-right: 0.75rem;
  font-weight: bold;
}

.solution-box li::before {
  content: '✓ ';
  margin-right: 0.75rem;
  color: #16a34a;
  font-weight: bold;
}

/* ===========================
   HOW IT WORKS - IMPROVED
=========================== */
.howork h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
  font-weight: 800;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.step-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  font-size: 1.75rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.step-card h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--text-color);
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-benefit {
  font-weight: 600;
  color: #16a34a;
  font-size: 0.95rem;
}

.why-feron {
  background: var(--bg-light);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  margin-top: 3rem;
}

.why-feron h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* ===========================
   TIMELINE SECTION
=========================== */
.timeline-section {
  background: var(--bg-light);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  margin-bottom: 3rem;
}

.timeline-section h3 {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 700;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color) 0%, #ccc 100%);
  top: 0;
}

.timeline-item {
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
  padding-right: 52%;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
  padding-left: 52%;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 50px;
  height: 50px;
  background: white;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transform: translateX(-50%);
  z-index: 10;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.timeline-content strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text-color);
}

.timeline-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* ===========================
   PERKS SECTION
=========================== */
.early-bird-perks {
  margin-bottom: 3rem;
}

.early-bird-perks h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.perk-item {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.perk-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.perk-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.perk-text strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.perk-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ===========================
   TESTIMONIALS SECTION
=========================== */
.testimonials-section {
  margin-bottom: 3rem;
}

.testimonials-section h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.testimonial-stars {
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.author-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ===========================
   REFERRAL SECTION
=========================== */
.referral-section {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  margin-top: 3rem;
  border: 1px solid var(--border-color);
}

.referral-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}

.referral-intro {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.referral-rewards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.reward-tier {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  text-align: center;
}

.reward-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.reward-amount {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.reward-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

#referral-btn {
  display: block;
  margin: 0 auto;
}

.coming-soon-text {
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 1.5rem;
}

/* ===========================
   BUTTON VARIATIONS
=========================== */
.button-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button-secondary:hover {
  background: var(--primary-color);
  color: white;
}

/* ===========================
   RESPONSIVE DESIGN - NEW STYLES
=========================== */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }

  .about-text {
    width: 100%;
  }

  .image2 {
    width: 100%;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    padding-left: 80px;
    padding-right: 0;
  }

  .timeline-marker {
    left: 20px;
  }

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

  .value-props {
    flex-direction: column;
  }

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

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

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

  .referral-rewards {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .waitlist-container {
    padding: 2rem 1.5rem;
  }

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

  .perk-item {
    padding: 1.25rem 1rem;
  }

  .perk-icon {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
  }

  .problem-solution,
  .solution-box {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .early-bird-perks {
    padding: 2rem 1.5rem;
  }

  .timeline-section {
    padding: 2rem 1.5rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .referral-section {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
  }

  .hero h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

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

  .value-prop-item {
    font-size: 0.85rem;
  }

  .hero-cta {
    font-size: 0.85rem;
  }

  .hero .button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .about h1 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .intro-text {
    font-size: 0.95rem;
  }

  .problem-solution,
  .solution-box {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .problem-solution h3,
  .solution-box h3 {
    font-size: 1rem;
  }

  .problem-solution li,
  .solution-box li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }

  .howork > h1 {
    font-size: 1.4rem;
  }

  .step-card {
    padding: 1.25rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .step-card h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .step-card p {
    font-size: 0.9rem;
  }

  .step-benefit {
    font-size: 0.85rem;
  }

  .why-feron {
    padding: 2rem 1.25rem;
  }

  .why-feron h2 {
    font-size: 1.3rem;
  }

  .benefit-row {
    gap: 0.75rem;
  }

  .benefit-icon {
    font-size: 1.75rem;
  }

  .benefit-text {
    font-size: 0.9rem;
  }

  .timeline-section h3 {
    font-size: 1.3rem;
  }

  .timeline-item {
    margin-bottom: 2rem;
    padding-left: 70px;
  }

  .timeline-marker {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    left: 8px;
  }

  .timeline::before {
    left: 13px;
  }

  .timeline-content {
    padding: 1.25rem;
  }

  .timeline-content strong {
    font-size: 0.95rem;
  }

  .timeline-content p {
    font-size: 0.85rem;
  }

  .early-bird-perks h3 {
    font-size: 1.3rem;
  }

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

  .perk-item {
    padding: 1.25rem 1rem;
  }

  .perk-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .perk-text strong {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .perk-text p {
    font-size: 0.8rem;
  }

  .waitlist-header {
    text-align: center;
  }

  .waitlist-header h2 {
    font-size: 1.4rem;
  }

  .waitlist-description {
    font-size: 0.9rem;
  }

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

  label {
    font-size: 0.95rem;
  }

  input[type="email"],
  textarea {
    padding: 0.75rem;
    font-size: 1rem;
  }

  .privacy-note {
    font-size: 0.8rem;
    padding: 0.75rem;
  }

  .button-primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .waitlist-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .stat-divider {
    display: none;
  }

  .testimonials-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .testimonial {
    padding: 1.25rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }

  .author-info strong {
    font-size: 0.9rem;
  }

  .author-info p {
    font-size: 0.8rem;
  }

  .referral-section {
    padding: 1.5rem 1.25rem;
  }

  .referral-section h3 {
    font-size: 1.3rem;
  }

  .referral-intro {
    font-size: 0.9rem;
  }

  .referral-rewards {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .reward-tier {
    padding: 1.25rem;
  }

  .reward-icon {
    font-size: 2rem;
  }

  .reward-amount {
    font-size: 1rem;
  }

  .reward-desc {
    font-size: 0.8rem;
  }

  .coming-soon-text {
    font-size: 0.95rem;
  }

  .response-message {
    padding: 1rem;
    font-size: 0.9rem;
  }
}
