/* ========================================
   MobilenSoft - Consolidated Stylesheet
   ======================================== */

/* --- CSS Variables --- */
:root {
  --primary: #6C63FF;
  --primary-light: #8B83FF;
  --primary-dark: #5A52E0;
  --secondary: #00C9A7;
  --secondary-light: #33D4B9;
  --secondary-dark: #00A88C;
  --dark-bg: #0F0A2A;
  --dark-bg-light: #1A1440;
  --text-primary: #1a1a2e;
  --text-secondary: #64648c;
  --text-light: #9999b3;
  --surface: #FFFFFF;
  --surface-alt: #F8F9FF;
  --surface-card: #FFFFFF;
  --border: #E8E8F0;
  --shadow-sm: 0 2px 8px rgba(15, 10, 42, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 10, 42, 0.1);
  --shadow-lg: 0 8px 40px rgba(15, 10, 42, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container-max: 1200px;
  --header-height: 72px;
  --transition: 0.3s ease;
  --accent: var(--primary);
  --accent-light: var(--primary-light);
  --accent-dark: var(--primary-dark);
}

/* Per-page accent overrides */
body[data-app="alto"] {
  --accent: #6C63FF;
  --accent-light: #8B83FF;
  --accent-dark: #5A52E0;
}

body[data-app="omni"] {
  --accent: #00C9A7;
  --accent-light: #33D4B9;
  --accent-dark: #00A88C;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--text-secondary);
  max-width: 680px;
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header p {
  margin: 12px auto 0;
  font-size: 1.0625rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

/* --- Header / Nav --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  z-index: 1001;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.header--dark .logo {
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header--dark .nav-links a {
  color: rgba(255, 255, 255, 0.75);
}

.header--dark .nav-links a:hover,
.header--dark .nav-links a.active {
  color: #fff;
}

.header--dark.scrolled .logo {
  color: var(--text-primary);
}

.header--dark.scrolled .nav-links a {
  color: var(--text-secondary);
}

.header--dark.scrolled .nav-links a:hover,
.header--dark.scrolled .nav-links a.active {
  color: var(--accent);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.header--dark .nav-toggle span {
  background: #fff;
}

.header--dark.scrolled .nav-toggle span {
  background: var(--text-primary);
}

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

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

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

/* Mobile nav */
@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--surface);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.125rem;
    color: var(--text-primary) !important;
    opacity: 1 !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--accent) !important;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 42, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
  }

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(108, 99, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

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

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1052 50%, #0d1f4b 100%);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 0 80px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -80px;
  left: -80px;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--primary-light);
  top: 40%;
  left: 10%;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--surface);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* --- App Cards --- */
.apps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.app-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.app-card--alto::before {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.app-card--omni::before {
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
}

.app-card-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.75rem;
  overflow: hidden;
}

.app-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.app-card--alto .app-card-icon {
  background: linear-gradient(135deg, #6C63FF20, #6C63FF10);
  color: var(--primary);
}

.app-card--omni .app-card-icon {
  background: linear-gradient(135deg, #00C9A720, #00C9A710);
  color: var(--secondary);
}

.app-card h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
}

.app-card > p {
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.app-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 50px;
  background: var(--surface-alt);
  color: var(--text-secondary);
}

.app-card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.app-card-actions a {
  font-weight: 600;
  font-size: 0.9375rem;
}

.learn-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.learn-more:hover {
  gap: 10px;
}

.play-badge {
  height: 48px;
  transition: transform var(--transition);
}

.play-badge:hover {
  transform: scale(1.05);
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(108, 99, 255, 0.05));
  color: var(--accent);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h4 {
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* --- App Page Hero --- */
.app-hero {
  position: relative;
  padding: calc(var(--header-height) + 60px) 0 80px;
  overflow: hidden;
}

.app-hero--alto {
  background: linear-gradient(135deg, #1a1052 0%, #2d1b69 50%, var(--dark-bg) 100%);
}

.app-hero--omni {
  background: linear-gradient(135deg, #0a2e26 0%, #0d3f35 50%, var(--dark-bg) 100%);
}

.app-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.app-hero-icon {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.app-hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.app-hero--alto .app-hero-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.app-hero--omni .app-hero-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #fff;
}

.app-hero h1 {
  color: #fff;
  margin-bottom: 12px;
}

.app-hero .tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin: 0 auto 28px;
}

.app-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

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

.app-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.app-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.badge-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-pill--success {
  background: rgba(0, 201, 167, 0.15);
  color: var(--secondary-light);
}

/* --- App Features Grid (app pages) --- */
.app-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.app-feature-card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  transition: all var(--transition);
}

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

.app-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(108, 99, 255, 0.05));
  color: var(--accent);
}

body[data-app="omni"] .app-feature-icon,
body[data-app="omni"] .feature-icon {
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.1), rgba(0, 201, 167, 0.05));
}

.app-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-feature-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.app-feature-text p {
  font-size: 0.8375rem;
  line-height: 1.5;
}

/* --- Highlights --- */
.highlights {
  padding: 60px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.highlight-box {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.highlight-box h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-box ul {
  list-style: none;
}

.highlight-box ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.highlight-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Lightweight Comparison (Omni) --- */
.comparison-section {
  padding: 60px 0;
}

.comparison-bars {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  font-weight: 500;
}

.comparison-label span:last-child {
  color: var(--text-secondary);
  font-weight: 400;
}

.comparison-track {
  height: 12px;
  background: var(--surface-alt);
  border-radius: 6px;
  overflow: hidden;
}

.comparison-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1s ease;
}

.comparison-fill--omni {
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  width: 15%;
}

.comparison-fill--other {
  background: linear-gradient(90deg, #ccc, #ddd);
}

/* --- Download CTA --- */
.download-cta {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-cta--alto {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.download-cta--omni {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
}

.download-cta h2 {
  color: #fff;
  margin-bottom: 16px;
}

.download-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 32px;
  font-size: 1.0625rem;
}

/* --- Contact Section --- */
.contact-section {
  padding: 80px 0;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 16px;
}

.contact-section > .container > p {
  margin: 0 auto 32px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
  padding: 12px 24px;
  background: rgba(108, 99, 255, 0.06);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}

.contact-email:hover {
  background: rgba(108, 99, 255, 0.12);
}

.contact-email svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* --- Footer --- */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Privacy Policy --- */
.policy-content {
  padding: calc(var(--header-height) + 40px) 0 60px;
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.policy-content .last-updated {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 32px;
}

.policy-content h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}

.policy-content p {
  margin-bottom: 16px;
  max-width: 100%;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-content ul li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (min-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .app-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .container {
    padding: 0 32px;
  }

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

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

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

  .hero-content {
    padding: 80px 0 100px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 100px 0;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}
