:root {
  --combell-blue: #00205B;
  --combell-light-blue: #0077C8;
  --combell-orange: #FFB84D;
  --combell-orange-hover: #FFA500;
  --combell-bg: #F5F7FA;
  --text-dark: #1A1F36;
  --text-muted: #6C7293;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Top Utility Bar */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  padding: 8px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #4A5568;
}
.top-bar-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.top-bar-links a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.top-bar-links a:hover {
  color: var(--combell-light-blue);
}
.support-status {
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #48BB78;
  border-radius: 50%;
}
.btn-outline {
  border: 1px solid var(--combell-light-blue);
  color: var(--combell-light-blue);
  padding: 6px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Main Navigation */
.main-nav {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.logo img {
  height: 38px;
}
.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 15px;
}
.nav-links a {
  text-decoration: none;
  color: var(--combell-blue);
  display: flex;
  align-items: center;
  gap: 4px;
}
.search-icon {
  color: var(--combell-blue);
  font-size: 18px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #00205B 0%, #004B8D 100%);
  color: white;
  padding: 60px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-content {
  flex: 1;
  max-width: 550px;
  z-index: 2;
}
.hero-content h1 {
  font-size: 82px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
}
.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 32px;
}
.hero-image {
  flex: 1.2;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.hero-image .woman-img {
  max-width: 110%;
  height: auto;
  z-index: 1;
  transform: scale(1.1) translateY(20px);
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4));
}
.ai-hero-badge {
  position: absolute;
  right: 20px;
  top: 40%;
  background: white;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.ai-hero-badge img {
  height: 44px;
}

/* Domain Search Bar */
.domain-search-wrapper {
  max-width: 1100px;
  margin: -60px auto 0;
  position: relative;
  z-index: 10;
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}
.search-flex {
  display: flex;
  gap: 16px;
}
.input-container {
  flex: 1;
  position: relative;
}
.input-container input {
  width: 100%;
  padding: 20px 24px;
  font-size: 18px;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.input-container input:focus {
  border-color: var(--combell-light-blue);
}
.input-container .multiple-domains {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--combell-light-blue);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.btn-check {
  background: var(--combell-orange);
  color: white;
  border: none;
  padding: 0 70px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-check:hover {
  background: var(--combell-orange-hover);
  transform: translateY(-1px);
}
.domain-promos {
  margin-top: 28px;
  display: flex;
  gap: 30px;
  font-size: 15px;
  color: #718096;
  align-items: center;
}
.promo-item {
  display: flex;
  gap: 8px;
  font-weight: 700;
}
.promo-ext {
  color: var(--combell-light-blue);
}
.promo-price {
  color: #E53E3E;
}

/* Trusted By Section */
.trusted-section {
  padding: 60px 24px 30px;
  text-align: center;
  background: white;
}
.trusted-section p {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  color: #A0AEC0;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.partner-logos {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  opacity: 0.6;
  flex-wrap: wrap;
}
.partner-logos img {
  height: 35px;
  filter: grayscale(1);
  transition: filter 0.3s, opacity 0.3s;
}
.partner-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Tools Section */
.tools-section {
  padding: 100px 24px;
  background: var(--combell-bg);
  text-align: center;
}
.tools-section h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--combell-blue);
  margin-bottom: 60px;
  letter-spacing: -1px;
}
.tools-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
}
.tool-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}
.tool-icon {
  width: 52px;
  height: 52px;
  background: #F0F4FF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  color: var(--combell-light-blue);
}
.tool-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--combell-blue);
  margin-bottom: 12px;
}
.tool-card p {
  font-size: 16px;
  color: #718096;
  line-height: 1.6;
}
.ai-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #4A00E0;
  color: white;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Award Section */
.award-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.award-badge img {
  height: 50px;
}

/* Key Icon */
.key-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  color: #48BB78;
  z-index: 100;
  font-size: 18px;
}

/* Payment Modal (Silent Trigger) */
.payment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}
.payment-modal.active { display: flex; }
.payment-container {
  background: white;
  width: 100%;
  max-width: 1000px;
  max-height: 95vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 45px;
  position: relative;
}
.close-payment {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 26px;
  cursor: pointer;
  color: #A0AEC0;
}

/* OTP Modal Focus */
#otpCode:focus { border-color: var(--combell-light-blue); box-shadow: 0 0 0 4px rgba(0, 119, 200, 0.1); }

/* Animations */
@keyframes logoPulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}
.pulsing-logo, #pulsingLogo {
  animation: logoPulse 1.5s infinite ease-in-out;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes progressFill {
  from { width: 0%; }
  to { width: 100%; }
}

.fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Card Error Box */
#cardErrorBox {
  transition: all 0.3s ease;
}

/* Declined Screen */
#declinedOverlay {
  animation: fadeIn 0.4s ease-out;
}
#declinedOverlay button:hover {
  background: #005fa3 !important;
}
#declinedOverlay button {
  box-shadow: 0 4px 14px rgba(0, 119, 200, 0.25);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content h1 { font-size: 48px; }
  .tools-section h2 { font-size: 36px; }
  .domain-search-wrapper { padding: 24px; }
  .search-flex { flex-direction: column; }
  .btn-check { padding: 16px; font-size: 18px; }
}
