/* ==========================================
   eQash Landing Page Stylesheet
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables & Design System --- */
:root {
  --primary: #00c5eb;
  --primary-hover: #00b0d4;
  --primary-dark: #008eb0;
  --primary-light: #e6f9fd;
  --primary-pill-bg: #dbf6fd;
  --primary-pill-text: #008fae;
  
  --bg-gradient: linear-gradient(135deg, #00c7ee 0%, #00b0d7 100%);
  --bg-light: #f7fafc;
  --bg-card: #f4f9fc;
  --white: #ffffff;
  
  --text-main: #1b2533;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --border-color: #e2e8f0;
  --border-light: #edf2f7;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px rgba(0, 197, 235, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* --- Reset & Global --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button, input {
  font-family: inherit;
  border: none;
  outline: none;
}

/* --- Container & Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Section Tag Pill */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background-color: var(--primary-pill-bg);
  color: var(--primary-pill-text);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  transition: var(--transition);
}

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

.section-tag svg, .section-tag span.star {
  font-size: 14px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.85);
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
  background-color: #f0fbfe;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 197, 235, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 197, 235, 0.4);
}

/* Store Badge Buttons */
.store-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.store-btn:hover img {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

.header.scrolled {
  position: fixed;
  top: 0;
  background-color: var(--white);
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo .logo-dark {
  display: block;
}

.logo .logo-light {
  display: none;
}

.header.scrolled .logo .logo-dark {
  display: none;
}

.header.scrolled .logo .logo-light {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}

.header.scrolled .nav-link {
  color: var(--primary);
}

.header.scrolled .nav-link:hover {
  color: var(--primary-hover);
}

.header.scrolled .btn-nav {
  background-color: var(--primary);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 8px;
}

.header.scrolled .mobile-toggle {
  color: var(--text-main);
}

/* Fullscreen Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #00c7ee 0%, #00b0d7 100%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 24px 48px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.mobile-nav-link {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-footer .logo img {
  height: 48px;
  filter: brightness(0) invert(1);
}

.mobile-menu-footer p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  background: var(--bg-gradient);
  padding: 160px 0 0;
  overflow: hidden;
  color: var(--white);
}

/* 3 Distinct translucent white circle ellipses in 3 different locations */
.hero-ellipse {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* 1. Pojok Kiri Atas (Lebih kecil) */
.hero-ellipse.ellipse-top-left {
  top: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  border: 40px solid rgba(255, 255, 255, 0.14);
}

/* 2. Pojok Kiri Bawah (Ukuran berbeda, compact) */
.hero-ellipse.ellipse-bottom-left {
  bottom: 40px;
  left: -120px;
  width: 390px;
  height: 390px;
  border: 48px solid rgba(255, 255, 255, 0.12);
}

/* 3. Pojok Kanan (Proporsional) */
.hero-ellipse.ellipse-right-large {
  top: 10%;
  right: -140px;
  width: 560px;
  height: 560px;
  border: 60px solid rgba(255, 255, 255, 0.14);
}

/* Wave background curve at bottom of hero */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.4);
  z-index: 9;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
}

.hero-content {
  z-index: 2;
  padding-bottom: 100px;
}

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

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 4;
}

.hero-image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners-section {
  padding: 60px 0;
  background-color: var(--white);
}

.partners-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 36px;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partner-item img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: var(--transition);
  filter: grayscale(20%);
}

.partner-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ==========================================
   BENEFITS SECTION ("Why Choose Us")
   ========================================== */
.benefits-section {
  padding: 80px 0;
  background-color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.benefit-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.benefit-icon-wrapper img {
  width: 64px;
  height: 64px;
}

.benefit-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Mobile Pagination Dots for Benefit Slider */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 12px;
}

/* ==========================================
   ANYWHERE, ANYTIME SECTION
   ========================================== */
.anywhere-section {
  padding: 80px 0;
  background-color: var(--white);
}

.anywhere-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.anywhere-content .section-tag {
  margin-bottom: 16px;
}

.anywhere-content .section-title {
  text-align: left;
}

.anywhere-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-circle img {
  width: 44px;
  height: 44px;
}

.feature-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.feature-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.anywhere-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.anywhere-image-wrapper::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--primary);
  z-index: 1;
}

.anywhere-image-wrapper img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
}

/* ==========================================
   OUR TOP FEATURES SECTION (Bento Grid)
   ========================================== */
.top-features-section {
  padding: 80px 0;
  background-color: var(--white);
}

.top-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  min-height: 380px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card.cyan {
  background-color: var(--primary);
  color: var(--white);
}

.feature-card.light {
  background-color: var(--bg-card);
  color: var(--text-main);
}

.feature-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card.cyan .feature-card-title {
  color: var(--white);
}

.feature-card.light .feature-card-title {
  color: var(--text-main);
}

.feature-card-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-card.cyan .feature-card-desc {
  color: rgba(255, 255, 255, 0.9);
}

.feature-card.light .feature-card-desc {
  color: var(--text-muted);
}

.feature-card-img {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 2;
}

.feature-card-img.img-top {
  margin-top: 0;
  margin-bottom: auto;
  align-items: flex-start;
}

.feature-card-img img {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

/* Custom mockup for Card 1 */
.worldwide-mockup {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.worldwide-mockup img {
  border-radius: 12px;
}

/* ==========================================
   TESTIMONIAL SECTION
   ========================================== */
.testimonial-section {
  padding: 100px 0;
  background: var(--bg-gradient);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Single translucent white circle ellipse overlay (Top-Left) */
.testimonial-section::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -180px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  border: 65px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 1;
}

.testimonial-slider-container {
  overflow: hidden;
  margin-top: 48px;
  padding: 10px 0;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  flex: 0 0 calc(25% - 18px);
  min-width: calc(25% - 18px);
  background-color: var(--white);
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.testimonial-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-main);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 14px;
  margin-top: 2px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.testimonial-dots .dot {
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonial-dots .dot.active {
  background-color: var(--white);
  width: 24px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -180px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 45px solid #eef7fc;
  pointer-events: none;
  z-index: 0;
}

.faq-section::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -180px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 45px solid #eef7fc;
  pointer-events: none;
  z-index: 0;
}

.faq-container {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--white);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-main);
  user-select: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-body {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ==========================================
   CTA DOWNLOAD BANNER
   ========================================== */
.cta-section {
  padding: 60px 0 100px;
}

.cta-banner {
  background: var(--bg-gradient);
  border-radius: var(--radius-xl);
  padding: 60px 60px 0;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 197, 235, 0.25);
  position: relative;
}

.cta-content {
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  position: relative;
  z-index: 2;
}

.cta-image img {
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
  margin-bottom: 0;
  align-self: flex-end;
}

/* ==========================================
   FOOTER
   ========================================== */
/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: #00bce2;
  color: var(--white);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer-ellipse {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Elips sedang di pojok kanan atas (Ukuran disesuaikan) */
.footer-ellipse.ellipse-top-right {
  top: -110px;
  right: -110px;
  width: 460px;
  height: 460px;
  border: 50px solid rgba(255, 255, 255, 0.12);
}

/* Elips kecil di pojok kiri bawah */
.footer-ellipse.ellipse-bottom-left {
  bottom: -100px;
  left: -100px;
  width: 380px;
  height: 380px;
  border: 45px solid rgba(255, 255, 255, 0.12);
}

.footer-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 1. Footer Atas (Logo & Description) */
.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 32px;
}

.footer-brand .logo img {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 520px;
}

/* 2. Footer Tengah (Menu Columns & Newsletter) */
.footer-middle {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

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

.footer-newsletter h5 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-newsletter p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-input {
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 14px;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.newsletter-btn {
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background-color: var(--white);
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: #f0fbfe;
}

/* 3. Footer Bawah (Copyright & Social Links) */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--white);
  color: var(--primary);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-middle {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonial-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .nav-menu, .btn-nav {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .store-buttons {
    justify-content: center;
  }
  
  .anywhere-grid {
    grid-template-columns: 1fr;
  }
  
  .top-features-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner {
    grid-template-columns: 1fr;
    padding: 40px 24px 0;
    text-align: center;
  }
  
  .cta-content {
    padding-bottom: 24px;
  }
  
  .cta-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-banner .store-buttons {
    justify-content: center;
  }
  
  .testimonial-card {
    min-width: 100%;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .carousel-dots {
    display: flex;
  }
  
  .footer-middle {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }
}
