/* ============================================================
   BLUE & WHITE PROFESSIONAL THEME - NATIXHOST
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   2. CSS VARIABLES - BLUE THEME
   ============================================================ */

:root {
    /* Brand Colors - Blue & White */
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #60A5FA;
    --primary-lighter: #DBEAFE;
    --primary-gradient: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    
    --secondary: #3B82F6;
    --accent: #06B6D4;
    
    --dark: #0F172A;
    --dark-light: #1E293B;
    --gray: #64748B;
    --gray-light: #E2E8F0;
    --gray-bg: #F8FAFC;
    
    --white: #FFFFFF;
    --text: #1E293B;
    --text-muted: #64748B;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   3. RESET & BASE
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================================
   4. HEADER & NAVIGATION
   ============================================================ */

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    height: 38px;
    width: auto;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger-icon span {
    display: block;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav-toggle.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-lighter);
}

.dropdown-arrow {
    font-size: 0.65rem;
    transition: var(--transition);
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    padding: 0.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    list-style: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    color: var(--text);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}

.dropdown-item i {
    width: 20px;
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text);
    background: var(--gray-bg);
    border-radius: 50%;
    transition: var(--transition);
}

.cart-btn:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--white);
    background: #EF4444;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

/* ============================================================
   5. HERO SECTION - BLUE THEME
   ============================================================ */

.hero-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.10) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(37, 99, 235, 0.20);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============================================================
   6. SECTION HEADERS
   ============================================================ */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: var(--primary-lighter);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   7. DOMAIN SEARCH - BLUE THEME
   ============================================================ */

.domain-search-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.domain-search-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.domain-search-wrapper {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.domain-search-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.domain-search-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    background: rgba(37, 99, 235, 0.15);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
    border: 1px solid rgba(37, 99, 235, 0.10);
}

.domain-search-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.domain-search-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

.domain-search-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
}

.domain-search-input-group {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.domain-input-wrapper {
    flex: 1;
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.domain-input-wrapper:focus-within {
    box-shadow: 0 4px 25px rgba(37, 99, 235, 0.30);
}

.domain-search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 1.1rem;
    transition: var(--transition);
}

.domain-input-wrapper:focus-within .domain-search-icon {
    color: var(--primary);
}

.domain-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    outline: none;
    background: transparent;
    color: var(--dark);
    height: 62px;
}

.domain-search-input::placeholder {
    color: #94A3B8;
    font-weight: 400;
}

.domain-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-domain-search {
    padding: 0 2rem;
    height: 62px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    background: var(--primary-gradient);
    border: none;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-domain-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
    color: var(--white);
}

.btn-domain-transfer {
    padding: 0 1.75rem;
    height: 62px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-domain-transfer:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    transform: translateY(-2px);
}

.domain-actions-mobile {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.domain-tlds {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tld-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-right: 0.25rem;
}

.tld-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.tld-badge:hover {
    color: var(--white);
    background: rgba(37, 99, 235, 0.20);
    border-color: var(--primary);
    cursor: pointer;
    transform: translateY(-1px);
}

.tld-badge small {
    font-weight: 400;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
}

.domain-pricing-link {
    text-align: center;
    margin-top: 1rem;
}

.btn-view-pricing {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-view-pricing:hover {
    color: var(--white);
    text-decoration: none;
}

.btn-view-pricing i {
    transition: var(--transition);
}

.btn-view-pricing:hover i {
    transform: translateX(4px);
}

.domain-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    transition: var(--transition);
}

.trust-item:hover {
    color: rgba(255, 255, 255, 0.6);
}

.trust-item i {
    color: var(--primary-light);
    font-size: 0.9rem;
}

/* ============================================================
   8. PRICING SECTION - BLUE THEME
   ============================================================ */

.pricing-section {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pricing-card-featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.pricing-card-featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(--primary);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
}

.pricing-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pricing-plan {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.pricing-price {
    margin: 1rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-discount {
    margin-bottom: 1rem;
}

.discount-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10B981;
    background: rgba(16, 185, 129, 0.10);
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-full);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text);
}

.pricing-features li i {
    color: var(--primary);
    width: 18px;
}

.learn-more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
}

.learn-more:hover {
    color: var(--primary-dark);
}

/* ============================================================
   9. FEATURES SECTION - BLUE THEME
   ============================================================ */

.features-section {
    padding: 5rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--gray-bg);
    transform: translateY(-4px);
    border-color: var(--gray-light);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ============================================================
   10. TRUST SECTION - BLUE THEME
   ============================================================ */

.trust-section {
    padding: 4rem 0;
    background: var(--dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.trust-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================================
   11. BUTTONS - BLUE THEME
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius);
    border: none;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 1rem;
    padding: 0.8rem 2.5rem;
}

.btn-sm {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================================
   12. FOOTER - BLUE THEME
   ============================================================ */

.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2rem;
}

.footer-brand img {
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-payments {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.3);
}

.footer-payments i {
    transition: var(--transition);
}

.footer-payments i:hover {
    color: var(--white);
}

.footer-language {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================================
   13. RESPONSIVE
   ============================================================ */

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-illustration {
        max-width: 60%;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        padding: 5rem 1.5rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        overflow-y: auto;
        flex: none;
        justify-content: flex-start;
        display: block;
        z-index: 999;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        box-shadow: none;
        border: none;
        background: var(--gray-bg);
        padding: 0;
        margin-top: 0.25rem;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 0.5rem;
    }
    
    .header-actions .btn span {
        display: none;
    }
    
    .hero-section {
        padding: 2rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .domain-search-section {
        padding: 3rem 0 4rem;
    }
    
    .domain-search-title {
        font-size: 1.75rem;
    }
    
    .domain-search-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .domain-search-box {
        padding: 1.5rem;
        border-radius: var(--radius);
    }
    
    .domain-search-input-group {
        flex-direction: column;
    }
    
    .domain-search-input {
        height: 50px;
        padding: 0.75rem 1rem 0.75rem 3rem;
        font-size: 1rem;
    }
    
    .domain-search-icon {
        left: 1rem;
    }
    
    .domain-actions {
        display: none;
    }
    
    .domain-actions-mobile {
        display: flex;
    }
    
    .btn-domain-search,
    .btn-domain-transfer {
        height: 50px;
        justify-content: center;
        width: 100%;
        font-size: 0.95rem;
    }
    
    .domain-tlds {
        gap: 0.4rem;
        justify-content: center;
    }
    
    .tld-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .domain-trust {
        gap: 1rem;
        justify-content: center;
    }
    
    .trust-item {
        font-size: 0.75rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto 0;
    }
    
    .pricing-card-featured {
        transform: none;
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-payments {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .domain-search-section {
        padding: 2rem 0 3rem;
    }
    
    .domain-search-title {
        font-size: 1.5rem;
    }
    
    .domain-search-box {
        padding: 1rem;
        border-radius: var(--radius);
    }
    
    .domain-search-input {
        height: 48px;
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem 0.6rem 2.8rem;
    }
    
    .domain-search-icon {
        font-size: 0.85rem;
        left: 0.8rem;
    }
    
    .btn-domain-search,
    .btn-domain-transfer {
        height: 44px;
        font-size: 0.85rem;
    }
    
    .tld-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }
    
    .domain-trust {
        gap: 0.75rem;
    }
    
    .trust-item {
        font-size: 0.65rem;
    }
    
    .trust-item i {
        font-size: 0.75rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
}