/* ========== VARIABLES ========== */
:root {
  --primary: #002C63;
  --celeste: #4FC3F7;
  --celeste-dark: #0288D1;
  --white: #ffffff;
  --bg-light: #F4F6FA;
  --text-dark: #1a1a2e;
  --text-gray: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ========== LAYOUT ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

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

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--celeste), var(--celeste-dark));
  border-radius: 2px;
  margin: 0 auto 20px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 195, 247, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.badge {
  display: inline-block;
  background: rgba(79, 195, 247, 0.15);
  color: var(--celeste);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 44, 99, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header.scrolled {
  background: rgba(0, 44, 99, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.header-logo img {
  height: 42px;
  display: block;
  transition: var(--transition);
}

.header-logo img:hover {
  transform: scale(1.05);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: var(--celeste);
}

.nav-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
  opacity: 1;
}

.header-nav .btn-contacto {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
  transition: var(--transition);
  margin-left: 4px;
}

.header-nav .btn-contacto:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(79, 195, 247, 0.45);
  background: linear-gradient(135deg, var(--celeste-dark), var(--celeste));
}

.header-nav .btn-dash {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FF9800, #F57C00);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
  transition: var(--transition);
  margin-left: 4px;
  animation: pulse-orange 2s infinite;
}

.header-nav .btn-dash:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.6);
  background: linear-gradient(135deg, #F57C00, #E65100);
  animation: none;
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(245, 124, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 124, 0, 0);
  }
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  margin: 5px 0;
  transition: var(--transition);
}

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

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

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

/* ========== DROPDOWN NAV SYSTEM ========== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer;
}

.chevron-icon {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  opacity: 0.8;
}

.nav-dropdown:hover .chevron-icon,
.nav-dropdown.show .chevron-icon {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown:hover > .dropdown-toggle,
.nav-dropdown.show > .dropdown-toggle {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-radius: 6px;
}

/* Base Dropdown Container */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #001a3a !important; /* Solid dark navy background */
  border: 1px solid #0284c7 !important; /* Sharp cyan border */
  border-radius: 12px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(2, 132, 199, 0.25) !important;
  padding: 12px !important;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 9999 !important;
}

/* Visible state on hover or show */
.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown.show > .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

/* Wide Mega-Menu for Hosting */
.dropdown-menu-wide {
  min-width: 720px !important;
  max-width: 95vw !important;
  padding: 16px !important;
}

.dropdown-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 0 14px !important;
}

.dropdown-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.dropdown-column:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding-right: 12px !important;
}

.dropdown-label {
  display: block !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  color: #38bdf8 !important; /* Bright sky blue */
  padding: 4px 10px !important;
  margin-bottom: 4px !important;
}

/* Standard Dropdown Item */
.dropdown-item {
  display: block !important;
  padding: 9px 12px !important;
  color: #ffffff !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: all 0.15s ease !important;
  margin: 1px 0 !important;
  background: transparent !important;
  line-height: 1.3 !important;
}

.dropdown-item:hover {
  background: rgba(56, 189, 248, 0.18) !important;
  color: #38bdf8 !important;
  transform: translateX(3px) !important;
}

/* Highlight Top Button (e.g. Ver Todos) */
.dropdown-item-highlight {
  font-weight: 800 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.4), rgba(14, 165, 233, 0.2)) !important;
  border: 1px solid rgba(56, 189, 248, 0.4) !important;
  padding: 10px 14px !important;
  margin-bottom: 6px !important;
  text-align: center !important;
  border-radius: 8px !important;
}

.dropdown-item-highlight:hover {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.7), rgba(14, 165, 233, 0.4)) !important;
  color: #ffffff !important;
  border-color: #38bdf8 !important;
}

.dropdown-divider {
  height: 1px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  margin: 8px 4px !important;
}

/* Plan Item with 2 Lines: Title on top, Meta/price below */
.dropdown-item.plan-item,
.plan-item {
  display: block !important;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: all 0.15s ease !important;
  margin: 2px 0 !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid transparent !important;
}

.dropdown-item.plan-item:hover,
.plan-item:hover {
  background: rgba(56, 189, 248, 0.15) !important;
  border-color: rgba(56, 189, 248, 0.3) !important;
  transform: translateX(3px) !important;
}

.plan-title {
  display: block !important;
  color: #ffffff !important;
  font-size: 0.90rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-bottom: 2px !important;
}

.plan-item:hover .plan-title {
  color: #38bdf8 !important;
}

.plan-meta {
  display: block !important;
  color: #93c5fd !important; /* Soft distinct light blue */
  font-size: 0.76rem !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

.plan-item:hover .plan-meta {
  color: #e0f2fe !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(0, 20, 45, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    padding: 0 !important;
    transition: max-height 0.35s ease, padding 0.35s ease !important;
    min-width: unset !important;
  }

  .nav-dropdown.show > .dropdown-menu {
    max-height: 1400px !important;
    padding: 8px !important;
  }

  .dropdown-menu-wide {
    min-width: 100% !important;
  }

  .dropdown-columns {
    grid-template-columns: 1fr !important;
    gap: 10px 0 !important;
  }

  .dropdown-column:not(:last-child) {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-right: 0 !important;
    padding-bottom: 10px !important;
  }
}


/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #001a3d 100%);
  padding: 140px 0 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.06) 0%, transparent 70%);
}

.hero-shape:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -10%;
  right: -5%;
}

.hero-shape:nth-child(2) {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
}

.hero-shape:nth-child(3) {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 30%;
}

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

.hero-text h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--celeste);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========== WAVE DIVIDER ========== */
.wave-divider {
  line-height: 0;
  margin-top: -2px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ========== STATS ========== */
.stats {
  background: var(--bg-light);
  padding: 60px 0;
}

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

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.stat-item p {
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========== PRICING ========== */
.pricing-category {
  text-align: center;
  margin: 56px 0 24px;
}

.pricing-category:first-of-type {
  margin-top: 0;
}

.category-title {
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 0 6px;
  font-weight: 700;
}

.category-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

.pricing-card.featured {
  border-color: var(--celeste);
  box-shadow: 0 0 0 1px var(--celeste), var(--shadow);
}

.pricing-card.featured:hover {
  box-shadow: 0 0 0 1px var(--celeste), var(--shadow-hover);
}

.pricing-card .badge {
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  border-radius: 0;
  padding: 8px;
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
}

.pricing-top {
  padding: 28px 24px 0;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.price-block {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(0, 44, 99, 0.03), rgba(79, 195, 247, 0.05));
  margin: 16px 0;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-gray);
}

.price-tag {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  margin-top: 8px;
}

.price-annual {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.price-old {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-card .features {
  padding: 0 24px 20px;
  flex: 1;
}

.pricing-card .features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.pricing-card .features li::before {
  content: '✓';
  color: var(--celeste-dark);
  font-weight: 700;
}

.pricing-footer {
  padding: 0 24px 24px;
}

.btn-plan {
  display: block;
  padding: 14px;
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
}

.btn-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
}

/* ========== STREAMING FEATURES ========== */
.streaming-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.streaming-feature {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.streaming-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.streaming-feature .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  color: var(--celeste);
}

.streaming-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.streaming-feature p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #001a3d 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  line-height: 1.7;
}

/* ========== ABOUT GRID ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text ul {
  margin-top: 20px;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features-list li {
  padding: 10px 16px;
  background: var(--bg-light);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li::before {
  content: '✓';
  color: var(--celeste-dark);
  font-weight: 700;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========== PLAN LANDING PAGES ========== */
.plan-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #001a3d 100%);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.plan-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.plan-hero-content {
  position: relative;
}

.plan-hero-content .badge {
  display: inline-block;
  background: var(--celeste);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.plan-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.plan-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.plan-hero-price {
  margin-bottom: 28px;
}

.plan-hero-price .price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--celeste);
}

.plan-hero-price .period {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 8px;
}

.plan-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.plan-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.plan-detail-card h4 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.plan-detail-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.plan-cta-section {
  background: linear-gradient(135deg, var(--primary), #001a45);
  padding: 80px 0;
}

/* ========== PLAN FEATURES GRID ========== */
.plan-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.plan-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.plan-feature-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(2, 136, 209, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--celeste-dark);
  transition: transform 0.3s ease;
}

.plan-feature-card:hover .icon {
  transform: scale(1.1);
}

.plan-feature-card h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.plan-feature-card p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* ========== PLAN SAVINGS ========== */
.plan-hero-savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.plan-hero-specs {
  color: var(--celeste);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

/* ========== PRICING COMPARE ========== */
.pricing-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 600px;
  margin: 40px auto 0;
}

.pricing-compare-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-compare-card:hover {
  border-color: var(--celeste);
  box-shadow: var(--shadow);
}

.pricing-compare-card.featured {
  border-color: var(--celeste);
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.05), rgba(2, 136, 209, 0.03));
}

.pricing-compare-card .badge-compare {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-compare-card .price-big {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
}

.pricing-compare-card .price-big span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-gray);
}

.pricing-compare-card .price-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.pricing-compare-card .price-save {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 14px;
  background: rgba(79, 195, 247, 0.12);
  color: var(--celeste-dark);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 20px;
}

/* ========== TRUST BADGES ========== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: var(--transition);
}

.trust-badge:hover {
  box-shadow: var(--shadow);
}

.trust-badge .icon {
  width: 44px;
  height: 44px;
  background: rgba(79, 195, 247, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-badge h4 {
  font-size: 0.92rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.trust-badge p {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin: 0;
}

/* ========== FAQ ========== */
.faq-grid {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  user-select: none;
  gap: 16px;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--celeste);
  font-weight: 700;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(79, 195, 247, 0.1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--celeste);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

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

.faq-answer p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== BLOG ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 44, 99, 0.05), rgba(79, 195, 247, 0.1));
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-icon {
  font-size: 3.5rem;
  opacity: 0.6;
}

.blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(79, 195, 247, 0.12);
  color: var(--celeste-dark);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.blog-content h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-dark);
  line-height: 1.5;
}

.blog-content p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
  flex: 1;
}

.blog-link {
  margin-top: auto;
  padding-top: 16px;
  color: var(--celeste-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.blog-card:hover .blog-link {
  color: var(--primary);
  transform: translateX(4px);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 18px;
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  background: rgba(79, 195, 247, 0.1);
  color: var(--celeste-dark);
  border-color: var(--celeste);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  border-color: var(--celeste);
  box-shadow: 0 4px 12px rgba(79, 195, 247, 0.2);
}

.blog-card.hidden {
  display: none !important;
}

/* ========== MODERN DOMAIN SEARCH SECTION ========== */
.domain-hero-search {
  max-width: 780px;
  margin: 36px auto 0;
  position: relative;
  z-index: 5;
}

.domain-input-group {
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35), 0 0 1px rgba(79, 195, 247, 0.5);
  background: var(--white);
  padding: 4px;
}

.domain-input-group input {
  flex: 1;
  padding: 16px 22px;
  border: none;
  font-size: 1.05rem;
  outline: none;
  background: transparent;
  color: var(--text-dark);
  font-family: inherit;
}

.domain-input-group input::placeholder {
  color: #94a3b8;
  font-size: 0.95rem;
}

.btn-domain-search {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--celeste) 0%, var(--celeste-dark) 100%);
  color: #ffffff;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-domain-search:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(2, 136, 209, 0.4);
}

.domain-tlds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.domain-tld-pill {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.domain-tld-pill:hover,
.domain-tld-pill.active {
  background: var(--celeste);
  color: var(--primary);
  border-color: var(--celeste);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 195, 247, 0.3);
}

/* Domain Feature Cards */
.domain-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.domain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.domain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--celeste);
}

.domain-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.domain-card-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.domain-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(79, 195, 247, 0.12);
  color: var(--celeste-dark);
  text-transform: uppercase;
}

.domain-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.domain-card-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 18px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.domain-card-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

@media (max-width: 600px) {
  .domain-input-group {
    flex-direction: column;
    padding: 6px;
    border-radius: 12px;
  }
  .domain-input-group input {
    border-radius: 8px;
    padding: 14px 16px;
  }
  .btn-domain-search {
    border-radius: 8px;
    width: 100%;
    justify-content: center;
  }
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-info p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-gray);
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: rgba(79, 195, 247, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--celeste-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  font-family: inherit;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--celeste);
  box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group button {
  padding: 16px;
  background: linear-gradient(135deg, var(--celeste), var(--celeste-dark));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.form-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
}

/* ========== SERVICE CARDS ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
  color: var(--celeste);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========== TECH TAGS ========== */
.tech-tag {
  display: inline-block;
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.tech-tag:hover {
  border-color: var(--celeste);
  color: var(--celeste-dark);
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.15);
  transform: translateY(-2px);
}

/* ========== CTA SECTION ========== */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background: var(--bg-light);
}

.cta-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
  position: relative;
  border: none;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79, 195, 247, 0.3), transparent);
}

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

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

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--celeste);
  color: var(--white);
  transform: translateY(-2px);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}

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

.footer-links .footer-icon {
  margin-right: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .heart {
  color: var(--celeste);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--celeste);
}

/* ========== MAP SECTION ========== */
.section-map {
  overflow: hidden;
}

.map-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.map-image {
  position: relative;
  align-self: center;
}

.map-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: block;
}

.map-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.map-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--celeste);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.25), 0 0 20px rgba(79, 195, 247, 0.3);
  animation: pinPulse 2s ease-in-out infinite;
}

.map-pin-star {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 68%;
  left: 24%;
  z-index: 2;
  animation: starFloat 3s ease-in-out infinite, starSpin 12s linear infinite;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.star-shine {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  animation: shinePulse 2s ease-in-out infinite;
  pointer-events: none;
}

.map-pin-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 57%;
  left: 20.5%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: shinePulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

@keyframes starFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(180deg); }
}

@keyframes starSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shinePulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ========== ANIMATIONS ========== */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.anim-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }

/* ========== PARALLAX SHAPES ========== */
.parallax-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.parallax-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.parallax-shape.dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.parallax-shape.ring {
  width: 60px;
  height: 60px;
  border: 2px solid var(--celeste);
  border-radius: 50%;
  background: transparent;
}

.parallax-shape.square {
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  background: transparent;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 44, 99, 0.02), rgba(79, 195, 247, 0.04));
  pointer-events: none;
}

.drift-slow { animation: drift 20s linear infinite; }
.drift-medium { animation: drift 15s linear infinite; }
.drift-fast { animation: drift 10s linear infinite; }
.drift-down { animation: driftDown 12s ease-in-out infinite; }

@keyframes drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(40px, -20px) rotate(90deg); }
  50% { transform: translate(80px, 0) rotate(180deg); }
  75% { transform: translate(40px, 20px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes driftDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}

/* ========== RESPONSIVE ========== */
/* ========== CHECKOUT TWO-COLUMN ========== */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.checkout-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow);
}

.checkout-sidebar-card .total-label {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 4px;
}

.checkout-sidebar-card .total-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.checkout-sidebar-card .total-amount span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-gray);
}

.checkout-sidebar-card .divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.spec-table {
  width: 100%;
}

.spec-table tr {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

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

.spec-table td:first-child {
  color: var(--text-gray);
  font-size: 0.88rem;
}

.spec-table td:last-child {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.88rem;
  text-align: right;
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
}

.step-indicator .step {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-gray);
}

.step-indicator .step.active {
  color: var(--celeste-dark);
  font-weight: 700;
}

.step-indicator .step.done {
  color: #2ecc71;
}

.step-indicator .step .num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--border);
  color: var(--text-gray);
}

.step-indicator .step.active .num {
  background: var(--celeste);
  color: var(--white);
}

.step-indicator .step.done .num {
  background: #2ecc71;
  color: var(--white);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(0, 44, 99, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header-nav a,
  .header-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    width: 100%;
  }

  .header-nav .btn-contacto {
    margin-left: 0;
    margin-top: 8px;
    justify-content: center;
  }

  .header-nav .btn-dash {
    margin-left: 0;
    margin-top: 8px;
    justify-content: center;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 20px;
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: none;
    border: none;
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
    min-width: unset;
    left: 0;
  }

  .nav-dropdown.show > .dropdown-menu {
    max-height: 800px;
    padding: 4px 8px 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown-menu-wide {
    min-width: unset;
    padding: 0;
  }

  .nav-dropdown.show > .dropdown-menu-wide {
    padding: 4px 8px 8px;
  }

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

  .dropdown-column:not(:last-child)::after {
    display: none;
  }

  .dropdown-item {
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 16px;
  }

  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
  }

  .dropdown-item-highlight {
    color: var(--celeste);
    background: rgba(79, 195, 247, 0.08);
    border: 1px solid rgba(79, 195, 247, 0.15);
  }

  .dropdown-item-highlight:hover {
    background: rgba(79, 195, 247, 0.15);
    color: var(--white);
  }

  .dropdown-label {
    color: rgba(79, 195, 247, 0.5);
    padding: 8px 16px 2px;
  }

  .dropdown-divider {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-image {
    display: none;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .wave-divider svg {
    height: 40px;
  }

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

  .checkout-sidebar-card {
    position: static;
  }

  .step-indicator {
    gap: 4px;
    font-size: 0.75rem;
    flex-wrap: wrap;
  }

  .step-indicator .step .num {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .section {
    padding: 60px 0;
  }

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

  .stat-item {
    padding: 24px 16px;
  }

  .stat-item h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    font-size: 0.9rem;
    padding: 16px 18px;
  }
}

/* ========== BLOG POST ARTICLE ========== */
.blog-post-content {
  max-width: 800px;
}

.blog-post-content h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--celeste);
  display: inline-block;
}

.blog-post-content h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 28px;
  margin-bottom: 12px;
}

.blog-post-content p {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.blog-post-content a {
  color: var(--celeste-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-post-content a:hover {
  color: var(--primary);
}

.blog-post-content img {
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.blog-post-content .features-list li {
  font-size: 1rem;
  line-height: 1.7;
}

.blog-post-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-gray);
}

.blog-post-content ol li {
  padding: 6px 0;
  font-size: 1rem;
  line-height: 1.7;
}

.blog-post-content ol li strong {
  color: var(--text-dark);
}

.blog-post-content strong {
  color: var(--text-dark);
}

.blog-hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.blog-cta-box {
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.08), rgba(0, 44, 99, 0.05));
  border: 1px solid rgba(79, 195, 247, 0.25);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}

.blog-cta-box h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 12px;
  border: none;
  padding: 0;
  display: block;
}

.blog-cta-box p {
  color: var(--text-gray);
  margin-bottom: 20px;
}

.blog-cta-box .btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--celeste-dark));
  color: var(--white);
  text-decoration: none;
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 10px;
  transition: var(--transition);
}

.blog-cta-box .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 44, 99, 0.25);
}

.blog-related {
  margin-top: 48px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-light);
}

.blog-related h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--primary);
  border: none;
  padding: 0;
  display: block;
}

.blog-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-related li {
  margin-bottom: 10px;
}

.blog-related a {
  color: var(--celeste-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.blog-related a:hover {
  color: var(--primary);
}

.blog-badge {
  background: rgba(79, 195, 247, 0.15);
  color: var(--celeste-dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .blog-post-content h2 {
    font-size: 1.3rem;
  }
  .blog-post-content p {
    font-size: 1rem;
  }
}

/* ========== BLOG SLIDER ON HOME ========== */
.slider-wrapper {
  position: relative;
  margin: 40px 0 20px;
  width: 100%;
}

.slider-container {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 24px;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-slide {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  flex-shrink: 0;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.prev-arrow {
  left: -24px;
}

.next-arrow {
  right: -24px;
}

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

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--celeste-dark);
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .slider-slide {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .slider-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .prev-arrow {
    left: -12px;
  }
  .next-arrow {
    right: -12px;
  }
}
/* ========== MODERN BLOG ARTICLE LAYOUT & STICKY SIDEBAR ========== */
.blog-article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  position: relative;
}

.article-main {
  min-width: 0;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.article-main p {
  margin-bottom: 1.4rem;
  color: #334155;
  font-size: 1.05rem;
}

.article-main h2 {
  font-size: 1.65rem;
  font-weight: 750;
  color: var(--primary);
  margin-top: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1.35;
  position: relative;
  padding-left: 16px;
  border-left: 4px solid var(--celeste-dark);
}

.article-main h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

.article-featured-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 44, 99, 0.1);
  margin-bottom: 28px;
  display: block;
}

.article-callout {
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.08) 0%, rgba(0, 44, 99, 0.04) 100%);
  border: 1px solid rgba(79, 195, 247, 0.25);
  border-left: 4px solid var(--celeste-dark);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.98rem;
  color: #1e293b;
}

.article-main .features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 28px 0;
  padding: 0;
}

.article-main .features-list li {
  padding: 12px 18px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.article-main .features-list li::before {
  content: '✓';
  color: var(--celeste-dark);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.blog-cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, #001a3d 100%);
  color: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  margin: 36px 0;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 44, 99, 0.2);
  position: relative;
  overflow: hidden;
}

.blog-cta-box::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.blog-cta-box h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin-top: 0;
  margin-bottom: 10px;
  position: relative;
}

.blog-cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 22px;
  position: relative;
}

.blog-cta-box .btn {
  background: var(--celeste-dark);
  color: var(--primary);
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 28px;
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.blog-cta-box .btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-card:hover {
  box-shadow: var(--shadow-md);
}

.sidebar-card-primary {
  background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
  border-color: rgba(79, 195, 247, 0.35);
}

.sidebar-card .widget-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.15), rgba(0, 44, 99, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.sidebar-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.sidebar-card p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.55;
  margin-bottom: 16px;
}

.blog-related-box {
  margin-top: 40px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-light);
}

.blog-related-box h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 1.25rem;
}

.blog-related-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-related-box ul li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.blog-related-box ul li a::before {
  content: '→';
  color: var(--celeste-dark);
  font-weight: 700;
}

.blog-related-box ul li a:hover {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 992px) {
  .blog-article-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}


/* ===== LOCAL SEO & NAP FOOTER STYLES ===== */
.google-badge-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  margin-top: 14px;
}
.google-badge-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #4fc3f7;
  transform: translateY(-2px);
}
.google-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.google-badge-text {
  display: flex;
  flex-direction: column;
}
.google-badge-text strong {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
}
.google-badge-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.footer-local-seo {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nap-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.nap-icon {
  font-size: 1.1rem;
  line-height: 1.3;
}
.nap-text {
  display: flex;
  flex-direction: column;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}
.nap-text strong {
  color: #ffffff;
  font-size: 0.84rem;
  margin-bottom: 2px;
}
.nap-text .text-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}
.badge-uptime-sm {
  display: inline-block;
  color: #4ade80 !important;
  font-size: 0.76rem;
  font-weight: 700;
  margin-top: 4px;
}
.phone-link, .mail-link {
  color: #4fc3f7 !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.2s ease;
}
.phone-link:hover, .mail-link:hover {
  text-decoration: underline !important;
  color: #ffffff !important;
}
.btn-gmaps-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0284c7 0%, #002c63 100%);
  border: 1px solid rgba(79, 195, 247, 0.4);
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
  margin-top: 6px;
}
.btn-gmaps-link:hover {
  background: linear-gradient(135deg, #0369a1 0%, #001e44 100%);
  border-color: #4fc3f7;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(79, 195, 247, 0.3);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== GEO AI SUMMARY CARDS STYLING ===== */
.badge-pill-geo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
  border: 1px solid #bae6fd;
}

.geo-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.geo-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: 0 4px 20px rgba(0, 44, 99, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.geo-card:hover {
  border-color: #0284c7;
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.14);
}

.geo-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.geo-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #002c63;
  margin-bottom: 12px;
  line-height: 1.3;
}

.geo-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}


/* ===== BALANCED 2x2 GEO CARDS ===== */
.geo-summary-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.geo-card-v2 {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(0, 44, 99, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.geo-card-v2:hover {
  border-color: #0284c7;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.12);
}

.geo-card-v2-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-bg-seo { background: #e0f2fe; color: #0284c7; }
.icon-bg-ads { background: #fef3c7; color: #d97706; }
.icon-bg-web { background: #f3e8ff; color: #7c3aed; }
.icon-bg-cloud { background: #dcfce7; color: #16a34a; }

.geo-card-v2-body h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #002c63;
  margin: 0 0 8px;
  line-height: 1.3;
}

.geo-card-v2-body p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .geo-summary-grid-2x2 {
    grid-template-columns: 1fr;
  }
  .geo-card-v2 {
    flex-direction: column;
    gap: 16px;
  }
}
