/* Alterascape WordPress Hosting - Main Stylesheet */

/* =====================
   CSS VARIABLES
   ===================== */
:root {
  /* Colors */
  --primary-blue: #0B66D6;
  --accent-green: #7CC143;
  --accent-yellow: #F2B400;
  --accent-cyan: #1AA8E8;
  --dark-bg: #070A12;
  --card-bg: #0E1426;
  --text: #EAF0FF;
  --text-muted: #A8B0C3;
  --border: #1D2946;
  
  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 120px;
  --section-padding-mobile: 60px;
  --card-padding: 40px;
  
  /* Effects */
  --shadow-soft: 0 8px 32px rgba(11, 102, 214, 0.1);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================
   RESET & BASE
   ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* =====================
   CONTAINERS
   ===================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--section-padding) 0;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  color: white;
  box-shadow: 0 4px 16px rgba(11, 102, 214, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(11, 102, 214, 0.4);
}

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

.btn-secondary:hover {
  border-color: var(--primary-blue);
  background: rgba(11, 102, 214, 0.1);
}

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

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 10, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  transition: var(--transition);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 36px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.navbar-nav a {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.navbar-nav a:hover {
  color: var(--primary-blue);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-actions .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(11, 102, 214, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-features {
  list-style: none;
  margin: 2.5rem 0;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--text);
}

.hero-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: bold;
  color: white;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero-shapes {
  position: relative;
  width: 100%;
  height: 400px;
}

.shape {
  position: absolute;
  border-radius: 16px;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  top: 10%;
  left: 10%;
  opacity: 0.2;
  animation-delay: 0s;
}

.shape-2 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-yellow));
  bottom: 15%;
  right: 15%;
  opacity: 0.15;
  animation-delay: 2s;
  border-radius: 50%;
}

.shape-3 {
  width: 120px;
  height: 120px;
  background: var(--accent-cyan);
  top: 50%;
  right: 25%;
  opacity: 0.1;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* =====================
   VALUE SECTION
   ===================== */
.value-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(11, 102, 214, 0.03), transparent);
}

.value-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.value-section p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* =====================
   FEATURES GRID
   ===================== */
.features {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.feature-card {
  background: rgba(29, 41, 70, 0.3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--card-padding);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary-blue);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text);
}

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

/* =====================
   LOCATIONS SECTION
   ===================== */
.locations {
  text-align: center;
}

.locations-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.locations-intro h2 {
  margin-bottom: 1.5rem;
}

.locations-policy {
  background: rgba(11, 102, 214, 0.1);
  border: 1px solid var(--primary-blue);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto 3rem;
  max-width: 900px;
  text-align: left;
}

.locations-policy h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.locations-policy ul {
  list-style: none;
  margin-top: 1rem;
}

.locations-policy li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: var(--text);
}

.locations-policy li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-size: 1.5rem;
  line-height: 1;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.location-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  text-align: center;
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-card);
}

.location-flag {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.location-card h4 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

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

/* =====================
   CDN SECTION
   ===================== */
.cdn-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cdn-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="white" opacity="0.1"/></svg>');
  pointer-events: none;
}

.cdn-content {
  position: relative;
  z-index: 1;
}

.cdn-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cdn-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.cdn-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cdn-actions .btn-secondary {
  background: white;
  color: var(--primary-blue);
  border-color: white;
}

.cdn-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cdn-actions .btn-outline {
  border-color: white;
  color: white;
}

.cdn-actions .btn-outline:hover {
  background: white;
  color: var(--primary-blue);
}

/* =====================
   CONTROL SECTION
   ===================== */
.control-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.control-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

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

.control-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--card-padding);
  transition: var(--transition);
}

.control-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-green);
}

.control-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-yellow));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.control-card h3 {
  margin-bottom: 1rem;
}

/* =====================
   TOOLS SECTION
   ===================== */
.tools-section {
  text-align: center;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tools-section h2 {
  margin-bottom: 3rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.tool-badge {
  background: rgba(29, 41, 70, 0.5);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tool-badge:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
}

.tool-icon {
  width: 60px;
  height: 60px;
  background: var(--dark-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.tool-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

/* =====================
   FINAL CTA
   ===================== */
.final-cta {
  text-align: center;
  padding: 100px 0;
}

.final-cta h2 {
  margin-bottom: 2.5rem;
}

.final-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   PRICING CARDS
   ===================== */
.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 5rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 32px rgba(11, 102, 214, 0.2);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary-blue);
}

.pricing-header-card {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.pricing-card .plan-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pricing-price .currency {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.pricing-price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(29, 41, 70, 0.5);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 1.5rem;
}

/* =====================
   COMPARISON TABLE
   ===================== */
.comparison-section {
  padding: 80px 0;
}

.comparison-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.tab-btn {
  padding: 1rem 2rem;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  border-color: var(--primary-blue);
  color: white;
}

.tab-btn:hover {
  border-color: var(--primary-blue);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

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

.comparison-table-wrapper {
  overflow-x: auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.comparison-table thead {
  background: rgba(11, 102, 214, 0.1);
  border-bottom: 2px solid var(--primary-blue);
}

.comparison-table th {
  padding: 1.5rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(11, 102, 214, 0.05);
}

.comparison-table .highlight {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  color: white;
  font-weight: 600;
}

.comparison-table .checkmark {
  color: var(--accent-green);
  font-weight: bold;
}

.comparison-table .crossmark {
  color: #ff6b6b;
  font-weight: bold;
}

.plan-detail-table {
  width: 100%;
  margin: 4rem 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.plan-detail-table table {
  width: 100%;
  border-collapse: collapse;
}

.plan-detail-table th {
  background: rgba(11, 102, 214, 0.1);
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  color: var(--text);
  border-bottom: 2px solid var(--primary-blue);
}

.plan-detail-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.plan-detail-table tr:last-child td {
  border-bottom: none;
}

.plan-detail-table tbody tr:hover {
  background: rgba(11, 102, 214, 0.05);
}

/* =====================
   FAQ SECTION
   ===================== */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-blue);
}

.faq-question {
  width: 100%;
  padding: 1.75rem 2rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
}

.faq-question:hover {
  color: var(--primary-blue);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-blue);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 2rem 1.75rem 2rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer-content p {
  margin-bottom: 1rem;
}

.faq-answer-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer-content li {
  margin-bottom: 0.5rem;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

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

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

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }
  
  .hero-container,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    min-height: 300px;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.75rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --card-padding: 30px;
  }
  
  .container,
  .container-wide {
    padding: 0 1.5rem;
  }
  
  .navbar-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
  }
  
  .navbar-nav.active {
    display: flex;
  }
  
  .navbar-actions {
    margin-left: auto;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .features-grid,
  .locations-grid,
  .control-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .comparison-tabs {
    flex-direction: column;
  }
  
  .tab-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .pricing-price .amount {
    font-size: 2.5rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 1.5rem;
  }
  
  .faq-answer-content {
    padding: 0 1.5rem 1.5rem;
  }
}

/* =====================
   UTILITIES
   ===================== */
.text-center {
  text-align: center;
}

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

.text-accent {
  color: var(--accent-green);
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 4rem;
}

.hidden {
  display: none;
}
