/*
Theme Name: Titan Host Cloud
Theme URI: https://titanhost.cloud/
Author: Titan Host Cloud
Author URI: https://titanhost.cloud/
Description: Tema profissional para hospedagem de sites - Titan Host Cloud
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: titan-host-cloud
Tags: hosting, cloud, responsive, business
*/

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    color: #333;
    background: #fff;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ===========================
   CSS VARIABLES
=========================== */
:root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --primary-light: #3388dd;
    --accent: #ff6600;
    --accent-dark: #e55c00;
    --text-dark: #222;
    --text-mid: #555;
    --text-light: #888;
    --bg-light: #f5f7fa;
    --bg-gray: #eef1f5;
    --border: #dde3ec;
    --white: #ffffff;
    --green: #28a745;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.18);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; color: var(--text-dark); }
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }

/* ===========================
   LAYOUT
=========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2rem; margin-bottom: 12px; }
.section-title p { color: var(--text-mid); font-size: 1.05rem; max-width: 650px; margin: 0 auto; }

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-block;
    padding: 11px 28px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    line-height: 1.4;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }
.btn-accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.btn-white:hover { background: var(--bg-light); }
.btn-lg { padding: 14px 36px; font-size: 1.05rem; }
.btn-sm { padding: 7px 18px; font-size: 0.85rem; }

/* ===========================
   TOP BAR
=========================== */
.topbar {
    background: #1a2a4a;
    color: #b0c4de;
    font-size: 0.82rem;
    padding: 7px 0;
    border-bottom: 1px solid #243555;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 15px; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-right { display: flex; align-items: center; gap: 15px; }
.topbar a { color: #b0c4de; transition: color 0.2s; }
.topbar a:hover { color: #fff; }
.topbar-phone { display: flex; align-items: center; gap: 5px; }
.topbar-phone svg { width: 13px; height: 13px; }
.topbar-links { display: flex; gap: 12px; }
.topbar-links a { padding: 0 5px; }
.topbar-chat { background: var(--accent); color: #fff !important; padding: 3px 12px; border-radius: 3px; font-weight: 600; }
.topbar-chat:hover { background: var(--accent-dark); }

/* ===========================
   HEADER / NAVIGATION
=========================== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}
.site-header .container { display: flex; align-items: center; gap: 20px; padding: 0 20px; height: 65px; }
.site-logo { flex-shrink: 0; }
.site-logo a { display: flex; align-items: center; gap: 10px; }
.site-logo .logo-text { font-size: 1.4rem; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.site-logo .logo-icon { width: 38px; height: 38px; }

/* Main Nav */
.main-nav { flex: 1; display: flex; align-items: center; height: 100%; }
.main-nav > ul { display: flex; align-items: center; height: 100%; gap: 0; }
.main-nav > ul > li { position: relative; height: 100%; display: flex; align-items: center; }
.main-nav > ul > li > a {
    display: flex; align-items: center; gap: 5px;
    height: 100%; padding: 0 15px;
    font-size: 0.9rem; font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li:hover > a { color: var(--primary); border-bottom-color: var(--primary); }
.main-nav > ul > li > a .arrow {
    width: 10px; height: 10px; fill: none;
    stroke: currentColor; stroke-width: 2;
    transition: transform 0.2s;
}
.main-nav > ul > li:hover > a .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute; top: 100%; left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    min-width: 220px;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 500;
    padding: 8px 0;
}
.main-nav > ul > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
    display: block; padding: 9px 20px;
    font-size: 0.875rem; color: var(--text-dark);
    transition: background 0.15s, color 0.15s;
    border-left: 3px solid transparent;
}
.dropdown li a:hover { background: var(--bg-light); color: var(--primary); border-left-color: var(--primary); }
.dropdown-mega { min-width: 680px; padding: 25px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dropdown-mega-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 10px; padding: 0 0 8px; border-bottom: 1px solid var(--border); }
.dropdown-mega-col ul { padding: 0; }
.dropdown-mega-col ul li a { padding: 7px 0; border: none; display: flex; align-items: center; gap: 8px; }
.dropdown-mega-col ul li a:hover { background: none; color: var(--primary); }
.dropdown-mega-col ul li a .nav-icon { width: 20px; height: 20px; background: var(--bg-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-actions .btn { padding: 8px 20px; font-size: 0.85rem; }

/* Mobile Toggle */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); margin: 5px 0; transition: var(--transition); }

/* ===========================
   HERO SECTION
=========================== */
.hero {
    background: linear-gradient(135deg, #0a1628 0%, #0d2d5e 50%, #0a3d80 100%);
    color: #fff;
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content h1 { font-size: 2.6rem; line-height: 1.2; margin-bottom: 18px; color: #fff; }
.hero-content h1 span { color: #4fc3f7; }
.hero-content p { font-size: 1.1rem; color: #b0cce8; margin-bottom: 30px; line-height: 1.7; }
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-search { background: rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 25px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); }
.hero-search h3 { color: #fff; margin-bottom: 15px; font-size: 1.1rem; }
.domain-search-box { display: flex; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.domain-search-box input {
    flex: 1; padding: 13px 15px;
    border: none; outline: none;
    font-size: 0.95rem; color: var(--text-dark);
}
.domain-search-box .domain-ext-select {
    border: none; border-left: 1px solid var(--border);
    padding: 0 12px; background: var(--bg-light);
    font-size: 0.9rem; cursor: pointer; outline: none;
    color: var(--text-dark);
}
.domain-search-box button {
    background: var(--accent); color: #fff;
    border: none; padding: 13px 22px;
    font-weight: 700; font-size: 0.9rem;
    cursor: pointer; transition: background 0.2s;
}
.domain-search-box button:hover { background: var(--accent-dark); }
.domain-tlds { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.domain-tld-badge {
    background: rgba(255,255,255,0.12); color: #cde;
    padding: 4px 12px; border-radius: 20px; font-size: 0.78rem;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-badges { display: flex; gap: 20px; margin-top: 25px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 7px; color: #b0cce8; font-size: 0.85rem; }
.hero-badge svg { width: 16px; height: 16px; color: #4fc3f7; }

/* ===========================
   PROMO BANNER
=========================== */
.promo-banner {
    background: linear-gradient(90deg, var(--accent) 0%, #ff8800 100%);
    color: #fff; padding: 14px 0; text-align: center;
}
.promo-banner p { margin: 0; font-size: 0.95rem; font-weight: 600; }
.promo-banner a { color: #fff; text-decoration: underline; font-weight: 700; }

/* ===========================
   FEATURES STRIP
=========================== */
.features-strip { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 30px 0; }
.features-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-strip-item { display: flex; align-items: center; gap: 12px; }
.feature-strip-icon {
    width: 46px; height: 46px; border-radius: 10px;
    background: var(--primary); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.feature-strip-icon svg { width: 22px; height: 22px; color: #fff; }
.feature-strip-text h4 { font-size: 0.9rem; margin-bottom: 2px; }
.feature-strip-text p { font-size: 0.8rem; color: var(--text-mid); margin: 0; }

/* ===========================
   PRODUCTS TABS
=========================== */
.products-section { padding: 70px 0; }
.products-tabs { display: flex; justify-content: center; gap: 5px; margin-bottom: 45px; flex-wrap: wrap; border-bottom: 2px solid var(--border); padding-bottom: 0; }
.products-tab {
    padding: 12px 24px; font-size: 0.9rem; font-weight: 600;
    color: var(--text-mid); background: none; border: none;
    cursor: pointer; border-bottom: 3px solid transparent;
    margin-bottom: -2px; transition: var(--transition);
}
.products-tab:hover { color: var(--primary); }
.products-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Pricing Cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.pricing-card {
    border: 2px solid var(--border); border-radius: var(--radius-lg);
    padding: 30px; position: relative; transition: var(--transition);
    background: #fff;
}
.pricing-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.pricing-card.featured { border-color: var(--primary); background: linear-gradient(180deg, #f0f6ff 0%, #fff 100%); }
.pricing-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #fff;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
    padding: 4px 16px; border-radius: 20px;
}
.plan-badge { display: inline-block; background: var(--bg-light); color: var(--primary); font-size: 0.75rem; font-weight: 700; padding: 3px 12px; border-radius: 20px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.plan-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.plan-price { margin: 18px 0; }
.plan-price .from { font-size: 0.8rem; color: var(--text-light); }
.plan-price .amount { font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.plan-price .period { font-size: 0.85rem; color: var(--text-mid); }
.plan-price .original { font-size: 0.9rem; color: var(--text-light); text-decoration: line-through; margin-left: 5px; }
.plan-desc { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 20px; min-height: 40px; }
.plan-features { margin-bottom: 25px; }
.plan-features li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 0.85rem; padding: 5px 0; color: var(--text-dark);
    border-bottom: 1px dashed var(--border);
}
.plan-features li:last-child { border: none; }
.plan-features li .check { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.plan-features li .check svg { width: 14px; height: 14px; }
.plan-cta { text-align: center; }
.plan-cta .btn { width: 100%; text-align: center; }
.plan-renewal { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 8px; }

/* ===========================
   WHY CHOOSE US
=========================== */
.why-section { background: var(--bg-light); padding: 70px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card {
    background: #fff; border-radius: var(--radius-lg);
    padding: 30px; box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
    border-top: 4px solid transparent;
}
.why-card:hover { box-shadow: var(--shadow-hover); border-top-color: var(--primary); transform: translateY(-3px); }
.why-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.why-icon svg { width: 28px; height: 28px; color: #fff; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.875rem; color: var(--text-mid); margin: 0; }

/* ===========================
   RESELLER SECTION
=========================== */
.reseller-section {
    background: linear-gradient(135deg, #0a1628 0%, #0d2d5e 100%);
    color: #fff; padding: 80px 0;
}
.reseller-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.reseller-content h2 { color: #fff; font-size: 2rem; margin-bottom: 15px; }
.reseller-content p { color: #b0cce8; font-size: 1rem; margin-bottom: 25px; }
.reseller-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
.reseller-feature { display: flex; align-items: flex-start; gap: 10px; }
.reseller-feature-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(79,195,247,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.reseller-feature-icon svg { width: 16px; height: 16px; color: #4fc3f7; }
.reseller-feature-text h4 { font-size: 0.875rem; color: #fff; margin-bottom: 3px; }
.reseller-feature-text p { font-size: 0.8rem; color: #8aaccc; margin: 0; }
.reseller-image { display: flex; justify-content: center; align-items: center; }
.reseller-image img { border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.reseller-panel-mockup {
    background: linear-gradient(180deg, #0f2240 0%, #1a3560 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    width: 100%; max-width: 380px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.panel-topbar { display: flex; gap: 6px; margin-bottom: 15px; }
.panel-topbar span { width: 10px; height: 10px; border-radius: 50%; }
.panel-topbar span:nth-child(1) { background: #ff5f57; }
.panel-topbar span:nth-child(2) { background: #febc2e; }
.panel-topbar span:nth-child(3) { background: #28c840; }
.panel-content { display: flex; flex-direction: column; gap: 10px; }
.panel-row { background: rgba(255,255,255,0.06); border-radius: 6px; padding: 12px 15px; display: flex; justify-content: space-between; align-items: center; }
.panel-row .label { font-size: 0.78rem; color: #7a9cc0; }
.panel-row .value { font-size: 0.85rem; color: #4fc3f7; font-weight: 600; }
.panel-row .badge { font-size: 0.7rem; background: rgba(40,167,69,0.2); color: #5cb85c; padding: 2px 8px; border-radius: 20px; }
.panel-chart { background: rgba(255,255,255,0.06); border-radius: 6px; padding: 15px; height: 80px; display: flex; align-items: flex-end; gap: 4px; }
.panel-bar { flex: 1; background: rgba(79,195,247,0.3); border-radius: 3px 3px 0 0; }

/* ===========================
   STATS SECTION
=========================== */
.stats-section { padding: 60px 0; background: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; padding: 30px 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border: none; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.stat-label { font-size: 0.875rem; color: var(--text-mid); }

/* ===========================
   PRODUCTS OVERVIEW GRID
=========================== */
.products-overview { background: var(--bg-light); padding: 70px 0; }
.products-overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
    background: #fff; border-radius: var(--radius-lg);
    padding: 25px 20px; text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid var(--border);
    cursor: pointer;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: var(--primary); }
.product-card-icon {
    width: 64px; height: 64px; border-radius: 14px;
    margin: 0 auto 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
}
.product-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.product-card p { font-size: 0.8rem; color: var(--text-mid); margin-bottom: 12px; }
.product-card-price { font-size: 0.85rem; color: var(--primary); font-weight: 700; }
.product-card-price .from { font-size: 0.75rem; color: var(--text-light); font-weight: 400; }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section { padding: 70px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.testimonial-card {
    background: #fff; border-radius: var(--radius-lg);
    padding: 25px; box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    position: relative;
}
.testimonial-card::before { content: '"'; font-size: 4rem; line-height: 0.8; color: var(--primary); opacity: 0.2; position: absolute; top: 15px; left: 20px; font-family: Georgia, serif; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: #ffc107; color: #ffc107; }
.testimonial-text { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 18px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }

/* ===========================
   TRUST BADGES
=========================== */
.trust-section { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 30px 0; }
.trust-section .container { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 10px; color: var(--text-mid); font-size: 0.85rem; font-weight: 600; }
.trust-badge svg { width: 30px; height: 30px; color: var(--primary); }

/* ===========================
   INFRASTRUCTURE SECTION
=========================== */
.infra-section { padding: 70px 0; background: #fff; }
.infra-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.infra-content h2 { font-size: 1.9rem; margin-bottom: 15px; }
.infra-content p { color: var(--text-mid); margin-bottom: 20px; }
.infra-list { display: flex; flex-direction: column; gap: 12px; }
.infra-item { display: flex; align-items: flex-start; gap: 12px; }
.infra-item-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.infra-item-icon svg { width: 18px; height: 18px; color: var(--primary); }
.infra-item-text h4 { font-size: 0.9rem; margin-bottom: 3px; }
.infra-item-text p { font-size: 0.82rem; color: var(--text-mid); margin: 0; }
.infra-map { display: flex; justify-content: center; }
.world-map-placeholder { width: 100%; max-width: 450px; background: var(--bg-light); border-radius: var(--radius-lg); padding: 40px; text-align: center; border: 1px solid var(--border); }
.datacenter-dots { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.dc-dot { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-mid); }
.dc-dot::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }

/* ===========================
   SUPPORT SECTION
=========================== */
.support-section { background: var(--bg-light); padding: 70px 0; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.support-card {
    background: #fff; border-radius: var(--radius-lg);
    padding: 30px; text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.support-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.support-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--bg-light); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; }
.support-icon svg { width: 28px; height: 28px; color: var(--primary); }
.support-card h3 { margin-bottom: 10px; }
.support-card p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 20px; }
.support-availability { font-size: 0.8rem; font-weight: 700; color: var(--green); }

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0a3d80 100%);
    color: #fff; padding: 70px 0; text-align: center;
}
.cta-section h2 { color: #fff; font-size: 2rem; margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto 30px; }
.cta-actions { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }

/* ===========================
   FOOTER
=========================== */
.site-footer { background: #0d1b2e; color: #8aaccc; padding: 60px 0 0; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-text { font-size: 1.3rem; font-weight: 800; color: #fff; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: #6a8caa; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 34px; height: 34px; border-radius: 6px;
    background: rgba(255,255,255,0.06); display: flex;
    align-items: center; justify-content: center;
    transition: background 0.2s;
}
.footer-social a:hover { background: var(--primary); }
.footer-social a svg { width: 16px; height: 16px; color: #fff; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: #6a8caa; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #6a8caa; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #fff; }
.footer-payment { display: flex; gap: 8px; align-items: center; }
.payment-badge {
    background: rgba(255,255,255,0.08); border-radius: 4px;
    padding: 4px 10px; font-size: 0.72rem; font-weight: 600; color: #8aaccc;
}

/* ===========================
   MOBILE MENU
=========================== */
.mobile-nav {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.5); z-index: 2000;
}
.mobile-nav.open { display: block; }
.mobile-nav-inner {
    background: #fff; width: 300px; height: 100%;
    overflow-y: auto; padding: 20px;
    box-shadow: 5px 0 30px rgba(0,0,0,0.2);
}
.mobile-nav-close { float: right; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-dark); }
.mobile-nav-links { margin-top: 20px; }
.mobile-nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text-dark); font-weight: 600; font-size: 0.95rem; }
.mobile-sub { padding-left: 15px; }
.mobile-sub a { font-weight: 400; font-size: 0.875rem; color: var(--text-mid); padding: 8px 0; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
    .main-nav > ul > li > a { padding: 0 10px; font-size: 0.85rem; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .products-overview-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .main-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .reseller-section .container { grid-template-columns: 1fr; }
    .infra-section .container { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .features-strip .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .products-overview-grid { grid-template-columns: 1fr 1fr; }
    .features-strip .container { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .reseller-features { grid-template-columns: 1fr; }
}

/* ===========================
   WORDPRESS STYLES
=========================== */
.wp-block-image { margin: 20px 0; }
.aligncenter { text-align: center; margin: 0 auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.admin-bar .site-header { top: 32px; }
