/* =============================================
   ServerFellows Custom Theme
   Brand Colors (Red):
   - brand-50:  #fef2f2
   - brand-100: #fee2e2
   - brand-200: #fecaca
   - brand-300: #fca5a5
   - brand-400: #f87171
   - brand-500: #dc2626
   - brand-600: #b91c1c
   - brand-700: #991b1b
   - brand-800: #7f1d1d
   - brand-900: #7c1515
   ============================================= */

/* ---- Alert Styling (replaces alert-lagom) ---- */
.alert-sf {
    border-radius: 0.5rem;
    border: none;
    padding: 1rem 1.25rem;
}
.alert-sf .alert-body {
    font-size: 0.9rem;
}

/* ---- Global Font ---- */
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- Primary Colors ---- */
.btn-primary,
.btn-primary:focus {
    background-color: #b91c1c !important;
    border-color: #b91c1c !important;
    color: #fff !important;
}
.btn-primary:hover,
.btn-primary:active {
    background-color: #991b1b !important;
    border-color: #991b1b !important;
}
.btn-primary-faded {
    background-color: rgba(185, 28, 28, 0.1) !important;
    color: #b91c1c !important;
    border-color: rgba(185, 28, 28, 0.2) !important;
}
.btn-primary-faded:hover {
    background-color: #b91c1c !important;
    color: #fff !important;
}

/* Links */
a { color: #b91c1c; }
a:hover { color: #991b1b; }

/* Labels & badges */
.label-primary,
.badge-primary {
    background-color: #b91c1c !important;
}
.label-corner.label-primary {
    background-color: #dc2626 !important;
}

/* Sidebar active */
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    background-color: #b91c1c !important;
    border-color: #b91c1c !important;
}

/* Package featured border */
.package-featured {
    border-color: #b91c1c !important;
}

/* Switches */
.switch__checkbox:checked + .switch__container {
    background-color: #b91c1c !important;
}

/* Alerts */
.alert-success .alert-body {
    border-left-color: #22c55e !important;
}

/* ---- Custom Hero Banners for Product Groups ---- */
.sf-product-hero {
    border-radius: 0;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Break out of parent padding — full viewport width */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -15px;
    margin-bottom: 0;
    box-sizing: border-box;
}
@media (min-width: 640px) {
    .sf-product-hero { padding: 3rem 2.5rem; }
}
.sf-product-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: #fff;
    line-height: 1.15;
    max-width: 32rem;
}
.sf-product-hero p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    max-width: 36rem;
    line-height: 1.7;
}

/* Hero variants - All use brand red gradient to match React design */
.sf-hero-shared {
    background: linear-gradient(to right, #dc2626, #b91c1c);
}
.sf-hero-wordpress {
    background: linear-gradient(to right, #dc2626, #b91c1c);
}
.sf-hero-vps {
    background: linear-gradient(to right, #dc2626, #b91c1c);
}
.sf-hero-reseller {
    background: linear-gradient(to right, #dc2626, #b91c1c);
}
.sf-hero-email {
    background: linear-gradient(to right, #dc2626, #b91c1c);
}
.sf-hero-ssl {
    background: linear-gradient(to right, #dc2626, #b91c1c);
}
.sf-hero-starter {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border: 2px solid rgba(220, 38, 38, 0.3);
}
.sf-hero-addon {
    background: linear-gradient(to right, #dc2626, #b91c1c);
}
.sf-hero-default {
    background: linear-gradient(to right, #dc2626, #b91c1c);
}

/* Hero features list */
.sf-hero-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}
.sf-hero-features span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}
.sf-hero-features svg {
    width: 1rem;
    height: 1rem;
    color: #22c55e;
    flex-shrink: 0;
}

/* Hero badge */
.sf-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.sf-hero-badge-pulse {
    animation: sf-pulse 2s infinite;
}
@keyframes sf-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hero price inline */
.sf-hero-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-top: 1rem;
}
.sf-hero-price .sf-price-from {
    font-size: 0.875rem;
    opacity: 0.7;
}
.sf-hero-price .sf-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
}
.sf-hero-price .sf-price-cycle {
    font-size: 1rem;
    opacity: 0.7;
}

/* =============================================
   PLAN CARDS - Matches React App Design
   ============================================= */
.sf-plans-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    align-items: start;
}
.sf-plans-grid.sf-plans-2 { grid-template-columns: repeat(2, 1fr); }
.sf-plans-grid.sf-plans-3 { grid-template-columns: repeat(3, 1fr); }
.sf-plans-grid.sf-plans-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 993px) {
    .sf-plans-grid.sf-plans-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
    .sf-plans-grid.sf-plans-3,
    .sf-plans-grid.sf-plans-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .sf-plans-grid { grid-template-columns: 1fr !important; max-width: 28rem; margin-left: auto; margin-right: auto; }
}

/* Plan Card */
.sf-plan-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08);
}
.sf-plan-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    z-index: 2;
}

/* Featured/Popular card */
.sf-plan-featured {
    border: 2px solid #dc2626;
    z-index: 1;
    box-shadow: 0 25px 50px -12px rgba(185,28,28,0.2);
}
@media (min-width: 769px) {
    .sf-plan-featured { transform: scale(1.05); }
    .sf-plan-featured:hover { transform: scale(1.07); }
}

/* Badge - MOST POPULAR (red gradient pill) */
.sf-plan-badge {
    position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #b91c1c, #dc2626);
    color: #fff;
    padding: 0.375rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.2);
    z-index: 5;
}

/* Badge - BEST VALUE (amber pill) */
.sf-plan-badge-amber {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #0f172a;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.2);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* Amber border for Best Value card */
.sf-plan-bestvalue {
    border: 2px solid #fbbf24;
    z-index: 1;
    box-shadow: 0 25px 50px -12px rgba(251,191,36,0.2);
}
@media (min-width: 769px) {
    .sf-plan-bestvalue { transform: scale(1.05); }
    .sf-plan-bestvalue:hover { transform: scale(1.07); }
}

/* Plan Header */
.sf-plan-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 0.75rem;
}
.sf-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.sf-plan-tagline {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Pricing */
.sf-plan-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
}
.sf-plan-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}
.sf-plan-price {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}
.sf-plan-cycle {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500;
}
.sf-plan-setup {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.25rem;
}
.sf-plan-original-price {
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}
.sf-plan-save-badge {
    display: inline-block;
    background: #fee2e2;
    color: #991b1b;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

/* Order Button */
.sf-plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 1.5rem;
    background: #0f172a;
    color: #fff;
    border: none;
}
.sf-plan-btn:hover {
    background: #1e293b;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.15);
}
.sf-plan-btn-primary {
    background: #b91c1c;
    color: #fff !important;
    box-shadow: 0 4px 6px -1px rgba(185,28,28,0.3);
}
.sf-plan-btn-primary:hover {
    background: #991b1b;
    color: #fff !important;
    box-shadow: 0 10px 15px -3px rgba(185,28,28,0.4);
}

/* Features */
.sf-plan-features {
    flex: 1;
}
.sf-plan-features-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.sf-plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: #334155;
}
.sf-plan-feature svg {
    flex-shrink: 0;
    color: #b91c1c;
    margin-top: 0.125rem;
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
}
/* Product description as feature list */
.sf-plan-desc {
    font-size: 0.875rem;
    color: #334155;
    line-height: 1.6;
}
.sf-plan-desc ul, .sf-plan-desc ol {
    padding-left: 0;
    list-style: none;
}
.sf-plan-desc li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: #334155;
}
.sf-plan-desc li::before {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    margin-top: 0.2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23b91c1c' stroke-width='2.5' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.sf-plan-qty {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
}

/* Trust Bar Below Plans */
.sf-trust-bar-plans {
    text-align: center;
    padding: 1rem 1.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #fff;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 0.75rem;
}
.sf-trust-bar-plans strong {
    color: #fff;
}

/* CTA Bottom Section - Dark navy (matches React design) */
.sf-cta-bottom {
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
    border-radius: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sf-cta-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 18c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6z' stroke='%231f2937' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.15;
}
.sf-cta-bottom-inner {
    position: relative;
    z-index: 1;
}
.sf-cta-bottom h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.sf-cta-bottom p {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}
.sf-cta-bottom-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #b91c1c;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(185,28,28,0.3);
}
.sf-cta-bottom-btn:hover {
    background: #991b1b;
    color: #fff;
    text-decoration: none;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(185,28,28,0.4);
}

/* Included Features */
.sf-included-features {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
}
.sf-included-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-align: center;
}
.sf-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}
.sf-included-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    font-size: 0.875rem;
    color: #334155;
    font-weight: 500;
}
.sf-included-list li svg {
    flex-shrink: 0;
}

/* =============================================
   WHY CHOOSE SECTION - Matches React design
   ============================================= */
.sf-why-section {
    margin-top: 3rem;
    padding: 3rem 0;
    text-align: center;
}
.sf-why-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.sf-why-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
}
.sf-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 992px) {
    .sf-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .sf-why-grid { grid-template-columns: 1fr; }
}
.sf-why-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}
.sf-why-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.sf-why-icon {
    width: 4rem;
    height: 4rem;
    background: #fee2e2;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}
.sf-why-card:hover .sf-why-icon {
    transform: scale(1.1);
}
.sf-why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.sf-why-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* =============================================
   CTA SECTION - "Ready to Launch?"
   ============================================= */
.sf-cta-section {
    margin-top: 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b);
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}
.sf-cta-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.sf-cta-section p {
    font-size: 1rem;
    color: #fecaca;
    margin-bottom: 1.5rem;
}
.sf-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #b91c1c !important;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.sf-cta-btn:hover {
    background: #f8fafc;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
    color: #991b1b !important;
    text-decoration: none !important;
}

/* ---- Domain Search Styling ---- */
.search-box .domain-search-input .form-control {
    border-radius: 0.5rem !important;
}
.search-box .search-group-btn .btn {
    border-radius: 0 0.5rem 0.5rem 0 !important;
}

/* ---- Comparison Table Enhancement ---- */
.sf-comparison-wrapper {
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.sf-comparison-wrapper table {
    margin: 0;
}
.sf-comparison-wrapper th {
    background: #0f172a !important;
    color: #fff !important;
    font-weight: 600;
    padding: 1rem !important;
}
.sf-comparison-wrapper td {
    padding: 0.75rem 1rem !important;
}

/* ---- Sidebar Customization ---- */
.panel-sidebar .panel-heading {
    background: #f8fafc;
}
.panel-sidebar .list-group-item {
    transition: all 0.2s;
}
.panel-sidebar .list-group-item:hover {
    background: #fef2f2;
    color: #b91c1c;
}

/* ---- VPS Resource Badges ---- */
.sf-resource-badges {
    display: flex;
    gap: 0.5rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}
.sf-resource-badge {
    background: #f1f5f9;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    color: #334155;
    font-weight: 600;
}

/* ---- Checkout/Cart Styling ---- */
.panel-summary .panel-heading {
    background: #0f172a !important;
}
.order-summary-mob .btn-checkout {
    background: #b91c1c !important;
    border-color: #b91c1c !important;
}

/* ---- Store Homepage ---- */
.sf-store-home a[style*="display:block"] {
    transition: all 0.3s ease !important;
}
.sf-store-home a[style*="display:block"]:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    border-color: #b91c1c !important;
    text-decoration: none !important;
}

/* Domain search button hover */
.sf-store-home button[type="submit"]:hover {
    background: #991b1b !important;
}

/* ---- Domain Register Page ---- */
.sf-domain-hero {
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    text-align: center;
    border: 2px solid rgba(220, 38, 38, 0.2);
}
.sf-domain-hero h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.sf-domain-hero p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* =============================================
   NEW: Powerful Features Section (Homepage)
   Matches React Features.tsx component
   ============================================= */
.sf-powerful-features {
    padding: 4rem 0;
    background: #fff;
}
.sf-powerful-features .sf-section-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
.sf-section-badge {
    display: inline-block;
    background: #fee2e2;
    color: #991b1b;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.sf-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.sf-section-subtitle {
    font-size: 1.125rem;
    color: #475569;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.7;
}
.sf-features-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 992px) {
    .sf-features-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .sf-features-cards-grid {
        grid-template-columns: 1fr;
    }
}
.sf-feature-card {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.sf-feature-card:hover {
    background: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.sf-feature-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: #b91c1c;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}
.sf-feature-card:hover .sf-feature-card-icon {
    transform: scale(1.1);
}
.sf-feature-card-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #fff;
}
.sf-feature-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}
.sf-feature-card p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* App installs banner */
.sf-apps-banner {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    color: #fff;
}
.sf-apps-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}
.sf-apps-banner p {
    font-size: 1rem;
    color: #fecaca;
    margin-bottom: 1.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}
.sf-apps-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
.sf-apps-tags span {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
}

/* =============================================
   NEW: Limited Offer Section (Homepage)
   Matches React LimitedOffer.tsx component
   ============================================= */
.sf-limited-offer {
    padding: 4rem 0;
    background: linear-gradient(135deg, #b91c1c, #991b1b, #7f1d1d);
    position: relative;
    overflow: hidden;
}
.sf-limited-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.05'%3E%3Cpath d='M36 34v2h-2v-2h2zm0 4v2h2v-2h-2zm0-8v2h2v-2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.sf-limited-offer .sf-section-container {
    position: relative;
    z-index: 1;
}
.sf-limited-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fbbf24;
    color: #0f172a;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    animation: sf-pulse 2s infinite;
}
.sf-limited-offer-card {
    max-width: 64rem;
    margin: 0 auto;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
    .sf-limited-offer-card {
        grid-template-columns: 1fr;
    }
}
.sf-limited-offer-left {
    background: linear-gradient(135deg, #f8fafc, #fff);
    padding: 2rem 2.5rem;
}
.sf-limited-offer-left .sf-lo-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.sf-limited-offer-left .sf-lo-price-cycle {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 600;
}
.sf-limited-offer-left .sf-lo-save {
    display: inline-block;
    background: #fee2e2;
    color: #991b1b;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.25rem;
}
.sf-limited-offer-left .sf-lo-guarantee {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
}
.sf-lo-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 0.75rem;
}
.sf-lo-benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #b91c1c;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.sf-lo-benefit strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.sf-lo-benefit span {
    font-size: 0.8rem;
    color: #475569;
}
.sf-lo-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: #b91c1c;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    margin-top: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(185, 28, 28, 0.3);
}
.sf-lo-cta-btn:hover {
    background: #991b1b;
    box-shadow: 0 10px 15px -3px rgba(185, 28, 28, 0.4);
    transform: scale(1.02);
    color: #fff;
    text-decoration: none;
}
.sf-limited-offer-right {
    background: #0f172a;
    padding: 2rem 2.5rem;
}
.sf-limited-offer-right h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}
.sf-lo-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.sf-lo-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #e2e8f0;
}
.sf-lo-feature-list li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #f87171;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.sf-lo-why-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
}
.sf-lo-why-box strong {
    color: #fff;
    font-size: 0.875rem;
}
.sf-lo-why-box p {
    color: #fecaca;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0.25rem 0 0;
}
.sf-lo-bottom-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.sf-lo-bottom-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fecaca;
    font-size: 0.8rem;
    font-weight: 500;
}
.sf-lo-bottom-badges svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fca5a5;
}

/* =============================================
   NEW: Why Choose Section (Homepage)
   Matches React WhyChoose.tsx component
   ============================================= */
.sf-why-choose {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef2f2, #fff);
}
.sf-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 768px) {
    .sf-why-grid {
        grid-template-columns: 1fr;
    }
}
.sf-why-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.sf-why-point-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #b91c1c;
    flex-shrink: 0;
    margin-top: 0.25rem;
}
.sf-why-point strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.sf-why-point span {
    font-size: 0.875rem;
    color: #475569;
}
.sf-reason-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}
.sf-reason-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.sf-reason-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.sf-reason-icon {
    width: 3rem;
    height: 3rem;
    background: #b91c1c;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sf-reason-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}
.sf-reason-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.sf-reason-card p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   NEW: CTA Section (Homepage)
   Matches React CTA.tsx component
   ============================================= */
.sf-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sf-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 18c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6z' stroke='%231f2937' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}
.sf-cta-section .sf-section-container {
    position: relative;
    z-index: 1;
    max-width: 48rem;
}
.sf-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(185, 28, 28, 0.1);
    border: 1px solid rgba(185, 28, 28, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fca5a5;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}
.sf-cta-badge svg {
    width: 1rem;
    height: 1rem;
    color: #f87171;
}
.sf-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.sf-cta-section .sf-cta-desc {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.sf-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #b91c1c;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 2rem;
}
.sf-cta-btn:hover {
    background: #991b1b;
    box-shadow: 0 25px 50px -12px rgba(185, 28, 28, 0.5);
    transform: scale(1.05);
    color: #fff;
    text-decoration: none;
}
.sf-cta-guarantees {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.sf-cta-guarantees span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
}
.sf-cta-guarantees svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #f87171;
}
.sf-cta-login {
    font-size: 0.8rem;
    color: #64748b;
}
.sf-cta-login a {
    color: #f87171;
    font-weight: 600;
    text-decoration: underline;
}
.sf-cta-login a:hover {
    color: #fca5a5;
}

/* =============================================
   NEW: Testimonials Section (Homepage)
   Matches React TrustSignals.tsx component
   ============================================= */
.sf-testimonials {
    padding: 4rem 0;
    background: #fff;
}
.sf-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.sf-stars svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #fbbf24;
    color: #fbbf24;
}
.sf-stars-text {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
}
.sf-stars-count {
    font-size: 1rem;
    color: #475569;
}
.sf-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (max-width: 992px) {
    .sf-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .sf-testimonials-grid {
        grid-template-columns: 1fr;
    }
}
.sf-testimonial-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.sf-testimonial-card:hover {
    border-color: #fecaca;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.sf-testimonial-stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 1rem;
}
.sf-testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    fill: #dc2626;
    color: #dc2626;
}
.sf-testimonial-quote-icon svg {
    width: 2rem;
    height: 2rem;
    color: #b91c1c;
    margin-bottom: 0.75rem;
}
.sf-testimonial-quote {
    font-size: 0.875rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.sf-testimonial-divider {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}
.sf-testimonial-author {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.875rem;
}
.sf-testimonial-role {
    font-size: 0.8rem;
    color: #475569;
}

/* Final CTA box inside testimonials */
.sf-final-cta {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    color: #fff;
}
.sf-final-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}
.sf-final-cta p {
    font-size: 1rem;
    color: #fecaca;
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}
.sf-final-cta-btn {
    display: inline-block;
    background: #b91c1c;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}
.sf-final-cta-btn:hover {
    background: #991b1b;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
    color: #fff;
    text-decoration: none;
}

/* =============================================
   NEW: Email Hosting Promo Section (Homepage)
   Matches React EmailHosting.tsx component
   ============================================= */
.sf-email-promo {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef2f2, #fff);
}
.sf-email-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 992px) {
    .sf-email-promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .sf-email-promo-grid {
        grid-template-columns: 1fr;
    }
}
.sf-email-card {
    position: relative;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    overflow: visible;
}
.sf-email-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.sf-email-card.sf-email-featured {
    border-color: #b91c1c;
    transform: scale(1.03);
}
.sf-email-card-badge {
    position: absolute;
    top: -1rem;
    right: 1rem;
    background: #b91c1c;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}
.sf-email-card-bestvalue {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #0f172a;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.sf-email-card-inner {
    padding: 2rem;
    text-align: center;
}
.sf-email-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.sf-email-card .sf-email-tagline {
    font-size: 0.8rem;
    color: #475569;
    margin-bottom: 1.5rem;
}
.sf-email-card .sf-email-price-block {
    margin-bottom: 1.5rem;
}
.sf-email-card .sf-email-price-block .sf-ep-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
}
.sf-email-card .sf-email-price-block .sf-ep-cycle {
    font-size: 1.125rem;
    color: #475569;
}
.sf-email-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    margin-bottom: 2rem;
}
.sf-email-order-btn:hover {
    text-decoration: none;
}
.sf-email-order-btn.sf-btn-brand {
    background: #b91c1c;
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(185, 28, 28, 0.3);
}
.sf-email-order-btn.sf-btn-brand:hover {
    background: #991b1b;
    box-shadow: 0 10px 15px -3px rgba(185, 28, 28, 0.4);
    color: #fff;
}
.sf-email-order-btn.sf-btn-dark {
    background: #0f172a;
    color: #fff;
}
.sf-email-order-btn.sf-btn-dark:hover {
    background: #1e293b;
    color: #fff;
}
.sf-email-feature-list {
    text-align: left;
}
.sf-email-feature-list .sf-efl-header {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0f172a;
    margin-bottom: 0.75rem;
}
.sf-email-feature-list .sf-efl-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.sf-email-feature-list .sf-efl-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #b91c1c;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.sf-email-feature-list .sf-efl-item span {
    font-size: 0.875rem;
    color: #334155;
}

/* All plans include bar */
.sf-all-plans-bar {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}
.sf-all-plans-bar p {
    color: #334155;
    font-size: 0.875rem;
    margin: 0;
}
.sf-all-plans-bar strong {
    color: #0f172a;
}

/* =============================================
   NEW: Control Panel Section (Homepage)
   Matches React ControlPanel.tsx component
   ============================================= */
.sf-cpanel-section {
    padding: 4rem 0;
    background: #f8fafc;
}
.sf-cpanel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 768px) {
    .sf-cpanel-grid {
        grid-template-columns: 1fr;
    }
}
.sf-cpanel-mockup {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.sf-cpanel-mockup-header {
    background: linear-gradient(to right, #1e293b, #0f172a);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.sf-cpanel-dots {
    display: flex;
    gap: 0.375rem;
}
.sf-cpanel-dots span {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}
.sf-cpanel-dots span:nth-child(1) { background: #ef4444; }
.sf-cpanel-dots span:nth-child(2) { background: #f59e0b; }
.sf-cpanel-dots span:nth-child(3) { background: #22c55e; }
.sf-cpanel-mockup-title {
    flex: 1;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
}
.sf-cpanel-mockup-body {
    padding: 1.5rem;
    background: #f8fafc;
}
.sf-cpanel-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.sf-cpanel-icon-item {
    background: #fff;
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.2s;
}
.sf-cpanel-icon-item:hover {
    border-color: #fecaca;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.sf-cpanel-icon-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #b91c1c;
    margin-bottom: 0.5rem;
}
.sf-cpanel-icon-item span {
    font-size: 0.7rem;
    font-weight: 500;
    color: #334155;
    display: block;
}
.sf-cpanel-stats {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}
.sf-cpanel-stats-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.sf-cpanel-stats-header strong {
    font-size: 0.875rem;
    color: #0f172a;
}
.sf-cpanel-stats-header span {
    font-size: 0.7rem;
    color: #64748b;
}
.sf-stat-row {
    margin-bottom: 0.5rem;
}
.sf-stat-row-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
}
.sf-stat-row-header span:first-child { color: #475569; }
.sf-stat-row-header span:last-child { color: #0f172a; font-weight: 500; }
.sf-stat-bar {
    height: 0.5rem;
    background: #f1f5f9;
    border-radius: 9999px;
    overflow: hidden;
}
.sf-stat-bar-fill {
    height: 100%;
    border-radius: 9999px;
}
.sf-stat-bar-fill.sf-brand { background: #b91c1c; }
.sf-stat-bar-fill.sf-green { background: #22c55e; }
.sf-cpanel-mockup-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid #e2e8f0;
    background: #fff;
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #475569;
}
.sf-cpanel-content-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}
.sf-cpanel-content-badge svg {
    width: 1rem;
    height: 1rem;
    color: #b91c1c;
}
.sf-cpanel-content-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #991b1b;
}
.sf-cpanel-feature-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.sf-cpanel-feature-icon {
    width: 3rem;
    height: 3rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sf-cpanel-feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #b91c1c;
}
.sf-cpanel-feature-row h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.sf-cpanel-feature-row p {
    font-size: 0.8rem;
    color: #475569;
    margin: 0;
}
.sf-cpanel-why-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}
.sf-cpanel-why-box p {
    font-size: 0.8rem;
    color: #334155;
    line-height: 1.6;
    margin: 0;
}
.sf-cpanel-why-box strong {
    color: #0f172a;
}

/* =============================================
   NEW: Pricing Cards Section (Homepage)
   Matches React Pricing.tsx component
   ============================================= */
.sf-pricing-section {
    padding: 4rem 0;
    background: #f8fafc;
}
.sf-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 992px) {
    .sf-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .sf-pricing-grid {
        grid-template-columns: 1fr;
    }
}
.sf-pricing-card {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.sf-pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}
.sf-pricing-card.sf-pricing-popular {
    border: 2px solid #dc2626;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}
.sf-pricing-card.sf-pricing-popular:hover {
    transform: scale(1.07);
}
.sf-pricing-popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #b91c1c, #dc2626);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}
.sf-pricing-popular-badge svg {
    width: 0.75rem;
    height: 0.75rem;
}
.sf-pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.sf-pricing-card .sf-pc-tagline {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.sf-pricing-card .sf-pc-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
}
.sf-pricing-card .sf-pc-cycle {
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
}
.sf-pricing-card .sf-pc-billing {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 0.25rem;
}
.sf-pricing-card .sf-pc-free-domain {
    font-size: 0.7rem;
    color: #b91c1c;
    font-weight: 600;
    margin-top: 0.25rem;
}
.sf-pricing-get-started {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    margin: 1.5rem 0;
}
.sf-pricing-get-started:hover {
    text-decoration: none;
}
.sf-pricing-get-started.sf-btn-popular {
    background: #b91c1c;
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(185, 28, 28, 0.25);
}
.sf-pricing-get-started.sf-btn-popular:hover {
    background: #991b1b;
    box-shadow: 0 10px 15px -3px rgba(185, 28, 28, 0.3);
    color: #fff;
}
.sf-pricing-get-started.sf-btn-default {
    background: #0f172a;
    color: #fff;
}
.sf-pricing-get-started.sf-btn-default:hover {
    background: #1e293b;
    color: #fff;
}
.sf-pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.sf-pricing-feature-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #b91c1c;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.sf-pricing-feature-item span {
    font-size: 0.8rem;
    color: #334155;
    line-height: 1.4;
}

/* Custom solution box */
.sf-custom-solution {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}
.sf-custom-solution h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.sf-custom-solution p {
    font-size: 0.875rem;
    color: #475569;
    max-width: 36rem;
    margin: 0 auto 1.5rem;
}
.sf-custom-solution-btn {
    display: inline-block;
    background: #0f172a;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}
.sf-custom-solution-btn:hover {
    background: #1e293b;
    color: #fff;
    text-decoration: none;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .sf-product-hero {
        padding: 2rem 1.25rem;
    }
    .sf-product-hero h1 {
        font-size: 1.75rem;
    }
    .sf-hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    .sf-hero-price .sf-price-amount {
        font-size: 2rem;
    }
    .sf-section-title {
        font-size: 1.75rem;
    }
    .sf-cta-section h2 {
        font-size: 1.75rem;
    }
    .sf-limited-offer-card {
        grid-template-columns: 1fr;
    }
    .sf-why-grid {
        grid-template-columns: 1fr;
    }
    .sf-cpanel-grid {
        grid-template-columns: 1fr;
    }
    .sf-pricing-grid {
        grid-template-columns: 1fr;
    }
    .sf-email-promo-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   HERO WITH IMAGE (matches React design)
   ============================================= */
.sf-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 992px) {
    .sf-hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.sf-hero-image-wrap {
    position: relative;
    height: 250px;
}
@media (min-width: 640px) { .sf-hero-image-wrap { height: 320px; } }
@media (min-width: 992px) { .sf-hero-image-wrap { height: 380px; } }
.sf-hero-image-box {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.sf-hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sf-hero-image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent, transparent);
}
.sf-hero-circle {
    position: absolute;
    width: 24rem;
    height: 24rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.sf-hero-circle-tl { top: 0; left: 0; transform: translate(-50%,-50%); }
.sf-hero-circle-br { bottom: 0; right: 0; transform: translate(50%,50%); }
