/* CSS Custom Properties & Design System */
:root {
  --primary-hue: 359;
  --primary: hsl(var(--primary-hue), 82%, 56%); /* Red */
  --primary-hover: hsl(var(--primary-hue), 82%, 46%);
  
  --neutral-dark: #121217;
  --neutral-text: #3e3e52;
  --neutral-light: #fdfdfd;
  --bg-pink: #fff5f5;
  --border-color: #f0e6e6;
  
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Roboto Slab', Georgia, serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

/* Reset & Defaults */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--neutral-light);
  color: var(--neutral-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--neutral-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}

.logo-text-image {
  height: 24px;
  object-fit: contain;
}

.footer-logo-text {
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--neutral-text);
  padding: 8px 4px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-selector {
  position: relative;
}

.lang-selector-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.lang-selector-btn:hover,
.lang-selector.open .lang-selector-btn {
  background-color: var(--bg-pink);
  border-color: var(--primary);
  color: var(--primary);
}

.globe-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 6px;
  min-width: 160px;
  max-height: 320px;
  overflow-y: auto;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 200;
}

.lang-selector.open .lang-dropdown {
  display: block;
}

.lang-option {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-text);
  white-space: nowrap;
}

.lang-option:hover {
  background-color: var(--bg-pink);
  color: var(--primary);
}

.lang-option.active {
  background-color: var(--primary);
  color: white;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 75%;
  background: url('assets/bg_redcdf6538cab8ec06c7602ec1af781f4bd.png') no-repeat right center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--neutral-text);
  margin-bottom: 36px;
  max-width: 580px;
}

.btn-download {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e62310;
  color: white;
  padding: 18px 48px;
  border-radius: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(230, 35, 16, 0.25);
  transition: var(--transition-smooth);
}

.btn-download:hover {
  background-color: #cc1b0c;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(230, 35, 16, 0.35);
}

.security-verified {
  margin-top: 48px;
}

.security-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #555566;
  margin-bottom: 16px;
}

.security-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333344;
}

.security-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.hero-image-area {
  position: relative;
}

.phone-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.phone-mockup {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* Why VidMate Section */
.why-section {
  padding: 80px 0;
  background-color: #fdf3f2; /* light warm coral/pink background */
}

.section-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.badge-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(240, 80, 48, 0.15);
}

.rating-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.rating-num {
  font-weight: 700;
  color: #333;
}

.rating-stars {
  color: #ff9800;
  display: flex;
  gap: 2px;
}

.rating-count {
  color: #888;
  font-size: 0.85rem;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
  color: #555566;
  max-width: 820px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.why-card {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  text-align: center;
}

.why-card:hover {
  transform: none;
  box-shadow: none;
}

.card-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  height: 80px;
}

.feature-icon-image {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.feature-icon-circle {
  width: 72px;
  height: 72px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

.feature-icon-svg {
  width: 34px;
  height: 34px;
  color: #333344;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.why-card p {
  font-size: 0.95rem;
  color: #555566;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto;
}

/* Features Detail Section */
.features-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-top-desc {
  font-size: 1.25rem;
  color: #555566;
  max-width: 800px;
  margin: 0 auto 80px;
  line-height: 1.6;
}

.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse .feature-text {
  direction: ltr;
}

.feature-text .feature-main-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111116;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.feature-text .feature-sub-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333344;
  margin-bottom: 24px;
  line-height: 1.5;
}

.feature-text p {
  color: #555566;
  font-size: 1rem;
  line-height: 1.6;
}

.feature-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-mockup-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
}

/* VidMate Guides & Resources Grid */
.guides-section {
  padding: 80px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  margin-top: 50px;
  justify-items: center;
}

.guide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 180px;
}

.guide-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.guide-item:hover .guide-icon {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(240, 80, 48, 0.15);
}

.guide-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: #0066cc;
  transition: var(--transition-smooth);
  line-height: 1.3;
}

.guide-link:hover {
  color: #e62310;
  text-decoration: underline;
}

/* More Supported Sites Section */
.more-sites-section {
  padding: 80px 0;
  background-color: #fafafa;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.sites-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 32px 16px;
  margin-top: 50px;
  justify-items: center;
}

.site-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.site-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.site-item:hover .site-logo-img {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.site-logo-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.site-item:hover .site-logo-circle {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.site-svg {
  width: 28px;
  height: 28px;
}

.fm-bg {
  background-color: #0077ff;
}

.site-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0066cc;
  transition: var(--transition-smooth);
}

.site-name:hover {
  color: #e62310;
  text-decoration: underline;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 100px 0;
}

.accordion {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  border-color: #d8c3c3;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neutral-dark);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.accordion-header:hover {
  color: var(--primary);
}

.chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.accordion-content p {
  padding-bottom: 20px;
  color: var(--neutral-text);
  font-size: 0.95rem;
}

.accordion-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.accordion-item.active .chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* Recent Blogs Section & Slider */
.blog-section {
  background-color: #ffffff;
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
}

.blog-slider-container {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

/* Scrollbar styling for Webkit browsers */
.blog-slider-container::-webkit-scrollbar {
  height: 6px;
}

.blog-slider-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.blog-slider-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.blog-slider-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.blog-slider {
  display: flex;
  gap: 24px;
  padding-bottom: 10px;
}

.blog-slide-card {
  flex: 0 0 340px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.blog-slide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.blog-slide-info {
  flex: 1;
}

.blog-slide-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--neutral-dark);
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-slide-info p {
  font-size: 0.8rem;
  color: var(--neutral-text);
  line-height: 1.5;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-slide-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  background-color: #f6f5f0;
}

.more-blogs-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0066cc;
}

.more-blogs-link:hover {
  text-decoration: underline;
  color: var(--primary);
}

/* Resources Tag Cloud Section */
.resources-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
}

.resources-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
  max-width: 1000px;
  margin: 30px auto 0;
}

.resource-pill {
  display: inline-block;
  padding: 8px 18px;
  background-color: #eaf3fc; /* very light soft blue */
  color: #0066cc; /* deep blue */
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.resource-pill:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Explore More Tools Section */
.explore-tools-section {
  padding: 60px 0;
  background-color: #f0f4f8; /* Soft blue-grey background */
  border-top: 1px solid var(--border-color);
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1100px;
  margin: 30px auto 0;
}

.tool-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.blue-pill {
  background-color: #0088ff; /* bright blue */
  color: #ffffff;
}

.blue-pill:hover {
  background-color: #0066cc;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tool-icon {
  width: 18px;
  height: 18px;
}

/* Footer styling */
.footer {
  background-color: #111116;
  color: #a0a0b0;
  padding: 80px 0 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-about .logo-area {
  margin-bottom: 20px;
}

.footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.footer-about .logo-text {
  color: white;
}

.footer-about-text {
  line-height: 1.7;
}

.footer-links h4, .footer-download h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a:hover {
  color: white;
}

.footer-download p {
  margin-bottom: 16px;
}

.qr-placeholder {
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 8px;
  padding: 10px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.qr-square {
  background-color: #111;
  border-radius: 2px;
}

.qr-tl { grid-area: 1 / 1 / 2 / 2; border: 4px solid #111; background-color: transparent; }
.qr-tr { grid-area: 1 / 2 / 2 / 3; border: 4px solid #111; background-color: transparent; }
.qr-bl { grid-area: 2 / 1 / 3 / 2; border: 4px solid #111; background-color: transparent; }
.qr-dots {
  grid-area: 2 / 2 / 3 / 3;
  background-image: radial-gradient(#111 2px, transparent 2.5px);
  background-size: 8px 8px;
}

.footer-bottom {
  border-top: 1px solid #222230;
  padding: 30px 0;
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: white;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 16px 24px;
  border-left: 4px solid var(--primary);
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  max-width: 360px;
}

.toast.show {
  transform: translateY(0);
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.toast-icon {
  font-size: 1.5rem;
}

.toast-title {
  font-weight: 700;
  color: var(--neutral-dark);
}

.toast-subtitle {
  font-size: 0.8rem;
  color: var(--neutral-text);
  margin-top: 2px;
}


/* Android Downloader Section */
.android-downloader-section {
  padding: 80px 0;
  background-color: #f6f5f0; /* Soft warm cream background */
  border-top: 1px solid var(--border-color);
}

.android-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--neutral-dark);
  line-height: 1.35;
}

.android-section-desc {
  font-size: 1.05rem;
  color: var(--neutral-text);
  margin-bottom: 24px;
  line-height: 1.7;
}

.android-sub-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--neutral-dark);
}

.android-list {
  list-style: none;
  margin-bottom: 24px;
  padding-left: 0;
}

.android-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--neutral-text);
}

.android-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: #0077ff; /* Bright blue bullet */
  border-radius: 50%;
}

.android-section-text {
  font-size: 1.05rem;
  color: var(--neutral-text);
  margin-bottom: 24px;
  line-height: 1.7;
}


/* Instant & Unlimited Downloads Section */
.instant-downloads-section {
  padding: 80px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
}

.instant-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--neutral-dark);
}

.instant-section-desc {
  font-size: 1.05rem;
  color: var(--neutral-text);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.instant-content-block {
  max-width: 900px;
  margin: 0 auto;
}

.instant-item {
  margin-bottom: 30px;
}

.instant-item:last-child {
  margin-bottom: 0;
}

.instant-item-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--neutral-dark);
}

.instant-item-text {
  font-size: 1.05rem;
  color: var(--neutral-text);
  line-height: 1.7;
}



/* Offline Use Section */
.offline-use-section {
  padding: 80px 0;
  background-color: #f6f5f0; /* Soft warm cream background */
  border-top: 1px solid var(--border-color);
}

.offline-use-section .container + .container {
  margin-top: 60px;
}

.offline-section-title,
.how-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--neutral-dark);
}

.offline-section-desc,
.how-section-desc {
  font-size: 1.05rem;
  color: var(--neutral-text);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.offline-content-block,
.how-content-block {
  max-width: 900px;
  margin: 0 auto;
}

.offline-item,
.how-item {
  margin-bottom: 30px;
}

.offline-item:last-child,
.how-item:last-child {
  margin-bottom: 0;
}

.offline-item-title,
.how-item-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--neutral-dark);
}

.offline-item-text,
.how-item-text {
  font-size: 1.05rem;
  color: var(--neutral-text);
  line-height: 1.7;
}

.how-bonus {
  margin-top: 30px;
  font-size: 1.15rem;
  color: var(--neutral-dark);
  line-height: 1.7;
}


/* Android Download Anywhere Section */
.android-download-anywhere-section {
  padding: 80px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
}

.anywhere-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--neutral-dark);
}

.anywhere-section-desc {
  font-size: 1.05rem;
  color: var(--neutral-text);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.anywhere-content-block {
  max-width: 900px;
  margin: 0 auto;
}

.anywhere-item {
  margin-bottom: 30px;
}

.anywhere-item:last-child {
  margin-bottom: 0;
}

.anywhere-item-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--neutral-dark);
}

.anywhere-item-text {
  font-size: 1.05rem;
  color: var(--neutral-text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.anywhere-item-text:last-child {
  margin-bottom: 0;
}

.anywhere-ticks-block {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.tick-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-dark);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-bg-shape {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .security-badges {
    justify-content: center;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .feature-row.reverse .feature-text {
    text-align: left;
  }
  .feature-text p {
    max-width: 100%;
  }
  .guides-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 16px;
  }
  .sites-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .security-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }
  .sites-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 8px;
  }
}

/* Custom Table Styles */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: #fff;
  min-width: 600px;
}

.data-table th, .data-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

.data-table th {
  background-color: #f8f9fa;
  font-weight: 700;
  color: var(--neutral-dark);
  font-family: var(--font-sans);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background-color: #fcfcfc;
}

/* Step-by-Step Guide Styles */
.step-guide {
  max-width: 800px;
  margin: 40px auto;
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.step-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--neutral-dark);
}

.step-content p {
  font-size: 1.05rem;
  color: var(--neutral-text);
  line-height: 1.6;
}

/* Informational Content Block Styles */
.info-section {
  padding: 80px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
}

.info-section.alt-bg {
  background-color: #f6f5f0; /* Soft warm cream */
}

.info-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.info-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--neutral-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.info-subtitle {
  font-size: 1.1rem;
  color: var(--neutral-text);
  line-height: 1.6;
}

.updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 6px 16px;
  background-color: var(--bg-pink);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.updated-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.info-card {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.info-card h2, .info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--neutral-dark);
}

.info-card p {
  font-size: 1rem;
  color: var(--neutral-text);
  line-height: 1.6;
}

.info-text-block {
  max-width: 800px;
  margin: 0 auto 40px;
}

.info-text-block h2, .info-text-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--neutral-dark);
}

.info-text-block p {
  font-size: 1.05rem;
  color: var(--neutral-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.info-text-block ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.info-text-block ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--neutral-text);
}

.info-text-block ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.contact-info-card {
  background-color: var(--neutral-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-pink);
  border-radius: 50%;
  color: var(--primary);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--neutral-dark);
}

.contact-info-card p, .contact-info-card a {
  font-size: 1rem;
  color: var(--neutral-text);
  text-decoration: none;
  word-break: break-word;
}

.contact-info-card a:hover {
  color: var(--primary);
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--neutral-light);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--neutral-dark);
  background-color: #fff;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(var(--primary-hue), 82%, 56%, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #e62310;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(230, 35, 16, 0.25);
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  background-color: #cc1b0c;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(230, 35, 16, 0.35);
}

.form-status {
  margin-top: 18px;
  font-size: 0.95rem;
  text-align: center;
  color: var(--primary);
  display: none;
}

.form-status.visible {
  display: block;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 28px 20px;
  }
}

.accordion-header h3 { margin: 0; font-size: inherit; font-weight: inherit; line-height: inherit; text-align: left; }

