/* ============================================================
   PAKSOFT 2.0 — MaxHost-style hosting theme
   Inspired by fluentthemes.com/wp/maxhost/home-style-8/
   ============================================================ */

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

:root {
    --primary:       #1E6BFF;
    --primary-dark:  #1450CC;
    --primary-light: #EBF2FF;
    --secondary:     #0A0F2C;
    --accent:        #FF6B35;
    --accent2:       #00C9A7;
    --success:       #28a745;
    --warning:       #ffc107;
    --danger:        #dc3545;
    --text:          #1a1a2e;
    --text-light:    #5a6478;
    --text-muted:    #9aa3b2;
    --bg:            #ffffff;
    --bg-light:      #f4f7fe;
    --bg-dark:       #0A0F2C;
    --border:        #e2e8f0;
    --shadow:        0 4px 16px rgba(30,107,255,0.10);
    --shadow-lg:     0 12px 40px rgba(30,107,255,0.15);
    --radius:        10px;
    --radius-lg:     16px;
    --radius-xl:     24px;
    --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display:  'Space Grotesk', 'Inter', sans-serif;
    --header-h:      72px;
}

body { font-family: var(--font); color: var(--text); line-height: 1.6; background: var(--bg); -webkit-font-smoothing: antialiased; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

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

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px; border-radius: var(--radius);
    font-family: var(--font); font-size: 15px; font-weight: 600;
    cursor: pointer; border: 2px solid transparent;
    transition: all 0.25s ease; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-accent  { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: #e5592a; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,.30); }
.btn-outline  { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-ghost  { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); color: #fff; }
.btn-lg { padding: 17px 40px; font-size: 17px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* ===================== TOPBAR ===================== */
.paksoft-topbar {
    background: var(--secondary); color: rgba(255,255,255,.75);
    font-size: 13px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.paksoft-topbar .paksoft-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left  { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar-right a { color: rgba(255,255,255,.75); font-size: 13px; padding: 3px 10px; border-radius: 4px; transition: all .2s; }
.topbar-right a:hover { color: #fff; background: rgba(255,255,255,.08); }
.topbar-right .btn-sm { padding: 5px 14px; font-size: 12px; }
.topbar-item { display: flex; align-items: center; gap: 5px; }
.topbar-item .dashicons { font-size: 13px; width: 13px; height: 13px; opacity:.7; }

/* ===================== HEADER ===================== */
.paksoft-header {
    position: sticky; top: 0; z-index: 1000;
    background: #fff; height: var(--header-h);
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    transition: box-shadow .3s;
}
.paksoft-header .paksoft-container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-logo img { max-height: 42px; width: auto; }
.logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--secondary); letter-spacing: -.5px; }
.logo-text span { color: var(--primary); }

/* Nav */
.paksoft-nav { display: flex; align-items: center; gap: 4px; height: 100%; }
.paksoft-nav > li { position: relative; height: 100%; display: flex; align-items: center; }
.paksoft-nav > li > a {
    display: flex; align-items: center; gap: 4px;
    padding: 0 14px; height: 100%; font-size: 15px; font-weight: 500; color: var(--text);
    transition: color .2s; white-space: nowrap;
}
.paksoft-nav > li > a:hover,
.paksoft-nav > li.current-menu-item > a { color: var(--primary); }
.paksoft-nav > li.menu-item-has-children > a::after { content:''; display:inline-block; border:4px solid transparent; border-top-color:currentColor; margin-top:3px; transition: transform .2s; }
.paksoft-nav > li.menu-item-has-children:hover > a::after { transform: rotate(180deg); }

/* Dropdown */
.paksoft-nav .sub-menu {
    display: none; position: absolute; top: calc(100% + 0px); left: 0;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); min-width: 220px; padding: 8px 0; z-index: 100;
    animation: dropIn .2s ease;
}
@keyframes dropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }
.paksoft-nav > li:hover > .sub-menu { display: block; }
.paksoft-nav .sub-menu li a { display: block; padding: 10px 20px; font-size: 14px; color: var(--text); transition: all .15s; }
.paksoft-nav .sub-menu li a:hover { color: var(--primary); background: var(--bg-light); padding-left: 26px; }

/* Header CTA */
.header-cta { display: flex; gap: 10px; align-items: center; }

/* Hamburger */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.menu-toggle span + span { margin-top: 5px; }

/* ===================== HERO ===================== */
.hero-section {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a2a6c 50%, #0d3b7a 100%);
    padding: 100px 0 80px; min-height: 620px; display: flex; align-items: center;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bg-shapes .shape { position: absolute; border-radius: 50%; opacity: .12; }
.hero-bg-shapes .shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; }
.hero-bg-shapes .shape-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; left: -80px; }
.hero-bg-shapes .shape-3 { width: 200px; height: 200px; background: var(--accent2); top: 40%; left: 40%; }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text { color: #fff; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,53,.15); color: #ff9a6b; border: 1px solid rgba(255,107,53,.3);
    padding: 6px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-badge::before { content:'🔥'; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; }
.hero-title em { color: var(--accent); font-style: normal; }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,.80); margin-bottom: 36px; line-height: 1.7; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { text-align: left; }
.hero-stat-number { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #fff; }
.hero-stat-label  { font-size: 12px; color: rgba(255,255,255,.60); text-transform: uppercase; letter-spacing: .05em; }

/* Hero price panel */
.hero-panel {
    background: rgba(255,255,255,.06); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-xl);
    padding: 36px; color: #fff;
}
.hero-panel-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.hero-panel-sub   { font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 28px; }
.hero-price-tag   { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 24px; }
.hero-price-from  { font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 6px; }
.hero-price-amount{ font-family: var(--font-display); font-size: 52px; font-weight: 900; line-height: 1; color: #fff; }
.hero-price-period{ font-size: 16px; color: rgba(255,255,255,.65); padding-bottom: 8px; }

.hero-features    { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hero-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.85); }
.hero-features li::before { content:'✓'; width:20px;height:20px; background: rgba(0,201,167,.2); color: var(--accent2); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; flex-shrink:0; }

/* ===================== DOMAIN SEARCH ===================== */
.domain-section { background: #fff; padding: 0; margin-top: -2px; position: relative; z-index: 5; }
.domain-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 50px 40px 40px; color: #fff;
}
.domain-box-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; text-align: center; margin-bottom: 8px; }
.domain-box-sub   { text-align: center; color: rgba(255,255,255,.80); margin-bottom: 28px; font-size: 15px; }
.domain-search-form { display: flex; gap: 0; max-width: 700px; margin: 0 auto 24px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.25); }
.domain-search-form input { flex: 1; padding: 17px 22px; font-size: 16px; border: none; outline: none; font-family: var(--font); }
.domain-search-form button { padding: 17px 32px; background: var(--accent); color: #fff; border: none; font-size: 16px; font-weight: 700; cursor: pointer; transition: background .2s; font-family: var(--font); white-space: nowrap; }
.domain-search-form button:hover { background: #e5592a; }
.domain-tlds { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.tld-pill { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.20); border-radius: 999px; padding: 6px 18px; display: flex; align-items: center; gap: 8px; font-size: 14px; }
.tld-name  { font-weight: 700; }
.tld-price { color: rgba(255,255,255,.75); }
.tld-ext-links { text-align: center; margin-top: 14px; }
.tld-ext-links a { color: rgba(255,255,255,.70); font-size: 13px; padding: 0 8px; border-right: 1px solid rgba(255,255,255,.20); }
.tld-ext-links a:last-child { border-right: none; }
.tld-ext-links a:hover { color: #fff; }

/* ===================== SECTION COMMON ===================== */
.section { padding: 90px 0; }
.section-alt  { background: var(--bg-light); }
.section-dark { background: var(--secondary); color: #fff; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-label { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; color: var(--secondary); margin-bottom: 16px; letter-spacing: -.5px; }
.section-dark .section-title { color: #fff; }
.section-desc  { font-size: 17px; color: var(--text-light); line-height: 1.7; }
.section-dark .section-desc  { color: rgba(255,255,255,.70); }

/* ===================== HOSTING TABS ===================== */
.hosting-tabs  { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
    padding: 10px 24px; border: 2px solid var(--border); background: #fff;
    border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; color: var(--text);
}
.tab-btn:hover   { border-color: var(--primary); color: var(--primary); }
.tab-btn.active  { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===================== PRICING CARDS ===================== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }

.pricing-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px 28px; transition: all .3s; position: relative; overflow: hidden;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); transform: translateY(-4px); }
.pricing-card.featured {
    background: var(--primary); border-color: var(--primary); color: #fff;
    transform: scale(1.03); box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
    position: absolute; top: 0; right: 0;
    background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
    padding: 6px 14px; border-radius: 0 var(--radius-lg) 0 var(--radius-lg); text-transform: uppercase; letter-spacing: .06em;
}
.pricing-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.pricing-name { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.pricing-card.featured .pricing-name { color: #fff; }
.pricing-price { margin-bottom: 24px; }
.price-amount  { font-family: var(--font-display); font-size: 38px; font-weight: 900; color: var(--secondary); line-height: 1; }
.pricing-card.featured .price-amount { color: #fff; }
.price-period  { font-size: 14px; color: var(--text-light); margin-left: 2px; }
.pricing-card.featured .price-period { color: rgba(255,255,255,.75); }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; font-size: 14px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; }
.pricing-features li::before { content:'✓'; width:18px;height:18px; background: rgba(30,107,255,.10); color: var(--primary); border-radius:50%; display:flex;align-items:center;justify-content:center; font-size:10px; font-weight:700; flex-shrink:0; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.90); }
.pricing-card.featured .pricing-features li::before { background: rgba(255,255,255,.18); color: #fff; }

.pricing-cta { display: block; text-align: center; padding: 13px 20px; border-radius: var(--radius); font-weight: 700; font-size: 15px; transition: all .25s; }
.pricing-card:not(.featured) .pricing-cta { background: var(--primary-light); color: var(--primary); }
.pricing-card:not(.featured) .pricing-cta:hover { background: var(--primary); color: #fff; }
.pricing-card.featured .pricing-cta { background: #fff; color: var(--primary); }
.pricing-card.featured .pricing-cta:hover { background: rgba(255,255,255,.90); }

/* ===================== FEATURES GRID ===================== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: all .3s; }
.feature-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.feature-icon { width: 52px; height: 52px; background: var(--primary-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
.feature-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.feature-desc  { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===================== WHY US / STATS ===================== */
.stats-bar { background: var(--primary); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { color: #fff; }
.stat-num  { font-family: var(--font-display); font-size: 38px; font-weight: 900; line-height: 1; }
.stat-label{ font-size: 13px; color: rgba(255,255,255,.75); margin-top: 6px; text-transform: uppercase; letter-spacing: .06em; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; }
.testimonial-stars { color: #fbbf24; font-size: 16px; margin-bottom: 16px; }
.testimonial-text  { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author{ display: flex; align-items: center; gap: 12px; }
.testimonial-avatar{ width: 44px; height: 44px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; color: var(--primary); }
.testimonial-name  { font-weight: 700; font-size: 14px; color: var(--secondary); }
.testimonial-role  { font-size: 12px; color: var(--text-muted); }

/* ===================== CTA BANNER ===================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0; text-align: center; color: #fff;
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; margin-bottom: 16px; }
.cta-banner p  { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
.paksoft-footer { background: var(--secondary); color: rgba(255,255,255,.75); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.60); margin: 16px 0 20px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.60); font-size: 14px; transition: all .2s; text-decoration: none; }
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.60); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: #fff; }

/* ===================== WOOCOMMERCE ===================== */
.paksoft-wc-wrap { padding: 60px 0; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; list-style: none; padding: 0; margin: 0; }
.woocommerce ul.products li.product { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .3s; }
.woocommerce ul.products li.product:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); transform: translateY(-4px); }
.woocommerce ul.products li.product a img { width: 100%; height: 200px; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 16px 20px 8px; font-size: 16px; font-weight: 700; color: var(--secondary); }
.woocommerce ul.products li.product .price { padding: 0 20px; font-size: 20px; font-weight: 800; color: var(--primary); font-family: var(--font-display); }
.woocommerce ul.products li.product .button { margin: 16px 20px 20px; display: block; text-align: center; padding: 11px 20px; background: var(--primary); color: #fff; border-radius: var(--radius); font-weight: 600; font-size: 14px; transition: all .2s; border: none; cursor: pointer; }
.woocommerce ul.products li.product .button:hover { background: var(--primary-dark); transform: none; }

/* ===================== MISC PAGE ===================== */
.page-hero { background: linear-gradient(135deg, var(--secondary) 0%, #1a2a6c 100%); padding: 70px 0; color: #fff; text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.page-hero p   { color: rgba(255,255,255,.75); margin-top: 12px; font-size: 17px; }
.page-content  { padding: 70px 0; }
.page-content h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 16px; color: var(--secondary); }
.page-content h3 { font-size: 1.25rem; font-weight: 700; margin: 28px 0 10px; }
.page-content p  { margin-bottom: 16px; color: var(--text-light); line-height: 1.8; }
.page-content ul { padding-left: 22px; margin-bottom: 16px; color: var(--text-light); }
.page-content ul li { margin-bottom: 8px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-panel  { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --header-h: 62px; }
    .paksoft-topbar .topbar-left { display: none; }
    .paksoft-nav, .header-cta { display: none; }
    .menu-toggle { display: flex; flex-direction: column; }
    .paksoft-nav.open { display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0; background: #fff; padding: 16px; box-shadow: var(--shadow-lg); z-index: 999; }
    .paksoft-nav.open > li { height: auto; }
    .paksoft-nav.open > li > a { padding: 12px 8px; border-bottom: 1px solid var(--border); }
    .paksoft-nav.open .sub-menu { position: static; box-shadow: none; border: none; background: var(--bg-light); }
    .hero-section { padding: 60px 0 50px; }
    .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
    .domain-box   { padding: 32px 20px; }
    .domain-search-form { flex-direction: column; border-radius: var(--radius); overflow: visible; }
    .domain-search-form input  { border-radius: var(--radius); }
    .domain-search-form button { border-radius: var(--radius); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
}
@media (max-width: 480px) {
    .hero-stats    { gap: 20px; }
    .cta-actions   { flex-direction: column; align-items: center; }
    .hero-actions  { flex-direction: column; }
}
