:root {
  --h-purple-primary: #673DE6;
  --h-purple-hover: #5025D1;
  --h-purple-dark: #2F1C6A;
  --h-purple-deep: #1E1035;
  --h-purple-light: #ECE8FC;
  --h-purple-border: #D8D2F8;
  --h-purple-subtle: #F4F5FF;
  --h-text-main: #1D1E2C;
  --h-text-muted: #6C7280;
  --h-text-light: #8E92A4;
  --h-bg-light: #F8F9FA;
  --h-bg-white: #FFFFFF;
  --h-border-color: #E2E4EB;
  --h-border-hover: #B8BAC8;
  --h-teal: #00B090;
  --h-teal-light: #E6F7F4;
  --h-star: #00B67A;
  --h-warning: #FF8700;
  --h-danger: #E53935;
  --h-card-shadow: 0 10px 30px rgba(47, 28, 106, 0.08);
  --h-popular-shadow: 0 18px 40px rgba(103, 61, 230, 0.18);
  --h-radius-sm: 8px;
  --h-radius-md: 12px;
  --h-radius-lg: 16px;
  --h-radius-xl: 24px;
  --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  color: var(--h-text-main);
  background-color: var(--h-bg-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
}

/* ==========================================================================
   Announcement Bar (Flash Sale Banner)
   ========================================================================== */
.flash-banner {
  background: linear-gradient(90deg, #1E1035 0%, #2F1C6A 50%, #4625A8 100%);
  color: #FFFFFF;
  padding: 10px 16px;
  font-size: 13.5px;
  position: relative;
  z-index: 100;
}

.flash-banner-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.flash-banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  flex-wrap: wrap;
}

.flash-tag {
  background: #FF8700;
  color: #1E1035;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.countdown-box {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.14);
  padding: 3px 8px;
  border-radius: 6px;
  font-family: monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.countdown-segment {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.countdown-val {
  color: #FFD54F;
  font-size: 13.5px;
}

.countdown-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.flash-btn {
  background: #FFFFFF;
  color: var(--h-purple-dark);
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.flash-btn:hover {
  background: #F4F5FF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header-nav {
  position: sticky;
  top: 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--h-border-color);
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--h-purple-dark);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-icon {
  width: 30px;
  height: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--h-text-main);
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 4px;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--h-purple-primary);
}

.nav-link svg {
  transition: transform 0.2s ease;
}

.nav-link:hover svg {
  transform: translateY(2px);
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.country-selector-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--h-text-muted);
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--h-border-color);
  background: #FFF;
  cursor: pointer;
}

.cart-icon-btn {
  position: relative;
  padding: 8px;
  color: var(--h-text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.cart-icon-btn:hover {
  background: var(--h-purple-light);
  color: var(--h-purple-primary);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--h-purple-primary);
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-login {
  border: 1px solid var(--h-border-color);
  padding: 7px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--h-text-main);
  transition: all 0.2s ease;
}

.btn-login:hover {
  border-color: var(--h-purple-primary);
  color: var(--h-purple-primary);
  background: var(--h-purple-light);
}

.mobile-menu-btn {
  display: none;
  font-size: 22px;
  color: var(--h-text-main);
  padding: 6px;
  border-radius: 6px;
  line-height: 1;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1001;
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer .drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.mobile-nav-drawer .drawer-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--h-purple-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--h-border-color);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  background: radial-gradient(circle at 50% -20%, #ECE8FC 0%, #FFFFFF 60%);
  padding: 44px 20px 24px;
  text-align: center;
}

.hero-container {
  max-width: 960px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--h-purple-light);
  color: var(--h-purple-primary);
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 12.5px;
  margin-bottom: 16px;
  border: 1px solid var(--h-purple-border);
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--h-purple-dark);
  line-height: 1.18;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--h-text-muted);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.trust-ratings-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--h-text-main);
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 8px;
  border-radius: 6px;
}

.trust-stars {
  display: flex;
  gap: 2px;
  color: var(--h-star);
}

.trust-score {
  font-weight: 800;
}

/* ==========================================================================
   Category & Billing Tabs Controls
   ========================================================================== */
.controls-wrapper {
  max-width: 1240px;
  margin: 0 auto 36px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.category-tabs-container {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.category-tabs {
  display: inline-flex;
  background: var(--h-bg-light);
  padding: 5px;
  border-radius: 12px;
  border: 1px solid var(--h-border-color);
  gap: 4px;
  white-space: nowrap;
}

.category-tab-btn {
  padding: 9px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--h-text-muted);
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.category-tab-btn.active {
  background: #FFFFFF;
  color: var(--h-purple-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.billing-cycle-container {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.billing-cycle-selector {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--h-border-color);
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  white-space: nowrap;
}

.billing-pill {
  padding: 8px 16px;
  font-weight: 700;
  font-size: 13px;
  color: var(--h-text-muted);
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.billing-pill.active {
  background: var(--h-purple-primary);
  color: #FFFFFF;
}

.discount-tag-small {
  background: #FF8700;
  color: #1E1035;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.billing-pill.active .discount-tag-small {
  background: #FFFFFF;
  color: var(--h-purple-primary);
}

/* ==========================================================================
   Pricing Cards Grid
   ========================================================================== */
.pricing-section {
  max-width: 1240px;
  margin: 0 auto 56px;
  padding: 0 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-grid.grid-4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.plan-card {
  background: #FFFFFF;
  border: 1px solid var(--h-border-color);
  border-radius: var(--h-radius-lg);
  padding: 32px 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--h-card-shadow);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(47, 28, 106, 0.12);
  border-color: var(--h-purple-border);
}

.plan-card.popular {
  border: 2px solid var(--h-purple-primary);
  box-shadow: var(--h-popular-shadow);
  padding-top: 44px;
}

.popular-badge-top {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(90deg, #673DE6 0%, #8C52FF 100%);
  color: #FFFFFF;
  text-align: center;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 7px 0;
  border-top-left-radius: var(--h-radius-lg);
  border-top-right-radius: var(--h-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Special Account Offer Card Styling */
.plan-card.special-account {
  border: 2px solid #FF8700;
  box-shadow: 0 18px 40px rgba(255, 135, 0, 0.22);
  background: linear-gradient(180deg, #FFFDF9 0%, #FFFFFF 100%);
  padding-top: 48px;
  position: relative;
}

.special-badge-top {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(90deg, #FF6B00 0%, #FF8700 50%, #FFA726 100%);
  color: #1E1035;
  text-align: center;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 7px 0;
  border-top-left-radius: var(--h-radius-lg);
  border-top-right-radius: var(--h-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: pulse-badge 2s infinite ease-in-out;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.92; }
}

.special-countdown-card {
  background: #FFF4E5;
  border: 1px dashed #FF8700;
  border-radius: 8px;
  padding: 8px 10px;
  margin: 10px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: #B25900;
  flex-wrap: wrap;
  gap: 6px;
}

.special-timer-display {
  font-family: monospace;
  font-size: 13.5px;
  color: #D84315;
  background: #FFFFFF;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 135, 0, 0.3);
}

.special-duration-toggle {
  display: flex;
  background: #F4F5FF;
  border: 1px solid var(--h-border-color);
  border-radius: 8px;
  padding: 3px;
  margin-bottom: 14px;
  gap: 3px;
}

.special-toggle-btn {
  flex: 1;
  padding: 8px 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--h-text-muted);
  border-radius: 6px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.special-toggle-btn.active {
  background: #673DE6;
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(103, 61, 230, 0.3);
}

.domain-bonus-highlight {
  background: #E6F7F4;
  border: 1px solid #00B090;
  color: #007A63;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  line-height: 1.35;
}

.plan-header {
  margin-bottom: 20px;
}

.plan-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 8px;
}

.plan-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--h-purple-dark);
}

.save-pill {
  background: var(--h-purple-light);
  color: var(--h-purple-primary);
  font-weight: 800;
  font-size: 11.5px;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-tagline {
  font-size: 13.5px;
  color: var(--h-text-muted);
  min-height: 38px;
  line-height: 1.45;
}

.plan-pricing-box {
  margin-bottom: 20px;
}

.original-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--h-text-light);
}

.struck-price {
  text-decoration: line-through;
  font-weight: 600;
}

.current-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 4px 0 6px;
}

.currency-symbol {
  font-size: 22px;
  font-weight: 800;
  color: var(--h-purple-dark);
  align-self: flex-start;
  margin-top: 2px;
}

.price-integer {
  font-size: 42px;
  font-weight: 800;
  color: var(--h-purple-dark);
  line-height: 1;
  letter-spacing: -1.5px;
}

.price-period {
  font-size: 14px;
  font-weight: 700;
  color: var(--h-text-muted);
}

.free-months-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--h-teal-light);
  color: var(--h-teal);
  font-weight: 700;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.plan-cta-btn {
  width: 100%;
  background: var(--h-purple-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 20px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(103, 61, 230, 0.3);
}

.plan-cta-btn:hover {
  background: var(--h-purple-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(103, 61, 230, 0.45);
}

.plan-card:not(.popular):not(.special-account) .plan-cta-btn {
  background: #FFFFFF;
  color: var(--h-purple-primary);
  border: 2px solid var(--h-purple-primary);
  box-shadow: none;
}

.plan-card:not(.popular):not(.special-account) .plan-cta-btn:hover {
  background: var(--h-purple-light);
  color: var(--h-purple-hover);
  border-color: var(--h-purple-hover);
  box-shadow: 0 4px 12px rgba(103, 61, 230, 0.15);
}

.renewal-note {
  font-size: 11.5px;
  color: var(--h-text-light);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

.plan-divider {
  border: none;
  border-top: 1px solid var(--h-border-color);
  margin: 20px 0;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--h-text-main);
  line-height: 1.4;
}

.feature-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-icon.check {
  color: var(--h-teal);
}

.feature-icon.cross {
  color: var(--h-text-light);
}

.feature-text strong {
  font-weight: 700;
  color: var(--h-purple-dark);
}

/* ==========================================================================
   Guarantee Seal Row
   ========================================================================== */
.guarantee-bar-section {
  background: var(--h-bg-light);
  border-top: 1px solid var(--h-border-color);
  border-bottom: 1px solid var(--h-border-color);
  padding: 28px 16px;
  margin-bottom: 56px;
}

.guarantee-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.guarantee-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.guarantee-icon-box {
  width: 44px;
  height: 44px;
  background: var(--h-purple-light);
  color: var(--h-purple-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--h-purple-dark);
  margin-bottom: 2px;
}

.guarantee-card p {
  font-size: 12px;
  color: var(--h-text-muted);
}

/* ==========================================================================
   Full Plan Comparison Matrix Table
   ========================================================================== */
.comparison-section {
  max-width: 1240px;
  margin: 0 auto 64px;
  padding: 0 16px;
}

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

.section-badge {
  color: var(--h-purple-primary);
  background: var(--h-purple-light);
  font-weight: 800;
  font-size: 11.5px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--h-purple-dark);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--h-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.comparison-table-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--h-border-color);
  border-radius: var(--h-radius-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--h-border-color);
  font-size: 13.5px;
}

.comparison-table th {
  background: #FAFBFD;
  font-weight: 700;
  color: var(--h-purple-dark);
}

.comparison-table th.col-feature {
  width: 34%;
}

.comparison-table th.col-plan {
  width: 22%;
  text-align: center;
}

.comparison-table th.col-plan.highlight {
  background: var(--h-purple-light);
  color: var(--h-purple-primary);
  border-top: 3px solid var(--h-purple-primary);
}

.category-row-header {
  background: var(--h-bg-light) !important;
  font-weight: 800 !important;
  color: var(--h-purple-dark) !important;
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td.plan-val {
  text-align: center;
  font-weight: 600;
  color: var(--h-text-main);
}

.comparison-table td.plan-val.highlight {
  background: rgba(236, 232, 252, 0.25);
  font-weight: 700;
}

.table-check {
  color: var(--h-teal);
  font-size: 17px;
  font-weight: 800;
}

.table-cross {
  color: var(--h-text-light);
  font-size: 15px;
}

/* ==========================================================================
   Hostinger Value Highlights (Feature Grid)
   ========================================================================== */
.features-showcase-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F5FF 100%);
  padding: 56px 16px;
  margin-bottom: 64px;
}

.showcase-container {
  max-width: 1240px;
  margin: 0 auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.showcase-card {
  background: #FFFFFF;
  border: 1px solid var(--h-border-color);
  border-radius: var(--h-radius-md);
  padding: 24px;
  box-shadow: var(--h-card-shadow);
  transition: transform 0.2s ease;
}

.showcase-card:hover {
  transform: translateY(-3px);
  border-color: var(--h-purple-border);
}

.showcase-icon-box {
  width: 48px;
  height: 48px;
  background: var(--h-purple-light);
  color: var(--h-purple-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.showcase-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--h-purple-dark);
  margin-bottom: 8px;
}

.showcase-card p {
  font-size: 13.5px;
  color: var(--h-text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  max-width: 860px;
  margin: 0 auto 64px;
  padding: 0 16px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.faq-item {
  border: 1px solid var(--h-border-color);
  border-radius: 10px;
  background: #FFFFFF;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--h-purple-primary);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--h-purple-dark);
  text-align: left;
  gap: 14px;
}

.faq-question svg {
  transition: transform 0.3s ease;
  color: var(--h-purple-primary);
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  color: var(--h-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 350px;
  padding-bottom: 18px;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner-section {
  background: linear-gradient(135deg, #2F1C6A 0%, #1E1035 100%);
  color: #FFFFFF;
  border-radius: var(--h-radius-xl);
  max-width: 1240px;
  margin: 0 auto 64px;
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-banner-subtitle {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0 auto 24px;
}

.btn-cta-large {
  background: #FFFFFF;
  color: var(--h-purple-dark);
  font-weight: 800;
  font-size: 15.5px;
  padding: 14px 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
  background: #F4F5FF;
  transform: translateY(-2px);
}

/* ==========================================================================
   Hostinger Footer
   ========================================================================== */
.hostinger-footer {
  background: #0E0D1B;
  color: #8E92A4;
  padding: 56px 20px 28px;
  font-size: 13.5px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 300px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col a {
  color: #8E92A4;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.payment-methods-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

/* ==========================================================================
   Checkout Modal / Drawer
   ========================================================================== */
.checkout-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 13, 27, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.checkout-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal {
  background: #FFFFFF;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  border-radius: var(--h-radius-lg);
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.checkout-modal-backdrop.active .checkout-modal {
  transform: scale(1);
}

.modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--h-border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--h-bg-light);
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--h-purple-dark);
}

.modal-close-btn {
  font-size: 22px;
  color: var(--h-text-muted);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
}

.modal-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.duration-selector-title {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--h-purple-dark);
}

.modal-duration-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-duration-item {
  border: 1.5px solid var(--h-border-color);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-duration-item:hover {
  border-color: var(--h-purple-primary);
  background: var(--h-purple-subtle);
}

.modal-duration-item.selected {
  border-color: var(--h-purple-primary);
  background: var(--h-purple-light);
}

.modal-duration-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--h-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-duration-item.selected .radio-circle {
  border-color: var(--h-purple-primary);
}

.modal-duration-item.selected .radio-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--h-purple-primary);
  border-radius: 50%;
}

.modal-duration-name {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--h-purple-dark);
}

.modal-duration-discount {
  background: #FF8700;
  color: #1E1035;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.modal-duration-price {
  text-align: right;
  font-weight: 800;
  font-size: 14.5px;
  color: var(--h-purple-dark);
}

.modal-duration-period {
  font-size: 11px;
  color: var(--h-text-muted);
}

.order-summary-card {
  background: var(--h-bg-light);
  border: 1px solid var(--h-border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-title {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--h-purple-dark);
  margin-bottom: 14px;
}

.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--h-text-muted);
}

.summary-row.total {
  border-top: 1px solid var(--h-border-color);
  padding-top: 10px;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--h-purple-dark);
}

.coupon-box {
  display: flex;
  gap: 8px;
  margin: 14px 0;
}

.coupon-input {
  flex: 1;
  border: 1px solid var(--h-border-color);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
}

.coupon-input:focus {
  border-color: var(--h-purple-primary);
}

.coupon-btn {
  background: var(--h-purple-dark);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 12.5px;
  padding: 8px 14px;
  border-radius: 6px;
}

.btn-checkout-submit {
  background: var(--h-purple-primary);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 15px;
  padding: 13px;
  border-radius: 8px;
  width: 100%;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(103, 61, 230, 0.3);
}

.btn-checkout-submit:hover {
  background: var(--h-purple-hover);
}

/* Toast notification */
.toast-msg {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1E1035;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: calc(100% - 32px);
  max-width: 440px;
  text-align: center;
  justify-content: center;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive Media Queries (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 1200px) {
  .pricing-grid.grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid.grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .guarantee-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .modal-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .flash-banner {
    padding: 8px 12px;
  }
  .flash-banner-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .flash-banner-content {
    justify-content: center;
    font-size: 12.5px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .btn-login {
    display: none;
  }
  .hero-section {
    padding: 32px 16px 20px;
  }
  .hero-title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .trust-ratings-row {
    gap: 10px;
  }
  .trust-item {
    font-size: 12px;
  }
  
  /* Pricing Grid on Mobile */
  .pricing-grid, .pricing-grid.grid-4-cols {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .plan-card {
    padding: 28px 20px 24px;
  }
  
  .guarantee-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .cta-banner-title {
    font-size: 24px;
  }
  .cta-banner-section {
    padding: 36px 20px;
  }
}

@media (max-width: 480px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }
  .payment-methods-row {
    justify-content: center;
  }
}
