:root {
  --primary-blue: #2563eb;
  --accent-orange: #ea580c;
  --bright-blue: #3b82f6;
  --deep-navy: #1e293b;
  --darker-navy: #0f172a;
  --light-text: #f1f5f9;
  --muted-text: #94a3b8;
  --success-green: #059669;
  --warning-amber: #d97706;
  --border-slate: #475569;
  --gradient-main: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
  --gradient-accent: linear-gradient(135deg, var(--accent-orange), #dc2626);
  --gradient-dark: linear-gradient(135deg, var(--darker-navy), var(--deep-navy));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background: var(--deep-navy);
  overflow-x: hidden;
}

.menu-checkbox {
  display: none;
}

.menu-checkbox:checked + .menu-item .menu-arrow {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.menu-checkbox:checked ~ .submenu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
  margin-top: 0.5rem;
  overflow-y: auto;
}

.menu-item a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
}

.menu-item a:hover {
    color: var(--accent-orange);
}


.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Header Styles (same as main.css) */
.main-header {
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-slate);
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  height: 85px;
}

.brand-logo img {
  height: 50px;
  width: auto;
}

.primary-navigation .navigation-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.menu-item {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.menu-item:hover,
.menu-item.active {
  color: var(--accent-orange);
}

.menu-item.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-orange);
}

.dropdown-container {
  position: relative;
}

.menu-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: var(--muted-text);
}

.submenu-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--darker-navy);
  border: 1px solid var(--border-slate);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.submenu-list li {
  margin: 0;
}

.submenu-list a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--light-text);
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
}

.submenu-list a:hover {
  background: rgba(234, 88, 12, 0.1);
  color: var(--accent-orange);
}

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

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--light-text);
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1;
}

.button-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.button-outline {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}

.button-outline:hover {
  background: var(--accent-orange);
  color: white;
}

/* New Hero Section */
.app-hero-section {
  padding: 8rem 0 6rem;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.app-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-highlight {
  display: block;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.8rem;
  margin-top: 0.5rem;
}

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

.download-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-title {
  color: var(--light-text);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.download-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.download-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid transparent;
  border-radius: 12px;
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-link:hover {
  border-color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.1);
  transform: translateY(-2px);
}

.download-icon {
  flex-shrink: 0;
}

.download-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-label {
  font-size: 0.85rem;
  color: var(--muted-text);
}

.download-platform {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--light-text);
}

.download-size {
  font-size: 0.8rem;
  color: var(--muted-text);
}

.app-metrics {
  display: flex;
  justify-content: space-around;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.metric-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.metric-label {
  font-size: 0.8rem;
  color: var(--muted-text);
}

.phone-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-showcase img {
  max-width: 280px;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
  z-index: 2;
  position: relative;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* Mobile Advantages Section */
.mobile-advantages {
  padding: 6rem 0;
  background: var(--deep-navy);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.advantages-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.advantage-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantage-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.advantage-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--light-text);
}

.advantage-block p {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.advantage-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.advantage-stats span {
  background: rgba(234, 88, 12, 0.1);
  color: var(--accent-orange);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Features Showcase */
.features-showcase {
  padding: 6rem 0;
  background: var(--darker-navy);
}

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

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-slate);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-orange);
}

.feature-visual {
  margin-bottom: 1.5rem;
}

.feature-item h4 {
  font-size: 1.3rem;
  color: var(--light-text);
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--muted-text);
  line-height: 1.6;
}

/* Installation Guide */
.installation-guide {
  padding: 6rem 0;
  background: var(--deep-navy);
}

.platform-selector {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.platform-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--border-slate);
  border-radius: 8px;
  color: var(--muted-text);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.platform-button.active,
.platform-button:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.installation-content {
  max-width: 1000px;
  margin: 0 auto;
}

.installation-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.steps-container h3 {
  color: var(--light-text);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

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

.step-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.step-content h4 {
  color: var(--light-text);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.step-content p {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.step-tip {
  background: rgba(234, 88, 12, 0.1);
  border-left: 3px solid var(--accent-orange);
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
}

.step-tip strong {
  color: var(--accent-orange);
}

.qr-download {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-slate);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  height: fit-content;
}

.qr-download h4 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.qr-code-container {
  margin: 1.5rem 0;
}

.qr-code-container img {
  border-radius: 12px;
  border: 2px solid var(--border-slate);
}

.qr-download p {
  color: var(--muted-text);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.qr-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.qr-benefits span {
  color: var(--success-green);
  font-size: 0.85rem;
}

/* Technical Specs */
.technical-specs {
  padding: 6rem 0;
  background: var(--darker-navy);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.spec-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-slate);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
}

.spec-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.spec-header h3 {
  color: var(--light-text);
  font-size: 1.5rem;
}

.spec-section {
  margin-bottom: 2rem;
}

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

.spec-section h4 {
  color: var(--accent-orange);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.spec-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.spec-list li {
  padding: 0.5rem 0;
  color: var(--muted-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.spec-list strong {
  color: var(--light-text);
}

.spec-section p {
  color: var(--muted-text);
  line-height: 1.7;
}

.compatibility-info {
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border-slate);
}

.compatibility-info h3 {
  color: var(--light-text);
  font-size: 1.6rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.network-item h4 {
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.network-item p {
  color: var(--muted-text);
  line-height: 1.6;
}

/* Comparison Analysis */
.comparison-analysis {
  padding: 6rem 0;
  background: var(--deep-navy);
}

.comparison-intro {
  text-align: center;
  color: var(--muted-text);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-container {
  overflow-x: auto;
  margin-bottom: 3rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  min-width: 800px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-slate);
}

.comparison-table th {
  background: rgba(234, 88, 12, 0.1);
  color: var(--light-text);
  font-weight: 600;
  font-size: 1rem;
}

.feature-column {
  width: 25%;
}

.app-column,
.website-column {
  width: 30%;
}

.winner-column {
  width: 15%;
}

.feature-name {
  color: var(--light-text);
  font-weight: 600;
}

.app-feature,
.website-feature {
  color: var(--muted-text);
}

.app-feature small,
.website-feature small {
  display: block;
  font-size: 0.8rem;
  color: var(--muted-text);
  margin-top: 0.25rem;
}

.status-excellent {
  color: var(--success-green);
  font-weight: 600;
}

.status-good {
  color: #3b82f6;
  font-weight: 600;
}

.status-average {
  color: var(--warning-amber);
  font-weight: 600;
}

.status-poor {
  color: #ef4444;
  font-weight: 600;
}

.winner-app {
  color: var(--success-green);
  font-weight: 700;
}

.winner-website {
  color: #3b82f6;
  font-weight: 700;
}

.comparison-summary {
  margin-top: 4rem;
}

.comparison-summary h3 {
  color: var(--light-text);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.recommendation-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-slate);
  border-radius: 16px;
  padding: 2rem;
}

.recommendation-card h4 {
  color: var(--accent-orange);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.recommendation-card ul {
  list-style: none;
}

.recommendation-card li {
  color: var(--muted-text);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.recommendation-card li:before {
  content: '✓';
  color: var(--success-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.recommendation-card li:last-child {
  border-bottom: none;
}

.final-verdict {
  background: rgba(234, 88, 12, 0.1);
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.final-verdict p {
  color: var(--light-text);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Troubleshooting Guide */
.troubleshooting-guide {
  padding: 6rem 0;
  background: var(--darker-navy);
}

.troubleshooting-content {
  max-width: 1000px;
  margin: 0 auto;
}

.common-issues h3 {
  color: var(--light-text);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.issue-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.issue-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-slate);
  border-radius: 16px;
  padding: 2rem;
}

.issue-item h4 {
  color: var(--accent-orange);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.issue-content p {
  color: var(--muted-text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.solution {
  background: rgba(5, 150, 105, 0.1);
  border-left: 3px solid var(--success-green);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  margin-top: 1rem;
}

.solution strong {
  color: var(--success-green);
  display: block;
  margin-bottom: 0.5rem;
}

.solution ol {
  color: var(--muted-text);
  padding-left: 1.5rem;
}

.solution li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.performance-tips {
  margin-top: 4rem;
}

.performance-tips h3 {
  color: var(--light-text);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

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

.tip-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-slate);
  border-radius: 16px;
  padding: 2rem;
}

.tip-card h4 {
  color: var(--accent-orange);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.tip-card ul {
  list-style: none;
}

.tip-card li {
  color: var(--muted-text);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.tip-card li:before {
  content: '•';
  color: var(--accent-orange);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.tip-card li:last-child {
  border-bottom: none;
}

.support-contact {
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border-slate);
}

.support-contact h3 {
  color: var(--light-text);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.support-contact p {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.contact-method {
  background: rgba(234, 88, 12, 0.1);
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
}

.contact-method strong {
  color: var(--accent-orange);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-method small {
  color: var(--muted-text);
  font-size: 0.85rem;
}

/* Final Download CTA */
.final-download-cta {
  padding: 6rem 0;
  background: var(--gradient-main);
  text-align: center;
}

.cta-container h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.cta-container p {
  font-size: 1.2rem;
  color: var(--muted-text);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.final-download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.final-download-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.final-download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.1);
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-action {
  font-size: 0.9rem;
  color: var(--muted-text);
}

.btn-platform {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--light-text);
}

.security-assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--success-green);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.bonus-reminder {
  background: rgba(234, 88, 12, 0.1);
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.bonus-reminder p {
  color: var(--light-text);
  margin: 0;
  font-size: 1rem;
}

/* Footer (same as main.css) */
.site-footer {
  background: var(--deep-navy);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-slate);
}

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

.footer-column h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: var(--muted-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-orange);
}

.footer-column p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.company-logo {
  margin-bottom: 1rem;
}

.company-logo img {
  height: 60px;
  width: auto;
}

.payment-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}

.payment-icons img {
  padding: 0.1rem;
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  max-width: 45px;
  height: auto;
}

.payment-icons img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border-slate);
  padding-top: 2rem;
  text-align: center;
  color: var(--muted-text);
}

.legal-notice {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--warning-amber);
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .primary-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-slate);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

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

  .primary-navigation .navigation-menu {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .dropdown-container .submenu-list {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0;
    transition: all 0.3s ease;
  }

  .menu-checkbox:checked ~ .submenu-list {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin-top: 0.5rem;
    overflow-y: auto;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .title-highlight {
    font-size: 2rem;
  }

  .download-options {
    gap: 0.75rem;
  }

  .app-metrics {
    justify-content: center;
  }

  .installation-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.8rem;
  }

  .recommendation-content {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: 2.2rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .payment-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
.button {
        padding: 0.55rem 0.55rem;
        font-size: 0.8rem;
    }
  .app-hero-section {
    padding: 6rem 0 3rem;
  }

  .hero-main-title {
    font-size: 2rem;
  }

  .title-highlight {
    font-size: 1.6rem;
  }

  .download-section {
    padding: 2rem;
  }

  .download-options {
    gap: 0.5rem;
  }

  .download-link {
    padding: 1rem;
  }

  .platform-selector {
    flex-direction: column;
    align-items: center;
  }

  .platform-button {
    min-width: 180px;
    justify-content: center;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.6rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-container h2 {
    font-size: 2.2rem;
  }

  .final-download-btn {
    min-width: 180px;
    padding: 1.2rem 1.5rem;
  }

  .payment-icons img {
    max-width: 35px;
  }
}

@media (max-width: 380px) {
  .header-layout {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    min-height: 120px;
    padding: 1rem 0;
  }

  .action-buttons {
    order: 3;
    width: 100%;
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .action-buttons .button {
    flex: 1;
    font-size: 0.85rem;
    text-align: center;
    min-width: 0;
    justify-content: center;
    padding: 0.6rem 0.5rem;
  }

  .brand-logo {
    order: 1;
    flex: 1;
  }

  .menu-toggle {
    order: 2;
    margin-left: auto;
  }

  .main-header {
    height: auto;
    min-height: 120px;
  }
}

@media (max-width: 320px) {
  .header-layout {
    min-height: 130px;
    padding: 1.2rem 0;
  }

  .main-header {
    min-height: 130px;
  }

  .action-buttons .button {
    padding: 0.5rem 0.3rem;
    font-size: 0.8rem;
  }
}