/* Global Styles */
:root {
  /* New Palette: Deep Blue & Teal Buttons */
  --primary-color: #003b8f;
  /* Bright Blue */
  --secondary-color: #90beff;
  /* Light Blue */
  --dark-teal: #78a890;
  /* Sage Green */
  --forest-green: #041022;
  /* Very dark blue for footer */
  --black: #000000;

  --accent-sage: #8cab94;
  /* Keep for subtle contrast if needed */
  --accent-salmon: #ea5455;
  /* Retain a red contrast accent for call-to-actions? Or switch to cyan? */

  --text-color: #333;
  --light-text: #fff;
  --background-light: #f4f7fc;
  --font-family: "Jost", sans-serif;
  --transition: all 0.3s ease;

  /* Footer Variables mapped to above */
  --footer-bg: var(--forest-green);
  --accent-green: var(--secondary-color);
  /* Mapping "green" var to RED */
}

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

html {
  scroll-behavior: smooth;
}

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

body.cart-open {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-green {
  background-color: var(--secondary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(9, 115, 138, 0.4);
  /* Teal Shadow */
}

.btn-green:hover {
  transform: translateY(-2px);
}

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

.highlight {
  color: var(--secondary-color);
  text-decoration: underline;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.icon-box.green {
  width: 60px;
  height: 60px;
  background: rgba(9, 115, 138, 0.1);
  /* Teal tint */
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Navbar */
.nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  /* Let Hero gradient show through */
  padding: 30px 20px 10px;
}

.navbar {
  background: #fff;
  /* Restore White Background */
  border: none;
  padding: 5px 5px 5px 30px;
  /* Adjusted padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 72px;
  border-radius: 15px;
  /* Pill shape */
}

.nav-right-pill {
  background: var(--primary-color);
  /* Deep Blue background */
  border-radius: 15px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 62px;
  /* Fit inside navbar */
  margin-right: 0;
}

/* Refined header styles */

.navbar .logo {
  color: #000;
  /* Black logo */
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

/* Custom Hostiko Logo Font Style if needed, otherwise standard bold */

.nav-links {
  margin: 0 auto;
  /* Center the links */
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #333;
  /* Dark text */
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-toggle {
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.nav-links a i {
  font-size: 0.7rem;
  margin-top: 2px;
}

.nav-dropdown-toggle i {
  font-size: 0.7rem;
  margin-top: 2px;
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown-toggle:hover,
.has-mega-menu:hover .nav-dropdown-toggle,
.has-mega-menu.is-open .nav-dropdown-toggle {
  color: var(--dark-teal);
  /* Green active state */
  opacity: 1;
}

.has-mega-menu {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: -22px;
}

.has-sub-menu {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: -22px;
}

.has-mega-menu::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 28px;
}

.has-sub-menu::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 24px;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  width: min(820px, 90vw);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(12, 35, 74, 0.08);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(5, 28, 61, 0.18);
  backdrop-filter: blur(14px);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 1200;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(12, 35, 74, 0.08);
  border-top: 1px solid rgba(12, 35, 74, 0.08);
  transform: translateX(-50%) rotate(45deg);
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu:focus-within .mega-menu,
.has-mega-menu.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-list {
  display: grid;
  gap: 10px;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.9), rgba(243, 247, 255, 0.72));
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.mega-menu-item:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border-color: rgba(43, 118, 255, 0.14);
  box-shadow: 0 16px 28px rgba(22, 54, 104, 0.08);
  transform: translateY(-2px);
}

.mega-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e68ff, #38c0ff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 14px 30px rgba(31, 107, 255, 0.18);
  position: relative;
}

.mega-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.mega-copy {
  display: grid;
  gap: 4px;
  padding-top: 2px;
}

.mega-copy strong {
  font-size: 1.04rem;
  color: #12213d;
  letter-spacing: -0.01em;
}

.mega-copy small {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}

.mega-menu-panel {
  background:
    radial-gradient(circle at top right, rgba(92, 131, 255, 0.24), transparent 34%),
    linear-gradient(160deg, #10203a 0%, #17315b 56%, #24447a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 18px;
  align-content: start;
  position: relative;
  overflow: hidden;
}

.mega-menu-panel::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 229, 170, 0.28), transparent 65%);
}

.mega-menu-panel h3 {
  color: #fff;
  font-size: 2rem;
  line-height: 1.05;
  max-width: 11ch;
  position: relative;
  z-index: 1;
}

.mega-benefits {
  display: grid;
  gap: 10px;
}

.mega-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.mega-benefits i {
  color: #61e5aa;
}

.mega-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7ea7ff, #6a6cff);
  color: #fff;
  font-weight: 700;
  margin-top: 8px;
  box-shadow: 0 16px 30px rgba(54, 76, 173, 0.26);
  position: relative;
  z-index: 1;
}

.mega-menu-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(54, 76, 173, 0.32);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  width: min(420px, 84vw);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(12, 35, 74, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(5, 28, 61, 0.16);
  backdrop-filter: blur(14px);
  padding: 14px;
  display: grid;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 1200;
}

.sub-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(12, 35, 74, 0.08);
  border-top: 1px solid rgba(12, 35, 74, 0.08);
  transform: translateX(-50%) rotate(45deg);
}

.has-sub-menu:hover .sub-menu,
.has-sub-menu:focus-within .sub-menu,
.has-sub-menu.is-open .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sub-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.9), rgba(243, 247, 255, 0.72));
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.sub-menu-item:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border-color: rgba(43, 118, 255, 0.14);
  box-shadow: 0 16px 28px rgba(22, 54, 104, 0.08);
  transform: translateY(-2px);
}

.sub-menu-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e68ff, #38c0ff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 14px 30px rgba(31, 107, 255, 0.18);
  position: relative;
}

.sub-menu-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.sub-menu-copy {
  display: grid;
  gap: 4px;
  padding-top: 2px;
}

.sub-menu-copy strong {
  font-size: 1rem;
  color: #12213d;
  letter-spacing: -0.01em;
}

.sub-menu-copy small {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.4;
}

.auth-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 100%;
}

.btn-live-chat {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 14px;
  /* Updated from 30px to 14px */
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: none;
  white-space: nowrap;
}

.btn-live-chat:hover {
  background-color: var(--dark-teal);
  color: #fff;
  transform: translateY(-1px);
  color: #ffffff;
}

.btn-cart {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 14px;
  /* Rounded square */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  /* Dark Icon */
  font-size: 1rem;
  transition: var(--transition);
  border: 0;
  cursor: pointer;
  position: relative;
}

.btn-cart:hover {
  background-color: #f0f0f0;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  border-radius: 999px;
  background: #ff4b6e;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.btn-add-cart {
  background: var(--primary-color);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
}

.btn-add-cart:hover {
  background: var(--dark-teal);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 16, 34, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1400;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  background: #fff;
  box-shadow: -10px 0 40px rgba(4, 16, 34, 0.18);
  z-index: 1401;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

body.cart-open .cart-overlay {
  opacity: 1;
  visibility: visible;
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.cart-drawer-header h2 {
  color: #12213d;
  margin-bottom: 4px;
}

.cart-drawer-header p,
.cart-summary-note,
.cart-item-meta,
.cart-empty {
  color: #6b7487;
}

.cart-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 0;
  background: #edf3ff;
  color: var(--primary-color);
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  display: grid;
  gap: 12px;
  padding-right: 4px;
}

.cart-item {
  border: 1px solid #e7edf7;
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 8px;
  background: #fafcff;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.cart-item h3 {
  color: #12213d;
  font-size: 1rem;
}

.cart-item-meta {
  font-size: 0.92rem;
}

.cart-item-remove {
  border: 0;
  background: transparent;
  color: #ff4b6e;
  font-weight: 700;
  cursor: pointer;
}

.cart-summary {
  border-top: 1px solid #e7edf7;
  padding-top: 18px;
  display: grid;
  gap: 14px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #12213d;
}

.cart-actions {
  display: grid;
  gap: 10px;
}

.cart-whatsapp {
  text-align: center;
}

.cart-whatsapp[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.btn-mobile-toggle {
  display: none;
  color: #333;
  font-size: 1.2rem;
  border: 0;
  background: transparent;
}

/* Hero Section */
.hero {
  /* Parallax Background: Fixed image with gradient overlay */
  background: linear-gradient(135deg, rgba(9, 43, 90, 0.9), rgba(13, 71, 161, 0.8));
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 160px 0 100px;
  /* Restored larger padding for visual balance */
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-icons {
  margin-top: 30px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-icons-stack {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-icons-stack i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  line-height: 1;
}

.hero-icons-copy {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  line-height: 1.25;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.floating-image {
  max-width: 100%;
  height: auto;
  /* CSS Mask removed - using transparent PNG */
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background-color: #fff;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

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

.price-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--forest-green);
  /* Dark background for icon */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-icon i {
  font-size: 2rem;
  color: #2981ff;
  /* Unified Green for all icons */
}

/* Specific icon colors removed to unify */

.price-card h3 {
  color: var(--forest-green);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.price-card p {
  color: #666;
  margin-bottom: 30px;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0 10px;
}

.features-list {
  text-align: left;
  margin-bottom: 30px;
  color: #555;
  flex-grow: 1;
  /* Push footer down */
  padding-left: 10px;
}

.features-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 8px;
}

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

.features-list li i {
  color: var(--forest-green);
  /* Dark arrow */
  font-size: 0.8rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.price-block {
  text-align: left;
}

.starting-at {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 2px;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2981ff;
  /* Bright Green Price */
  line-height: 1;
  display: flex;
  align-items: baseline;
  margin-bottom: 0;
}

.price-tag .currency {
  font-size: 1.2rem;
  color: var(--forest-green);
  margin-right: 2px;
  transform: translateY(-10px);
}

.price-tag .period {
  font-size: 0.9rem;
  color: #999;
  font-weight: 400;
  margin-left: 5px;
}

/* Domain Search */
.domain-search {
  background-color: var(--primary-color);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.domain-search h2 {
  margin-bottom: 40px;
  font-size: 2.2rem;
  font-weight: 600;
}

.domain-search .section-intro {
  max-width: 760px;
  margin: -12px auto 28px;
  color: rgba(255, 255, 255, 0.78);
}

.domain-search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 50px;
}

.search-box {
  background: #f4f5f6;
  border: 1px solid rgba(28, 31, 36, 0.1);
  padding: 5px 10px;
  border-radius: 50px;
  /* Pill shape */
  display: flex;
  flex: 1;
  align-items: center;
  height: 60px;
}

.input-group {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 15px;
  color: #25282d;
  font-size: 1.1rem;
}

.input-group i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #ff6b00;
}

.input-group .prefix {
  font-weight: 700;
  margin-right: 5px;
  color: #ff6b00;
}

.search-box input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 1rem;
  outline: none;
  color: #2b2e34;
}

.search-box .domain-ext {
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff6b00;
  outline: none;
  cursor: pointer;
  text-align: right;
}

.search-btn {
  height: 60px;
  padding: 0 40px;
  border-radius: 999px;
  /* Slightly rounded corners */
  font-size: 1rem;
  background: linear-gradient(135deg, #ff6b00 0%, #ff9d2e 100%);
  color: #171717;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.24);
}

.search-btn:hover {
  background: linear-gradient(135deg, #ff7c1f 0%, #ffac47 100%);
  color: #171717;
  transform: translateY(-2px);
}

.search-btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  filter: grayscale(0.1);
}

.domain-turnstile-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.domain-honeypot {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  left: -9999px !important;
  top: auto !important;
}

.domain-result {
  margin: 0 auto 34px;
  max-width: 900px;
  border-radius: 18px;
  border: 1px solid rgba(28, 31, 36, 0.14);
  background: rgba(246, 248, 250, 0.9);
  box-shadow: 0 18px 34px rgba(24, 27, 33, 0.1);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  text-align: left;
}

.domain-result[hidden] {
  display: none !important;
}

.domain-result-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: rgba(255, 107, 0, 0.14);
  color: #ff6b00;
}

.domain-result-copy {
  min-width: 0;
}

.domain-result-kicker {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7b8089;
}

.domain-result-title {
  margin: 0 0 6px;
  font-size: 1.26rem;
  line-height: 1.2;
  color: #1f2023;
}

.domain-result-message {
  margin: 0;
  color: #5b616b;
  line-height: 1.5;
}

.domain-result-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.domain-result-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(28, 31, 36, 0.15);
  background: #ffffff;
  color: #1f2023;
}

.domain-result-pill.is-muted {
  background: #eceff3;
  color: #5b616b;
}

.domain-result-action {
  border: 0;
  border-radius: 999px;
  min-height: 36px;
  padding: 0 16px;
  font-weight: 700;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #ff6b00 0%, #ff9d2e 100%);
  color: #171717;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.23);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.domain-result-action:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.domain-result.is-loading .domain-result-icon {
  background: rgba(255, 143, 47, 0.17);
  color: #ff7a1d;
}

.domain-result.is-loading .domain-result-status {
  background: #fff4e6;
  color: #b55a09;
  border-color: rgba(255, 122, 29, 0.3);
}

.domain-result.is-success .domain-result-icon {
  background: rgba(255, 107, 0, 0.18);
  color: #ff6b00;
}

.domain-result.is-success .domain-result-status {
  background: #ffe6cf;
  color: #9a4903;
  border-color: rgba(255, 107, 0, 0.32);
}

.domain-result.is-error .domain-result-icon {
  background: rgba(255, 83, 83, 0.16);
  color: #d04040;
}

.domain-result.is-error .domain-result-status {
  background: #ffe4e4;
  color: #8e2f2f;
  border-color: rgba(208, 64, 64, 0.3);
}

.domain-result.is-warning .domain-result-icon {
  background: rgba(255, 177, 94, 0.2);
  color: #bb650d;
}

.domain-result.is-warning .domain-result-status {
  background: #fff0dc;
  color: #9d550b;
  border-color: rgba(187, 101, 13, 0.28);
}

.tld-pricing {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tld-item {
  background: #f7f8fa;
  border: 1px solid rgba(28, 31, 36, 0.1);
  padding: 20px 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  min-width: 140px;
  position: relative;
  color: #333;
  transition: var(--transition);
}

.tld-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.28);
  box-shadow: 0 14px 24px rgba(24, 27, 33, 0.12);
}

.tld-item .tld {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 5px;
  display: block;
}

.tld-blue {
  color: #1f2023;
}

.tld-black {
  color: #1f2023;
}

.tld-green {
  color: #1f2023;
}

.tld-dark {
  color: #1f2023;
}

.tld-blue-dark {
  color: #1f2023;
}

.tld-item .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff5f08;
}

.tld-note {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #6f7783;
  background: #e6ebf1;
}

.tld-item .tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff7a1d 0%, #ffa43f 100%);
  /* Orange Sale Badge */
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  text-transform: uppercase;
}

.tld-item.active {
  border-color: rgba(255, 107, 0, 0.34);
  box-shadow: 0 16px 28px rgba(255, 107, 0, 0.16);
}

/* Features */
.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
  /* Added spacing per user request */
}

/* Feature Cards - Premium + Border */
.feature-card {
  background: #fff;
  padding: 50px 30px;
  border-radius: 20px;
  border: 1.5px solid #1a1a1a;
  /* Distinct dark border per user request */
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  top: 0;
}

.feature-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
  border-color: var(--dark-teal);
  /* Green border on hover */
}

.feature-card .icon-box {
  margin-bottom: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(41, 129, 255, 0.1);
  /* Light blue bg */
  color: #2981ff;
  /* User's preferred blue */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  transition: var(--transition);
}

.feature-card:hover .icon-box {
  background: #2981ff;
  color: #fff;
  transform: rotateY(180deg);
  /* 3D flip effect */
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #001533;
  /* Very dark blue */
  margin-bottom: 15px;
}

.feature-card p {
  color: #667;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Info Section */
.info-section {
  padding: 100px 0;
  /* User requested a background. Using a subtle premium gradient. */
  background: linear-gradient(180deg, #f9f9fc 0%, #edf2f7 100%);
  position: relative;
  overflow: hidden;
}

/* Optional: Add a subtle background shape for better integration if needed, 
   but starting with clean gradient. */

.split-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

.split-layout .text-side {
  flex: 1;
}

.split-layout .subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.split-layout h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.check-list {
  margin: 30px 0;
}

.check-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  color: #555;
}

.check-list li i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Stats */
.stats {
  padding: 60px 0;
}

/* Stats Section Redesign */
.stats {
  padding: 80px 0;
  background-color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2x2 Grid */
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-pill {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--primary-color);
  /* Dark Blue Border */
  border-radius: 50px;
  /* Pill Shape */
  padding: 20px 30px;
  gap: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-pill:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(26, 11, 91, 0.1);
}

.stat-pill i {
  font-size: 1.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
  /* Optional: Circle background for icon if needed, 
   but reference shows simple icon inside pill */
}

.stat-text h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 2px;
  font-weight: 700;
}

.stat-text p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    /* Stack on mobile */
  }
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: #fff;
  padding-top: 100px;
  position: relative;
}

.cta-banner {
  position: absolute;
  top: -50px;
  /* Overlap effect */
  left: 0;
  right: 0;
}

.banner-content {
  background: #0050c2;
  padding: 40px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 25px;
  font-size: 1.2rem;
}

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer Redesign - Variables now handled in :root */
/* :root {
    --footer-bg: #0b032d;
    --accent-green: var(--dark-teal);
} */

.footer {
  background-color: var(--footer-bg);
  color: #fff;
  padding-top: 150px;
  /* Space for floating banner */
  padding-bottom: 30px;
  position: relative;
  margin-top: 100px;
}

/* CTA Banner */
.cta-banner {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  z-index: 10;
}

.banner-content {
  background: #0050c2;
  border-radius: 15px;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  /* Adjusted shadow opacity */
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 20px;
}

.text-group h2 {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 5px;
}

.text-group p {
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}

.btn-banner {
  background: #fff;
  color: var(--primary-color);
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.btn-banner:hover {
  transform: translateY(-3px);
}

/* Main Footer Content */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-col p {
  color: #b0b0b0;
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

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

.footer-col ul li a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-quick-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
}

.footer-action-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-mini-note {
  margin-top: 16px;
  color: #9db0d7;
  font-size: 0.88rem;
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-feedback {
  min-height: 24px;
  margin-top: 14px;
  color: var(--primary-color);
  font-size: 0.92rem;
}

.form-feedback.is-loading {
  color: #a9afb8;
}

.form-feedback.is-success {
  color: #ff8f2f;
}

.form-feedback.is-warning {
  color: #ffb15e;
}

.form-feedback.is-error {
  color: #ff7f7f;
}

.form-feedback a {
  color: inherit;
  text-decoration: underline;
}

.footer .form-feedback {
  color: rgba(255, 255, 255, 0.78);
}

/* Contact Row */
.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.contact-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Outlined style */
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: border-color 0.3s ease;
}

.contact-box:hover {
  border-color: var(--secondary-color);
}

.contact-box i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.contact-box span {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.contact-box a {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.contact-box a:hover {
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.brand-accent {
  color: var(--secondary-color);
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* Partners Slider */
.partners-slider {
  position: relative;
  overflow: hidden;
  padding: 12px 10px;
  border-radius: 24px;
  border: 1px solid rgba(22, 27, 33, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 248, 251, 0.95) 100%);
}

.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 2;
  pointer-events: none;
}

.partners-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(246, 248, 251, 1) 14%, rgba(246, 248, 251, 0));
}

.partners-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(246, 248, 251, 1) 14%, rgba(246, 248, 251, 0));
}

.partners-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: partners-marquee 34s linear infinite;
}

.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

.partner-slide {
  width: 100px;
  min-width: 100px;
  height: 100px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  padding: 0;
  box-shadow: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.partner-slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(15, 23, 35, 0.12);
}

.partner-slide span {
  display: none;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  opacity: 1;
}

@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

.subpage-hero {
  background: linear-gradient(135deg, rgba(9, 43, 90, 0.96), rgba(13, 71, 161, 0.84));
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 170px 0 110px;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.subpage-copy h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin: 18px 0 18px;
}

.subpage-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.subpage-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.subpage-actions .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.subpage-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.subpage-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.92rem;
}

.subpage-badges i,
.spec-item strong,
.included-card i {
  color: var(--secondary-color);
}

.subpage-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(4, 16, 34, 0.16);
}

.subpage-card h2 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #fff;
}

.subpage-card .mega-benefits {
  color: rgba(255, 255, 255, 0.9) !important;
}

.subpage-card .mega-benefits li {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.subpage-card .mega-benefits i {
  color: #35d07f !important;
}

.specs-strip {
  margin-top: -46px;
  position: relative;
  z-index: 2;
}

.specs-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.spec-item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(12, 31, 64, 0.08);
  padding: 24px;
  text-align: center;
}

.spec-item strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.spec-item span {
  color: #6b7487;
}

.subpage-section {
  padding-top: 110px;
}

.highlighted-plan {
  position: relative;
  border: 2px solid rgba(0, 59, 143, 0.12);
  transform: translateY(-8px);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, #5a79ff, #6b67ff);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}

.included-grid-section {
  padding: 20px 0 90px;
}

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

.included-card {
  background: #fff;
  border: 1px solid rgba(0, 59, 143, 0.08);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(12, 31, 64, 0.06);
}

.included-card i {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.included-card h3 {
  color: #12213d;
  margin-bottom: 10px;
}

.included-card p {
  color: #6b7487;
}

.audio-plan-header {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.audio-plan-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.3fr);
  gap: 28px;
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(76, 152, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(17, 53, 104, 0.08);
  box-shadow: 0 28px 70px rgba(14, 34, 67, 0.1);
}

.audio-plan-summary {
  background: linear-gradient(180deg, rgba(9, 29, 58, 0.98) 0%, rgba(15, 46, 90, 0.98) 100%);
  border-radius: 28px;
  padding: 28px;
  color: #fff;
  display: grid;
  align-content: start;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.audio-plan-summary::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 191, 255, 0.22), transparent 66%);
}

.audio-plan-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1f6cff, #3ec7ff);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 18px 36px rgba(31, 108, 255, 0.28);
}

.audio-plan-kicker {
  color: rgba(174, 208, 255, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.audio-plan-summary h3 {
  color: #fff;
  font-size: 2.1rem;
  line-height: 1.05;
  margin: 0;
  max-width: 12ch;
}

.audio-plan-summary p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.audio-plan-price {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 8px;
}

.audio-price-label {
  color: rgba(189, 214, 255, 0.78);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.audio-price-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  color: #fff;
}

.audio-price-value .currency {
  font-size: 1.05rem;
  font-weight: 700;
}

.audio-price-value .amount {
  font-size: 3.15rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.audio-price-value .period {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.audio-plan-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.audio-plan-actions .btn-add-cart,
.audio-plan-actions .btn-outline {
  min-width: 160px;
  text-align: center;
}

.audio-plan-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.audio-plan-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.audio-plan-details {
  display: grid;
  align-content: center;
}

.audio-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.audio-plan-point {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(17, 53, 104, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(15, 35, 69, 0.05);
}

.audio-plan-point i {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #edf5ff, #eefbff);
  color: #1769ff;
  font-size: 1.1rem;
}

.audio-plan-point strong {
  display: block;
  color: #132441;
  font-size: 1rem;
  margin-bottom: 4px;
}

.audio-plan-point span {
  display: block;
  color: #67748b;
  font-size: 0.92rem;
  line-height: 1.5;
}

.audio-plan-point-accent {
  background: linear-gradient(180deg, #f6fbff 0%, #eef8ff 100%);
  border-color: rgba(46, 138, 255, 0.18);
}

.faq-section {
  padding: 95px 0 120px;
  background: linear-gradient(180deg, #f4f7fc 0%, #eef3fb 100%);
}

.faq-header {
  max-width: 860px;
  margin: 0 auto 42px;
}

.faq-header p {
  color: #6b7487;
  font-size: 1.05rem;
}

.faq-panel {
  background: #fff;
  border-radius: 26px;
  padding: 34px 40px;
  box-shadow: 0 24px 60px rgba(12, 31, 64, 0.08);
  position: relative;
  overflow: hidden;
}

.faq-panel::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 10px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, #ff7b73, #ff1f7a);
}

.faq-accordion-item {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #e8edf5;
}

.faq-accordion-item:last-child {
  border-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: #222c3f;
  cursor: pointer;
}

.faq-question span:last-child {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.faq-accordion-item.is-open .faq-question span:last-child {
  color: #ff1f7a;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ff1f7a;
  color: #ff1f7a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

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

.faq-answer p {
  margin: 0 0 24px 46px;
  color: #6b7487;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 800px;
}

.faq-accordion-item.is-open .faq-answer {
  max-height: 220px;
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    padding: 0 30px;
  }

  .hero .container,
  .split-layout {
    flex-direction: column;
    text-align: center;
  }

  .subpage-hero-grid,
  .specs-strip-grid,
  .included-grid,
  .audio-plan-showcase,
  .audio-plan-grid {
    grid-template-columns: 1fr;
  }

  .card-footer,
  .domain-search-wrapper,
  .cart-summary-row {
    flex-direction: column;
    align-items: stretch;
  }

  .card-footer {
    gap: 16px;
  }

  .price-block {
    text-align: center;
  }

  .btn-add-cart {
    width: 100%;
  }

  .domain-search-wrapper {
    gap: 14px;
  }

  .search-box {
    height: auto;
    border-radius: 24px;
    padding: 12px 14px;
  }

  .input-group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .input-group input {
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  .domain-ext,
  .search-btn {
    width: 100%;
  }

  .tld-pricing {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .domain-result {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 12px;
  }

  .domain-result-meta {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .cart-drawer {
    width: min(100vw, 420px);
    padding: 20px;
  }

  .cart-actions {
    grid-template-columns: 1fr;
  }

  .partners-slider::before,
  .partners-slider::after {
    width: 42px;
  }

  .partner-slide {
    width: 176px;
    min-width: 176px;
    height: 106px;
  }

  .subpage-copy h1 {
    font-size: 2.5rem;
  }

  .subpage-actions,
  .subpage-badges {
    justify-content: center;
  }

  .subpage-actions {
    flex-direction: column;
  }

  .subpage-actions .btn {
    width: 100%;
    text-align: center;
  }

  .audio-plan-actions {
    flex-direction: column;
  }

  .audio-plan-actions .btn-add-cart,
  .audio-plan-actions .btn-outline {
    width: 100%;
  }

  .specs-strip {
    margin-top: -28px;
  }

  .highlighted-plan {
    transform: none;
  }

  .faq-panel {
    padding: 24px 22px;
  }

  .faq-question {
    align-items: flex-start;
  }

  .faq-question span:last-child {
    font-size: 1.02rem;
  }

  .faq-answer p {
    margin-left: 0;
  }

  .footer {
    padding-top: 220px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .banner-content,
  .banner-text {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-content {
    padding: 28px 24px;
    gap: 20px;
  }

  .btn-banner {
    width: 100%;
    text-align: center;
  }

  .hero-image {
    width: 100%;
    justify-content: center;
  }

  .navbar {
    padding: 15px 20px;
    /* Smaller radius on mobile */
  }

  /* Mobile Menu Styles */
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    background: rgba(4, 16, 34, 0.95);
    /* Dark Purple backdrop */
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    /* Center text */
    gap: 20px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
  }

  .nav-links li {
    width: 100%;
  }

  .has-mega-menu {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .has-sub-menu {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .has-mega-menu::after {
    display: none;
  }

  .has-sub-menu::after {
    display: none;
  }

  .nav-links a,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: center;
  }

  .nav-links.active {
    display: flex;
    animation: fadeInDown 0.3s ease;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 14px;
    padding: 16px;
    grid-template-columns: 1fr;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .sub-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .has-mega-menu:hover .mega-menu,
  .has-mega-menu:focus-within .mega-menu,
  .has-mega-menu.is-open .mega-menu {
    transform: none;
    display: grid;
  }

  .has-sub-menu:hover .sub-menu,
  .has-sub-menu:focus-within .sub-menu,
  .has-sub-menu.is-open .sub-menu {
    transform: none;
    display: grid;
  }

  .mega-menu-panel h3 {
    font-size: 1.4rem;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

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

  .btn-live-chat {
    display: none;
  }

  .btn-mobile-toggle {
    display: block;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    margin-left: 10px;
  }

}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 145px 0 80px;
  }

  .subpage-copy h1 {
    font-size: 2.15rem;
    line-height: 1.12;
  }

  .section-header h2,
  .domain-search h2,
  .faq-header h2 {
    font-size: 2rem;
  }

  .pricing {
    margin-top: -24px;
  }

  .pricing-grid,
  .features-grid,
  .stats-grid {
    gap: 20px;
  }

  .price-card,
  .feature-card,
  .included-card,
  .audio-plan-summary,
  .audio-plan-point,
  .faq-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .price-tag {
    font-size: 2rem;
    justify-content: center;
  }

  .tld-pricing {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .footer-col,
  .newsletter-col {
    min-width: 0;
  }

  .footer-col ul li a,
  .footer-col p {
    word-break: break-word;
  }

  .footer {
    margin-top: 60px;
    padding-top: 260px;
  }

  .cta-banner {
    top: -110px;
  }

  .banner-content {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .banner-text {
    gap: 14px;
    width: 100%;
  }

  .banner-icon {
    display: none;
  }

  .text-group h2 {
    font-size: 1.95rem;
    line-height: 1.15;
  }

  .text-group p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .cart-drawer {
    width: 100vw;
    border-radius: 0;
  }

  .cart-drawer-header {
    align-items: center;
  }

  .cart-item-top {
    flex-direction: column;
  }

  .partner-slide {
    width: 152px;
    min-width: 152px;
    height: 92px;
  }

  .audio-plan-showcase {
    padding: 18px;
    border-radius: 24px;
  }

  .audio-plan-summary h3 {
    font-size: 1.8rem;
  }

  .audio-price-value .amount {
    font-size: 2.5rem;
  }
}

.design-hero {
  position: relative;
  overflow: hidden;
}

.design-hero::before,
.design-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.75;
  pointer-events: none;
}

.design-hero::before {
  width: 300px;
  height: 300px;
  right: 6%;
  top: 80px;
  background: radial-gradient(circle, rgba(66, 125, 255, 0.24) 0%, rgba(66, 125, 255, 0) 72%);
}

.design-hero::after {
  width: 240px;
  height: 240px;
  left: 4%;
  bottom: 0;
  background: radial-gradient(circle, rgba(28, 192, 166, 0.18) 0%, rgba(28, 192, 166, 0) 72%);
}

.design-hero-grid {
  align-items: center;
}

.design-hero-copy {
  max-width: 680px;
}

.design-hero-aside {
  display: grid;
  gap: 16px;
}

.design-mood-card {
  position: relative;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 22px 44px rgba(8, 20, 43, 0.16);
}

.design-mood-primary {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(159, 201, 255, 0.14) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 14px;
}

.design-mood-secondary {
  background: linear-gradient(135deg, #ffffff 0%, #dbe8ff 100%);
  color: #123360;
  display: grid;
  gap: 12px;
}

.design-mood-primary strong {
  display: block;
  font-size: 1.2rem;
  color: #fff;
}

.design-mood-secondary p {
  margin: 0;
  line-height: 1.65;
  color: #49617f;
}

.design-mood-label {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
}

.design-mood-secondary .design-mood-label {
  color: #5f7aa0;
}

.design-mood-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.design-mood-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f4f6fa;
  font-weight: 600;
  line-height: 1.2;
}

.design-mood-pill i {
  color: #ff8f2f;
  font-size: 0.88rem;
}

.design-mood-meta {
  display: grid;
  gap: 8px;
}

.design-mood-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #515a66;
  font-size: 0.94rem;
  line-height: 1.4;
}

.design-mood-meta i {
  color: #ff6b00;
  font-size: 0.8rem;
}

.design-showcase {
  padding: 46px 0 24px;
}

.design-service-strip {
  padding: 46px 0 12px;
}

.design-service-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.design-service-intro h2 {
  font-size: 2.75rem;
  line-height: 1.15;
  color: #0f274a;
  margin: 14px 0 14px;
}

.design-service-intro p {
  color: #61708d;
  line-height: 1.7;
}

.design-service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.design-service-tags span {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(19, 53, 107, 0.12);
  color: #13356b;
  font-weight: 600;
  box-shadow: 0 16px 34px rgba(15, 37, 74, 0.07);
}

.design-showcase-header {
  margin-bottom: 34px;
}

.design-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.design-shot-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid rgba(19, 53, 107, 0.1);
  border-radius: 26px;
  padding: 16px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(15, 37, 74, 0.09);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.design-shot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.35) 50%, transparent 82%);
  transform: translateX(-140%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.design-shot-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56, 127, 255, 0.9) 0%, rgba(54, 203, 194, 0.75) 100%);
  opacity: 0.85;
}

.design-shot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 62px rgba(15, 37, 74, 0.14);
  border-color: rgba(51, 118, 226, 0.18);
}

.design-shot-card:hover::before {
  transform: translateX(140%);
}

.design-shot-shot {
  position: relative;
  min-height: 228px;
  border-radius: 20px;
  padding: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.design-shot-real {
  padding: 0;
  gap: 0;
  background: #f3f4f6;
}

.design-shot-image {
  width: 100%;
  height: 100%;
  min-height: 228px;
  object-fit: cover;
  display: block;
}

.design-shot-shot::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(8px);
}

.design-shot-copy {
  padding: 18px 8px 6px;
  display: grid;
  gap: 8px;
}

.design-shot-copy strong {
  color: #0f274a;
  font-size: 1.26rem;
}

.design-shot-copy span {
  color: #61708d;
  line-height: 1.6;
}

.design-experience-panel {
  padding: 40px 0 8px;
}

.design-experience-head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 42px;
}

.design-experience-kicker {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: #ff8b2b;
  margin-bottom: 14px;
  font-weight: 700;
}

.design-experience-head h2 {
  font-size: 3rem;
  line-height: 1.08;
  color: #3b3f47;
  margin: 0 0 18px;
}

.design-experience-head p {
  color: #66728a;
  line-height: 1.75;
  max-width: 860px;
  margin: 0 auto;
}

.design-experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 28px;
}

.design-experience-card {
  padding: 8px 4px;
}

.design-experience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #ff8b2b;
  background: rgba(255, 139, 43, 0.08);
  font-size: 1.45rem;
  margin-bottom: 20px;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease;
}

.design-experience-card:hover .design-experience-icon {
  transform: translateY(-3px);
  background: rgba(255, 139, 43, 0.14);
}

.design-experience-card h3 {
  font-size: 1.1rem;
  line-height: 1.15;
  color: #3b3f47;
  margin: 0 0 14px;
}

.design-experience-card p {
  color: #5f6778;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 980px) {
  .design-hero-grid {
    grid-template-columns: 1fr;
  }

  .design-mood-list {
    grid-template-columns: 1fr 1fr;
  }

  .design-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .design-experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .design-service-intro h2,
  .design-experience-head h2 {
    font-size: 1.95rem;
  }

  .design-showcase-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .design-shot-shot {
    min-height: 208px;
  }

  .design-experience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .design-mood-list {
    grid-template-columns: 1fr;
  }

  .design-mood-card {
    padding: 16px;
    border-radius: 16px;
  }

  .design-mood-pill {
    min-height: 38px;
    font-size: 0.94rem;
  }

  .design-mood-meta span {
    font-size: 0.88rem;
  }
}

/* Global Theme: Gris tecnico + naranja */
body.theme-rock {
  --primary-color: #ff7a18;
  --secondary-color: #ff8f2f;
  --dark-teal: #ff6b00;
  --forest-green: #151515;
  --text-color: #f4f4f5;
  --background-light: #101010;
  --footer-bg: #0c0c0d;
  --accent-green: #ff8f2f;
  font-family: "Jost", sans-serif;
  color: #f4f4f5;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.15), rgba(10, 10, 11, 0.86)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='1200' viewBox='0 0 1600 1200'%3E%3Crect width='1600' height='1200' fill='%23101010'/%3E%3Cg opacity='0.28'%3E%3Cpath d='M0 180L220 120L440 210L660 130L880 240L1100 150L1320 220L1600 140V0H0Z' fill='%23181819'/%3E%3Cpath d='M0 460L250 390L480 500L760 410L980 540L1240 430L1600 520V240L0 250Z' fill='%23222223'/%3E%3Cpath d='M0 820L240 720L510 830L780 740L1050 860L1310 760L1600 840V620L0 650Z' fill='%231b1b1c'/%3E%3C/g%3E%3Cg stroke='%23ff7a18' stroke-opacity='0.09' stroke-width='2'%3E%3Cpath d='M110 160L350 410'/%3E%3Cpath d='M1280 120L980 460'/%3E%3Cpath d='M260 840L620 1090'/%3E%3Cpath d='M1500 760L1180 1040'/%3E%3Cpath d='M720 100L840 280'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Ccircle cx='280' cy='260' r='120'/%3E%3Ccircle cx='1320' cy='280' r='170'/%3E%3Ccircle cx='980' cy='900' r='210'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at top left, rgba(255, 122, 24, 0.16) 0%, rgba(255, 122, 24, 0) 28%),
    radial-gradient(circle at top right, rgba(255, 143, 47, 0.12) 0%, rgba(255, 143, 47, 0) 24%),
    linear-gradient(180deg, #171717 0%, #111112 45%, #0c0c0d 100%);
  background-size: cover, cover, auto, auto, auto;
  background-position:
    center top,
    center top,
    top left,
    top right,
    center;
  background-attachment: fixed, fixed, scroll, scroll, scroll;
}

body.theme-rock::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, transparent 56%),
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size:
    100% 100%,
    36px 36px,
    36px 36px;
  mix-blend-mode: screen;
  opacity: 0.65;
  z-index: -1;
}

body.theme-rock h1,
body.theme-rock h2,
body.theme-rock h3,
body.theme-rock .logo,
body.theme-rock .section-header h2,
body.theme-rock .subpage-copy h1,
body.theme-rock .text-group h2 {
  font-family: "Cinzel", serif;
  letter-spacing: 0.01em;
}

body.theme-rock .nav-wrapper {
  padding: 24px 20px 8px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0) 100%);
  backdrop-filter: blur(8px);
}

body.theme-rock .navbar {
  background: rgba(24, 24, 25, 0.9);
  border: 1px solid rgba(255, 122, 24, 0.2);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.35);
}

body.theme-rock .nav-right-pill {
  background: linear-gradient(135deg, #2a2a2b 0%, #3a3a3b 100%);
  border: 1px solid rgba(255, 122, 24, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.theme-rock .navbar .logo,
body.theme-rock .nav-links a,
body.theme-rock .nav-dropdown-toggle {
  color: #f4f4f5;
}

body.theme-rock .nav-links a:hover,
body.theme-rock .nav-links a.active,
body.theme-rock .nav-dropdown-toggle:hover,
body.theme-rock .has-mega-menu:hover .nav-dropdown-toggle,
body.theme-rock .has-mega-menu.is-open .nav-dropdown-toggle,
body.theme-rock .has-sub-menu:hover .nav-dropdown-toggle,
body.theme-rock .has-sub-menu.is-open .nav-dropdown-toggle {
  color: #ff8f2f;
}

body.theme-rock .mega-menu,
body.theme-rock .sub-menu,
body.theme-rock .cart-drawer,
body.theme-rock .faq-panel,
body.theme-rock .subpage-card,
body.theme-rock .audio-plan-showcase,
body.theme-rock .audio-plan-summary,
body.theme-rock .audio-plan-point,
body.theme-rock .price-card,
body.theme-rock .feature-card,
body.theme-rock .included-card,
body.theme-rock .partner-slide,
body.theme-rock .contact-box,
body.theme-rock .stat-pill,
body.theme-rock .spec-item {
  background: linear-gradient(180deg, rgba(34, 34, 35, 0.95) 0%, rgba(20, 20, 21, 0.98) 100%);
  border: 1px solid rgba(255, 122, 24, 0.15);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

body.theme-rock .mega-menu-item,
body.theme-rock .sub-menu-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 122, 24, 0.08);
}

body.theme-rock .mega-menu-item strong,
body.theme-rock .sub-menu-copy strong,
body.theme-rock .mega-menu-panel h3,
body.theme-rock .subpage-card h2,
body.theme-rock .price-card h3,
body.theme-rock .feature-card h3,
body.theme-rock .faq-question span:last-child,
body.theme-rock .footer-col h3,
body.theme-rock .footer-col h4,
body.theme-rock .design-shot-copy strong,
body.theme-rock .design-experience-card h3 {
  color: #f4f4f5;
}

body.theme-rock .mega-copy small,
body.theme-rock .sub-menu-copy small,
body.theme-rock .mega-benefits li,
body.theme-rock .subpage-copy p,
body.theme-rock .section-header p,
body.theme-rock .price-card p,
body.theme-rock .feature-card p,
body.theme-rock .faq-answer p,
body.theme-rock .footer-col p,
body.theme-rock .footer-col ul li a,
body.theme-rock .design-shot-copy span,
body.theme-rock .design-experience-card p,
body.theme-rock .cart-summary-note,
body.theme-rock .cart-drawer-header p,
body.theme-rock .contact-box span {
  color: #c7c7cb;
}

body.theme-rock .hero,
body.theme-rock .subpage-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 122, 24, 0.2) 0%, rgba(255, 122, 24, 0) 26%),
    radial-gradient(circle at 80% 10%, rgba(255, 143, 47, 0.14) 0%, rgba(255, 143, 47, 0) 20%),
    linear-gradient(135deg, #141414 0%, #202021 48%, #101011 100%);
}

body.theme-rock .hero::after,
body.theme-rock .subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 35%);
}

body.theme-rock .subpage-copy h1,
body.theme-rock .section-header h2,
body.theme-rock .domain-search h2,
body.theme-rock .faq-header h2,
body.theme-rock .text-group h2,
body.theme-rock .design-service-intro h2,
body.theme-rock .design-experience-head h2 {
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}

body.theme-rock .breadcrumb,
body.theme-rock .subtitle,
body.theme-rock .design-experience-kicker {
  color: #ff8f2f;
}

body.theme-rock .highlight {
  color: #ff8f2f;
  text-decoration-color: rgba(255, 143, 47, 0.45);
}

body.theme-rock .btn-green,
body.theme-rock .btn-live-chat,
body.theme-rock .btn-banner,
body.theme-rock .cart-whatsapp,
body.theme-rock .footer-action-btn,
body.theme-rock .mega-menu-cta {
  background: linear-gradient(135deg, #ff6b00 0%, #ff9f3d 100%);
  color: #171717;
  border: 0;
  box-shadow: 0 14px 26px rgba(255, 107, 0, 0.28);
}

body.theme-rock .btn-outline,
body.theme-rock .footer-action-secondary,
body.theme-rock .cart-clear {
  border: 1px solid rgba(255, 143, 47, 0.45);
  color: #ffd7b0;
  background: rgba(255, 255, 255, 0.03);
}

body.theme-rock .cart-count,
body.theme-rock .plan-badge {
  background: linear-gradient(135deg, #ff6b00 0%, #ff9f3d 100%);
  color: #171717;
}

body.theme-rock .highlighted-plan {
  border-color: rgba(255, 122, 24, 0.34);
}

body.theme-rock .btn,
body.theme-rock .btn-banner,
body.theme-rock .footer-action-btn,
body.theme-rock .mega-menu-cta {
  border-radius: 999px;
}

body.theme-rock .btn:hover,
body.theme-rock .btn-banner:hover,
body.theme-rock .footer-action-btn:hover,
body.theme-rock .mega-menu-cta:hover,
body.theme-rock .btn-green:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

body.theme-rock main section {
  position: relative;
}

body.theme-rock main section:not(.footer):not(.cta-banner) {
  padding-top: 90px;
  padding-bottom: 90px;
}

body.theme-rock main section:not(.footer):not(.cta-banner)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 122, 24, 0) 0%,
    rgba(255, 122, 24, 0.24) 18%,
    rgba(255, 122, 24, 0.5) 50%,
    rgba(255, 122, 24, 0.24) 82%,
    rgba(255, 122, 24, 0) 100%
  );
  pointer-events: none;
}

body.theme-rock main section:not(.footer):not(.cta-banner)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.28) 0%, rgba(255, 122, 24, 0) 72%);
  pointer-events: none;
}

body.theme-rock .pricing,
body.theme-rock .features,
body.theme-rock .stats,
body.theme-rock .providers,
body.theme-rock .domain-search,
body.theme-rock .faq-section,
body.theme-rock .specs-strip,
body.theme-rock .info-section,
body.theme-rock .design-showcase,
body.theme-rock .design-service-strip,
body.theme-rock .design-experience-panel {
  background: transparent;
}

body.theme-rock .pricing {
  margin-top: -30px;
  background: linear-gradient(180deg, rgba(26, 26, 27, 0.96) 0%, rgba(14, 14, 15, 0.98) 100%);
}

body.theme-rock .domain-search {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 122, 24, 0.1) 0%, rgba(255, 122, 24, 0) 22%),
    linear-gradient(180deg, rgba(18, 18, 19, 0.98) 0%, rgba(25, 25, 26, 0.98) 100%);
}

body.theme-rock .features {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 143, 47, 0.1) 0%, rgba(255, 143, 47, 0) 20%),
    linear-gradient(180deg, rgba(22, 22, 23, 0.98) 0%, rgba(14, 14, 15, 0.98) 100%);
}

body.theme-rock .pricing-grid,
body.theme-rock .features-grid,
body.theme-rock .stats-grid,
body.theme-rock .design-showcase-grid,
body.theme-rock .design-experience-grid {
  gap: 28px;
}

body.theme-rock .card-icon,
body.theme-rock .icon-box,
body.theme-rock .design-experience-icon,
body.theme-rock .mega-icon,
body.theme-rock .sub-menu-icon {
  background: rgba(255, 122, 24, 0.1);
  color: #ff8f2f;
  border: 1px solid rgba(255, 122, 24, 0.16);
}

body.theme-rock .audio-plan-icon {
  background: linear-gradient(135deg, #2b2b2d 0%, #ff8f2f 100%);
  color: #171717;
  box-shadow: 0 18px 36px rgba(255, 107, 0, 0.22);
}

body.theme-rock .audio-plan-summary::after {
  background: radial-gradient(circle, rgba(255, 122, 24, 0.18), transparent 66%);
}

body.theme-rock .audio-plan-kicker {
  color: rgba(255, 183, 112, 0.86);
}

body.theme-rock .price-card,
body.theme-rock .feature-card,
body.theme-rock .design-shot-card,
body.theme-rock .design-experience-card {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

body.theme-rock .price-card:hover,
body.theme-rock .feature-card:hover,
body.theme-rock .design-shot-card:hover,
body.theme-rock .design-experience-card:hover,
body.theme-rock .stat-pill:hover,
body.theme-rock .partner-slide:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 24, 0.34);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.3);
}

body.theme-rock .price-tag,
body.theme-rock .price-block,
body.theme-rock .amount,
body.theme-rock .currency,
body.theme-rock .period {
  color: #ffd3a3;
}

body.theme-rock .features-list li,
body.theme-rock .check-list li,
body.theme-rock .subpage-badges span,
body.theme-rock .spec-item span,
body.theme-rock .spec-item strong,
body.theme-rock .stat-text h3 {
  color: #e7e7e9;
}

body.theme-rock .features-list li i,
body.theme-rock .check-list li i,
body.theme-rock .subpage-badges i,
body.theme-rock .mega-benefits i,
body.theme-rock .faq-icon i {
  color: #ff8f2f;
}

body.theme-rock .faq-accordion-item {
  border-bottom-color: rgba(255, 122, 24, 0.12);
}

body.theme-rock .faq-accordion-item.is-open .faq-question span:last-child,
body.theme-rock .faq-icon {
  color: #ff8f2f;
}

body.theme-rock .faq-icon {
  border-color: #ff8f2f;
}

body.theme-rock .faq-panel::after {
  background: linear-gradient(90deg, rgba(255, 122, 24, 0.96) 0%, rgba(255, 159, 61, 0.74) 100%);
}

body.theme-rock .faq-panel,
body.theme-rock .footer,
body.theme-rock .contact-row,
body.theme-rock .footer-content {
  color: #f4f4f5;
}

body.theme-rock .footer {
  background:
    radial-gradient(circle at top center, rgba(255, 122, 24, 0.14) 0%, rgba(255, 122, 24, 0) 20%),
    linear-gradient(180deg, #0f0f10 0%, #09090a 100%);
}

body.theme-rock .cta-banner .banner-content {
  background: linear-gradient(135deg, #19191a 0%, #333334 100%);
  border: 1px solid rgba(255, 122, 24, 0.2);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.32);
}

body.theme-rock .info-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 122, 24, 0.12) 0%, rgba(255, 122, 24, 0) 22%),
    linear-gradient(180deg, rgba(22, 22, 23, 0.98) 0%, rgba(12, 12, 13, 0.99) 100%);
  border-top: 1px solid rgba(255, 122, 24, 0.08);
  border-bottom: 1px solid rgba(255, 122, 24, 0.08);
}

body.theme-rock .split-layout h2,
body.theme-rock .split-layout .subtitle {
  color: #ffffff;
}

body.theme-rock .split-layout p,
body.theme-rock .check-list li {
  color: #d1d1d5;
}

body.theme-rock .floating-image,
body.theme-rock .placeholder-img {
  filter: grayscale(1) contrast(1.06) drop-shadow(0 22px 32px rgba(0, 0, 0, 0.28));
}

body.theme-rock .stats {
  background:
    radial-gradient(circle at 12% 78%, rgba(255, 122, 24, 0.08) 0%, rgba(255, 122, 24, 0) 20%),
    linear-gradient(180deg, rgba(14, 14, 15, 0.98) 0%, rgba(22, 22, 23, 0.98) 100%);
}

body.theme-rock .stat-pill {
  background: linear-gradient(180deg, rgba(32, 32, 33, 0.96) 0%, rgba(18, 18, 19, 0.98) 100%);
  border: 1px solid rgba(255, 122, 24, 0.16);
}

body.theme-rock .stat-pill i {
  color: #ff8f2f;
}

body.theme-rock .stat-text h3 {
  color: #f4f4f5;
}

body.theme-rock .providers .section-header p,
body.theme-rock .stats .section-header p {
  color: #c8c8cc;
}

body.theme-rock .partner-slide {
  background: #f3f5f7;
  border: 1px solid rgba(31, 32, 35, 0.16);
  box-shadow: 0 10px 20px rgba(31, 32, 35, 0.08);
}

body.theme-rock .partner-slide span {
  display: none;
}

body.theme-rock .partners-slider {
  background: linear-gradient(180deg, rgba(242, 244, 247, 0.94) 0%, rgba(236, 239, 243, 0.96) 100%);
  border-color: rgba(31, 32, 35, 0.12);
}

body.theme-rock .partners-slider::before {
  background: linear-gradient(90deg, rgba(239, 242, 246, 1) 12%, rgba(239, 242, 246, 0));
}

body.theme-rock .partners-slider::after {
  background: linear-gradient(270deg, rgba(239, 242, 246, 1) 12%, rgba(239, 242, 246, 0));
}

body.theme-rock .providers {
  background:
    radial-gradient(circle at 86% 24%, rgba(255, 143, 47, 0.1) 0%, rgba(255, 143, 47, 0) 18%),
    linear-gradient(180deg, rgba(18, 18, 19, 0.98) 0%, rgba(12, 12, 13, 0.98) 100%);
}

body.theme-rock .faq-section {
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 122, 24, 0.1) 0%, rgba(255, 122, 24, 0) 18%),
    linear-gradient(180deg, rgba(24, 24, 25, 0.98) 0%, rgba(16, 16, 17, 0.98) 100%);
}

body.theme-rock .specs-strip {
  background: linear-gradient(180deg, rgba(12, 12, 13, 0.98) 0%, rgba(20, 20, 21, 0.98) 100%);
}

body.theme-rock .design-service-strip {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 122, 24, 0.08) 0%, rgba(255, 122, 24, 0) 18%),
    linear-gradient(180deg, rgba(22, 22, 23, 0.98) 0%, rgba(14, 14, 15, 0.98) 100%);
}

body.theme-rock .design-showcase {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 143, 47, 0.09) 0%, rgba(255, 143, 47, 0) 18%),
    linear-gradient(180deg, rgba(14, 14, 15, 0.98) 0%, rgba(24, 24, 25, 0.98) 100%);
}

body.theme-rock .design-experience-panel {
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 122, 24, 0.09) 0%, rgba(255, 122, 24, 0) 18%),
    linear-gradient(180deg, rgba(24, 24, 25, 0.98) 0%, rgba(12, 12, 13, 0.98) 100%);
}

body.theme-rock .contact-row,
body.theme-rock .footer-bottom {
  border-top-color: rgba(255, 122, 24, 0.12);
}

body.theme-rock .scroll-top,
body.theme-rock .cart-close {
  background: rgba(255, 122, 24, 0.08);
  color: #ff8f2f;
  border: 1px solid rgba(255, 122, 24, 0.18);
}

body.theme-rock .design-service-tags span,
body.theme-rock .design-mood-primary,
body.theme-rock .design-mood-secondary {
  border-color: rgba(255, 122, 24, 0.22);
}

body.theme-rock .design-service-tags span,
body.theme-rock .design-shot-card,
body.theme-rock .design-mood-secondary {
  background: linear-gradient(180deg, rgba(30, 30, 31, 0.96) 0%, rgba(14, 14, 15, 0.98) 100%);
}

body.theme-rock .design-hero::before {
  background: radial-gradient(circle, rgba(255, 122, 24, 0.16) 0%, rgba(255, 122, 24, 0) 72%);
}

body.theme-rock .design-hero::after {
  background: radial-gradient(circle, rgba(255, 143, 47, 0.12) 0%, rgba(255, 143, 47, 0) 72%);
}

body.theme-rock .design-mood-primary {
  background: linear-gradient(135deg, rgba(56, 56, 58, 0.7) 0%, rgba(19, 19, 20, 0.94) 100%);
}

body.theme-rock .design-mood-primary strong,
body.theme-rock .design-mood-label,
body.theme-rock .design-service-intro h2,
body.theme-rock .design-shot-copy strong,
body.theme-rock .design-experience-head h2,
body.theme-rock .design-experience-card h3 {
  color: #ffffff;
}

body.theme-rock .design-mood-secondary p,
body.theme-rock .design-service-intro p,
body.theme-rock .design-shot-copy span,
body.theme-rock .design-experience-head p,
body.theme-rock .design-experience-card p {
  color: #d1d1d5;
}

body.theme-rock .design-shot-card::after {
  background: linear-gradient(90deg, rgba(255, 122, 24, 0.96) 0%, rgba(255, 159, 61, 0.74) 100%);
}

body.theme-rock .design-experience-kicker,
body.theme-rock .subtitle {
  color: #ff8f2f;
}

body.theme-rock .design-experience-icon {
  background: rgba(255, 122, 24, 0.08);
  color: #ff8f2f;
}

body.theme-rock .design-experience-card:hover .design-experience-icon {
  background: rgba(255, 122, 24, 0.15);
}

body.theme-rock input,
body.theme-rock select,
body.theme-rock textarea {
  background: rgba(255, 255, 255, 0.04);
  color: #f4f4f5;
  border-color: rgba(255, 122, 24, 0.2);
}

body.theme-rock ::placeholder {
  color: #96969a;
}

@media (max-width: 980px) {
  body.theme-rock .nav-wrapper {
    padding: 16px 14px 6px;
  }

  body.theme-rock .navbar {
    background: rgba(24, 24, 25, 0.96);
  }

  body.theme-rock .mega-menu,
  body.theme-rock .sub-menu {
    background: transparent;
    box-shadow: none;
    border: 0;
  }
}

@media (max-width: 640px) {
  body.theme-rock main section:not(.footer):not(.cta-banner) {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  body.theme-rock .hero,
  body.theme-rock .subpage-hero {
    padding-top: 150px;
  }
}

/* Rediseño gris + naranja: overrides finales para un cambio visual claro */
body.theme-rock {
  --primary-color: #ff6b00;
  --secondary-color: #ff8a1f;
  --dark-teal: #e85f00;
  --forest-green: #1f2023;
  --text-color: #24262b;
  --background-light: #f3f4f6;
  --footer-bg: #191a1d;
  --accent-green: #ff8a1f;
  color: #24262b;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 107, 0, 0.12), rgba(255, 107, 0, 0) 28%),
    linear-gradient(180deg, #f6f7f8 0%, #e8eaed 48%, #dfe1e5 100%);
}

body.theme-rock::before {
  opacity: 0.28;
  mix-blend-mode: multiply;
}

body.theme-rock h1,
body.theme-rock h2,
body.theme-rock h3,
body.theme-rock .logo,
body.theme-rock .section-header h2,
body.theme-rock .subpage-copy h1,
body.theme-rock .text-group h2 {
  font-family: "Jost", sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

body.theme-rock .nav-wrapper {
  background: linear-gradient(180deg, rgba(243, 244, 246, 0.92) 0%, rgba(243, 244, 246, 0) 100%);
}

body.theme-rock .navbar {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 32, 35, 0.12);
  box-shadow: 0 18px 42px rgba(31, 32, 35, 0.12);
}

body.theme-rock .navbar .logo,
body.theme-rock .nav-links a,
body.theme-rock .nav-dropdown-toggle {
  color: #24262b;
}

body.theme-rock .nav-right-pill {
  background: #2b2d31;
  border: 1px solid rgba(255, 107, 0, 0.26);
  box-shadow: none;
}

body.theme-rock .hero,
body.theme-rock .subpage-hero {
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 107, 0, 0.16) 0%, rgba(255, 107, 0, 0) 24%),
    linear-gradient(135deg, #f4f5f7 0%, #e5e7eb 52%, #d4d7dc 100%);
}

body.theme-rock .subpage-copy h1,
body.theme-rock .section-header h2,
body.theme-rock .domain-search h2,
body.theme-rock .faq-header h2,
body.theme-rock .text-group h2,
body.theme-rock .design-service-intro h2,
body.theme-rock .design-experience-head h2 {
  color: #1f2023;
  text-shadow: none;
}

body.theme-rock .mega-copy small,
body.theme-rock .sub-menu-copy small,
body.theme-rock .mega-benefits li,
body.theme-rock .subpage-copy p,
body.theme-rock .section-header p,
body.theme-rock .price-card p,
body.theme-rock .feature-card p,
body.theme-rock .faq-answer p,
body.theme-rock .design-service-intro p,
body.theme-rock .design-experience-head p,
body.theme-rock .design-experience-card p,
body.theme-rock .design-shot-copy span,
body.theme-rock .cart-summary-note,
body.theme-rock .cart-drawer-header p,
body.theme-rock .contact-box span {
  color: #5f6368;
}

body.theme-rock .hero-icons {
  color: #505761;
}

body.theme-rock .hero-icons-copy {
  color: #505761 !important;
}

body.theme-rock .mega-menu,
body.theme-rock .sub-menu,
body.theme-rock .cart-drawer,
body.theme-rock .faq-panel,
body.theme-rock .subpage-card,
body.theme-rock .audio-plan-showcase,
body.theme-rock .audio-plan-summary,
body.theme-rock .audio-plan-point,
body.theme-rock .price-card,
body.theme-rock .feature-card,
body.theme-rock .included-card,
body.theme-rock .partner-slide,
body.theme-rock .contact-box,
body.theme-rock .stat-pill,
body.theme-rock .spec-item,
body.theme-rock .design-shot-card,
body.theme-rock .design-experience-card,
body.theme-rock .design-mood-secondary,
body.theme-rock .design-service-tags span {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 32, 35, 0.1);
  box-shadow: 0 16px 36px rgba(31, 32, 35, 0.09);
}

body.theme-rock .design-mood-primary,
body.theme-rock .cta-banner .banner-content {
  background: linear-gradient(135deg, #2b2d31 0%, #42454b 100%);
  border: 1px solid rgba(255, 107, 0, 0.24);
  box-shadow: 0 22px 46px rgba(31, 32, 35, 0.18);
}

body.theme-rock .design-mood-secondary {
  color: #24262b;
}

body.theme-rock .design-mood-secondary p {
  color: #5f6368;
}

body.theme-rock .design-mood-secondary .design-mood-label {
  color: #ff6b00;
}

body.theme-rock .design-mood-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 138, 31, 0.24);
  color: #f4f6fa;
}

body.theme-rock .design-mood-pill i {
  color: #ff8a1f;
}

body.theme-rock .design-mood-meta span {
  color: #4f5662;
}

body.theme-rock .design-mood-meta i {
  color: #ff6b00;
}

body.theme-rock .mega-menu-item,
body.theme-rock .sub-menu-item {
  background: #f6f7f8;
  border: 1px solid rgba(31, 32, 35, 0.08);
}

body.theme-rock .mega-menu-item strong,
body.theme-rock .sub-menu-copy strong,
body.theme-rock .mega-menu-panel h3,
body.theme-rock .subpage-card h2,
body.theme-rock .price-card h3,
body.theme-rock .feature-card h3,
body.theme-rock .faq-question span:last-child,
body.theme-rock .design-shot-copy strong,
body.theme-rock .design-experience-card h3 {
  color: #24262b;
}

body.theme-rock .mega-menu-panel {
  background: linear-gradient(150deg, #2b2f36 0%, #21252c 100%);
  border: 1px solid rgba(255, 138, 31, 0.24);
}

body.theme-rock .mega-menu-panel::after {
  background: radial-gradient(circle, rgba(255, 138, 31, 0.2), transparent 66%);
}

body.theme-rock .mega-menu-panel h3 {
  color: #f5f6f8;
}

body.theme-rock .mega-benefits li {
  color: rgba(245, 246, 248, 0.9);
}

body.theme-rock .mega-benefits i {
  color: #ff8a1f;
}

body.theme-rock .breadcrumb,
body.theme-rock .subtitle,
body.theme-rock .highlight,
body.theme-rock .design-experience-kicker,
body.theme-rock .nav-links a:hover,
body.theme-rock .nav-links a.active,
body.theme-rock .nav-dropdown-toggle:hover,
body.theme-rock .has-mega-menu:hover .nav-dropdown-toggle,
body.theme-rock .has-mega-menu.is-open .nav-dropdown-toggle,
body.theme-rock .has-sub-menu:hover .nav-dropdown-toggle,
body.theme-rock .has-sub-menu.is-open .nav-dropdown-toggle {
  color: #ff6b00;
}

body.theme-rock .pricing,
body.theme-rock .features,
body.theme-rock .stats,
body.theme-rock .providers,
body.theme-rock .domain-search,
body.theme-rock .faq-section,
body.theme-rock .specs-strip,
body.theme-rock .info-section,
body.theme-rock .design-showcase,
body.theme-rock .design-service-strip,
body.theme-rock .design-experience-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(232, 234, 237, 0.72) 100%);
  border-color: rgba(31, 32, 35, 0.08);
}

body.theme-rock main section:not(.footer):not(.cta-banner)::before {
  background: linear-gradient(
    90deg,
    rgba(255, 107, 0, 0) 0%,
    rgba(255, 107, 0, 0.18) 18%,
    rgba(255, 107, 0, 0.42) 50%,
    rgba(255, 107, 0, 0.18) 82%,
    rgba(255, 107, 0, 0) 100%
  );
}

/* Primera sección del index sin barra divisora ni fondo cortado */
body.theme-rock main > section:first-child::before,
body.theme-rock main > section:first-child::after {
  display: none;
}

body.theme-rock main > section:first-child {
  padding-top: 70px;
  background: transparent;
}

body.theme-rock .btn-green,
body.theme-rock .btn-live-chat,
body.theme-rock .btn-banner,
body.theme-rock .cart-whatsapp,
body.theme-rock .footer-action-btn,
body.theme-rock .mega-menu-cta,
body.theme-rock .btn-add-cart,
body.theme-rock .cart-count,
body.theme-rock .plan-badge {
  background: linear-gradient(135deg, #ff6b00 0%, #ff9d2e 100%);
  color: #171717;
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.24);
}

body.theme-rock .btn-outline,
body.theme-rock .footer-action-secondary,
body.theme-rock .cart-clear {
  color: #e85f00;
  border: 1px solid rgba(255, 107, 0, 0.55);
  background: rgba(255, 255, 255, 0.7);
}

body.theme-rock .card-icon,
body.theme-rock .icon-box,
body.theme-rock .design-experience-icon,
body.theme-rock .mega-icon,
body.theme-rock .sub-menu-icon,
body.theme-rock .scroll-top,
body.theme-rock .cart-close,
body.theme-rock .faq-icon {
  background: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  border-color: rgba(255, 107, 0, 0.2);
}

body.theme-rock .card-icon i,
body.theme-rock .icon-box i,
body.theme-rock .design-experience-icon i,
body.theme-rock .included-card i,
body.theme-rock .stat-pill i {
  color: #ff6b00;
}

body.theme-rock .features-list li,
body.theme-rock .check-list li,
body.theme-rock .subpage-badges span,
body.theme-rock .spec-item span,
body.theme-rock .spec-item strong,
body.theme-rock .stat-text h3,
body.theme-rock .price-tag,
body.theme-rock .price-block,
body.theme-rock .amount,
body.theme-rock .currency,
body.theme-rock .period {
  color: #24262b;
}

body.theme-rock .features-list li i,
body.theme-rock .check-list li i,
body.theme-rock .subpage-badges i,
body.theme-rock .mega-benefits i,
body.theme-rock .faq-icon i {
  color: #ff6b00;
}

body.theme-rock .subpage-card .mega-benefits,
body.theme-rock .subpage-card .mega-benefits li {
  color: #3f4652 !important;
  text-shadow: none !important;
}

body.theme-rock .subpage-card .mega-benefits i {
  color: #ff6b00 !important;
}

body.theme-rock .audio-plan-showcase {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(241, 243, 247, 0.98) 100%);
  border-color: rgba(31, 32, 35, 0.12);
  box-shadow: 0 22px 44px rgba(22, 26, 33, 0.1);
}

body.theme-rock .audio-plan-summary {
  background: linear-gradient(165deg, #2e3138 0%, #252a31 56%, #2f2a28 100%);
  border: 1px solid rgba(255, 138, 31, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.theme-rock .audio-plan-summary h3,
body.theme-rock .audio-plan-summary p {
  color: #f4f5f7;
}

body.theme-rock .audio-plan-kicker {
  color: rgba(255, 178, 107, 0.92);
}

body.theme-rock .audio-price-label {
  color: rgba(255, 203, 157, 0.9);
}

body.theme-rock .audio-price-value,
body.theme-rock .audio-price-value .period {
  color: #f4f5f7;
}

body.theme-rock .audio-price-value .currency,
body.theme-rock .audio-price-value .amount {
  color: #ffbf80;
}

body.theme-rock .audio-plan-actions .btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #ffd7b0;
  border-color: rgba(255, 173, 96, 0.55);
}

body.theme-rock .audio-plan-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

body.theme-rock .audio-plan-point {
  background: linear-gradient(180deg, #ffffff 0%, #fff7f0 100%);
  border-color: rgba(255, 138, 31, 0.2);
  box-shadow: 0 10px 18px rgba(23, 26, 31, 0.08);
}

body.theme-rock .audio-plan-point i {
  background: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
}

body.theme-rock .audio-plan-point strong {
  color: #24262b;
}

body.theme-rock .audio-plan-point span {
  color: #616774;
}

body.theme-rock .audio-plan-point-accent {
  background: linear-gradient(180deg, rgba(255, 246, 238, 0.92) 0%, rgba(255, 238, 222, 0.94) 100%);
  border-color: rgba(255, 120, 17, 0.32);
}

body.theme-rock .floating-image,
body.theme-rock .placeholder-img {
  filter: grayscale(1) contrast(1.08) drop-shadow(0 22px 32px rgba(31, 32, 35, 0.18));
}

/* Home hero image: +150px y color real */
body.theme-rock .floating-image--hero-home {
  width: calc(80% + 150px);
  max-width: calc(80% + 150px);
  filter: none !important;
}

@media (max-width: 980px) {
  body.theme-rock #inicio .hero-image--home {
    display: none;
  }

  body.theme-rock .floating-image--hero-home {
    width: 100%;
    max-width: 100%;
  }
}

/* Slider de clientes en color real */
body.theme-rock .partners-slider .placeholder-img {
  filter: none;
}

body.theme-rock .footer {
  background: linear-gradient(180deg, #2b2d31 0%, #1d1f23 100%);
  color: #f4f4f5;
  margin-top: 0;
  padding-top: 164px;
}

body.theme-rock .footer .cta-banner {
  top: -52px;
}

body.theme-rock .footer .cta-banner .banner-content {
  background: linear-gradient(135deg, #32353b 0%, #3f434b 100%);
  border: 1px solid rgba(255, 138, 31, 0.28);
  box-shadow: 0 18px 40px rgba(19, 20, 22, 0.35);
}

body.theme-rock .footer .cta-banner .text-group h2 {
  color: #f5f6f8;
}

body.theme-rock .footer .cta-banner .text-group p {
  color: #e2e4e8;
}

body.theme-rock .footer .cta-banner .banner-icon i {
  color: #ff8a1f !important;
}

body.theme-rock .footer-col h3,
body.theme-rock .footer-col h4,
body.theme-rock .footer-col p,
body.theme-rock .footer-col ul li a,
body.theme-rock .footer-bottom,
body.theme-rock .contact-row,
body.theme-rock .footer-content,
body.theme-rock .design-mood-primary strong,
body.theme-rock .design-mood-label,
body.theme-rock .design-mood-secondary p {
  color: inherit;
}

body.theme-rock .footer-col h3,
body.theme-rock .footer-col h4,
body.theme-rock .brand-accent {
  color: #ff8a1f;
}

body.theme-rock .footer-col p,
body.theme-rock .footer-col ul li a,
body.theme-rock .footer-mini-note,
body.theme-rock .footer-bottom,
body.theme-rock .contact-box span,
body.theme-rock .contact-box {
  color: #c7c9ce;
}

body.theme-rock .footer .contact-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 138, 31, 0.24);
  box-shadow: none;
}

body.theme-rock .footer .contact-box i {
  color: #ff8a1f;
}

body.theme-rock .footer .contact-box span,
body.theme-rock .footer .contact-box a {
  color: #d0d3d8;
}

body.theme-rock .footer .contact-box a:hover {
  color: #ff8a1f;
}

body.theme-rock .footer-col ul li a:hover {
  color: #ff8a1f;
}

body.theme-rock .footer-action-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #ffd3ad;
  border-color: rgba(255, 138, 31, 0.55);
}

body.theme-rock .footer .form-feedback {
  color: rgba(255, 211, 173, 0.92);
}

@media (max-width: 1100px) {
  body.theme-rock .footer {
    margin-top: 72px;
    padding-top: 0;
  }

  body.theme-rock .footer .cta-banner {
    position: relative;
    top: -50px;
  }

  body.theme-rock .footer .cta-banner .banner-content {
    padding: 30px 32px;
    gap: 18px;
  }

  body.theme-rock .footer .cta-banner .banner-text {
    align-items: flex-start;
  }

  body.theme-rock .footer .footer-content {
    margin-top: -4px;
  }
}

body.theme-rock input,
body.theme-rock select,
body.theme-rock textarea {
  background: #ffffff;
  color: #24262b;
  border-color: rgba(31, 32, 35, 0.16);
}

body.theme-rock ::placeholder {
  color: #8a8d93;
}

body.theme-rock .domain-search .section-intro {
  color: #7b8089;
}

body.theme-rock .domain-search .search-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 32, 35, 0.14);
  box-shadow: 0 10px 24px rgba(31, 32, 35, 0.08);
}

body.theme-rock .domain-search .input-group {
  color: #24262b;
}

body.theme-rock .domain-search .search-box input {
  color: #2a2d33;
}

body.theme-rock .domain-search .input-group i,
body.theme-rock .domain-search .input-group .prefix,
body.theme-rock .domain-search .domain-ext {
  color: #ff6b00;
}

body.theme-rock .domain-search .domain-result {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(31, 32, 35, 0.12);
  box-shadow: 0 14px 30px rgba(31, 32, 35, 0.1);
}

body.theme-rock .domain-search .domain-result-title {
  color: #1f2023;
}

body.theme-rock .domain-search .domain-result-message {
  color: #606672;
}

body.theme-rock .domain-search .domain-result-pill.is-muted {
  background: #e8edf3;
  color: #606672;
}

body.theme-rock .domain-search .tld-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(31, 32, 35, 0.11);
  box-shadow: 0 10px 24px rgba(31, 32, 35, 0.07);
}

body.theme-rock .domain-search .tld-item .tld {
  color: #1f2023;
}

body.theme-rock .domain-search .tld-item .price {
  color: #ff5f08;
}

body.theme-rock .domain-search .tld-note {
  background: #e1e7ee;
  color: #69707c;
}

/* Hosting compartido: mejora de contraste en bloque de migración */
body.theme-rock .info-section .split-layout h2 {
  color: #1f2023;
}

body.theme-rock .info-section .split-layout .subtitle {
  color: #ff6b00;
}

body.theme-rock .info-section .split-layout p {
  color: #5f6368;
}

body.theme-rock .info-section .check-list li {
  color: #2d3138;
}

/* Hosting compartido: fondo de sección con imagen dedicada */
body.theme-rock .info-section.info-section-hosting-compartido {
  background: url("../bg/hosting-compartido.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.theme-rock .info-section.info-section-hosting-compartido .split-layout {
  justify-content: flex-end;
  min-height: 460px;
}

body.theme-rock .info-section.info-section-hosting-compartido .text-side {
  max-width: 620px;
}

/* Hosting VPS: fondo de sección con imagen dedicada */
body.theme-rock .info-section.info-section-hosting-vps {
  background: url("../bg/hosting-vps.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.theme-rock .info-section.info-section-hosting-vps .split-layout {
  justify-content: flex-end;
  min-height: 460px;
}

body.theme-rock .info-section.info-section-hosting-vps .text-side {
  max-width: 620px;
}

/* Hosting para noticias: fondo de sección con imagen dedicada */
body.theme-rock .info-section.info-section-hosting-noticias {
  background: url("../bg/hosting-para-noticias.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.theme-rock .info-section.info-section-hosting-noticias .split-layout {
  justify-content: flex-end;
  min-height: 460px;
}

body.theme-rock .info-section.info-section-hosting-noticias .text-side {
  max-width: 620px;
}

/* Streaming audio: fondo de sección con imagen dedicada */
body.theme-rock .info-section.info-section-streaming-audio {
  background: url("../bg/radio-streaming.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.theme-rock .info-section.info-section-streaming-audio .split-layout {
  justify-content: flex-end;
  min-height: 460px;
}

body.theme-rock .info-section.info-section-streaming-audio .text-side {
  max-width: 620px;
}

/* Streaming video: fondo de sección con imagen dedicada */
body.theme-rock .info-section.info-section-streaming-video {
  background: url("../bg/video-streaming.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.theme-rock .info-section.info-section-streaming-video .split-layout {
  justify-content: flex-end;
  min-height: 460px;
}

body.theme-rock .info-section.info-section-streaming-video .text-side {
  max-width: 620px;
}

@media (max-width: 980px) {
  body.theme-rock .navbar {
    background: rgba(255, 255, 255, 0.96);
  }

  body.theme-rock .nav-links {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(31, 32, 35, 0.1);
  }
}

/* Design Experience v2 */
.design-experience-panel-v2 {
  padding: 56px 0 18px;
}

.design-experience-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(246, 248, 251, 0.94) 100%);
  border: 1px solid rgba(24, 30, 38, 0.08);
  border-radius: 26px;
  padding: 42px 38px;
  box-shadow: 0 22px 50px rgba(16, 23, 35, 0.08);
}

.design-experience-panel-v2 .design-experience-head {
  max-width: 920px;
  margin: 0 auto 28px;
  text-align: center;
}

.design-experience-panel-v2 .design-experience-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.06;
  margin-bottom: 14px;
}

.design-experience-panel-v2 .design-experience-head p {
  max-width: 760px;
  margin: 0 auto;
}

.design-experience-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 20px;
}

.design-experience-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 30, 38, 0.12);
  color: #505764;
  font-size: 0.88rem;
  font-weight: 500;
}

.design-experience-proof i {
  color: #ff6b00;
  font-size: 0.85rem;
}

.design-experience-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.design-experience-metric {
  background: #fff;
  border: 1px solid rgba(24, 30, 38, 0.09);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}

.design-experience-metric strong {
  display: block;
  font-size: 1.2rem;
  color: #20242b;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.design-experience-metric span {
  font-size: 0.84rem;
  color: #6a7280;
}

.design-experience-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.design-experience-card-v2 {
  background: #fff;
  border: 1px solid rgba(24, 30, 38, 0.1);
  border-radius: 14px;
  padding: 18px 16px 16px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.design-experience-card-v2:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 0, 0.26);
  box-shadow: 0 16px 26px rgba(16, 23, 35, 0.11);
}

.design-experience-card-v2 .design-experience-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 12px;
}

.design-experience-card-v2 h3 {
  font-size: 1.12rem;
  color: #20242b;
  margin: 0 0 8px;
  line-height: 1.18;
}

.design-experience-card-v2 p {
  margin: 0;
  color: #5d6573;
  line-height: 1.52;
  font-size: 0.98rem;
}

body.theme-rock .design-experience-panel-v2 {
  background: transparent;
}

body.theme-rock .design-experience-shell {
  background: linear-gradient(180deg, rgba(243, 245, 248, 0.9) 0%, rgba(236, 239, 243, 0.96) 100%);
  border: 1px solid rgba(31, 32, 35, 0.1);
}

body.theme-rock .design-experience-metric,
body.theme-rock .design-experience-card-v2 {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(31, 32, 35, 0.12);
}

body.theme-rock .design-experience-metric strong,
body.theme-rock .design-experience-card-v2 h3 {
  color: #1f2023;
}

body.theme-rock .design-experience-metric span,
body.theme-rock .design-experience-card-v2 p {
  color: #616774;
}

body.theme-rock .design-experience-proof span {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 32, 35, 0.14);
  color: #5d6471;
}

body.theme-rock .design-experience-card-v2:hover {
  border-color: rgba(255, 107, 0, 0.32);
  box-shadow: 0 16px 26px rgba(18, 21, 26, 0.12);
}

@media (max-width: 1080px) {
  .design-experience-metrics,
  .design-experience-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .design-experience-panel-v2 {
    padding: 36px 0 8px;
  }

  .design-experience-shell {
    border-radius: 18px;
    padding: 24px 16px;
  }

  .design-experience-metrics,
  .design-experience-grid-v2 {
    grid-template-columns: 1fr;
  }

  .design-experience-proof {
    justify-content: flex-start;
  }

  .design-experience-proof span {
    width: 100%;
    justify-content: flex-start;
  }

}

/* Header/Menu Redesign (Hostc-inspired) */
body.theme-rock .nav-wrapper {
  padding: 18px 20px 8px;
  background: transparent;
  backdrop-filter: none;
  z-index: 1300;
}

body.theme-rock .navbar {
  max-width: 1240px;
  height: 76px;
  border-radius: 18px;
  padding: 6px 6px 6px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(18, 22, 30, 0.9) 0%, rgba(12, 16, 24, 0.86) 100%);
  box-shadow: 0 18px 42px rgba(5, 8, 14, 0.42);
  backdrop-filter: blur(12px);
}

body.theme-rock .navbar .logo,
body.theme-rock .nav-links a,
body.theme-rock .nav-dropdown-toggle {
  color: #f4f6fa;
}

body.theme-rock .nav-links {
  gap: 26px;
}

@media (min-width: 981px) {
  body.theme-rock .nav-links {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 10px 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

body.theme-rock .nav-links a,
body.theme-rock .nav-dropdown-toggle {
  font-weight: 600;
  font-size: 0.96rem;
}

body.theme-rock .nav-links a:hover,
body.theme-rock .nav-links a.active,
body.theme-rock .nav-dropdown-toggle:hover,
body.theme-rock .has-mega-menu:hover .nav-dropdown-toggle,
body.theme-rock .has-mega-menu.is-open .nav-dropdown-toggle,
body.theme-rock .has-sub-menu:hover .nav-dropdown-toggle,
body.theme-rock .has-sub-menu.is-open .nav-dropdown-toggle {
  color: #ff8f2f;
}

body.theme-rock .nav-right-pill {
  height: 62px;
  border-radius: 14px;
  padding: 5px 10px 5px 14px;
  background: linear-gradient(145deg, #1f2532 0%, #151a26 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.theme-rock .btn-live-chat {
  border-radius: 12px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #ffd44d 0%, #ffbe2f 100%);
  color: #161a22;
  box-shadow: 0 10px 22px rgba(255, 190, 47, 0.26);
}

body.theme-rock .btn-cart {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: #202531;
}

body.theme-rock .mega-menu,
body.theme-rock .sub-menu {
  background: linear-gradient(180deg, rgba(20, 25, 34, 0.98) 0%, rgba(12, 17, 26, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 62px rgba(3, 7, 14, 0.5);
  backdrop-filter: blur(14px);
}

body.theme-rock .mega-menu::before,
body.theme-rock .sub-menu::before {
  background: rgba(20, 25, 34, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.theme-rock .mega-menu-item,
body.theme-rock .sub-menu-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-rock .mega-copy strong,
body.theme-rock .sub-menu-copy strong {
  color: #f4f6fa;
}

body.theme-rock .mega-copy small,
body.theme-rock .sub-menu-copy small {
  color: #b8c0cf;
}

body.theme-rock .mega-menu-panel {
  background: linear-gradient(150deg, #242d41 0%, #1c2334 56%, #171f2f 100%);
  border: 1px solid rgba(255, 159, 61, 0.28);
}

body.theme-rock .mega-menu-panel h3,
body.theme-rock .mega-benefits li {
  color: #f4f6fa;
}

body.theme-rock .mega-icon,
body.theme-rock .sub-menu-icon {
  background: linear-gradient(135deg, #ff6b00, #ff9f3d);
  color: #181b24;
  border: 0;
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.32);
}

@media (max-width: 980px) {
  body.theme-rock .nav-wrapper {
    padding: 12px 12px 4px;
  }

  body.theme-rock .navbar {
    height: 68px;
    border-radius: 14px;
    padding: 5px 8px 5px 16px;
  }

  body.theme-rock .nav-right-pill {
    height: 54px;
    border-radius: 12px;
    padding: 4px 8px 4px 10px;
  }
}

/* Nav estilo referencia #2 (replicado en todo el sitio) */
body.nav-v2 .nav-wrapper {
  background: transparent;
  padding: 0;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 1400;
  transition:
    top 0.32s ease,
    background 0.26s ease,
    box-shadow 0.26s ease,
    backdrop-filter 0.26s ease;
}

body.nav-v2 .navbar {
  width: min(1200px, calc(100% - 40px));
  max-width: none;
  height: 72px;
  background: #ffffff;
  border: 4px solid #f2f4f7;
  border-radius: 18px;
  box-shadow: none;
  padding: 4px 6px 4px 22px;
  transition:
    height 0.26s ease,
    width 0.26s ease,
    border-width 0.26s ease,
    border-radius 0.26s ease,
    box-shadow 0.26s ease,
    background 0.26s ease;
}

body.nav-v2 .navbar .logo {
  color: #0d1117;
  font-weight: 800;
  letter-spacing: 0;
}

body.nav-v2 .nav-links {
  margin: 0 auto;
  gap: 30px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

body.nav-v2 .nav-links > li > a,
body.nav-v2 .nav-links > li > .nav-dropdown-toggle {
  color: #2b2f36;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

body.nav-v2 .nav-links > li > a.active {
  color: #ff6b00;
}

body.nav-v2 .nav-links > li > a:hover,
body.nav-v2 .nav-links > li > .nav-dropdown-toggle:hover {
  color: #1f2430;
}

body.nav-v2 .mega-menu-item,
body.nav-v2 .sub-menu-item,
body.nav-v2 .mega-copy strong,
body.nav-v2 .mega-copy small,
body.nav-v2 .sub-menu-copy strong,
body.nav-v2 .sub-menu-copy small {
  text-transform: none;
  letter-spacing: 0;
}

body.nav-v2 .nav-right-pill {
  height: 58px;
  background: #2b2d31;
  border-radius: 16px;
  border: 1px solid rgba(255, 122, 24, 0.28);
  box-shadow: none;
  padding: 6px 8px;
  gap: 10px;
}

body.nav-v2 .btn-live-chat {
  background: linear-gradient(135deg, #ff6b00 0%, #ff9d2e 100%);
  color: #171717;
  box-shadow: none;
  border-radius: 14px;
  min-height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

body.nav-v2 .btn-cart {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #ff6b00;
}

body.nav-v2 .cart-count {
  background: #ff8a1f;
  color: #0f1117;
}

body.nav-v2.nav-scrolled .nav-wrapper {
  top: 0;
  background: rgba(238, 240, 244, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(31, 32, 35, 0.1);
}

body.nav-v2.nav-scrolled .navbar {
  width: min(1200px, calc(100% - 20px));
  height: 66px;
  border-width: 2px;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 26px rgba(31, 32, 35, 0.13);
}

@media (max-width: 980px) {
  body.nav-v2 .nav-wrapper {
    padding: 0;
  }

  body.nav-v2 .navbar {
    width: min(1200px, calc(100% - 20px));
    height: 66px;
    padding-left: 14px;
    border-width: 3px;
  }

  body.nav-v2 .nav-right-pill {
    height: 50px;
    padding: 4px 6px;
  }

  body.nav-v2 .btn-live-chat {
    display: none !important;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  body.nav-v2 .btn-cart {
    width: 38px;
    height: 38px;
  }

  body.nav-v2 .btn-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #ffffff;
    color: #2b2f36;
    margin-left: 0;
  }
}

/* Fixes globales de version movil */
.navbar {
  position: relative;
}

@media (max-width: 980px) {
  .nav-links {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 18px;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    z-index: 1301;
  }

  body.nav-v2 .btn-mobile-toggle {
    color: #2b2f36;
  }

  body.nav-v2 .nav-links {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(31, 32, 35, 0.14);
    box-shadow: 0 16px 30px rgba(31, 32, 35, 0.14);
  }

  body.nav-v2 .nav-links a,
  body.nav-v2 .nav-dropdown-toggle {
    color: #2b2f36;
  }

  body.nav-v2 .nav-links a.active,
  body.nav-v2 .nav-links a:hover,
  body.nav-v2 .nav-dropdown-toggle:hover,
  body.nav-v2 .has-mega-menu.is-open .nav-dropdown-toggle,
  body.nav-v2 .has-sub-menu.is-open .nav-dropdown-toggle {
    color: #ff6b00;
  }
}

@media (max-width: 640px) {
  body.theme-rock #caracteristicas {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  body.theme-rock #caracteristicas .section-header {
    margin-bottom: 20px;
  }

  body.theme-rock #caracteristicas .section-header h2 {
    font-size: 1.95rem;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  body.theme-rock #caracteristicas .section-header p {
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 34ch;
    margin: 0 auto;
  }

  body.theme-rock #caracteristicas .features-grid {
    gap: 12px;
    margin-bottom: 0;
  }

  body.theme-rock #caracteristicas .feature-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 6px;
    text-align: left;
    align-items: start;
    padding: 14px;
    border-radius: 14px;
  }

  body.theme-rock #caracteristicas .feature-card .icon-box {
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: 14px;
    grid-column: 1;
    grid-row: 1 / span 2;
    font-size: 1.2rem;
  }

  body.theme-rock #caracteristicas .feature-card h3 {
    grid-column: 2;
    margin: 2px 0 2px;
    font-size: 1.15rem;
    line-height: 1.25;
  }

  body.theme-rock #caracteristicas .feature-card p {
    grid-column: 2;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  body.theme-rock #caracteristicas .feature-card:hover {
    transform: none;
    box-shadow: 0 12px 22px rgba(31, 32, 35, 0.09);
  }

  body.nav-v2 .nav-wrapper {
    padding: 0;
  }

  body.nav-v2 .navbar {
    width: calc(100% - 10px);
    height: 62px;
    padding: 4px 6px 4px 12px;
    border-width: 2px;
    border-radius: 0 0 12px 12px;
    gap: 8px;
  }

  body.nav-v2 .navbar .logo {
    font-size: 1.75rem;
  }

  body.nav-v2 .nav-right-pill {
    margin-left: auto;
    height: 46px;
    padding: 4px 6px;
    gap: 6px;
    border-radius: 12px;
  }

  body.nav-v2 .btn-live-chat {
    display: none !important;
  }

  body.nav-v2 .btn-cart {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  body.nav-v2 .cart-count {
    min-width: 16px;
    height: 16px;
    font-size: 0.65rem;
  }

  body.nav-v2 .btn-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #ffffff;
    color: #2b2f36;
    margin-left: 0;
    font-size: 1rem;
  }

  body.theme-rock .domain-search .domain-search-wrapper {
    gap: 12px;
  }

  body.theme-rock .domain-search .tld-pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
    margin: 0;
  }

  body.theme-rock .domain-search .tld-item {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 10px;
    row-gap: 6px;
    text-align: left;
    padding: 12px 14px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(31, 32, 35, 0.07);
  }

  body.theme-rock .domain-search .tld-item .tld {
    grid-column: 1 / 2;
    font-size: 1.18rem;
    line-height: 1.05;
    margin: 0;
  }

  body.theme-rock .domain-search .tld-item .price {
    grid-column: 2 / 3;
    justify-self: end;
    font-size: 0.96rem;
    line-height: 1.1;
    margin: 0;
  }

  body.theme-rock .domain-search .tld-note {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 2px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  body.theme-rock .domain-search .tld-item .tag {
    position: static;
    transform: none;
    grid-column: 1 / -1;
    justify-self: start;
    margin-bottom: 2px;
    font-size: 0.66rem;
    padding: 3px 8px;
    border-radius: 6px;
  }

  body.theme-rock .pricing-grid {
    justify-items: center;
    gap: 14px;
  }

  body.theme-rock .pricing .price-card,
  body.theme-rock .pricing.subpage-section .price-card {
    width: min(100%, 312px);
    padding: 22px 16px;
    border-radius: 16px;
    min-height: 0;
  }

  body.theme-rock .pricing .card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }

  body.theme-rock .pricing .card-icon i {
    font-size: 1.35rem;
  }

  body.theme-rock .pricing .price-card h3 {
    font-size: 1.24rem;
    margin-bottom: 8px;
  }

  body.theme-rock .pricing .price-card p {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 14px;
    padding: 0;
  }

  body.theme-rock .pricing .features-list {
    margin-bottom: 14px;
    padding-left: 0;
  }

  body.theme-rock .pricing .features-list li {
    font-size: 0.88rem;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 6px;
  }

  body.theme-rock .pricing .card-footer {
    margin-top: 10px;
    padding-top: 10px;
    gap: 10px;
  }

  body.theme-rock .pricing .price-tag {
    font-size: 1.75rem;
  }

  body.theme-rock .pricing .price-tag .currency {
    font-size: 0.95rem;
    transform: none;
  }

  body.theme-rock .pricing .price-tag .period {
    font-size: 0.76rem;
  }

  body.theme-rock .pricing .btn-add-cart {
    min-height: 38px;
    padding: 0 14px;
  }

  body.theme-rock #inicio .subpage-hero-grid {
    gap: 20px;
  }

  body.theme-rock #inicio .subpage-copy h1 {
    font-size: 2.05rem;
    line-height: 1.15;
    margin: 12px 0 14px;
  }

  body.theme-rock #inicio .subpage-copy p {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 0;
  }

  body.theme-rock #inicio .subpage-actions {
    margin-top: 18px;
    align-items: flex-start;
  }

  body.theme-rock #inicio .subpage-actions .btn {
    width: auto;
    min-width: 210px;
    padding-left: 22px;
    padding-right: 22px;
  }

  body.theme-rock #inicio .hero-icons {
    margin-top: 16px;
    gap: 10px;
    row-gap: 8px;
    align-items: center;
    flex-wrap: wrap;
  }

  body.theme-rock #inicio .hero-icons-copy {
    flex-basis: 100%;
    margin-left: 0 !important;
    font-size: 0.94rem !important;
    line-height: 1.45;
  }

  body.theme-rock #inicio .hero-icons-stack {
    flex-basis: auto;
  }

  body.theme-rock #inicio .hero-image {
    margin-top: 8px;
    justify-content: center;
  }

  body.theme-rock #inicio .floating-image--hero-home {
    max-width: 350px;
  }

  body.theme-rock .hero,
  body.theme-rock .subpage-hero {
    padding-top: 138px;
  }

  body.theme-rock main section:not(.footer):not(.cta-banner) {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  body.theme-rock .footer {
    margin-top: 44px;
    padding-top: 0;
  }

  body.theme-rock .footer .cta-banner {
    top: -58px;
  }

  body.theme-rock .footer .cta-banner .banner-content {
    padding: 18px 16px;
    border-radius: 16px;
    gap: 14px;
  }

  body.theme-rock .footer .cta-banner .banner-text {
    gap: 10px;
    width: 100%;
  }

  body.theme-rock .footer .cta-banner .text-group h2 {
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  body.theme-rock .footer .cta-banner .text-group p {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  body.theme-rock .footer .cta-banner .btn-banner {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    padding: 0 18px;
  }

  body.theme-rock .footer .footer-content {
    padding-top: 8px;
  }

  body.theme-rock .footer .footer-grid {
    gap: 16px;
    margin-bottom: 24px;
  }

  body.theme-rock .footer .footer-col {
    padding: 14px 12px;
    border: 1px solid rgba(255, 138, 31, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
  }

  body.theme-rock .footer .footer-col h3,
  body.theme-rock .footer .footer-col h4 {
    margin-bottom: 12px;
    font-size: 1.3rem;
  }

  body.theme-rock .footer .footer-col ul li {
    margin-bottom: 9px;
  }

  body.theme-rock .footer .footer-col p,
  body.theme-rock .footer .footer-col ul li a {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  body.theme-rock .footer .footer-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  body.theme-rock .footer .footer-action-btn {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.96rem;
  }

  body.theme-rock .footer .footer-mini-note {
    margin-top: 12px;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  body.theme-rock .footer .contact-row {
    gap: 10px;
    margin-bottom: 26px;
  }

  body.theme-rock .footer .contact-box {
    min-height: 50px;
    padding: 12px;
    border-radius: 10px;
    gap: 10px;
  }

  body.theme-rock .footer .contact-box i {
    font-size: 1rem;
  }

  body.theme-rock .footer .contact-box span,
  body.theme-rock .footer .contact-box a {
    font-size: 0.9rem;
  }

  body.theme-rock .footer .footer-bottom {
    gap: 10px;
    font-size: 0.84rem;
    line-height: 1.45;
    text-align: center;
  }

  body.theme-rock .scroll-top {
    display: none;
  }

  body.theme-rock.domain-page .subpage-hero {
    padding: 126px 0 38px;
    overflow-x: hidden;
  }

  body.theme-rock.domain-page.nav-v2 .navbar {
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
    padding: 4px 6px 4px 12px;
    overflow: hidden;
  }

  body.theme-rock.domain-page.nav-v2 .navbar .logo {
    font-size: 1.55rem;
    letter-spacing: -0.02em;
  }

  body.theme-rock.domain-page.nav-v2 .nav-right-pill {
    height: 44px;
    padding: 4px 5px;
    gap: 5px;
    flex-shrink: 0;
  }

  body.theme-rock.domain-page.nav-v2 .btn-cart,
  body.theme-rock.domain-page.nav-v2 .btn-mobile-toggle {
    width: 32px;
    height: 32px;
  }

  body.theme-rock.domain-page #inicio .subpage-hero-grid {
    gap: 14px;
    min-width: 0;
  }

  body.theme-rock.domain-page #inicio .subpage-copy {
    min-width: 0;
    max-width: 100%;
  }

  body.theme-rock.domain-page #inicio .breadcrumb {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  body.theme-rock.domain-page #inicio .subpage-copy h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: 1.68rem;
    line-height: 1.12;
    margin: 10px 0 12px;
  }

  body.theme-rock.domain-page #inicio .subpage-copy p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  body.theme-rock.domain-page #inicio .subpage-actions {
    width: 100%;
    max-width: 280px;
    margin-top: 18px;
    gap: 12px;
    align-items: stretch;
  }

  body.theme-rock.domain-page #inicio .subpage-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.theme-rock.domain-page #inicio .subpage-badges {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    margin-top: 20px;
  }

  body.theme-rock.domain-page #inicio .subpage-badges span {
    width: min(100%, 260px);
    justify-content: center;
    padding: 9px 12px;
    font-size: 0.88rem;
    line-height: 1.25;
  }

  body.theme-rock.domain-page #inicio .subpage-card {
    margin-top: 6px;
    padding: 18px;
    border-radius: 18px;
  }

  body.theme-rock.domain-page #inicio .subpage-card h2 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  body.theme-rock.domain-page #inicio .subpage-card .mega-benefits {
    gap: 8px;
  }

  body.theme-rock.domain-page #inicio .subpage-card .mega-benefits li {
    font-size: 0.9rem;
    line-height: 1.35;
  }
}
