/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 50%, #f5f7ff 100%);
    padding: 90px 0 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: #4169E1;
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #4169E1;
    bottom: -150px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #7c3aed;
    top: 50%;
    left: 40%;
    opacity: 0.05;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* LEFT CONTENT */
.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(65, 105, 225, 0.1);
    color: #4169E1;
    border: 1px solid rgba(65, 105, 225, 0.25);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-highlight {
    color: #4169E1;
    position: relative;
}

.hero-subtitle {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

/* DOMAIN SEARCH */
.hero-domain-search {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    max-width: 560px;
}

.domain-input-wrap {
    flex: 1;
    min-width: 260px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0 16px;
    transition: border-color 0.3s;
}

.domain-input-wrap:focus-within {
    border-color: #4169E1;
}

.domain-input-wrap svg {
    color: #9ca3af;
    flex-shrink: 0;
}

.domain-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: #111827;
    padding: 16px 0;
    background: transparent;
}

.domain-input::placeholder {
    color: #9ca3af;
}


.domain-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #4169E1;
    color: #ffffff;
    border: none;
    padding: 16px 28px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s, transform 0.2s;
}

.domain-search-btn:hover {
    background: #3154c7;
    transform: translateY(-1px);
}

/* POPULAR TLDS */
.popular-tlds {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.tld-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.tld-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    transition: 0.3s;
}

.tld-tag span {
    color: #4169E1;
    font-weight: 600;
}

.tld-tag:hover {
    border-color: #4169E1;
    background: rgba(65, 105, 225, 0.05);
}

/* STATS */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-item strong {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

.stat-item span {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

/* RIGHT VISUAL */
.hero-visual {
    flex: 0 0 440px;
    position: relative;
}

.server-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(65, 105, 225, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(65, 105, 225, 0.1);
}

.server-card-header {
    background: #1e293b;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.server-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #22c55e;
}

.server-card-title {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
}

.server-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.server-metric {
    display: flex;
    align-items: center;
    gap: 12px;
}

.metric-info {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 120px;
    flex-shrink: 0;
    font-size: 13px;
    color: #374151;
    font-weight: 500;
}

.metric-bar-wrap {
    flex: 1;
    background: #f3f4f6;
    border-radius: 50px;
    height: 8px;
    overflow: hidden;
}

.metric-bar {
    height: 100%;
    background: linear-gradient(90deg, #4169E1, #6b8ef2);
    border-radius: 50px;
    transition: width 1s ease;
}

.green-bar {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.metric-val {
    font-size: 12px;
    font-weight: 700;
    color: #4169E1;
    width: 48px;
    text-align: right;
    flex-shrink: 0;
}

.green-val {
    color: #22c55e;
}

.server-active-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #15803d;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.server-plan-preview {
    background: #f8fafc;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.plan-preview-row span {
    color: #6b7280;
}

.plan-preview-row strong {
    color: #111827;
    font-weight: 600;
}

/* FLOATING BADGES */
.floating-badge {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    animation: float 3s ease-in-out infinite;
}

.floating-badge div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.floating-badge strong {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

.floating-badge small {
    font-size: 11px;
    color: #6b7280;
}

.badge-ssl {
    bottom: 30px;
    left: -30px;
    animation-delay: 0s;
}

.badge-support {
    top: 30px;
    right: -25px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* =========================
   CPANEL HERO CARD
========================= */

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(65,105,225,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(65,105,225,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.cpanel-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(65, 105, 225, 0.13), 0 8px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(65,105,225,0.1);
    overflow: hidden;
}

/* Top bar */
.cpanel-topbar {
    background: #1e293b;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cpanel-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cpanel-logo-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.cpanel-brand-name {
    font-size: 15px;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.2;
}

.cpanel-brand-sub {
    font-size: 11px;
    color: #64748b;
    font-weight: 400;
}

.cpanel-status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #22c55e;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

/* User row */
.cpanel-user-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
    background: #fafcff;
}

.cpanel-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4169E1, #818cf8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.cpanel-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.cpanel-user-info strong {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.cpanel-user-info span {
    font-size: 11px;
    color: #6b7280;
}

.cpanel-upgrade-chip {
    background: linear-gradient(135deg, #FF6C2C, #ff8f5c);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Metrics grid */
.cpanel-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.cpanel-metric-card {
    background: #fff;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cpanel-metric-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cpanel-metric-icon.cpu  { background: rgba(65,105,225,0.1);  color: #4169E1; }
.cpanel-metric-icon.ram  { background: rgba(139,92,246,0.1);  color: #8b5cf6; }
.cpanel-metric-icon.disk { background: rgba(6,182,212,0.1);   color: #06b6d4; }
.cpanel-metric-icon.bw   { background: rgba(34,197,94,0.1);   color: #22c55e; }

.cpanel-metric-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cpanel-metric-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

.cpanel-metric-val {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.cpanel-meter-wrap {
    background: #f1f5f9;
    border-radius: 50px;
    height: 5px;
    overflow: hidden;
}

.cpanel-meter {
    height: 100%;
    border-radius: 50px;
    transition: width 1.2s ease;
}

/* Quick action row */
.cpanel-actions-row {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    flex-wrap: wrap;
}

.cpanel-action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}

.cpanel-action-btn:hover {
    border-color: #4169E1;
    color: #4169E1;
    background: rgba(65,105,225,0.05);
}

.highlight-action {
    background: rgba(65,105,225,0.08);
    border-color: rgba(65,105,225,0.3);
    color: #4169E1;
}

/* Uptime row */
.cpanel-uptime-row {
    padding: 12px 16px;
    background: #f0fdf4;
}

.cpanel-uptime-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #15803d;
}

.green-pulse {
    background: #22c55e;
}

/* =========================
   TRUST BAR
========================= */

.trust-bar {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 28px 0;
}

.trust-bar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 32px;
}

.trust-icon {
    color: #4169E1;
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.trust-text span {
    font-size: 12px;
    color: #6b7280;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

/* =========================
   SECTION SHARED STYLES
========================= */

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-block;
    background: rgba(65, 105, 225, 0.08);
    color: #4169E1;
    border: 1px solid rgba(65, 105, 225, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================
   PLANS SECTION
========================= */

.plans-section {
    padding: 90px 0;
    background: #f8fafc;
}

/* BILLING TOGGLE */
.plan-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: #e5e7eb;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    transition: 0.3s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked+.toggle-slider {
    background: #4169E1;
}

.toggle-switch input:checked+.toggle-slider::before {
    transform: translateX(24px);
}

.save-badge {
    background: #dcfce7;
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}

/* PLAN CARDS */
.plans-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
    flex-wrap: wrap;
}

.plan-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.plan-popular {
    background: #4169E1;
    border-color: #4169E1;
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(65, 105, 225, 0.3);
}

.plan-popular:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 28px 60px rgba(65, 105, 225, 0.35);
}

.popular-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.plan-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.plan-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blue-icon {
    background: rgba(65, 105, 225, 0.1);
    color: #4169E1;
}

.white-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.purple-icon {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.plan-name-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.plan-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.plan-popular .plan-name {
    color: #ffffff;
}

.plan-tagline {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.plan-popular .plan-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.plan-price {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
}

.price-currency {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 6px;
}

.plan-popular .price-currency {
    color: #ffffff;
}

.price-amount {
    font-size: 52px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -2px;
}

.plan-popular .price-amount {
    color: #ffffff;
}

.price-period {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 8px;
}

.plan-popular .price-period {
    color: rgba(255, 255, 255, 0.7);
}

.price-note {
    font-size: 12px;
    color: #9ca3af;
    margin-top: -12px;
}

.plan-popular .price-note {
    color: rgba(255, 255, 255, 0.6);
}

/* FEATURES LIST */
.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.plan-popular .plan-features li {
    color: rgba(255, 255, 255, 0.9);
}

.feature-disabled {
    opacity: 0.4;
}

/* PLAN BUTTONS */
.plan-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
    margin-top: auto;
}

.outline-btn {
    border: 2px solid #4169E1;
    color: #4169E1;
}

.outline-btn:hover {
    background: #4169E1;
    color: #ffffff;
}

.white-btn {
    background: #ffffff;
    color: #4169E1;
}

.white-btn:hover {
    background: #f0f4ff;
}

.plans-guarantee {
    text-align: center;
    margin-top: 36px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* =========================
   WHY SECTION
========================= */

.why-section {
    padding: 90px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 32px;
    transition: 0.3s;
}

.why-card:hover {
    border-color: rgba(65, 105, 225, 0.3);
    box-shadow: 0 12px 35px rgba(65, 105, 225, 0.08);
    transform: translateY(-3px);
}

.why-icon {
    width: 58px;
    height: 58px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4169E1;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials-section {
    padding: 90px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.stars {
    display: flex;
    gap: 3px;
}

.testimonial-card p {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 12px;
    color: #9ca3af;
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #3154c7 0%, #4169E1 50%, #5a7ff0 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.cta-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #4169E1;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
}

.cta-primary-btn:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #0f172a;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 70px 0 50px;
}

.footer-brand p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
    margin: 18px 0 24px;
    max-width: 280px;
}

.footer-logo img {
    width: 150px;
    height: auto;
    filter: brightness(10);
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #1e293b;
    background: #1e293b;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #4169E1;
    border-color: #4169E1;
    color: #ffffff;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #4169E1;
    padding-left: 4px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid #1e293b;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: #475569;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #4169E1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .hero-visual {
        flex: 0 0 380px;
    }

    .hero-title {
        font-size: 44px;
    }

    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-visual {
        flex: none;
        width: 100%;
        max-width: 480px;
    }

    .badge-ssl,
    .badge-support {
        display: none;
    }

    .plans-grid {
        flex-direction: column;
    }

    .plan-popular {
        transform: none;
    }

    .plan-popular:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-domain-search {
        flex-direction: column;
        max-width: 100%;
    }

    .domain-search-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 18px;
    }

    .stat-item strong {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .trust-bar-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 0;
        padding: 0 16px;
        justify-items: start;
    }

    .trust-bar-container .trust-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: auto;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        padding: 12px 8px;
        width: 100%;
        gap: 12px;
        align-items: center;
    }

    .trust-icon {
        width: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* =========================
   HOSTING CATEGORIES SECTION
========================= */

.categories-section {
    padding: 80px 0;
    background: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px 20px;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
}

.category-card:hover {
    border-color: rgba(65, 105, 225, 0.3);
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.09);
    transform: translateY(-3px);
    background: #fff;
}

.category-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-content {
    flex: 1;
}

.category-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.category-content p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.category-arrow {
    color: #cbd5e1;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.category-card:hover .category-arrow {
    color: #4169E1;
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .categories-section {
        padding: 50px 0;
    }
}

/* =========================
   PERFORMANCE & TECHNOLOGY SECTION
========================= */

.perf-section {
    padding: 90px 0;
    background: #f8fafc;
}

.perf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.perf-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 28px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.perf-card:hover {
    border-color: rgba(65, 105, 225, 0.25);
    box-shadow: 0 12px 35px rgba(65, 105, 225, 0.08);
    transform: translateY(-3px);
}

.perf-card-large {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    border-color: rgba(65, 105, 225, 0.15);
}

.perf-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.perf-icon-logo {
    width: auto;
    height: 48px;
    padding: 8px 14px;
    border-radius: 12px;
}

/* LiteSpeed Split Card */
.perf-card-split {
    flex-direction: row;
    align-items: center;
    padding: 48px 52px;
    gap: 52px;
    background: linear-gradient(135deg, #eef2ff 0%, #e8eeff 60%, #f0f4ff 100%);
    border: 1.5px solid rgba(65, 105, 225, 0.18);
    position: relative;
    overflow: hidden;
}

.perf-card-split::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.perf-card-split::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 20%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.perf-split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.perf-split-badge {
    display: inline-block;
    background: rgba(65, 105, 225, 0.10);
    color: #4169E1;
    border: 1px solid rgba(65, 105, 225, 0.25);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.perf-split-right h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.perf-split-right p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
    max-width: 620px;
}

/* Left side: logo + stats stacked */
.perf-split-left {
    flex: 0 0 240px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 36px 28px;
    border-radius: 18px;
    border: 1.5px solid rgba(65, 105, 225, 0.13);
    box-shadow: 0 8px 32px rgba(65, 105, 225, 0.10);
    position: relative;
    z-index: 1;
}

.perf-split-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.perf-split-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(65, 105, 225, 0.05);
    border: 1px solid rgba(65, 105, 225, 0.12);
    border-radius: 10px;
    padding: 8px 14px;
}

.perf-split-stat strong {
    font-size: 15px;
    font-weight: 800;
    color: #4169E1;
}

.perf-split-stat span {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

/* Right side: feature list */
.perf-split-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 6px;
}

.perf-split-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: #374151;
    background: rgba(65, 105, 225, 0.05);
    border: 1px solid rgba(65, 105, 225, 0.10);
    border-radius: 8px;
    padding: 8px 12px;
}

.perf-split-feature svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .perf-card-split {
        flex-direction: column;
        padding: 28px 20px;
        gap: 24px;
    }

    .perf-split-left {
        flex: none;
        width: 100%;
        padding: 24px 20px;
        border-radius: 16px;
    }

    .perf-split-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .perf-split-stat {
        flex: 1 1 calc(50% - 8px);
    }

    .perf-split-right {
        padding: 0;
    }

    .perf-split-right h3 {
        font-size: 20px;
    }

    .perf-split-features {
        grid-template-columns: 1fr;
    }
}

.perf-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.perf-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 20px;
}

.perf-stat-row {
    display: flex;
    gap: 24px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.perf-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.perf-stat strong {
    font-size: 20px;
    font-weight: 800;
    color: #4169E1;
}

.perf-stat span {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.perf-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(65, 105, 225, 0.07);
    color: #4169E1;
    border: 1px solid rgba(65, 105, 225, 0.18);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-top: auto;
    width: fit-content;
    align-self: flex-start;
}

.perf-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4169E1;
    border-radius: 50%;
    opacity: 0.7;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .perf-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .perf-card-large {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .perf-grid {
        grid-template-columns: 1fr;
    }

    .perf-card-large {
        grid-column: 1 / -1;
    }

    .perf-section {
        padding: 50px 0;
    }
}




/* ===== Split Card Layout ===== */
.perf-card-split {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.perf-split-left {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 28px 24px;
    border-right: 1px solid rgba(65, 105, 225, 0.12);
}

.perf-split-badge {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 99px;
    padding: 3px 10px;
}

.perf-split-left img {
    width: 160px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.perf-split-left h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.perf-split-left p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

.perf-stat-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.perf-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(65, 105, 225, 0.06);
    border-radius: 8px;
    padding: 8px 12px;
}

.perf-stat strong {
    font-size: 14px;
    font-weight: 700;
    color: #4169E1;
}

.perf-stat span {
    font-size: 11px;
    color: #6b7280;
}

.perf-split-right {
    flex: 1;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== LiteSpeed Compare Widget ===== */
.ls-compare-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4169E1;
    margin: 0 0 16px;
}

.ls-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.ls-bar-row:last-of-type {
    margin-bottom: 0;
}

.ls-bar-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-bar-icon svg {
    width: 16px;
    height: 16px;
}

.ls-bar-label {
    width: 72px;
    font-size: 11px;
    color: #6b7280;
    flex-shrink: 0;
    white-space: nowrap;
}

.ls-bar-label--active {
    color: #4169E1;
    font-weight: 600;
}

.ls-bar-track {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 99px;
    overflow: hidden;
}

.ls-bar-fill {
    height: 100%;
    border-radius: 99px;
    transition: width 1.3s cubic-bezier(.4, 0, .2, 1);
}

.ls-bar-val {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    width: 44px;
    text-align: right;
    flex-shrink: 0;
}

.ls-bar-val--active {
    color: #4169E1;
}

.ls-compare-note {
    font-size: 10px;
    color: #9ca3af;
    margin: 12px 0 0;
    padding-top: 10px;
    border-top: 1px solid rgba(65, 105, 225, 0.12);
}

/* ===== End Compare Widget ===== */
/* =========================
   MONEY-BACK GUARANTEE SECTION
========================= */

.guarantee-section {
    padding: 60px 0;
    background: #f8fafc;
}

.guarantee-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: linear-gradient(135deg, #4169E1 0%, #3154c7 100%);
    border-radius: 20px;
    padding: 40px 48px;
    flex-wrap: wrap;
}

.guarantee-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 280px;
}

.guarantee-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.tnc-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0;
}

.guarantee-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.guarantee-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 420px;
}

.guarantee-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.guarantee-btn {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #4169E1;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.guarantee-btn:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .guarantee-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
    }

    .guarantee-right {
        width: 100%;
    }

    .guarantee-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .guarantee-inner {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .guarantee-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .tnc-text {
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
        letter-spacing: 0;
    }

    .guarantee-text h3 {
        font-size: 18px;
    }
}

/* =====================================================
   SECTION 4: DATA CENTER / INFRASTRUCTURE CSS
====================================================== */

.datacenter-section {
    padding: 80px 0;
    background: #fff;
}

.datacenter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.dc-card {
    background: #f8faff;
    border: 1px solid rgba(65, 105, 225, 0.12);
    border-radius: 18px;
    padding: 30px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(65, 105, 225, 0.1);
}

.dc-card-primary {
    border-color: rgba(65, 105, 225, 0.3);
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
}

.dc-flag {
    font-size: 30px;
    margin-bottom: 12px;
}

.dc-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(65, 105, 225, 0.1);
    color: #4169E1;
    border: 1px solid rgba(65, 105, 225, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.dc-badge-primary {
    background: #4169E1;
    color: #fff;
    border-color: #4169E1;
}

.dc-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.dc-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dc-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.dc-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #4169E1;
}

.dc-stat span {
    font-size: 11px;
    color: #6b7280;
}

.dc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dc-tag {
    font-size: 11px;
    font-weight: 600;
    background: #fff;
    border: 1px solid rgba(65, 105, 225, 0.2);
    color: #4169E1;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Infra strip */
.infra-strip {
    background: #f8faff;
    border: 1px solid rgba(65, 105, 225, 0.12);
    border-radius: 16px;
    padding: 26px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.infra-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #374151;
}

.infra-item strong {
    color: #0f172a;
}

.infra-divider {
    width: 1px;
    height: 36px;
    background: rgba(65, 105, 225, 0.15);
}

@media (max-width: 900px) {
    .datacenter-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .datacenter-grid {
        grid-template-columns: 1fr;
    }

    .infra-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .infra-divider {
        width: 100%;
        height: 1px;
    }
}


/* =====================================================
   SECTION 5: SECURITY FEATURES CSS

====================================================== */

.security-section {
    padding: 70px 0 88px;
    background: #f8faff;
}

.security-section .container {
    max-width: 1760px;
}

.security-section .section-header {
    margin-bottom: 62px;
}

.security-layout {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 40px;
    align-items: start;
}

.sec-feat-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 24px;
    transition: 0.3s ease;

    /* ADD THESE */
    min-height: 135px;
}

.security-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* Left dark card */
.security-highlight {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-radius: 18px;
    padding: 38px 34px;
    color: #fff;
    position: sticky;
    top: 100px;
    min-height: 448px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.security-shield {
    width: 86px;
    height: 86px;
    background: rgba(65, 105, 225, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.security-highlight h3 {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.security-highlight p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    margin-bottom: 28px;
}

.security-score {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 18px;
    margin-top: 2px;
}

.score-bar-wrap {
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.score-bar {
    height: 100%;
    width: 98%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    border-radius: 10px;
}

.score-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.score-label strong {
    color: #22c55e;
    font-weight: 700;
}

/* Right grid */
.security-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 20px;
}

.sec-feat-card {
    background: #fff;
    border: 1px solid rgba(65, 105, 225, 0.10);
    border-radius: 14px;
    padding: 22px 24px;
    min-height: 94px;
    display: flex;
    gap: 18px;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.025);
}

.sec-feat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(65, 105, 225, 0.08);
}

.sec-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sec-feat-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.sec-feat-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .security-layout {
        grid-template-columns: 1fr;
    }

    .security-highlight {
        position: static;
        min-height: 0;
    }
}

@media (max-width: 600px) {
    .security-section {
        padding: 58px 0 64px;
    }

    .security-section .section-header {
        margin-bottom: 36px;
    }

    .security-features-grid {
        grid-template-columns: 1fr;
    }

    .sec-feat-card {
        align-items: flex-start;
    }
}


/* =====================================================
   UPDATE 6: REVIEW PLATFORM RATINGS CSS

====================================================== */

.ratings-section {
    padding: 80px 0;
    background: #fff;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.rating-card {
    background: #f8faff;
    border: 1px solid rgba(65, 105, 225, 0.12);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.rating-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(65, 105, 225, 0.08);
}

.rating-platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rp-name {
    font-size: 16px;
    font-weight: 800;
}

.rating-score {
    font-size: 48px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
}

.rating-count {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.rating-verdict {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}

@media (max-width: 900px) {
    .ratings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .ratings-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

/* =====================================================
   UPDATE 7: USE CASES / WHO IS IT FOR CSS

====================================================== */

.usecases-section {
    padding: 80px 0;
    background: #f8faff;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.usecase-card {
    background: #fff;
    border: 1px solid rgba(65, 105, 225, 0.12);
    border-radius: 18px;
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(65, 105, 225, 0.1);
    border-color: rgba(65, 105, 225, 0.25);
}

.usecase-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.usecase-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.usecase-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.usecase-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    background: rgba(65, 105, 225, 0.08);
    color: #4169E1;
    border: 1px solid rgba(65, 105, 225, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
}

@media (max-width: 900px) {
    .usecase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .usecase-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
    padding: 90px 0;
    background: #f8fafc;
}

/* Two-column layout */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* LEFT: FAQ list */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.faq-item.active {
    border-color: rgba(65, 105, 225, 0.4);
    box-shadow: 0 2px 16px rgba(65, 105, 225, 0.07);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    transition: color 0.2s;
}

.faq-question span {
    flex: 1;
    line-height: 1.4;
}

.faq-plus-icon {
    width: 32px;
    height: 32px;
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #374151;
    transition: all 0.25s ease;
}

.faq-item.active .faq-plus-icon {
    background: #4169E1;
    border-color: #4169E1;
    color: #fff;
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: #4169E1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 24px 22px;
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* RIGHT: Contact card */
.faq-contact-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 44px 36px;
    text-align: center;
    position: sticky;
    top: 100px;
    box-shadow: 0 4px 24px rgba(65, 105, 225, 0.07);
}

.faq-contact-icon {
    width: 80px;
    height: 80px;
    background: #eef1fb;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: #4169E1;
}

.faq-contact-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.3;
}

.faq-contact-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 32px;
}

.faq-contact-btn {
    display: inline-block;
    background: #4169E1;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 28px;
    border-radius: 12px;
    text-decoration: none;
    width: 100%;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    box-sizing: border-box;
}

.faq-contact-btn:hover {
    background: #3154c7;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-contact-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }

    .faq-item {
        border-radius: 12px;
    }
}