/* --- Base Reset --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #0f0f0f;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary: #6366f1;
    --text: #0f172a;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --success: #10b981;
}

/* ===== CLEAN TECH HERO ===== */
.hero-clean {
    min-height: 100vh;
    background: var(--bg);
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    transition: all 0.2s ease;
}

.hero-badge:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--text);
    color: white;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--text);
    background: var(--bg-alt);
}

.hero-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.price-label { color: var(--text-light); font-size: 1rem; }
.price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}
.price-period { color: var(--text-light); font-size: 1rem; }
.price-guarantee {
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 48px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 600px;
    margin: 60px auto 0;
    padding: 32px;
    background: var(--bg-alt);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.stat { text-align: center; }
.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.regular-price {
    font-size: 0.5rem;
    text-align: center;
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

@media (max-width: 768px) {
    .hero-clean { padding: 100px 20px 60px; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
    .hero-stats { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
    .hero-features { gap: 20px; flex-direction: column; align-items: center; }
    .price-amount { font-size: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    .badge-dot { animation: none; }
    .btn:hover { transform: none; }
}
/* --- 🎨 HOSTAONE THEME VARIABLES --- */
:root {
    --primary-start: #7c3aed;
    --primary-end: #9c63f1;
    --primary: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    --primary-solid: #7c3aed;
    --primary-hover: #6d28d9;
    --primary-light: #f5f3ff;
    --primary-glow: rgba(124, 58, 237, 0.15);
    
    --text: #0f0f0f;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --bg-card: #ffffff;
    --success: #10b981;
    --guarantee-bg: #ecfdf5;
    --guarantee-text: #065f46;
    
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px var(--primary-glow);
    --shadow-lg: 0 16px 40px rgba(124, 58, 237, 0.18);
    --btn-radius: 8px;
    --btn-shadow: 0 4px 14px var(--primary-glow);
    --section-bg: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    --nav-height: 70px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   NAVBAR SECTION
   ================================ */
.hosta-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}
.hosta-navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
    border-bottom-color: rgba(124, 58, 237, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px var(--primary-glow);
}
.nav-logo-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}
.brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav-link {
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover {
    color: var(--primary-solid);
    background: var(--primary-light);
}
.nav-link.active {
    color: var(--primary-solid);
    background: var(--primary-light);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-cta {
    margin-left: 20px;
    padding: 11px 24px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--btn-radius);
    transition: var(--transition);
    box-shadow: var(--btn-shadow);
    white-space: nowrap;
    border: 2px solid transparent;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
}
.nav-toggle:hover {
    background: var(--primary-light);
}
.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary-solid);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--primary-solid);
}

.nav-mobile {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
}
.nav-mobile.active {
    display: flex;
}

.nav-mobile .nav-link {
    padding: 14px 16px;
    display: block;
    font-weight: 600;
}
.nav-mobile .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
}

/* ================================
   🚀 AMAZING HERO SECTION
   ================================ */
.hero-amazing {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 50%, #f3e8ff 100%);
    overflow: hidden;
}

/* Background Effects */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(156, 99, 241, 0.25) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
}

/* Container */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Content Side */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
    color: var(--primary-solid);
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    backdrop-filter: blur(10px);
}

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

.hero-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 8px;
}

.hero-short-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* CTA Box */
.hero-cta-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.from-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-solid);
    font-family: 'Poppins', sans-serif;
}

.price-amount .period {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.btn-hero-primary {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.4);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-secondary {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--primary-solid);
    color: var(--primary-solid);
    background: rgba(124, 58, 237, 0.05);
    transform: translateY(-3px);
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item svg {
    color: var(--success);
}

/* Visual Side */
.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25);
}

.image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-main-img {
    transform: scale(1.03);
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon.speed {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-solid);
}

.stat-icon.security {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
/* ================================
   DOMAIN SEARCH SECTION - CLEAN MINIMAL UI
   ================================ */
.domain-search-section {
    padding: 60px 20px 50px;
    background: linear-gradient(180deg, #faf9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.domain-wrap {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* Header Styles */
.domain-header {
    text-align: center;
    margin-bottom: 35px;
}
.domain-header h2 {
    font-size: clamp(1.6rem, 5vw, 2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.domain-header h2 span {
    color: #7c3aed;
    background: none;
    -webkit-text-fill-color: #7c3aed;
}
.domain-header p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

/* Search Box - Clean & Minimal */
.domain-search-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}
.domain-search-box:hover,
.domain-search-box:focus-within {
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
    border-color: #a78bfa;
}

.domain-search-form {
    display: flex;
    gap: 6px;
    width: 100%;
    align-items: center;
}

.domain-input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #1a1a2e;
    background: transparent;
}
.domain-input::placeholder {
    color: #9ca3af;
}

.domain-search-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.domain-search-btn:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}
.domain-search-btn svg {
    width: 18px;
    height: 18px;
}

/* Suggestion Pills */
.domain-suggestions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}
.suggestion-pill {
    padding: 8px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.suggestion-pill:hover {
    background: #f3f4f6;
    border-color: #a78bfa;
    color: #7c3aed;
    transform: translateY(-2px);
}
.suggestion-pill .price {
    color: #6b7280;
    font-weight: 400;
}

/* Trust Badges */
.domain-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}
.domain-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #374151;
    font-weight: 500;
}
.domain-trust-item svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
}
/* Animated Placeholder Styles */
.animated-placeholder {
    position: relative;
    transition: all 0.3s ease;
}

.animated-placeholder::placeholder {
    color: #6b7280;
    font-weight: 500;
    transition: opacity 0.4s ease;
    animation: placeholderFade 4s ease-in-out infinite;
}

@keyframes placeholderFade {
    0%, 100% { opacity: 1; }
    45% { opacity: 1; }
    50% { opacity: 0; }
    55% { opacity: 1; }
}

/* Optional: Glowing effect on focus */
.domain-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    outline: none;
}

/* Typing cursor effect (optional premium look) */
.placeholder-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: #3b82f6;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ================================
   📱 MOBILE RESPONSIVE
   ================================ */
@media (max-width: 768px) {
    .domain-search-section {
        padding: 40px 16px 30px;
    }
    
    .domain-search-box {
        flex-direction: column;
        padding: 12px;
    }
    
    .domain-search-form {
        flex-direction: column;
        width: 100%;
    }
    
    .domain-input {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
    
    .domain-search-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
    
    .domain-suggestions {
        gap: 8px;
    }
    
    .suggestion-pill {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .domain-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .domain-header h2 {
        font-size: 1.4rem;
    }
    
    .domain-header p {
        font-size: 0.9rem;
    }
    
    .suggestion-pill .price {
        display: block;
        margin-top: 2px;
    }
}

/* Placeholder Animation */
@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.domain-input::placeholder {
    animation: blink-cursor 1.2s step-end infinite;
}
/* ================================
   FEATURES SECTION
   ================================ */
.features-section {
    padding: 80px 16px;
    background: var(--section-bg);
    position: relative;
    overflow: hidden;
}
.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(124, 58, 237, 0.06) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}
.features-wrap {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}
.features-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}
.features-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 10px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.feature-card:hover {
    border-color: var(--primary-solid);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon-box {
    background: var(--primary);
    transform: scale(1.08);
}
.feature-icon-box svg {
    width: 22px;
    height: 22px;
    color: var(--primary-solid);
    stroke-width: 1.5px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon-box svg {
    color: #fff;
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.feature-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Trust Stats Bar */
.trust-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 30px;
    background: var(--primary-light);
    border-radius: var(--radius);
    border: 1px solid rgba(124, 58, 237, 0.2);
    margin-top: 50px;
}
.stat-item {
    text-align: center;
    padding: 10px 6px;
}
.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-solid);
    margin-bottom: 6px;
    display: block;
}
.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}
/* Premium Card Styling */
.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 10px 40px -10px rgba(124, 58, 237, 0.15);
    overflow: hidden;
}

/* Premium Hover Effect */
.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px -15px rgba(124, 58, 237, 0.3),
                0 10px 30px -10px rgba(0, 0, 0, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

/* Premium Card Name Styling */
.card-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0% auto;
    text-align: center;
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Tagline */
.card-tagline {
    font-size: 0.70rem;
    color: #6b7280;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 400;
}

/* Premium Price Box */
.price-box {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 12px;
    padding: 15px;
    width: 75%;
    margin: 0% auto;
    margin-bottom: 10px;
    text-align: center;
    border: 2px solid rgba(124, 58, 237, 0.2);
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.price {
    position: relative;
    z-index: 1;
}

.curr {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7c3aed;
    vertical-align: top;
}

.price-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: #7c3aed;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.period {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 8px;
    font-weight: 500;
}

/* Premium Feature List */
.feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    space-y: 15px;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: #374151;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

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

.feat-list li:hover {
    color: #7c3aed;
    transform: translateX(5px);
}

.feat-icon {
    width: 20px;
    height: 20px;
    color: #7c3aed;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(124, 58, 237, 0.3));
}

/* Premium Learn More Button */
.btn-learn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-learn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-learn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.btn-learn:hover::before {
    left: 100%;
}

/* Annual Price Link Styling */
.feat-list li strong a {
    color: #7c3aed;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #7c3aed;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.feat-list li strong a:hover {
    color: #6d28d9;
    border-bottom-color: #6d28d9;
    transform: scale(1.05);
    display: inline-block;
}

/* Popular Badge (if needed) */
.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .price-val {
        font-size: 2.5rem;
    }
    
    .card-name {
        font-size: 1.5rem;
    }
}

/* Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Section Header */
.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.pricing-header h2 span {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-section {
    padding: 80px 16px;
    background: var(--section-bg);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.about-content {
    flex: 1;
    min-width: 300px;
}
.about-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-light);
    color: var(--primary-solid);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
.about-title span {
    color: var(--primary-solid);
}
.about-description {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}
.about-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.check-icon {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--text-dark);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.about-btn:hover {
    background: var(--primary-solid);
}
.about-visual {
    flex: 1;
    min-width: 300px;
}
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border);
}
.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-solid);
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* ================================
   PAYMENT SECTION
   ================================ */
.payment-section {
    padding: 60px 16px;
    background: #fafafa;
    border-top: 1px solid var(--border);
}
.payment-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.payment-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.payment-security svg {
    width: 20px;
    height: 20px;
    color: var(--success);
}
.payment-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.payment-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.payment-trust svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

/* ================================
   FOOTER
   ================================ */
.footer-wrapper {
    background: #fff;
    border-top: 1px solid var(--border);
    padding-top: 60px;
}
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}
.footer-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.newsletter-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
}
.newsletter-btn {
    padding: 10px 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-btn:hover {
    background: var(--primary-hover);
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-link:hover {
    color: var(--primary-solid);
}
.footer-bottom {
    background: #fafafa;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}
.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.copyright a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}
.footer-legal {
    display: flex;
    gap: 20px;
}
.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
}
.footer-legal a:hover {
    color: var(--primary-solid);
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top-btn {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--btn-shadow);
}
.back-to-top-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 992px) {
    .nav-menu { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    .hero-main-title {
        font-size: 3.5rem;
    }
    
    /* Migration Section Responsive */
    .cpanel-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cpanel-image {
        order: -1;
    }
    
    /* Chat Section Responsive */
    .chat-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .chat-visual {
        justify-content: center;
    }
    
    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .domain-header h2, .pricing-header h2, .features-header h2, .tech-header h2, .about-title, .chat-title { 
        font-size: 1.4rem; 
    }
    .pricing-grid, .features-grid, .tech-grid { 
        grid-template-columns: 1fr; 
    }
    .footer-links { gap: 15px; }
    .trust-stats-bar { grid-template-columns: repeat(2, 1fr); }
    
    /* About Section */
    .about-section {
        flex-direction: column;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Migration Section Mobile */

    .cpanel-content h2 {
        font-size: 1.8rem;
    }
    .cpanel-image img {
        height: auto !important;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .domain-search-section { padding: 60px 12px 40px; }
    .domain-search-box {
        flex-direction: column;
        padding: 14px;
    }
    .domain-search-btn {
        width: 100%;
        justify-content: center;
    }
    .domain-suggestions { gap: 8px; }
    .suggestion-pill { padding: 6px 12px; font-size: 0.8rem; }
    .domain-trust { gap: 15px; }
    .hosta-pricing, .features-section{ padding: 50px 12px; }
    .pricing-card, .feature-card, .tech-card { padding: 24px 20px; }
    .brand { font-size: 20px; }
    .nav-logo-icon { width: 28px; height: 28px; }
    .nav-logo-icon svg { width: 18px; height: 18px; }
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Hero Mobile */
    .hero-amazing {
        padding: 100px 16px 60px;
    }
    .hero-main-title {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        min-width: 100%;
    }
    
    /* Payment Icons */
    .payment-icon img {
        max-height: 40px;
    }
}


/* ================================
   SECTION SPACING & ALIGNMENT FIXES
   ================================ */

/* Remove inline negative margins and add consistent spacing */
.domain-search-section {
    margin-top: 0 !important;
    padding: 60px 16px 50px !important;
}

.hosta-pricing {
    margin-top: 0 !important;
    padding: 60px 16px !important;
}

.features-section {
    padding: 60px 16px !important;
}

.about-section {
    padding: 60px 16px !important;
    margin: 0 !important;
    gap: 40px !important;
}




.payment-section {
    padding: 40px 16px !important;
    margin: 0 !important;
}

/* Fix section containers */
.domain-wrap,
.pricing-wrap,
.features-wrap,
.tech-container,
.payment-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.cpanel-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.chat-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Fix about section layout */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Remove excessive padding from navbar */
.hosta-navbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.nav-container {
    margin-top: 0 !important;
}

/* Fix hero section spacing */
.hero-amazing {
    padding: 100px 20px 60px !important;
    margin-top: 0 !important;
}

/* Consistent section transitions */
section {
    position: relative;
}

/* Fix grid layouts */
.pricing-grid,
.features-grid,
.tech-grid {
    gap: 25px !important;
}

/* Responsive fixes */
@media (max-width: 992px) {
    .cpanel-container,
    .chat-content,
    .about-section {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .cpanel-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .domain-search-section,
    .hosta-pricing,
    .features-section,
    .about-section{
        padding: 40px 12px !important;
    }
    
    .hero-amazing {
        padding: 80px 16px 40px !important;
    }
}

/* Remove any remaining inline style conflicts */
[style*="margin-top: -"] {
    margin-top: 0 !important;
}

[style*="width: 90%"] {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto !important;
}



    .cs-stats-wrapper {
        text-align: center;
        padding: 20px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #7414db 0%, #4c0364 100%);
    }

    .cs-stats-title {
        font-size: 36px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 15px;
    }

    .cs-stats-desc {
        font-size: 16px;
        color: rgba(255,255,255,0.9);
        max-width: 700px;
        margin: 0 auto 10px auto;
        line-height: 1.6;
    }

    .cs-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .cs-stat-box {
        background: #fff;
        padding: 30px 25px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .cs-stat-box:hover {
        transform: translateY(-5px);
    }

    .cs-stat-heading {
        font-size: 22px;
        font-weight: 700;
        color: #667eea;
        margin-bottom: 15px;
        display: block;
    }

    .cs-stat-paragraph {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

    .cs-stat-number {
        display: block;
        font-size: 36px;
        font-weight: bold;
        color: #764ba2;
        margin: 15px 0;
    }
    
    .cs-stat-label {
        font-size: 13px;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    @media (max-width: 768px) {
        .cs-stats-title {
            font-size: 28px;
        }
        .cs-stat-heading {
            font-size: 20px;
        }
        .cs-stat-paragraph {
            font-size: 13px;
        }
    }