/*
Theme Name: VGS Hosting
Theme URI: https://dev.vgs1st.com
Author: VGS
Author URI: https://dev.vgs1st.com
Description: A modern, professional WordPress theme built for web hosting companies. Features a hero section, service features, pricing plans, stats, testimonials, FAQ, and call-to-action sections — all responsive and lightweight.
Version: 1.0.6
Requires at least: 6.0
Tested up to: 7.2
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vgs-hosting
Tags: hosting, business, corporate, responsive, one-column, custom-menu, custom-logo, featured-images
*/

/* =========================================================
   TABLE OF CONTENTS
   01. CSS Variables & Reset
   02. Base Typography
   03. Buttons
   04. Header & Navigation
   05. Hero
   06. Features
   07. Stats
   08. Pricing
   09. Testimonials
   10. FAQ
   11. CTA
   12. Footer
   13. Content / Blog
   14. Widgets
   15. Utilities & Responsive
   ========================================================= */

/* 01. CSS Variables & Reset */
:root {
    --primary: #0f62fe;
    --primary-dark: #0a4ac4;
    --primary-light: #e8effe;
    --accent: #00d4aa;
    --dark: #0b1222;
    --dark-2: #111c33;
    --dark-3: #182646;
    --text: #33415c;
    --text-light: #6b7a99;
    --white: #ffffff;
    --border: #e3e9f4;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 30px rgba(11, 18, 32, .08);
    --shadow-lg: 0 20px 50px rgba(11, 18, 32, .14);
    --font-head: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--dark);
    line-height: 1.25;
    margin: 0 0 .5em;
    font-weight: 700;
}

p { margin: 0 0 1em; }

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

.section { padding: 90px 0; }
.section-alt { background: #f7f9fd; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head .eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--text-light); font-size: 18px; }

/* 02. Base Typography */
.lead { font-size: 19px; color: var(--text-light); }

/* 03. Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    text-align: center;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(15, 98, 254, .35); }

.btn-accent { background: var(--accent); color: var(--dark); }
.btn-accent:hover { background: #00c39b; color: var(--dark); transform: translateY(-2px); }

.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--primary-light); color: var(--primary-dark); transform: translateY(-2px); }

.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,.4); color: var(--white); }
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }

.btn-lg { padding: 17px 38px; font-size: 16px; }

/* 04. Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 18, 32, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; }

.site-branding { display: flex; align-items: center; gap: 12px; }
.site-branding .custom-logo { max-height: 60px; width: auto; }
.site-title { margin: 0; font-size: 22px; font-weight: 800; }
.site-title a { color: var(--white); }
.site-title a:hover { color: var(--accent); }
.site-description { margin: 0; font-size: 12px; color: rgba(255,255,255,.6); letter-spacing: 1px; text-transform: uppercase; }

.main-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; }
.main-navigation li { position: relative; }
.main-navigation a {
    display: block;
    padding: 10px 16px;
    color: rgba(255,255,255,.85);
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation a[href*="/blog"],
.main-navigation a[href*="/clients"] { color: var(--accent); background: rgba(255,255,255,.06); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-cta .btn { padding: 11px 22px; font-size: 14px; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: all .3s ease;
}

/* 05. Hero */
.hero {
    background: linear-gradient(135deg, #0b1222 0%, #0d1b38 55%, #12295c 100%);
    color: var(--white);
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15,98,254,.35) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -250px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,212,170,.2) 0%, transparent 70%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,212,170,.15);
    border: 1px solid rgba(0,212,170,.4);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
}
.hero h1 { color: var(--white); font-size: clamp(34px, 5vw, 56px); margin-bottom: 20px; }
.hero h1 .gradient-text { background: linear-gradient(90deg, var(--accent), #7fd8ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { color: rgba(255,255,255,.75); font-size: 19px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-trust .trust-item { display: flex; flex-direction: column; }
.hero-trust .trust-value { font-size: 28px; font-weight: 800; color: var(--white); }
.hero-trust .trust-label { font-size: 13px; color: rgba(255,255,255,.6); }

.hero-visual { position: relative; }
.hero-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}
.hero-card .card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-card .card-head .status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 4px rgba(0,212,170,.25); }
.hero-card .card-head h3 { color: var(--white); margin: 0; font-size: 16px; }
.hero-card .card-head span { margin-left: auto; font-size: 12px; color: rgba(255,255,255,.5); }

.uptime-bar { display: flex; flex-direction: column; gap: 12px; }
.uptime-bar .bar-row { display: flex; align-items: center; gap: 14px; }
.uptime-bar .bar-row .bar-label { width: 90px; font-size: 13px; color: rgba(255,255,255,.7); }
.uptime-bar .bar-track { flex: 1; height: 8px; background: rgba(255,255,255,.12); border-radius: 999px; overflow: hidden; }
.uptime-bar .bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.uptime-bar .bar-value { width: 52px; text-align: right; font-size: 13px; font-weight: 600; color: var(--white); }

.hero-float-card {
    position: absolute;
    bottom: -24px;
    left: -20px;
    background: var(--white);
    color: var(--dark);
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}
.hero-float-card .fc-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.hero-float-card .fc-text strong { display: block; font-size: 15px; color: var(--dark); }
.hero-float-card .fc-text span { font-size: 12px; color: var(--text-light); }

/* 06. Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: all .3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card .feature-icon {
    width: 58px; height: 58px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}
.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); margin: 0; font-size: 15px; }

/* 07. Stats */
.stats {
    background: linear-gradient(135deg, #0b1222, #12295c);
    color: var(--white);
    padding: 70px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item .stat-value { font-size: 44px; font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 6px; }
.stat-item .stat-value .suffix { color: var(--accent); }
.stat-item .stat-label { font-size: 15px; color: rgba(255,255,255,.65); }

/* 08. Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 34px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all .3s ease;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 60px rgba(15, 98, 254, .2);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 999px;
}
.pricing-card .plan-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 10px; }
.pricing-card .plan-desc { color: var(--text-light); font-size: 14px; margin-bottom: 22px; }
.pricing-card .plan-price { font-size: 52px; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 6px; }
.pricing-card .plan-price .currency { font-size: 24px; vertical-align: super; font-weight: 700; }
.pricing-card .plan-price .period { font-size: 15px; font-weight: 400; color: var(--text-light); }
.pricing-card .plan-features { list-style: none; padding: 0; margin: 26px 0 30px; flex: 1; }
.pricing-card .plan-features li {
    padding: 9px 0 9px 32px;
    position: relative;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}
.pricing-card .plan-features li:last-child { border-bottom: none; }
.pricing-card .plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 9px;
    width: 20px; height: 20px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
}

/* 08b. Domain Pricing */
.domain-table-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.domain-table { width: 100%; border-collapse: collapse; }
.domain-table th {
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: left;
    padding: 16px 24px;
}
.domain-table td {
    padding: 15px 24px;
    border-top: 1px solid var(--border);
    font-size: 15px;
    vertical-align: middle;
}
.domain-table tbody tr { transition: background .2s ease; }
.domain-table tbody tr:hover { background: var(--primary-light); }
.domain-table .tld { font-size: 17px; font-weight: 800; color: var(--dark); }
.tld-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 10px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: 999px;
    vertical-align: middle;
}
.domain-table .price { font-weight: 700; color: var(--dark); }
.domain-table .price small { color: var(--text-light); font-weight: 400; }
.domain-table .col-action { text-align: right; }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 8px; }
.domain-note { text-align: center; color: var(--text-light); font-size: 14px; margin: 24px 0 0; }

/* 09. Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all .3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-stars { color: #ffb400; font-size: 16px; letter-spacing: 3px; }
.testimonial-text { font-size: 15px; color: var(--text); font-style: italic; margin: 0; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--dark); }
.testimonial-author span { font-size: 13px; color: var(--text-light); }

/* 10. FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow .3s ease;
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 26px;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-question .faq-icon { font-size: 22px; color: var(--primary); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 26px 24px; color: var(--text-light); font-size: 15px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* 11. CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #7b2ff7 100%);
    border-radius: var(--radius-lg);
    padding: 70px 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
}
.cta-section h2 { color: var(--white); font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 600px; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 12. Footer */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 80px 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 60px; }
.footer-brand .site-title a { color: var(--white); }
.footer-brand p { font-size: 14px; margin-top: 16px; max-width: 320px; }
.footer-widget-title { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,.7); font-size: 14px; transition: color .2s ease, padding-left .2s ease; }
.footer-col ul a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.contact-line { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.7); }
.contact-line a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; word-break: break-all; }
.contact-line a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
}
.footer-copyright { color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--accent); }

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}
.footer-menu li { margin: 0; }
.footer-menu a {
    display: inline-block;
    padding: 8px 16px;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    font-weight: 500;
    border-radius: 999px;
    transition: color .2s ease, background .2s ease;
}
.footer-menu a:hover {
    color: var(--accent);
    background: rgba(255,255,255,.08);
}
.footer-menu .current-menu-item > a,
.footer-menu .current_page_item > a,
.footer-menu a[href*="/blog"],
.footer-menu a[href*="/clients"] {
    color: var(--accent);
    background: rgba(255,255,255,.08);
}

/* 13. Content / Blog */
.page-header { background: linear-gradient(135deg, #0b1222, #12295c); color: var(--white); padding: 70px 0; text-align: center; }
.page-header h1 { color: var(--white); font-size: clamp(30px, 4vw, 42px); margin: 0; }
.page-header p { color: rgba(255,255,255,.7); margin-top: 12px; }

.content-area { padding: 70px 0; }
.entry { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; margin-bottom: 30px; }
.entry-title { font-size: 26px; }
.entry-title a { color: var(--dark); }
.entry-title a:hover { color: var(--primary); }
.entry-meta { font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.entry-meta a { color: var(--text-light); }
.entry-content h2, .entry-content h3, .entry-content h4 { margin-top: 1.4em; }
.entry-content img { border-radius: var(--radius); }
.entry-content, .entry-summary, .comment-content { overflow-wrap: break-word; }
.entry-content table { display: block; width: 100%; overflow-x: auto; }

.posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.posts-grid .entry { margin-bottom: 0; display: flex; flex-direction: column; }
.posts-grid .entry .btn { align-self: flex-start; margin-top: 16px; }

.pagination { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px; height: 42px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-weight: 600;
}
.pagination .page-numbers.current { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* 14. Widgets */
.widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 26px; }
.widget-title { font-size: 18px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--primary-light); }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.widget ul li:last-child { border-bottom: none; }
.widget ul a { color: var(--text); }
.widget ul a:hover { color: var(--primary); }
.widget_categories ul li, .widget_archive ul li, .widget_recent_entries ul li, .widget_meta ul li, .widget_pages ul li, .widget_nav_menu ul li {
    display: flex; justify-content: space-between; align-items: center;
}

/* 14b. Content Layout (sidebar pages) */
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 50px; align-items: start; }
.content-main .entry { margin-bottom: 40px; }
.entry-tags { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); }
.entry-tags a {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
    margin: 4px 6px 4px 0;
}
.entry-tags a:hover { background: var(--primary); color: var(--white); }
.entry-thumb { display: block; margin-bottom: 22px; }
.entry-thumb img { border-radius: var(--radius); width: 100%; }

/* Comments */
.comments-area { margin-top: 40px; }
.comments-title { font-size: 22px; margin-bottom: 24px; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .comment { margin-bottom: 24px; }
.comment-body { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.comment-author { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment-author .avatar { border-radius: 50%; }
.comment-author .fn { font-weight: 700; color: var(--dark); font-style: normal; }
.comment-metadata { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.comment-metadata a { color: var(--text-light); }
.comment-content { font-size: 15px; }
.reply { margin-top: 10px; }
.reply a { font-size: 13px; font-weight: 600; }
.comment-form label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    margin-bottom: 16px;
    background: var(--white);
    color: var(--text);
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15, 98, 254, .12); }
.comment-form .submit { background: var(--primary); color: var(--white); border: none; padding: 13px 30px; border-radius: 8px; font-weight: 600; cursor: pointer; font-size: 15px; }
.comment-form .submit:hover { background: var(--primary-dark); }

/* Search form */
.search-form { display: flex; gap: 10px; }
.search-form .search-field {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
}
.search-form .search-field:focus { outline: none; border-color: var(--primary); }
.search-form .search-submit { padding: 12px 24px; font-size: 14px; }

/* Post navigation */
.post-navigation { margin: 30px 0; }
.post-navigation .nav-links { display: flex; justify-content: space-between; gap: 20px; }
.post-navigation a { font-weight: 600; }

/* 15. Utilities & Responsive */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-visual { max-width: 520px; margin: 0 auto; }
    .features-grid, .pricing-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .content-layout { grid-template-columns: minmax(0, 1fr); }
    .domain-table th, .domain-table td { padding-left: 14px; padding-right: 14px; }

    .nav-toggle { display: block; }
    .main-navigation {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: var(--dark-2);
        padding: 20px;
        transform: translateY(-130%);
        transition: transform .35s ease;
        border-bottom: 1px solid rgba(255,255,255,.08);
        box-shadow: var(--shadow-lg);
    }
    .main-navigation.open { transform: translateY(0); }
    .main-navigation ul { flex-direction: column; }
    .main-navigation a { padding: 14px 16px; }
    .header-cta { display: none; }
}

@media (max-width: 640px) {
    .section { padding: 60px 0; }
    .features-grid, .pricing-grid, .testimonials-grid, .posts-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .stat-item .stat-value { font-size: 30px; }
    .footer-top { grid-template-columns: 1fr; gap: 34px; }
    .cta-section { padding: 50px 30px; }
    .hero-float-card { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Blog on small screens */
    .entry { padding: 22px; }
    .entry-title { font-size: 22px; }
    .comment-body { padding: 18px; }
    .post-navigation .nav-links { flex-direction: column; gap: 12px; }

    /* Domain pricing table -> stacked cards */
    .domain-table-wrap {
        background: transparent;
        border: none;
        box-shadow: none;
        overflow: visible;
    }
    .domain-table, .domain-table tbody, .domain-table tr, .domain-table td { display: block; width: 100%; }
    .domain-table thead { display: none; }
    .domain-table tbody tr {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
        padding: 20px 24px;
        margin-bottom: 20px;
    }
    .domain-table tbody tr:hover { background: var(--white); }
    .domain-table td { border-top: none; padding: 6px 0; }
    .domain-table td:first-child { padding-bottom: 12px; margin-bottom: 6px; border-bottom: 1px solid var(--border); }
    .domain-table .tld { font-size: 22px; }
    .domain-table td.price { display: flex; justify-content: space-between; align-items: baseline; }
    .domain-table td.price::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-light);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .domain-table .col-action { text-align: left; padding-top: 14px; }
    .domain-table .col-action .btn { display: block; width: 100%; text-align: center; }
}
