/* ================================================
   MBIVDEVELOPMENT - Main Stylesheet (Figma Design)
   ================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #DC2626;
    --primary-dark: #B91C1C;
    --primary-light: #EF4444;
    --primary-soft: rgba(220,38,38,.08);
    --secondary: #1E293B;
    --accent: #F59E0B;
    --foreground: #1E293B;
    --muted: #64748b;
    --border: #e2e8f0;
    --surface: #f8fafc;
    --surface-dark: #f1f5f9;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --white: #ffffff;
    --radius: 8px;
    --radius-lg: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,.08);
    --shadow-xl: 0 20px 40px rgba(0,0,0,.1);
    --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.highlight { color: var(--primary); }

/* --- Grid System --- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}

/* --- Status Badges --- */
.badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 10px; border-radius: 8px; font-size: 12px; font-weight: 600;
}
.badge-success { background: rgba(16,185,129,.1); color: var(--success); }
.badge-warning { background: rgba(245,158,11,.1); color: var(--warning); }
.badge-danger  { background: rgba(239,68,68,.1);  color: var(--danger); }
.badge-primary { background: rgba(220,38,38,.1);  color: var(--primary); }
.badge-muted   { background: rgba(100,116,139,.1);color: var(--muted); }
.badge-green   { background: rgba(16,185,129,.15); color: #059669; border-radius: 8px; font-size: 11px; }
.badge-outline { background: transparent; border: 1px solid rgba(255,255,255,.3); color: #fff; font-size: 13px; border-radius: 8px; padding: 4px 14px; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; font-size: 14px; font-weight: 600; border-radius: 8px;
    border: none; cursor: pointer; transition: all .2s; text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 8px 20px rgba(220,38,38,.25); }
.btn-secondary { background: var(--white); color: var(--foreground); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--surface); }
.btn-accent { background: var(--primary); color: var(--white); border-radius: 8px; }
.btn-accent:hover { background: var(--primary-dark); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); border-radius: 8px; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-outline-red { background: transparent; color: var(--primary); border: 2px solid var(--primary); border-radius: 8px; }
.btn-outline-red:hover { background: var(--primary-soft); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-icon {
    width: 32px; height: 32px; padding: 0; border-radius: 8px;
    background: transparent; border: none; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--muted); transition: background .2s;
}
.btn-icon:hover { background: var(--surface); }
.btn-icon.danger:hover { color: var(--danger); }

/* --- Cards --- */
.card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; padding: 24px; transition: all .3s;
}
.card:hover { border-color: rgba(220,38,38,.15); box-shadow: var(--shadow-lg); }
.card-flat { transition: none; }
.card-flat:hover { border-color: var(--border); box-shadow: none; }

/* --- Icon Boxes --- */
.icon-box {
    width: 48px; height: 48px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-box-sm { width: 40px; height: 40px; }
.icon-box-xs { width: 36px; height: 36px; border-radius: 8px; }
.icon-box-round { width: 56px; height: 56px; border-radius: 50%; }
.icon-box svg { width: 24px; height: 24px; }
.icon-box-sm svg { width: 20px; height: 20px; }
.icon-box-xs svg { width: 16px; height: 16px; }

.bg-primary-soft { background: rgba(220,38,38,.08); }
.bg-secondary-soft { background: rgba(124,58,237,.1); }
.bg-success-soft { background: rgba(16,185,129,.1); }
.bg-warning-soft { background: rgba(245,158,11,.1); }
.bg-danger-soft { background: rgba(239,68,68,.1); }
.bg-accent-soft { background: rgba(6,182,212,.1); }
.bg-surface { background: var(--surface); }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }

/* --- Gradient Backgrounds --- */
.grad-red    { background: linear-gradient(135deg, #EF4444, #DC2626); color: #fff; border-radius: 8px; }
.grad-blue   { background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff; border-radius: 8px; }
.grad-green  { background: linear-gradient(135deg, #10b981, #059669); color: #fff; border-radius: 8px; }
.grad-amber  { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; border-radius: 8px; }
.grad-cyan   { background: linear-gradient(135deg, #06b6d4, #0891b2); color: #fff; border-radius: 8px; }
.grad-rose   { background: linear-gradient(135deg, #f43f5e, #e11d48); color: #fff; border-radius: 8px; }
.grad-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); color: #fff; border-radius: 8px; }

/* --- Tables --- */
.table-wrap {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; overflow: hidden;
}
.table-header {
    padding: 16px 24px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
table { width: 100%; border-collapse: collapse; }
thead th {
    padding: 12px 24px; text-align: left; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .05em; color: var(--muted);
    background: var(--surface); border-bottom: 1px solid var(--border);
}
tbody td {
    padding: 12px 24px; font-size: 14px; border-bottom: 1px solid var(--border); vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(248,250,252,.5); }

/* --- Forms --- */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--foreground); }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 10px 16px; font-size: 14px; border: 1px solid var(--border);
    border-radius: 8px; outline: none; transition: all .2s; background: var(--white);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}
.form-textarea { resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.search-input {
    padding-left: 40px; width: 280px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: 12px center;
}

/* --- Progress Bar --- */
.progress { width: 100%; height: 6px; background: var(--surface-dark); border-radius: 8px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--primary); border-radius: 8px; transition: width .3s; }
.progress-green .progress-bar { background: var(--success); }

/* ================================================
   TOP BAR
   ================================================ */
.topbar {
    background: var(--secondary); color: rgba(255,255,255,.8); font-size: 13px;
}
.topbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 8px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-left a, .topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left svg { width: 14px; height: 14px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a {
    display: flex; align-items: center; gap: 4px;
    color: rgba(255,255,255,.7); transition: color .2s;
}
.topbar-right a:hover { color: #fff; }
.topbar-right svg { width: 14px; height: 14px; }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    position: sticky; top: 0; z-index: 50;
    background: var(--white); border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.navbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 60px;
}
.navbar-logo { display: flex; align-items: center; gap: 6px; }
.navbar-logo img, .navbar-logo .logo-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
}
.navbar-logo .logo-icon svg { width: 18px; height: 18px; color: white; }
.navbar-logo span { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--secondary); }
.navbar-logo .highlight { color: var(--primary); }

.navbar-links { display: flex; gap: 2px; }
.navbar-links a {
    padding: 8px 14px; font-size: 14px; font-weight: 500;
    color: var(--muted); border-radius: 8px; transition: all .2s;
}
.navbar-links a:hover { color: var(--foreground); background: var(--surface); }

.navbar-actions { display: flex; align-items: center; gap: 8px; }
.navbar-actions .icon-link {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); transition: all .2s;
}
.navbar-actions .icon-link:hover { background: var(--surface); color: var(--foreground); }
.navbar-actions .icon-link svg { width: 20px; height: 20px; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--foreground); padding: 8px; }
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; flex-direction: column; padding: 16px 24px; background: var(--white); border-top: 1px solid var(--border); }
.mobile-menu a { padding: 12px 0; font-size: 15px; color: var(--foreground); border-bottom: 1px solid var(--border); }

@media (max-width: 1024px) {
    .navbar-links { display: none; }
    .navbar-actions { display: none; }
    .mobile-toggle { display: block; }
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 50%, #991B1B 100%);
    color: #fff; padding: 80px 0 60px; text-align: center; position: relative;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.hero::after {
    content: ''; position: absolute; bottom: -40%; left: -15%;
    width: 500px; height: 500px; border-radius: 50%;
    background: rgba(255,255,255,.03);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: 42px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.hero h1 span { display: block; }
.hero p { font-size: 17px; opacity: .9; max-width: 620px; margin: 0 auto 32px; line-height: 1.7; }

/* --- Domain Search --- */
.domain-search {
    max-width: 560px; margin: 0 auto 24px;
    display: flex; background: var(--white); border-radius: 8px;
    overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.domain-search input {
    flex: 1; padding: 16px 20px; border: none; outline: none;
    font-size: 15px; color: var(--foreground);
}
.domain-search input::placeholder { color: #94a3b8; }
.domain-search button {
    padding: 16px 28px; background: var(--secondary);
    color: #fff; border: none; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: background .2s;
    display: flex; align-items: center; gap: 8px;
}
.domain-search button:hover { background: #0f172a; }

/* --- Promo Banner --- */
.promo-banner {
    max-width: 640px; margin: 0 auto 0;
    background: #FEF3C7; border-radius: 8px; padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.promo-banner .promo-left { display: flex; align-items: center; gap: 12px; }
.promo-badge { background: var(--primary); color: #fff; padding: 3px 10px; border-radius: 8px; font-size: 12px; font-weight: 700; }
.promo-text { font-size: 14px; font-weight: 500; color: var(--foreground); }
.promo-text small { display: block; font-size: 12px; color: var(--muted); font-weight: 400; }
.promo-btn {
    padding: 8px 20px; background: var(--primary); color: #fff;
    border-radius: 8px; font-size: 13px; font-weight: 600; white-space: nowrap;
    border: none; cursor: pointer; transition: background .2s;
}
.promo-btn:hover { background: var(--primary-dark); }

/* ================================================
   SECTIONS
   ================================================ */
.section { padding: 80px 0; }
.section-red { background: linear-gradient(135deg, #DC2626, #B91C1C); color: #fff; }
.section-light { background: var(--surface); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.section-header p { font-size: 16px; color: var(--muted); line-height: 1.7; }
.section-red .section-header p { color: rgba(255,255,255,.8); }

.section-tags { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.section-tag {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 16px; border-radius: 8px; font-size: 13px; font-weight: 500;
    background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
}
.section-tag svg { width: 14px; height: 14px; }

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
}
.about-image { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-xl); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.about-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about-content .bold-text { color: var(--primary); font-weight: 600; }

.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.about-stat-box {
    display: flex; align-items: center; gap: 12px; padding: 16px;
    background: var(--surface); border-radius: 8px; border: 1px solid var(--border);
}
.about-stat-icon { color: var(--primary); }
.about-stat-icon svg { width: 20px; height: 20px; }
.about-stat-value { font-size: 20px; font-weight: 800; color: var(--foreground); }
.about-stat-label { font-size: 12px; color: var(--muted); }
.about-founded {
    display: flex; flex-direction: column; align-items: center;
    padding: 20px; background: var(--primary-soft); border-radius: 8px;
    border: 1px solid rgba(220,38,38,.15); margin-top: 16px;
}
.about-founded svg { color: var(--primary); margin-bottom: 8px; }
.about-founded .year { font-size: 28px; font-weight: 800; color: var(--primary); }
.about-founded .label { font-size: 13px; color: var(--muted); }
.about-cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 20px; padding: 10px 20px; border-radius: 8px;
    background: var(--primary); color: #fff; font-weight: 600; font-size: 14px;
}
.about-cta:hover { background: var(--primary-dark); }

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ================================================
   PRICING CARDS
   ================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pricing-card {
    background: var(--white); border-radius: 8px; padding: 28px 24px;
    display: flex; flex-direction: column; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: transform .2s;
}
.section-red .pricing-card { border: none; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card .pricing-type { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.pricing-card h3 { font-size: 20px; font-weight: 700; margin: 4px 0 8px; }
.pricing-stars { display: flex; align-items: center; justify-content: center; gap: 2px; margin-bottom: 12px; }
.pricing-stars svg { width: 14px; height: 14px; fill: #facc15; color: #facc15; }
.pricing-stars span { font-size: 12px; color: var(--muted); margin-left: 4px; }
.pricing-price { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.pricing-price small { font-size: 14px; font-weight: 400; color: var(--muted); }
.pricing-features { list-style: none; text-align: left; margin-bottom: 20px; flex: 1; }
.pricing-features li {
    display: flex; align-items: center; gap: 8px; padding: 6px 0;
    font-size: 13px; color: var(--foreground); border-bottom: 1px solid var(--surface-dark);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { width: 16px; height: 16px; flex-shrink: 0; }
.pricing-features .feat-icon { color: var(--muted); }
.pricing-extras { font-size: 12px; color: var(--muted); margin-bottom: 16px; text-align: left; }
.pricing-extras li { border: none; }
.pricing-extras li svg { color: var(--success); }
.pricing-btn {
    width: 100%; padding: 12px; background: var(--primary); color: #fff;
    border: none; border-radius: 8px; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pricing-btn:hover { background: var(--primary-dark); }
.pricing-footer { text-align: center; margin-top: 8px; font-size: 12px; color: var(--muted); }

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.testimonial-image { border-radius: 8px; overflow: hidden; }
.testimonial-image img { width: 100%; height: 360px; object-fit: cover; }
.testimonial-content { }
.testimonial-badge { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.testimonial-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.testimonial-badge span { font-size: 14px; font-weight: 600; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: #facc15; color: #facc15; }
.testimonial-text { font-size: 16px; font-style: italic; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }
.testimonial-author { font-weight: 700; color: var(--primary); font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--muted); }

@media (max-width: 768px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ================================================
   FEATURES GRID
   ================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 8px;
    padding: 28px; text-align: center; transition: all .3s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(220,38,38,.15); }
.feature-card .feat-icon-box {
    width: 56px; height: 56px; border-radius: 8px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-soft);
}
.feature-card .feat-icon-box svg { width: 24px; height: 24px; color: var(--primary); }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

/* ================================================
   PLATFORM CARDS
   ================================================ */
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.platform-card {
    background: var(--white); border-radius: 8px; padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}
.platform-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.platform-name { font-size: 18px; font-weight: 800; }
.platform-meta { font-size: 12px; color: var(--muted); }
.platform-pct { font-size: 14px; font-weight: 700; color: var(--primary); }
.platform-desc { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.platform-features { list-style: none; margin-bottom: 16px; }
.platform-features li { display: flex; align-items: center; gap: 6px; font-size: 13px; padding: 3px 0; color: var(--foreground); }
.platform-features li svg { width: 14px; height: 14px; color: var(--success); }
.platform-bar { margin-top: 8px; }
.platform-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.platform-bar .progress { height: 4px; }
.platform-bar .progress-bar { background: var(--primary); }

@media (max-width: 768px) { .platform-grid { grid-template-columns: 1fr; } }

/* ================================================
   FRAMEWORK SECTION
   ================================================ */
.framework-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.framework-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 16px 24px; background: rgba(255,255,255,.1); border-radius: 8px;
    min-width: 100px;
}
.framework-item .fw-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; }
.framework-item .fw-icon svg { width: 20px; height: 20px; color: #fff; }
.framework-item span { font-size: 13px; font-weight: 500; }

/* ================================================
   VPS SECTION
   ================================================ */
.vps-tags { display: flex; justify-content: center; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.vps-tag { padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 500; background: var(--surface); color: var(--muted); border: 1px solid var(--border); }
.vps-tag.active { background: var(--primary-soft); color: var(--primary); border-color: rgba(220,38,38,.2); }

/* ================================================
   DATACENTER SECTION
   ================================================ */
.dc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.dc-card {
    background: rgba(255,255,255,.1); border-radius: 8px; padding: 20px; text-align: center;
}
.dc-card .dc-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,.1); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; }
.dc-card .dc-icon svg { width: 20px; height: 20px; color: rgba(255,255,255,.8); }
.dc-card h4 { font-size: 15px; font-weight: 700; }
.dc-card .dc-country { font-size: 12px; color: rgba(255,255,255,.6); }
.dc-card .dc-meta { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 8px; }
.dc-card .dc-meta span { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 2px; }
.dc-card .dc-meta svg { width: 10px; height: 10px; }
.dc-card .dc-status { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 6px; font-size: 11px; }
.dc-card .dc-status .dot-green { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }

.dc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dc-stat-card { background: rgba(255,255,255,.1); border-radius: 8px; padding: 20px; text-align: center; }
.dc-stat-card .dc-stat-val { font-size: 24px; font-weight: 800; }
.dc-stat-card .dc-stat-label { font-size: 13px; color: rgba(255,255,255,.6); }

@media (max-width: 768px) { .dc-grid { grid-template-columns: 1fr 1fr; } }

/* ================================================
   BLOG / INSIGHTS
   ================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); transition: all .3s; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-img { height: 180px; background: var(--surface-dark); position: relative; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag { position: absolute; top: 12px; left: 12px; padding: 3px 10px; border-radius: 8px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 600; }
.blog-body { padding: 20px; }
.blog-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.blog-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-author { display: flex; align-items: center; gap: 8px; }
.blog-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.blog-author span { font-size: 13px; font-weight: 500; }
.blog-link { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 4px; }
.blog-link svg { width: 14px; height: 14px; }

@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* ================================================
   NEWSLETTER
   ================================================ */
.newsletter {
    max-width: 520px; margin: 48px auto 0; background: var(--white); border-radius: 8px;
    padding: 32px; text-align: center; box-shadow: var(--shadow-lg);
}
.newsletter .nl-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.newsletter .nl-icon svg { width: 22px; height: 22px; }
.newsletter h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.newsletter p { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.newsletter form { display: flex; gap: 8px; }
.newsletter form input { flex: 1; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; outline: none; }
.newsletter form input:focus { border-color: var(--primary); }
.newsletter form button { padding: 12px 20px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.newsletter form button:hover { background: var(--primary-dark); }
.newsletter .nl-note { font-size: 11px; color: var(--muted); margin-top: 8px; }

/* ================================================
   PARTNERS
   ================================================ */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.partner-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 8px;
    padding: 24px; transition: all .3s;
}
.partner-card:hover { box-shadow: var(--shadow-lg); }
.partner-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.partner-logo {
    width: 40px; height: 40px; border-radius: 8px; display: flex;
    align-items: center; justify-content: center; font-size: 16px; font-weight: 800;
}
.partner-name { font-size: 16px; font-weight: 700; }
.partner-type { font-size: 12px; color: var(--success); display: flex; align-items: center; gap: 4px; }
.partner-type svg { width: 12px; height: 12px; }
.partner-badge { display: inline-block; padding: 2px 8px; border-radius: 8px; font-size: 11px; font-weight: 600; margin-bottom: 8px; }
.partner-desc { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.partner-detail { font-size: 13px; display: flex; align-items: center; gap: 6px; }
.partner-detail svg { width: 14px; height: 14px; color: var(--primary); }

@media (max-width: 768px) { .partner-grid { grid-template-columns: 1fr; } }

/* ================================================
   TRUST BADGES
   ================================================ */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 32px 0; }
.trust-card { text-align: center; padding: 20px; background: var(--surface); border-radius: 8px; }
.trust-card:last-child { background: var(--primary-soft); border: 1px solid rgba(220,38,38,.15); }
.trust-icon { width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; }
.trust-icon svg { width: 22px; height: 22px; }
.trust-card h4 { font-size: 16px; font-weight: 800; }
.trust-card p { font-size: 12px; color: var(--muted); }

@media (max-width: 640px) { .trust-grid { grid-template-columns: 1fr 1fr; } }

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 8px;
    padding: 28px; text-align: center; transition: all .3s;
}
.contact-card:hover { box-shadow: var(--shadow-lg); }
.contact-icon {
    width: 56px; height: 56px; border-radius: 8px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.contact-card .contact-sub { font-size: 13px; color: var(--primary); margin-bottom: 12px; }
.contact-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.contact-card .contact-detail { font-size: 12px; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 4px; }
.contact-card .contact-detail svg { width: 12px; height: 12px; }
.contact-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; border: 2px solid var(--primary); color: var(--primary);
    border-radius: 8px; font-size: 13px; font-weight: 600; margin-top: 8px; transition: all .2s;
}
.contact-link:hover { background: var(--primary); color: #fff; }
.contact-link svg { width: 14px; height: 14px; }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ================================================
   FOOTER
   ================================================ */
.footer-icons {
    background: var(--primary); padding: 40px 0;
}
.footer-icons-inner {
    display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.footer-icon-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px; color: #fff; min-width: 100px;
}
.footer-icon-item .fi-icon {
    width: 48px; height: 48px; border-radius: 8px;
    background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center;
}
.footer-icon-item .fi-icon svg { width: 22px; height: 22px; }
.footer-icon-item span { font-size: 13px; font-weight: 500; }
.footer-icon-item small { font-size: 11px; opacity: .7; }

.footer {
    background: var(--secondary); color: rgba(255,255,255,.7); padding: 60px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; padding-bottom: 40px;
}
.footer-brand { }
.footer-brand .navbar-logo { margin-bottom: 16px; }
.footer-brand .navbar-logo span { color: #fff; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a, .footer-contact span {
    display: flex; align-items: center; gap: 6px; font-size: 13px;
    color: rgba(255,255,255,.6); transition: color .2s;
}
.footer-contact a:hover { color: #fff; }
.footer-col h4 {
    font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px;
    display: flex; align-items: center; gap: 6px;
}
.footer-col h4 svg { width: 16px; height: 16px; color: var(--primary); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    background: linear-gradient(135deg, #DC2626, #991B1B);
    color: #fff; padding: 60px 0; text-align: center;
}
.cta-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.cta-section p { font-size: 15px; opacity: .9; max-width: 500px; margin: 0 auto 24px; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ================================================
   DASHBOARD / ADMIN (unchanged from before)
   ================================================ */
.layout-dashboard { display: flex; min-height: 100vh; }

.sidebar {
    width: 260px; background: var(--white); border-right: 1px solid var(--border);
    display: flex; flex-direction: column; position: fixed; top: 0; bottom: 0;
    z-index: 40; overflow-y: auto;
}
.sidebar-dark { background: var(--secondary); border-right: 1px solid rgba(255,255,255,.1); }

.sidebar-logo {
    padding: 20px 24px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 6px;
}
.sidebar-dark .sidebar-logo { border-bottom-color: rgba(255,255,255,.1); }
.sidebar-logo a { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.sidebar-logo .logo-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--primary); display: flex; align-items: center; justify-content: center;
}
.sidebar-logo .logo-icon svg { width: 16px; height: 16px; color: white; }
.sidebar-logo span { font-size: 16px; font-weight: 700; }
.sidebar-dark .sidebar-logo span { color: #fff; }
.sidebar-label { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.sidebar-dark .sidebar-label { color: rgba(255,255,255,.4); }

.sidebar-nav { flex: 1; padding: 16px 12px; display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px; border-radius: 8px; font-size: 14px; font-weight: 500;
    color: var(--muted); transition: all .2s;
}
.sidebar-nav a svg { width: 20px; height: 20px; }
.sidebar-nav a:hover { background: var(--surface); color: var(--foreground); }
.sidebar-nav a.active { background: var(--primary-soft); color: var(--primary); font-weight: 600; }
.sidebar-dark .sidebar-nav a { color: rgba(255,255,255,.6); }
.sidebar-dark .sidebar-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.sidebar-dark .sidebar-nav a.active { background: rgba(220,38,38,.15); color: var(--primary-light); }
.sidebar-nav .chevron { margin-left: auto; }

.sidebar-footer {
    padding: 16px; border-top: 1px solid var(--border);
}
.sidebar-dark .sidebar-footer { border-top-color: rgba(255,255,255,.1); }
.sidebar-user { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sidebar-avatar {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--primary-soft); display: flex; align-items: center; justify-content: center;
}
.sidebar-dark .sidebar-avatar { background: rgba(255,255,255,.1); }
.sidebar-avatar svg { width: 16px; height: 16px; color: var(--primary); }
.sidebar-dark .sidebar-avatar svg { color: rgba(255,255,255,.7); }
.sidebar-user-name { font-size: 13px; font-weight: 600; }
.sidebar-dark .sidebar-user-name { color: #fff; }
.sidebar-user-email { font-size: 11px; color: var(--muted); }
.sidebar-dark .sidebar-user-email { color: rgba(255,255,255,.4); }
.sidebar .logout {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px; font-size: 13px; color: var(--muted); border-radius: 8px;
    transition: all .2s;
}
.sidebar .logout:hover { background: rgba(239,68,68,.05); color: var(--danger); }
.sidebar-dark .sidebar .logout { color: rgba(255,255,255,.5); }
.sidebar-dark .sidebar .logout:hover { background: rgba(239,68,68,.15); color: var(--primary-light); }
.sidebar .logout svg { width: 18px; height: 18px; }

.main-content { flex: 1; margin-left: 260px; padding: 32px; background: var(--surface); min-height: 100vh; }

/* --- Dashboard Pages --- */
.page-header { margin-bottom: 24px; }
.page-header h1 { font-size: 24px; font-weight: 700; }
.page-header p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.page-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }

.stat-card { text-align: left; }
.stat-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.stat-value { font-size: 28px; font-weight: 800; }
.stat-label { font-size: 13px; color: var(--muted); }
.stat-change { display: flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; }
.stat-change.up { color: var(--success); }
.stat-change.down { color: var(--danger); }

.panel-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; }
@media (max-width: 768px) { .panel-grid { grid-template-columns: 1fr; } }

.activity-item {
    display: flex; align-items: flex-start; gap: 12px; padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.activity-item:last-child { border-bottom: none; }
.activity-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--primary-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.activity-icon svg { width: 18px; height: 18px; color: var(--primary); }
.activity-text { font-size: 14px; font-weight: 500; }
.activity-detail { font-size: 12px; color: var(--muted); }
.activity-time { font-size: 11px; color: var(--muted); white-space: nowrap; display: flex; align-items: center; gap: 4px; }

.quick-action {
    display: flex; align-items: center; gap: 12px; padding: 14px 16px;
    border-radius: 8px; font-size: 14px; font-weight: 500;
    border: 1px solid var(--border); transition: all .2s;
}
.quick-action svg { width: 20px; height: 20px; }
.quick-action:hover { box-shadow: var(--shadow); }
.qa-primary { background: var(--primary-soft); color: var(--primary); border-color: rgba(220,38,38,.15); }
.qa-secondary { background: rgba(124,58,237,.05); color: #7c3aed; border-color: rgba(124,58,237,.15); }
.qa-success { background: rgba(16,185,129,.05); color: #059669; border-color: rgba(16,185,129,.15); }

.upgrade-card {
    margin-top: 16px; padding: 20px; border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), #991B1B);
    color: #fff;
}
.upgrade-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.upgrade-card p { font-size: 13px; opacity: .9; margin-bottom: 12px; }
.upgrade-card button {
    padding: 8px 16px; background: rgba(255,255,255,.2); color: #fff;
    border: 1px solid rgba(255,255,255,.3); border-radius: 8px;
    font-size: 13px; font-weight: 600; cursor: pointer;
}

/* --- Service List --- */
.service-list-item {
    display: flex; align-items: flex-start; gap: 16px; padding: 20px;
    background: var(--white); border: 1px solid var(--border); border-radius: 8px;
    transition: all .2s;
}
.service-list-item:hover { box-shadow: var(--shadow); }
.sli-content { flex: 1; min-width: 0; }
.sli-title { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sli-name { font-size: 15px; font-weight: 600; }
.sli-domain { font-size: 13px; color: var(--muted); margin-top: 2px; }
.sli-meta { display: flex; gap: 16px; margin-top: 8px; font-size: 12px; color: var(--muted); flex-wrap: wrap; }
.sli-progress { margin-top: 8px; max-width: 200px; }
.manage-link { font-size: 13px; color: var(--primary); font-weight: 500; display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.manage-link svg { width: 14px; height: 14px; }

/* --- Ticket form --- */
.new-ticket-form { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px; margin-bottom: 24px; }
.new-ticket-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.new-ticket-header h2 { font-size: 18px; font-weight: 700; }

/* --- Customer avatars --- */
.customer-avatar {
    width: 36px; height: 36px; border-radius: 8px; display: flex;
    align-items: center; justify-content: center; color: #fff;
    font-size: 14px; font-weight: 700; flex-shrink: 0;
}

/* --- Bar Chart --- */
.bar-item { margin-bottom: 16px; }
.bar-label { display: flex; justify-content: space-between; margin-bottom: 6px; }
.bar-label-name { font-size: 13px; font-weight: 500; }
.bar-label-count { font-size: 13px; color: var(--muted); }

/* --- Server Status --- */
.server-status {
    margin-top: 24px; padding: 16px; border-radius: 8px;
    background: rgba(16,185,129,.05); border: 1px solid rgba(16,185,129,.15);
}
.ss-head { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--success); font-size: 14px; margin-bottom: 6px; }
.server-status p { font-size: 13px; color: var(--muted); }

@media (max-width: 768px) {
    .sidebar { display: none; }
    .main-content { margin-left: 0; }
    .form-row { grid-template-columns: 1fr; }
    .topbar-left, .topbar-right { flex-wrap: wrap; gap: 8px; }
    .hero h1 { font-size: 28px; }
    .domain-search { flex-direction: column; }
    .domain-search button { width: 100%; justify-content: center; }
    .promo-banner { flex-direction: column; text-align: center; }
}

/* --- Stars --- */
.stars { display: flex; align-items: center; gap: 1px; }
.stars svg { width: 16px; height: 16px; fill: #facc15; color: #facc15; }

/* ================================================
   PAGE HERO (subpages)
   ================================================ */
.page-hero {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 50%, #991B1B 100%);
    color: #fff; padding: 60px 0; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -40%; right: -15%;
    width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.04);
}
.page-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 16px; opacity: .9; max-width: 560px; margin: 0 auto; }

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar { background: var(--secondary); padding: 20px 0; }
.stats-row {
    display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num { font-size: 22px; font-weight: 800; color: #fff; }
.stat-txt { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,.15); }
@media (max-width: 640px) {
    .stat-divider { display: none; }
    .stats-row { gap: 20px; }
}

/* ================================================
   SERVICES GRID (home page)
   ================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
    display: flex; flex-direction: column; padding: 28px; background: var(--white);
    border: 1px solid var(--border); border-radius: 8px; transition: all .3s;
    text-decoration: none; color: inherit;
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(220,38,38,.15); transform: translateY(-2px); }
.svc-icon {
    width: 48px; height: 48px; border-radius: 8px; display: flex;
    align-items: center; justify-content: center; margin-bottom: 16px;
}
.svc-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.7; flex: 1; }
.svc-link { font-size: 13px; font-weight: 600; margin-top: 12px; display: flex; align-items: center; gap: 4px; }
.svc-link svg { width: 14px; height: 14px; }

@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }
@media (max-width: 1024px) and (min-width: 769px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================================================
   PRICING 3-GRID
   ================================================ */
.pricing-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .pricing-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pricing-grid-3 { grid-template-columns: 1fr; } }

.pricing-card.popular {
    border: 2px solid var(--primary); position: relative; transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(220,38,38,.12);
}
.popular-tag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #fff; padding: 4px 16px;
    border-radius: 8px; font-size: 12px; font-weight: 700; white-space: nowrap;
}
.pricing-desc { font-size: 13px; color: var(--muted); margin-bottom: 12px; }

/* ================================================
   DOMAIN EXTENSIONS
   ================================================ */
.domain-ext-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.domain-ext-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 8px;
    padding: 24px; text-align: center; position: relative; transition: all .3s;
}
.domain-ext-card:hover { box-shadow: var(--shadow-lg); }
.domain-ext-card.popular { border-color: rgba(220,38,38,.3); }
.ext-name { font-size: 28px; font-weight: 900; color: var(--primary); margin-bottom: 4px; }
.ext-price { font-size: 20px; font-weight: 700; color: var(--foreground); }
.ext-price small { font-size: 13px; font-weight: 400; color: var(--muted); }
.ext-desc { font-size: 13px; color: var(--muted); margin-top: 4px; }
@media (max-width: 768px) { .domain-ext-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .domain-ext-grid { grid-template-columns: 1fr; } }

/* ================================================
   REGISTRAR GRID
   ================================================ */
.registrar-grid { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.registrar-item {
    display: flex; align-items: center; gap: 8px; padding: 12px 20px;
    background: rgba(255,255,255,.1); border-radius: 8px; font-size: 14px; font-weight: 600;
}
.registrar-item .reg-icon { color: rgba(255,255,255,.8); }
.registrar-item .reg-icon svg { width: 18px; height: 18px; }

/* ================================================
   TECH GRID
   ================================================ */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tech-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px;
}
.tech-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.tech-card ul { list-style: none; }
.tech-card ul li {
    display: flex; align-items: center; gap: 8px; padding: 6px 0;
    font-size: 14px; color: var(--foreground);
}
.tech-card ul li svg { width: 14px; height: 14px; color: var(--success); }
@media (max-width: 768px) { .tech-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .tech-grid { grid-template-columns: 1fr; } }

/* ================================================
   PROCESS STEPS
   ================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 24px; }
.step-num {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); color: #fff; display: flex;
    align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; margin: 0 auto 16px;
}
.process-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* ================================================
   FAQ
   ================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    border: 1px solid var(--border); border-radius: 8px;
    overflow: hidden; background: var(--white);
}
.faq-toggle {
    width: 100%; padding: 16px 20px; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 15px; font-weight: 600; color: var(--foreground);
    cursor: pointer; text-align: left; transition: background .2s;
}
.faq-toggle:hover { background: var(--surface); }
.faq-toggle svg { transition: transform .2s; color: var(--muted); flex-shrink: 0; }
.faq-item.open .faq-toggle svg { transform: rotate(90deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 20px 16px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ================================================
   PLATFORM LOGOS
   ================================================ */
.platform-logos { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.platform-logo-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 20px 28px; background: var(--surface); border-radius: 8px;
    border: 1px solid var(--border); transition: all .3s; min-width: 120px;
}
.platform-logo-item:hover { box-shadow: var(--shadow); border-color: rgba(220,38,38,.15); }
.pl-icon { width: 44px; height: 44px; border-radius: 8px; background: var(--primary-soft); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.pl-icon svg { width: 22px; height: 22px; }
.platform-logo-item span { font-size: 13px; font-weight: 600; }

/* ================================================
   NAVBAR ACTIVE LINK
   ================================================ */
.navbar-links a.active { color: var(--primary); font-weight: 600; }
