/* 
   NextChapter - Matrimonial/Relationship App Landing Page
   Brand Palette & Style Guide
*/

:root {
  --primary: #14908F;
  --primary-dark: #0E6B6A;
  --primary-light: #E6F4F4;
  --accent: #FF7A59;
  --accent-hover: #E86544;
  --accent-light: #FFF0ED;
  --warm-sand: #FBF1E3;
  --warm-sand-light: #FFFBF7;
  --dark-text: #1E2A2A;
  --muted-text: #7A8585;
  --white: #FFFFFF;
  --gradient-main: linear-gradient(135deg, #14908F, #FF7A59);
  --gradient-hero: linear-gradient(135deg, #FFF9F2 0%, #F5F9F8 50%, #E6F4F4 100%);
  --gradient-card: linear-gradient(135deg, #FFFFFF 0%, #FBF1E3 100%);
  --gradient-dark: linear-gradient(135deg, #1E2A2A 0%, #151F1F 100%);
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(30, 42, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(30, 42, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(20, 144, 143, 0.12);
  --shadow-accent: 0 12px 32px rgba(255, 122, 89, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--warm-sand-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-text);
  line-height: 1.25;
  font-weight: 600;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Utility Layout Classes */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(20, 144, 143, 0.08);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-text);
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 122, 89, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-white {
  background: var(--white);
  color: var(--dark-text);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: #FFFBF7;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* 1. STICKY NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--warm-sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(20, 144, 143, 0.1);
  padding: 6px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark-text);
}

.logo-text span {
  color: var(--primary);
}

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

.nav-link {
  font-weight: 500;
  color: var(--dark-text);
  font-size: 0.95rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark-text);
  border-radius: 3px;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  padding: 6rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark-text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0.75rem;
}

/* 2. HERO SECTION */
.hero {
  min-height: 92vh;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 650px;
}

.hindi-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: block;
}

.hero-title {
  font-size: 3.25rem;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
}

.hero-subtext {
  font-size: 1.2rem;
  color: var(--muted-text);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 144, 143, 0.15);
  font-size: 0.9rem;
  color: var(--muted-text);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup-wrapper {
  position: relative;
  max-width: 380px;
  width: 100%;
}

.mockup-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.mockup-wrapper:hover .mockup-img {
  transform: translateY(-6px);
}

.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite alternate;
}

.badge-1 {
  top: 12%;
  left: -20px;
}

.badge-2 {
  bottom: 15%;
  right: -20px;
  animation-delay: -2s;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* 3. EMOTIONAL HOOK / WHY NEXTCHAPTER */
.why-section {
  background-color: var(--warm-sand);
}

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

.why-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(20, 144, 143, 0.08);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--warm-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--muted-text);
  font-size: 1rem;
  line-height: 1.65;
}

/* 4. HOW IT WORKS */
.how-section {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}

.step-card {
  background: var(--warm-sand-light);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(20, 144, 143, 0.2);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  background: var(--white);
  border-style: solid;
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(20, 144, 143, 0.2);
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--muted-text);
  font-size: 0.95rem;
}

/* 5. KEY FEATURES */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3.5rem 0;
}

.feature-row:nth-child(even) {
  direction: rtl;
}

.feature-row:nth-child(even) .feature-content {
  direction: ltr;
}

.feature-row:nth-child(even) .feature-image {
  direction: ltr;
}

.feature-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.feature-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--warm-sand);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-content h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.feature-content p {
  font-size: 1.1rem;
  color: var(--muted-text);
  line-height: 1.7;
}

/* 6. TESTIMONIALS */
.testimonials-section {
  background: var(--gradient-main);
  color: var(--white);
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-section .section-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 1rem 0 3rem 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-text);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.stars {
  color: #FFB800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-text);
  font-weight: 600;
  border: 2px solid var(--primary);
}

.author-details h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
}

.author-details p {
  font-size: 0.9rem;
  color: var(--muted-text);
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--white);
  width: 28px;
  border-radius: 6px;
}

/* 7. APP FEATURES GRID */
.grid-section {
  background: var(--gradient-dark);
  color: var(--white);
}

.grid-section .section-title {
  color: var(--white);
}

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

.grid-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.grid-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.grid-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.grid-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.grid-card p {
  color: #A0AEC0;
  font-size: 0.95rem;
}

/* 8. WAITLIST SECTION */
.waitlist-section {
  background: var(--gradient-main);
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.waitlist-container {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.waitlist-subtext {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.waitlist-card {
  background: var(--white);
  color: var(--dark-text);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  text-align: left;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 144, 143, 0.15);
}

.input-group {
  display: flex;
}

.input-prefix {
  background: #EDF2F7;
  border: 1.5px solid #E2E8F0;
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 0.85rem 0.875rem;
  font-weight: 600;
  color: var(--muted-text);
}

.input-group .form-control {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  color: var(--muted-text);
}

.checkbox-group input {
  margin-top: 0.2rem;
  accent-color: var(--primary);
}

.waitlist-btn {
  width: 100%;
  background: var(--dark-text);
  color: var(--white);
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
}

.waitlist-btn:hover {
  background: #000000;
}

.privacy-note {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 1rem;
  color: var(--muted-text);
}

/* 9. FAQ SECTION */
.faq-section {
  background-color: var(--warm-sand);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.5rem 2rem;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--warm-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-light);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
  color: var(--muted-text);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.5rem 2rem;
}

/* 10 & 11. POLICY MODAL / FULL VIEW */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 42, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 850px;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  animation: modalSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlide {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--warm-sand-light);
}

.modal-header h2 {
  font-size: 1.75rem;
  color: var(--dark-text);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--muted-text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: #E2E8F0;
  color: var(--dark-text);
}

.modal-body {
  padding: 2.5rem;
  overflow-y: auto;
  line-height: 1.75;
}

.modal-body h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.5rem 0;
  color: var(--primary-dark);
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p, .modal-body ul {
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.modal-body ul {
  padding-left: 1.5rem;
  list-style: disc;
}

/* 12. FOOTER */
.footer {
  background: var(--gradient-dark);
  color: #A0AEC0;
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  margin: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-subbrand {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

.footer-title {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: #A0AEC0;
  font-size: 0.95rem;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Animations on Scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--white);
  color: var(--dark-text);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  border-left: 5px solid var(--primary);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-trust-strip {
    justify-content: center;
  }
  
  .why-grid, .steps-grid, .app-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-row, .feature-row:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.35rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-badge {
    display: none;
  }
}
