/* ===============================
   TOKENS
================================ */
:root {
    --ink: #1a1a1a;
    --bg: whitesmoke;
    --card: #ffffff;
    --maroon: maroon;
    --coral: lightcoral;
    --navy: darkblue;
    --body-text: rgb(56, 56, 56);
    --line: #e4e2df;
}

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

/* ===============================
   TOKENS
================================ */
:root {
    --ink: #1a1a1a;
    --bg: #f8fafc;
    --card: #ffffff;
    --maroon: #800000;
    --coral: #f87171;
    --navy: #1e3a8a;
    --body-text: #475569;
    --line: #e4e2df;
    --radius-lg: 16px;
    --radius-md: 10px;
    --focus-ring: rgba(128, 0, 0, 0.15);
}

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

body {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
}

/* ===============================
   NAVBAR — two-tone split
================================ */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='navCurve' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23f87171'/%3E%3Cstop offset='0.5' stop-color='%23800000'/%3E%3Cstop offset='1' stop-color='%23800000'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M380,0 C460,0 420,100 540,100 L1000,100 L1000,0 Z' fill='url(%23navCurve)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
}
.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 2rem;
    position: relative;
}
.brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    color: #111;
}
.brand::after { display: none; }
.brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 0;
}
.brand span {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: normal;
    font-size: 14.5px;
    letter-spacing: -.015em;
    color: #111;
    white-space: nowrap;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}
nav a {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    font-weight: normal;
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    position: relative;
    cursor: pointer;
    letter-spacing: -.01em;
}
nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    height: 2px;
    width: 100%;
    left: 0;
    background-color: rgba(255,255,255,0.65);
    transition: transform 0.25s ease-in-out;
    transform: scaleX(0);
}
nav a:hover { color: white; }
nav a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: white; font-weight: normal; }
.nav-links a.active::after {
    background-color: rgba(255,255,255,0.75);
    transform: scaleX(1);
}
/* Download CTA — plain link style */
.nav-cta {
    color: rgba(255,255,255,0.9) !important;
    font-weight: normal !important;
    font-size: 14.5px!important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    letter-spacing: -.01em !important;
    transition: color 0.2s ease !important;
}
.nav-cta:hover {
    color: white !important;
    background: none !important;
    transform: none !important;
    box-shadow: none !important;
}
.nav-cta::after {
    display: block !important;
    background-color: rgba(255,255,255,0.65) !important;
}
#menu-toggle { display: none; }
.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 26px;
    height: 20px;
    cursor: pointer;
}
.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    transition: transform .3s ease, opacity .3s ease;
}
#menu-toggle:checked ~ .menu-icon span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#menu-toggle:checked ~ .menu-icon span:nth-child(2) { opacity: 0; }
#menu-toggle:checked ~ .menu-icon span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media screen and (max-width: 768px) {
    nav { background: var(--maroon); }
    .brand span, .brand { color: white; }
    .nav-inner { padding: .75rem 1.25rem; }
    .brand img { width: 28px; height: 28px; }
    .brand span { font-size: 14.5px; }
    .menu-icon { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 0;
        background-color: var(--maroon);
        box-shadow: 0 16px 24px rgba(128,0,0,.25);
        border-radius: 0 0 16px 16px;
        padding: .5rem 0 1rem;
    }
    #menu-toggle:checked ~ .nav-links { display: flex; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a { display: block; padding: .9rem 1rem; }
    .nav-links li:not(:last-child) a { border-bottom: 1px solid rgba(255,255,255,0.12); }
}

img {
    max-width: 100%;
    display: block;
}



img {
    max-width: 100%;
}


/* ===============================
   PAGE CONTENT / HERO
================================ */
.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 6vh 5% 3vh;
    font-size: 14.5px;
}
.eyebrow {
    display: block;
    text-align: center;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    font-weight: normal;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: .75rem;
}
.container h1 {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 22px;
    font-weight: normal;
    text-align: center;
    background: linear-gradient(20deg, var(--coral), var(--maroon));
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    line-height: 1.2;
}
.p1 {
    font-size: 14.5px;
    font-weight: normal;
    line-height: 1.6;
    max-width: 720px;
    margin: 3% auto 0;
    text-align: center;
    color: var(--body-text);
}

/* ===============================
   SECTIONS
================================ */
.section-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 5% 6vh;
}
.section-head {
    margin-bottom: 1.75rem;
}
.section-head h2 {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: normal;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: .5rem;
}
.section-head p {
    color: var(--body-text);
    font-size: 14.5px;
    max-width: 640px;
}

/* ===============================
   PRICING TABLE
================================ */
.pricing-card {
    background: var(--card);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    padding: 0;
    overflow-x: auto;
}
.pricing-card table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    font-size: 14.5px;
}
.pricing-card thead tr {
    background: linear-gradient(20deg, var(--coral), var(--maroon));
}
.pricing-card thead td {
    color: white;
    font-weight: normal;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.pricing-card td {
    padding: .9rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    color: var(--body-text);
}
.pricing-card thead td:first-child,
.pricing-card tbody td:first-child {
    border-radius: 0;
}
.pricing-card thead td:first-child {
    border-radius: 8px 0 0 0;
}
.pricing-card thead td:last-child {
    border-radius: 0 8px 0 0;
}
.pricing-card tbody tr:last-child td {
    border-bottom: none;
    border-top: 2px solid var(--maroon);
    font-weight: normal;
    color: var(--ink);
}
.pricing-card tbody tr:hover td {
    background: rgba(128, 0, 0, .03);
}
.pricing-note {
    font-size: 14.5px;
    color: gray;
    margin-top: 1rem;
    text-align: center;
    margin: auto 1rem;
}

/* ===============================
   NOTES / EXAMPLES / PAYMENT
================================ */
.info-card {
    background: var(--card);
    border-left: 4px solid var(--maroon);
    border-radius: 4px 14px 14px 4px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}
.info-card .p2 {
    display: block;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: normal;
    font-size: 14.5px;
    color: var(--ink);
    margin-bottom: .6rem;
}
.info-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--body-text);
}
.info-card p + p {
    margin-top: 1rem;
}
.info-card ul {
    margin: 1rem 0 0 1.25rem;
}
.info-card li {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--body-text);
    margin-bottom: .6rem;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ===============================
   FORM ALERTS (messages / errors)
================================ */
.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    font-size: 14.5px;
    line-height: 1.5;
}
.form-alert i {
    margin-top: 0.15rem;
}
.form-alert-success {
    background: #ecfdf3;
    color: #067647;
    border: 1px solid #abefc6;
}
.form-alert-error {
    background: #fef3f2;
    color: #b42318;
    border: 1px solid #fecdca;
}

/* ===============================
   PAYMENT ORDER (Contact + Order Info)
================================ */
.order-card {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    background: var(--card);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
    overflow: hidden;
}
.order-eyebrow {
    display: inline-block;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .6rem;
}
.order-contact {
    background: linear-gradient(160deg, var(--maroon), #5c0000);
    color: white;
    padding: 2.75rem 2.25rem;
    display: flex;
    flex-direction: column;
}
.order-contact .order-eyebrow {
    color: rgba(255, 255, 255, .7);
}
.order-contact h2 {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: normal;
    font-size: 22px;
    margin-bottom: 1.75rem;
}
.order-contact-list {
    list-style: none;
    margin-bottom: 2.25rem;
}
.order-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 1.4rem;
}
.order-contact-list li:last-child {
    margin-bottom: 0;
}
.order-contact-list i {
    margin-top: .2rem;
    width: 18px;
    text-align: center;
    color: var(--coral);
}
.order-contact-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    align-self: flex-start;
    font-size: 14.5px;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 30px;
    padding: .7rem 1.4rem;
    transition: background .25s ease, border-color .25s ease;
}
.order-contact-link:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .6);
}
.order-form {
    padding: 2.75rem 2.5rem;
}
.order-form .order-eyebrow {
    color: var(--maroon);
}
.order-form h2 {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: normal;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: .6rem;
}
.order-form-desc {
    font-size: 14.5px;
    color: var(--body-text);
    margin-bottom: 1.75rem;
}
.order-form-desc a {
    color: var(--maroon);
}
.order-plan-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 14.5px;
    color: var(--maroon);
    background: rgba(128, 0, 0, .06);
    border: 1px solid rgba(128, 0, 0, .18);
    border-radius: var(--radius-md);
    padding: .7rem 1rem;
    margin-bottom: 1.5rem;
}

.order-field select {
    width: 100%;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: .8rem 1rem;
    transition: border-color .2s ease, box-shadow .2s ease;
    cursor: pointer;
}
.order-field select:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 4px var(--focus-ring);
}
.order-field {
    margin-bottom: 1.25rem;
}
.order-field label {
    display: block;
    font-size: 14.5px;
    color: var(--ink);
    margin-bottom: .5rem;
}
.order-field input {
    width: 100%;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: .8rem 1rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.order-field input:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 4px var(--focus-ring);
}
.order-field input[readonly] {
    color: var(--body-text);
    cursor: default;
}
.order-field input[readonly]:focus {
    border-color: var(--line);
    box-shadow: none;
}
.order-input-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg);
}
.order-input-wrap:focus-within {
    border-color: var(--maroon);
    box-shadow: 0 0 0 4px var(--focus-ring);
}
.order-prefix {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0 1rem;
    font-size: 14.5px;
    color: var(--maroon);
    background: rgba(128, 0, 0, .06);
    border-right: 1px solid var(--line);
}
.order-input-wrap input {
    border: none;
    border-radius: 0;
    background: transparent;
}
.order-input-wrap input:focus {
    box-shadow: none;
}
.order-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    color: white;
    background: linear-gradient(20deg, var(--coral), var(--maroon));
    border: none;
    border-radius: 30px;
    padding: 1rem 1.5rem;
    margin-top: .5rem;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(128, 0, 0, .25);
    transition: transform .25s ease, box-shadow .25s ease;
}
.order-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(128, 0, 0, .32);
}
.order-note {
    font-size: 14.5px;
    color: var(--body-text);
    text-align: center;
    margin-top: 1rem;
}
.order-note a {
    color: var(--maroon);
}

@media screen and (max-width: 992px) {
    .order-card {
        grid-template-columns: 1fr;
    }
    .order-contact,
    .order-form {
        padding: 2rem;
    }
}

/* ===============================
   PAYMENT STEPS
================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.step-card {
    background: var(--card);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    padding: 2rem;
    position: relative;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(20deg, var(--coral), var(--maroon));
    color: white;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14.5px;
    font-weight: normal;
    margin-bottom: 1rem;
}
.step-card h3 {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: normal;
    font-size: 14.5px;
    color: var(--ink);
    margin-bottom: .6rem;
}
.step-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--body-text);
}

/* ===============================
   PAYMENT METHOD CARDS
================================ */
.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.method-card {
    background: var(--card);
    border-left: 4px solid var(--maroon);
    border-radius: 4px 14px 14px 4px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}
.method-card .method-icon {
    width: 44px;
    height: 44px;
    color: var(--maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 1rem;
}
.method-card h3 {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: normal;
    font-size: 14.5px;
    color: var(--ink);
    margin-bottom: .6rem;
}
.method-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--body-text);
}
.method-note {
    display: inline-block;
    margin-top: .85rem;
    font-size: 14.5px;
    color: var(--maroon);
    background: rgba(128, 0, 0, .06);
    border-radius: 20px;
    padding: .3rem .8rem;
}

@media screen and (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 560px) {
    .method-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   CTA
================================ */
.purchase-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.purchase-cta a {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: normal;
    border-radius: 30px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.purchase-cta a.primary {
    background: linear-gradient(20deg, var(--coral), var(--maroon));
    color: white;
    box-shadow: 0 10px 24px rgba(128, 0, 0, .25);
}
.purchase-cta a.secondary {
    background: var(--card);
    color: var(--maroon);
    border: 1px solid var(--maroon);
}
.purchase-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(128, 0, 0, .32);
}

/* ===============================
   FOOTER
================================ */
footer {
    background-color: var(--ink);
    padding: 3vh 5vw 2vh;
    color: gray;
}
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}
.f1 ul {
    list-style: none;
}
footer li {
    padding: .28rem 0;
}
.f1 a {
    color: gray;
    text-decoration: none;
    transition: color .2s ease;
    font-size: 14.5px;
}
.f1 a:hover {
    color: white;
    text-decoration: underline;
}
.current-page {
    color: var(--coral);
    font-size: 14.5px;
}
.ft {
    position: relative;
    display: inline-block;
    font-weight: normal;
    color: white;
    font-size: 14.5px;
    padding-bottom: .5rem;
    margin-bottom: .5rem;
}
.ft::after {
    content: "";
    position: absolute;
    bottom: -2px;
    height: 2px;
    width: 40%;
    left: 0;
    background-color: var(--maroon);
}
footer p {
    margin-top: 1vh;
    text-align: center;
    width: 100%;
    color: #888;
    font-size: 14.5px;
}

/* ===============================
   FLOATING SOCIAL STRIP
================================ */
.case {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: var(--ink);
}
.ftop {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.icon {
    position: relative;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #232324;
    border: 1px solid #333;
    border-radius: 50%;
    color: white;
    font-size: 22px;
    text-decoration: none;
    animation: wave 4s ease-in-out infinite;
    transition: transform .3s ease, background-color .3s ease;
    flex-shrink: 0;
}
.icon::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: whitesmoke;
    transform: translateX(-50%);
    z-index: -1;
}
.icon:hover {
    transform: scale(1.1);
    background-color: var(--maroon);
}
.facebook { animation-delay: 1s; }
.linkedin { animation-delay: 1.75s; }
.x { animation-delay: 2.5s; }

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-10px); }
    50% { transform: translateY(5px); }
    75% { transform: translateY(-10px); }
}

/* ===============================
   RESPONSIVE
================================ */
@media screen and (max-width: 992px) {
    .nav-links {
        gap: 1.25rem;
    }
    .two-col {
        grid-template-columns: 1fr;
    }
    .container h1 {
        font-size: 22px;
    }
    .p1 {
        font-size: 14.5px;
    }
    .info-card {
        padding: 1.5rem;
    }
    .footer-links {
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 5vh 6% 2vh;
    }
    .section-wrap {
        padding: 0 6% 5vh;
    }
    .info-card {
        padding: 1.25rem;
    }
    footer {
        padding: 40px 20px;
    }
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .ft::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .case {
        height: auto;
        padding: 30px 10px;
    }
    .purchase-cta a {
        display: block;
    }
}