/*
  Online Selling Machine - Premium B2B Styles
  Static HTML + CSS (no framework)
*/

:root {
    --navy: #0A192F;
    --navy-light: #112240;
    --red: #E63946;
    /* Premium divider accent (from original design) */
    --gold: #C9A227;
    --gold-strong: #B98912;
    --gold-border: rgba(201, 162, 39, 0.85);
    --gold-divider: rgba(201, 162, 39, 1);
    --white: #FFFFFF;
    --light-grey: #F8F9FA;
    --border-grey: #E2E8F0;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --header-height: 80px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.55;
    color: var(--text-main);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

p {
    color: var(--text-muted);
}

/* Better focus outlines for keyboard navigation */
:focus-visible {
    outline: 3px solid rgba(230, 57, 70, 0.35);
    outline-offset: 3px;
}

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

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-accent { color: var(--red); }
.text-white { color: var(--white); }
.bg-light { background-color: var(--light-grey); }
.opacity-80 { opacity: 0.8; }

/* Header */
.header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--gold-divider);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-list a:hover {
    color: var(--red);
}

/* Hero */
.hero {
    /* Slightly lighter overlay so the hero image shows through more */
    background: linear-gradient(rgba(10, 25, 47, 0.60), rgba(10, 25, 47, 0.60)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 100px;
    text-align: center;
}

/* Premium gold outlines (consistent across ALL card-like elements) */
.intro-card,
.quality-card,
.inc-item,
.who-item,
.track-card,
.accordion-item,
.comp-table-container,
.contact-main-card,
.sub-card,
.pill {
    border-color: var(--gold-border) !important;
}

.included-banner p {
    color: rgba(255, 255, 255, 0.92);
}

.included-banner strong {
    color: rgba(255, 255, 255, 0.98);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto 48px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-note {
    font-size: 0.85rem;
    /* Match hero supporting copy tone for a cleaner premium hierarchy */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(230, 57, 70, 0.39);
}

.btn-primary:hover {
    background-color: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.23);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Sections */
section {
    padding: 96px 0;
    /* Premium section separators (2px) */
    position: relative;
    overflow: visible;
}

/* Premium 2px divider line between sections (matches original gold accent) */
section:not(.hero)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 3;
    background: linear-gradient(
        90deg,
        rgba(201, 162, 39, 0) 0%,
        var(--gold-strong) 12%,
        var(--gold-strong) 88%,
        rgba(201, 162, 39, 0) 100%
    );
    pointer-events: none;
}

/* No divider above the hero */
section.hero {
    border-top: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
    color: var(--navy);
}

.section-title.text-white { color: var(--white); }

.pre-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Intro */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 64px 0;
    text-align: left;
}

.intro-card {
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gold-border);
    transition: transform 0.3s ease;
}

.intro-card p {
    line-height: 1.75;
}

.intro-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.feature-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
}

.pill {
    background: var(--light-grey);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(201, 162, 39, 0.65);
}

/* Offer */
.offer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.offer-text p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-muted);
    line-height: 1.8;
}

.quality-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gold-border);
}

.quality-card h3 { margin-bottom: 24px; font-size: 1.25rem; }

.check-list { list-style: none; }
.check-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    color: var(--red);
    font-weight: 900;
}

/* Included */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 48px 0;
}

.inc-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gold-border);
    box-shadow: var(--shadow-sm);
}

.inc-item span { color: var(--red); }

.included-banner {
    background: var(--navy);
    color: var(--white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gold-divider);
    box-shadow: var(--shadow-sm);
}

.included-banner p {
    color: rgba(255, 255, 255, 0.92);
}

.included-banner strong {
    color: rgba(255, 255, 255, 0.98);
}

/* Who For */
.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.who-item {
    padding: 20px 24px;
    background: var(--white);
    border-left: 4px solid var(--red);
    border-radius: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gold-border);
}

/* Buttons: accessibility + sharper feel */
.btn:focus-visible {
    outline: 3px solid rgba(230, 57, 70, 0.35);
    outline-offset: 3px;
}

.btn:active {
    transform: translateY(0);
}

/* Comparison Table */
.comp-table-container {
    margin-top: 64px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gold-border);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comp-table th, .comp-table td {
    padding: 24px 32px;
    text-align: left;
    border-bottom: 1px solid var(--border-grey);
}


.comp-table th {
    background: var(--light-grey);
    text-align: center;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}
.comp-table .th-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.comp-table .th-logo {
    width: 22px;
    height: 22px;
    display: inline-block;
}



.comp-table th.highlight, .comp-table td.highlight {
    /* Avoid aggressive red: keep it aligned with site navy */
    background: rgba(17, 34, 64, 0.06);
    font-weight: 800;
    color: var(--navy-light);
}

/* Exclusivity Banner */
.exclusivity-banner {
    background: var(--navy);
    padding: 80px 0;
}

/* Shield in a premium gold circle */
.ex-icon {
    font-size: 2.2rem;
    margin: 0 auto 24px;
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 2px solid var(--gold-divider);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.18);
}

/* Tracks */
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.track-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 39, 0.65);
    position: relative;
    transition: all 0.3s ease;
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.track-icon { font-size: 2.5rem; margin-bottom: 24px; }

.track-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--light-grey);
    padding: 4px 12px;
    border-radius: 100px;
}

.track-card h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--navy); }

/* How It Works */
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.step-item { text-align: center; }
.step-circle {
    width: 64px;
    height: 64px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.95);
}

/* Accordion */
.accordion { max-width: 800px; margin: 48px auto 0; }
.accordion-item {
    background: var(--white);
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid rgba(201, 162, 39, 0.65);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 24px 32px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header .icon::after { content: "+"; font-size: 1.5rem; color: var(--red); }
.accordion-item.active .accordion-header .icon::after { content: "−"; }
.accordion-content { padding: 0 32px 24px; display: none; color: var(--text-muted); }
.accordion-item.active .accordion-content { display: block; }

/* Contact Section */
.contact-section {
    /* Slightly lighter overlay so the background image shows through more */
    background: linear-gradient(rgba(10, 25, 47, 0.64), rgba(10, 25, 47, 0.64)), url('hero-bg.jpg');
    background-size: cover;
    padding: 120px 0;
}

.contact-main-card {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    margin: 48px 0 32px;
    box-shadow: var(--shadow-lg);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.card-icon { font-size: 3rem; }
.card-text { flex: 1; }
.card-text h3 { font-size: 1.75rem; margin-bottom: 8px; }
.email-text { font-size: 1.5rem; font-weight: 800; color: var(--red); margin-bottom: 8px; }
.small-text { font-size: 0.9rem; color: var(--text-muted); }

.contact-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.sub-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold-border);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    color: var(--white);
}

.sub-icon { font-size: 2rem; margin-bottom: 16px; }
.phone-num { font-size: 1.75rem; font-weight: 800; margin: 16px 0; }

/* Footer */
.footer {
    padding: 64px 0;
    background: var(--white);
    border-top: 1px solid var(--border-grey);
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 24px 0;
    padding-top: 18px;
    border-top: 1px solid var(--gold-border);
}

.footer-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--red);
}

.footer-meta {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.footer-meta a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
}

.footer-meta a:hover {
    color: var(--red);
}

.footer-logo { height: 40px; margin-bottom: 24px; opacity: 0.8; }
.copyright { font-size: 0.9rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .offer-grid, .intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .tracks-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .hero-title { font-size: 2.5rem; }
    .hero-ctas { flex-direction: column; }
    .tracks-grid, .steps-container, .contact-sub-grid { grid-template-columns: 1fr; }
    .card-content { flex-direction: column; text-align: center; }
    .email-text { font-size: 1.1rem; }

    section { padding: 72px 0; }

    /* Comparison table: allow full visibility on mobile */
    .comp-table-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .comp-table {
        min-width: 560px;
    }
}

/* Small info glyph used in the contact call card */
.info-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 800;
    margin-right: 10px;
    transform: translateY(-1px);
}

.call-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

