/* Site developed and built by sitethreesixty.com */
/* What's Included — Page-specific styles */
/* NOTE: critical.css uses hardcoded values for performance */

/* ================================
   HERO — Page-specific overrides
   ================================ */

/* Remove container max-width — let H1 use full viewport width */
.page-whats-included .hero .container {
    max-width: 100%;
}

.page-whats-included .hero-content {
    max-width: none;
}

/* Override global hero-title — viewport-width sizing */
.page-whats-included .hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

/* Prevent "Fully" and "Managed." from splitting across lines */
.page-whats-included .hero-title em {
    white-space: nowrap;
}

@media (min-width: 768px) {
    .page-whats-included .hero-title {
        font-size: clamp(4rem, 7vw, 7rem);
    }
}

/* Fact row — mobile: stacked, desktop: horizontal with dots */
.page-whats-included .hero-facts {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
}

.page-whats-included .hero-fact {
    font-size: 0.9375rem;
    font-weight: 700;
    color: rgba(237, 237, 240, 0.82);
    letter-spacing: 0.01em;
}

.page-whats-included .hero-facts-sep {
    display: none;
}

@media (min-width: 768px) {
    .page-whats-included .hero-facts {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 0;
        margin-top: 2.5rem;
    }

    .page-whats-included .hero-fact {
        padding: 0 0.875rem;
        font-size: 1rem;
    }

    .page-whats-included .hero-facts-sep {
        display: inline;
        color: rgba(237, 237, 240, 0.32);
        font-size: 1.5rem;
        line-height: 1;
        font-weight: 300;
    }
}

/* ================================
   ZONE A — FEATURE CARDS
   2-col grid + full-width featured card
   ================================ */

/* Grid container */
.included-grid {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
    row-gap: 2rem;
    align-items: stretch;
}

/* Card base */
.included-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 200ms ease, box-shadow 200ms ease;
    display: flex;
    flex-direction: column;
}

.included-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* Card Header — horizontal layout with icon */
.included-card-header {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

/* Icon */
.included-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: var(--badge-teal-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal-700);
    flex-shrink: 0;
}

.included-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.included-card-icon--featured {
    background: var(--color-teal-700);
    color: var(--text-white);
}

/* Card text */
.included-card-title {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .included-card-title {
        font-size: var(--text-2xl);
    }
}

.included-card-subtitle {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.included-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.75rem;
    color: var(--accent-primary);
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    transition: var(--transition-colors);
}

.included-card-link:hover {
    color: var(--accent-primary-hover);
    text-decoration: underline;
}

/* Badge for 360 Pro items */
.included-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    background: var(--badge-teal-bg);
    color: var(--badge-teal-text);
    border-radius: var(--radius-full);
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Featured Pro card */
.included-featured {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.included-card--featured {
    border: 1px solid var(--border-light);
}

/* ================================
   DETAILS / SUMMARY — Smooth expand
   ================================ */

.included-details {
    border-top: 1px solid var(--border-light);
}

.included-details summary {
    padding: 1rem 2rem;
    cursor: pointer;
    font-weight: var(--weight-semibold);
    color: var(--accent-primary);
    font-size: var(--text-sm);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-colors);
}

.included-details summary:hover {
    color: var(--accent-primary-hover);
}

/* Remove default marker */
.included-details summary::-webkit-details-marker {
    display: none;
}

.included-details summary::marker {
    display: none;
}

/* Chevron indicator */
.included-details summary::before {
    content: '';
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 300ms ease;
    flex-shrink: 0;
}

.included-details[open] summary::before {
    transform: rotate(45deg);
}

.included-details[open] summary {
    border-bottom: 1px solid var(--border-light);
}

/* Smooth height animation via grid-template-rows */
.included-details-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 400ms ease;
}

.included-details[open] .included-details-content {
    grid-template-rows: 1fr;
}

.included-details-inner {
    overflow: hidden;
    padding: 0 2rem;
}

.included-details[open] .included-details-inner {
    padding: 1.5rem 2rem 2rem;
}

/* Content within expanded area */
.included-details-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-details-inner li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.included-details-inner li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: var(--weight-bold);
}

/* Item title within list (bold part before the dash) */
.included-item-title {
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
}

/* Domain subtext / notes beneath bullets */
.included-note {
    margin: 0.5rem 0 0.75rem 1.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    line-height: 1.5;
    border-left: 2px solid var(--border-light);
}

.included-note strong {
    color: var(--text-secondary);
}

/* Competitive context box */
.included-context {
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    background: var(--color-gray-100);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-tertiary);
    line-height: 1.5;
}

/* ================================
   ZONE B — ASYMMETRIC LINK SECTIONS
   Wider column (64rem)
   ================================ */

.included-zone--alt {
    background: #e2e4e9;
}

.included-links-zone {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.included-link-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0;
    align-items: center;
}

.included-link-section+.included-link-section {
    border-top: 1px solid var(--border-light);
}

.included-link-title {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: var(--line-height-snug);
}

.included-link-subtitle {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.included-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--accent-primary);
    font-weight: var(--weight-semibold);
    font-size: var(--text-base);
    transition: var(--transition-colors);
}

.included-link-cta:hover {
    color: var(--accent-primary-hover);
    text-decoration: underline;
}

/* Visual column — images */
.included-link-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

/* Reversed section: visual is first in DOM — push it below content on mobile */
.included-link-section--reversed .included-link-visual {
    order: 2;
}

.included-link-section--reversed .included-link-content {
    order: 1;
}

.included-link-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: var(--radius-xl);
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

@media (min-width: 768px) {
    .included-link-section {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        padding: 6rem 0;
    }

    .included-link-section--reversed {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .included-link-section--reversed .included-link-content {
        order: 2;
    }

    .included-link-section--reversed .included-link-visual {
        order: 1;
    }

    .included-link-visual {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .included-link-title {
        font-size: var(--text-3xl);
    }
}

/* ================================
   ZONE C — STATEMENT SECTION
   Full-bleed teal gradient
   ================================ */

.included-statement {
    padding: 6rem 1.5rem;
    background: #111827;
    color: var(--text-white);
}

.included-statement-inner {
    max-width: 44rem;
    margin: 0 auto;
}

.included-statement-line {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem;
    padding-left: 1.25rem;
    border-left: 3px solid #2dd4bf;
}

.included-statement-line:last-child {
    margin-bottom: 0;
    color: #ffffff;
    border-left-color: #ffffff;
}

@media (min-width: 768px) {
    .included-statement {
        padding: 9rem 2rem;
    }

    .included-statement-line {
        font-size: var(--text-2xl);
        line-height: 1.6;
        padding-left: 1.75rem;
    }
}

/* ================================
   PAGESPEED SCORE DISPLAY
   ================================ */

.included-scores {
    display: flex;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
    flex-wrap: wrap;
}

.included-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    flex: 1;
    min-width: 60px;
}

.included-score-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 4px solid #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    color: #16a34a;
    background: rgba(22, 163, 74, 0.06);
}

.included-score-label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.3;
}

/* ================================
   FAQ SECTION
   ================================ */

.included-faq {
    padding: 5rem 1rem;
    background: var(--bg-white, #EDEDF0);
}

.included-faq-title {
    text-align: center;
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.included-faq-list {
    max-width: 52rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.included-faq-item {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border-light, #e5e7eb);
}

.included-faq-item:first-child {
    border-top: 1px solid var(--border-light, #e5e7eb);
}

.included-faq-question {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.included-faq-answer {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

.included-faq-link {
    color: var(--accent-primary);
    font-weight: var(--weight-semibold);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 200ms ease;
}

.included-faq-link:hover {
    color: var(--accent-primary-hover);
}

@media (min-width: 768px) {
    .included-faq {
        padding: 7rem 1rem;
    }
}

/* ================================
   SECTION SPACING
   ================================ */

.included-zone {
    padding: 0;
}

/* Section intro text within zones */
.included-zone-intro {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.included-zone-intro h2 {
    margin-bottom: 0.75rem;
}

.included-zone-intro p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================
   MOBILE RESPONSIVE
   ================================ */

@media (max-width: 767px) {
    .included-card-header {
        padding: 1.5rem;
    }

    .included-details summary {
        padding: 0.875rem 1.5rem;
    }

    .included-details-inner {
        padding: 0 1.5rem;
    }

    .included-details[open] .included-details-inner {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .included-card-title {
        font-size: var(--text-lg);
    }

    .included-grid {
        row-gap: 1.5rem;
    }

    .included-link-section {
        padding: 3rem 0;
    }
}

/* ================================
   HERO ADJUSTMENTS
   Narrower hero for this page type
   ================================ */

.page-whats-included .hero {
    min-height: 400px;
}

.page-whats-included .hero-content {
    text-align: center;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-whats-included .hero {
        min-height: 500px;
    }
}

/* ================================
   CTA SECTION ADJUSTMENTS
   ================================ */

.page-whats-included .cta-section {
    margin-top: 0;
}

/* ================================
   PLAN INTRO STRIP
   ================================ */

.included-plan-strip {
    max-width: 56rem;
    margin: 0 auto 0;
    padding: 4rem 1rem 4rem;
    display: flex;
    gap: 1.5rem;
}

.included-plan-chip {
    flex: 1;
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #eab308, #fbbf24, #fde68a);
    padding: 1.75rem 2rem;
    box-shadow: 0 6px 16px rgba(234, 179, 8, 0.35), 0 3px 8px rgba(0, 0, 0, 0.12);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.included-plan-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(234, 179, 8, 0.45), 0 5px 12px rgba(0, 0, 0, 0.15);
}

.included-plan-chip--pro {
    border-top: 4px solid #92400e;
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.4), 0 3px 10px rgba(0, 0, 0, 0.12);
}

.included-plan-chip--pro:hover {
    box-shadow: 0 12px 32px rgba(234, 179, 8, 0.5), 0 6px 14px rgba(0, 0, 0, 0.15);
}

.included-plan-chip-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.included-plan-chip .included-badge {
    margin-left: 0;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.included-plan-chip-descriptor {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.included-plan-chip-price {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.included-plan-chip-freq {
    font-size: var(--text-base);
    font-weight: var(--weight-normal);
    color: var(--text-secondary);
}

/* Yellow badge variant */
.included-badge--yellow {
    background: var(--color-yellow-400);
    color: var(--color-gray-900);
}

/* Inline plan badges within list items */
.included-item-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    border-radius: var(--radius-full);
    margin-right: 0.25rem;
    vertical-align: middle;
}

.included-item-badge.included-badge--lite {
    background: var(--badge-teal-bg);
    color: var(--badge-teal-text);
}

.included-item-badge.included-badge--pro {
    background: var(--color-yellow-400);
    color: var(--color-gray-900);
}

/* Stat highlight — amber for readability on white background */
.included-stat-highlight {
    color: #b45309;
    font-weight: var(--weight-bold);
}

/* Inline link within list items */
.included-inline-link {
    color: var(--accent-primary);
    font-weight: var(--weight-semibold);
    font-size: var(--text-xs);
    transition: color 200ms ease;
}

.included-inline-link:hover {
    color: var(--accent-primary-hover);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .included-plan-strip {
        flex-direction: column;
        padding: 2.5rem 1rem;
    }

    .included-plan-chip {
        padding: 1.5rem;
    }
}

/* ================================
   NEW PLAN CHIP — Rich Pricing Display
   ================================ */

/* Plan name — large and confident */
.included-plan-name {
    font-size: 3rem;
    font-weight: 900;
    color: #451a03;
    margin-bottom: 0.5rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

/* "Charter Rate" offer label */
.included-plan-offer-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #451a03;
    background: rgba(255, 255, 255, 0.45);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

/* Large charter rate price */
.included-plan-charter-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a0800;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

/* Strikethrough regular price */
.included-plan-was {
    font-size: var(--text-sm);
    color: rgba(69, 26, 3, 0.75);
    margin-bottom: 0.75rem;
}

.included-plan-was s {
    text-decoration: line-through;
    color: rgba(69, 26, 3, 0.55);
}

/* Setup fee line */
.included-plan-setup-line {
    font-size: var(--text-sm);
    color: rgba(69, 26, 3, 0.8);
    margin-bottom: 0.75rem;
}

.included-plan-setup-line s {
    text-decoration: line-through;
    color: rgba(69, 26, 3, 0.5);
}

/* "✓ Waived" badge */
.included-chip-waived {
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
    color: #166534;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    margin-left: 0.25rem;
}

/* Savings text — dark on yellow background */
.included-plan-save {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: #451a03;
}

@media (min-width: 768px) {
    .included-plan-name {
        font-size: 4rem;
    }

    .included-plan-charter-price {
        font-size: 5rem;
    }
}

/* ================================
   NAMED SECTIONS — Alternating backgrounds
   ================================ */

.included-section {
    padding: 4rem 0;
}

.included-section--alt {
    background: var(--color-gray-50);
}

.included-section-header {
    max-width: 56rem;
    margin: 0 auto 2.5rem;
    padding: 0 1rem;
}

.included-section-title {
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .included-section-title {
        font-size: var(--text-xl);
    }
}

@media (min-width: 768px) {
    .included-section {
        padding: 5rem 0;
    }

    .included-section-header {
        margin-bottom: 3rem;
    }
}

/* ================================
   CARD BODY — Always-visible content
   ================================ */

.included-card-body {
    border-top: 1px solid var(--border-light);
    padding: 1.5rem 2rem 2rem;
    flex: 1;
}

@media (max-width: 767px) {
    .included-card-body {
        padding: 1.25rem 1.5rem 1.5rem;
    }
}

.included-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-card-body li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.included-card-body li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: var(--weight-bold);
}

/* ================================
   ANIMATION — Dramatic card drop-in
   ================================ */

.page-whats-included .included-grid.reveal-stagger>*,
.page-whats-included .included-plan-strip.reveal-stagger>* {
    opacity: 0;
    transform: translateY(60px) scale(0.94);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-whats-included .included-grid.reveal-stagger.is-visible>*,
.page-whats-included .included-plan-strip.reveal-stagger.is-visible>* {
    opacity: 1;
    transform: none;
}

/* Explicit per-card stagger — override scroll-reveal.css generic delays */
.page-whats-included .included-grid.reveal-stagger.is-visible>*:nth-child(1) {
    transition-delay: 0s;
}

.page-whats-included .included-grid.reveal-stagger.is-visible>*:nth-child(2) {
    transition-delay: 0.2s;
}

.page-whats-included .included-plan-strip.reveal-stagger.is-visible>*:nth-child(1) {
    transition-delay: 0s;
}

.page-whats-included .included-plan-strip.reveal-stagger.is-visible>*:nth-child(2) {
    transition-delay: 0.25s;
}

@media (prefers-reduced-motion: reduce) {

    .page-whats-included .included-grid.reveal-stagger>*,
    .page-whats-included .included-plan-strip.reveal-stagger>* {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ================================
   ADD-ON PRICING CALLOUT
   ================================ */

.included-addon-pricing {
    margin: 1.25rem 0 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.included-addon-pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.375rem 0;
}

.included-addon-pricing-row+.included-addon-pricing-row {
    border-top: 1px solid var(--border-light);
}

.included-addon-pricing-price {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
}

.included-addon-pricing-note {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* ================================
   ONBOARDING LIST
   ================================ */

.included-onboarding-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.included-onboarding-list li {
    padding: 0.625rem 0 0.625rem 1.75rem;
    position: relative;
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-light);
}

.included-onboarding-list li:last-child {
    border-bottom: none;
}

.included-onboarding-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: var(--weight-bold);
    top: 0.625rem;
}

/* ================================
   CTA CONTACT LINE
   ================================ */

.included-contact-line {
    margin-top: 1.5rem;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-align: center;
}

.included-contact-link {
    color: var(--accent-primary);
    font-weight: var(--weight-semibold);
    transition: color 200ms ease;
}

.included-contact-link:hover {
    color: var(--accent-primary-hover);
    text-decoration: underline;
}

/* ================================
   MOBILE CTAs — in-page conversion points
   Hidden on desktop (tablet and up)
   ================================ */

.included-mobile-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    padding: 2rem 1.25rem;
    text-align: center;
}

.included-mobile-cta--contact {
    background: var(--surface-secondary, #f0f2f5);
    border-radius: 0.75rem;
    margin: 0 1rem 1rem;
    padding: 1.5rem 1.25rem;
}

.included-mobile-cta-heading {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.included-mobile-cta-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.included-mobile-cta-phone {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.included-mobile-cta-phone:hover {
    text-decoration: underline;
}

.included-mobile-cta-note {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin: 0;
}

.included-mobile-cta-note a {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.included-mobile-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
}

.included-mobile-cta-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* Yellow CTA button — charter rate yellow, used on mobile CTAs 2–5 */
.btn-yellow {
    background: linear-gradient(135deg, #eab308, #fbbf24, #fde68a);
    color: #451a03;
    border: 1px solid rgba(234, 179, 8, 0.3);
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.35), 0 2px 6px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}

.btn-yellow:hover {
    background: linear-gradient(135deg, #ca8a04, #eab308, #fbbf24);
    color: #451a03;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(234, 179, 8, 0.4), 0 3px 8px rgba(0, 0, 0, 0.12);
}

/* CTAs visible on all screen sizes */

/* https://sitethreesixty.com */