/* Price Clicker - Minimalist Design */

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

/* Screen Reader Only - for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:root {
    --primary-blue: #027FFF;
    --light-blue: #4DA3FF;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray-text: #666666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

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

/* Header */
header {
    padding: 20px 0;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 46px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

header nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Buttons */
.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(2, 127, 255, 0.2);
}

.btn-primary:hover {
    background: #0266CC;
    border-color: #0266CC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 127, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    background: rgba(2, 127, 255, 0.05);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

a.btn-outline,
.btn-outline {
    background: transparent !important;
    color: var(--primary-blue) !important;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--primary-blue);
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

a.btn-outline:hover,
.btn-outline:hover {
    background: rgba(2, 127, 255, 0.05) !important;
    color: var(--primary-blue) !important;
}

a.btn-wide,
.btn-wide {
    width: 100%;
    max-width: 460px;
    text-align: center;
    margin-top: 0;
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--black);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--gray-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 580px;
    margin: 0 auto;
}

.cta-buttons .btn-how-it-works {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    text-align: center;
}

.cta-buttons .btn-wide {
    flex-basis: 100%;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--white);
}

.content-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.content-card h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--black);
    font-weight: 700;
}

.content-card p {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 24px !important;
}

/* What Price Clicker Does — full-width editorial panels */
.what-we-do {
    padding: 0;
    background: var(--white);
}

.what-we-do-intro {
    padding: 100px 0 72px;
    background: linear-gradient(180deg, var(--white) 0%, rgba(2, 127, 255, 0.05) 100%);
    text-align: center;
}

.what-we-do-intro .container {
    max-width: 720px;
}

.what-we-do-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(2, 127, 255, 0.08);
    border: 1px solid rgba(2, 127, 255, 0.15);
}

.what-we-do-intro h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.15;
}

.what-we-do-lead {
    font-size: 21px;
    color: var(--gray-text);
    line-height: 1.65;
    margin: 0;
}

.what-we-do-panels {
    display: flex;
    flex-direction: column;
}

.what-panel {
    width: 100%;
    padding: 88px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.what-panel:first-child {
    border-top: none;
}

.what-panel:nth-child(odd) {
    background: var(--white);
}

.what-panel:nth-child(even) {
    background: var(--gray-light);
}

.what-panel-accent {
    background: linear-gradient(135deg, rgba(2, 127, 255, 0.1) 0%, rgba(2, 127, 255, 0.03) 50%, var(--white) 100%) !important;
}

.what-panel-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 72px auto 1fr;
    column-gap: 32px;
    align-items: start;
}

.what-panel-index {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary-blue);
    opacity: 0.55;
    padding-top: 6px;
}

.what-panel-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(2, 127, 255, 0.28);
}

.what-panel-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

.what-panel-copy h3 {
    font-size: clamp(26px, 3.2vw, 34px);
    font-weight: 700;
    color: var(--black);
    margin: 0 0 16px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.what-panel-copy p {
    font-size: clamp(17px, 2vw, 20px);
    color: #555;
    line-height: 1.7;
    margin: 0;
    max-width: 62ch;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--gray-light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--black);
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 127, 255, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--black);
}

.step p {
    font-size: 18px;
    color: var(--gray-text);
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
}

.benefit h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--black);
}

.benefit p {
    font-size: 16px;
    color: var(--gray-text);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--gray-light);
    border-color: var(--gray-light);
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-section .btn-ghost-white {
    background: transparent !important;
    color: var(--white) !important;
    border: 2px solid var(--white) !important;
    box-shadow: none !important;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-section .btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--white) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* What They See */
.what-they-see {
    padding: 80px 0;
    background: var(--gray-light);
}

.what-they-see .content-card {
    text-align: center;
}

.what-they-see-subtitle {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.what-they-see-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* See An Example */
.see-example {
    padding: 80px 0;
    background: var(--white);
}

.see-example h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--black);
}

.see-example-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.see-example-embed-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.see-example-short-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    color: var(--primary-blue);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.see-example-short-link:hover {
    background: rgba(2, 127, 255, 0.08);
}

.see-example-short-link svg {
    flex-shrink: 0;
}

.see-example-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    background: var(--gray-light);
    line-height: 0;
    width: 100%;
    min-height: 0;
    height: 0;
}

.see-example-embed.is-resized {
    height: auto;
}

.see-example-embed iframe {
    display: block;
    width: 100%;
    height: 0;
    min-height: 0;
    border: none;
    overflow: hidden;
    vertical-align: top;
}

.see-example-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.see-example-template-preview {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    display: block;
}

.see-example-templates-btn {
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
}

/* Homepage pricing equation banner */
.pricing-equation-banner {
    padding: 56px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-equation-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 12px;
    margin: 0;
    font-size: clamp(22px, 3.2vw, 34px);
    font-weight: 650;
    line-height: 1.5;
    color: var(--black);
    text-align: center;
}

.equation-var {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 10px;
    border: 2px solid rgba(2, 127, 255, 0.35);
    background: rgba(2, 127, 255, 0.08);
    color: var(--primary-blue);
    font-weight: 700;
    white-space: nowrap;
}

.equation-const {
    font-weight: 700;
    color: var(--black);
    white-space: nowrap;
}

.equation-op,
.equation-paren {
    font-weight: 600;
    color: #444;
}

.equation-group {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
}

/* Industries We Serve */
.industries {
    padding: 80px 0;
    background: var(--gray-light);
}

.industries h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
}

.industries-lead {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 20px;
    color: var(--gray-text);
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(2, 127, 255, 0.08);
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(2, 127, 255, 0.15);
}

.industry-card ul {
    list-style: none;
}

.industry-card li {
    font-size: 16px;
    color: var(--gray-text);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-card li:last-child {
    border-bottom: none;
}

/* 404 Page */
.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
}

.error-page-content {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.error-page-code {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-blue);
    opacity: 0.2;
    margin-bottom: -20px;
}

.error-page h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.error-page p {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 32px;
    line-height: 1.6;
}

.error-page-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background: var(--black);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo-link {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand .logo-img {
    height: 36px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.85;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-text span {
    display: block;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer-contact-link:hover {
    color: var(--light-blue);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.footer-column {
    text-align: left;
}

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--light-blue);
}

.footer-bottom {
    text-align: left;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .content-card h2,
    .how-it-works h2,
    .what-we-do-intro h2 {
        font-size: 32px;
    }

    .what-we-do-intro {
        padding: 72px 0 48px;
    }

    .what-we-do-lead {
        font-size: 18px;
    }

    .what-panel {
        padding: 64px 0;
    }

    .what-panel-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .what-panel-index {
        padding-top: 0;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .see-example-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industries h2,
    .see-example h2 {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer,
    .footer-content,
    .footer-brand,
    .footer-links,
    .footer-column,
    .footer-bottom {
        text-align: left;
    }

    .footer-brand .logo-link {
        display: inline-block;
    }

    header nav {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    header nav a {
        flex: 1;
        text-align: center;
        font-size: 14px;
        padding: 10px 16px;
    }

    header .container {
        flex-direction: column;
        gap: 15px;
    }
}

/* Pricing page */
.pricing-page {
    background: var(--white);
}

.pricing-page-intro {
    padding: 56px 0 40px;
    text-align: center;
}

.pricing-page-intro h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-page-intro p {
    font-size: 18px;
    color: var(--gray-text);
    max-width: 640px;
    margin: 0 auto;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 0;
    align-items: stretch;
}

.pricing-tiers .tier {
    background: var(--white);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    border: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-tiers .tier--highlight {
    border: 2px solid #e5e7eb;
}

.pricing-tiers .tier ul li.tier-loss {
    color: var(--gray-text);
}

.pricing-tiers .tier ul li.tier-loss::before {
    content: '✕';
    color: #9ca3af;
    font-weight: 600;
    font-size: 16px;
}

.pricing-tiers .tier:hover {
    transform: scale(1.02);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 40px rgba(2, 127, 255, 0.15);
}

.pricing-tiers .tier h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-tiers .tier .price {
    font-size: 48px;
    color: var(--primary-blue);
    font-weight: 700;
    margin: 12px 0 16px;
    line-height: 1;
}

.pricing-tiers .tier .price span {
    font-size: 18px;
    color: var(--gray-text);
    font-weight: 500;
}

.pricing-tiers .tier .description {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 24px;
    min-height: 48px;
}

.pricing-tiers .tier ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
    flex: 1;
}

.pricing-tiers .tier ul li {
    margin: 14px 0;
    font-size: 15px;
    color: var(--gray-text);
    padding-left: 28px;
    position: relative;
}

.pricing-tiers .tier ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.pricing-tiers .tier ul li.feature-caveat {
    padding-left: 28px;
}

.pricing-tiers .tier ul li.feature-caveat::before {
    content: none;
}

.feature-caveat-icon {
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    color: #d97706;
}

.pricing-cta-band {
    background: var(--white);
    width: 100%;
    padding: 48px 20px;
    text-align: center;
}

.pricing-compare-section {
    padding: 56px 0 24px;
}

.pricing-compare-heading {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-compare-heading h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-compare-heading p {
    color: var(--gray-text);
    font-size: 18px;
}

.pricing-table-wrap {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.pricing-compare {
    min-width: 720px;
}

.pricing-row {
    display: grid;
    grid-template-columns: minmax(200px, 2fr) repeat(3, minmax(120px, 1fr));
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover:not(.pricing-row--head) {
    background: rgba(2, 127, 255, 0.04);
}

.pricing-row--head .pricing-cell {
    background: var(--gray-light);
    font-weight: 700;
}

.pricing-cell {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 15px;
    line-height: 1.45;
    min-height: 100%;
    box-sizing: border-box;
}

.pricing-cell--plan-header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding-top: 22px;
    padding-bottom: 22px;
    text-align: left;
}

.plan-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.plan-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
}

.feature-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--black);
    flex-wrap: wrap;
}

.feature-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(2, 127, 255, 0.45);
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 700;
    cursor: help;
    flex-shrink: 0;
}

.feature-tip {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.feature-tip-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(2, 127, 255, 0.1);
    color: var(--primary-blue);
    cursor: help;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-tip-trigger svg {
    width: 13px;
    height: 13px;
}

.feature-tip-trigger:hover,
.feature-tip-trigger:focus-visible {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(2, 127, 255, 0.35);
    outline: none;
}

.feature-tip-bubble {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: max-content;
    max-width: min(300px, 72vw);
    padding: 12px 14px;
    background: #111827;
    color: #f9fafb;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.01em;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.06);
    z-index: 30;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    text-align: left;
}

.feature-tip-bubble::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #111827;
}

.pricing-compare .feature-tip-bubble {
    bottom: auto;
    top: calc(100% + 12px);
    transform: translateX(-50%) translateY(-6px);
}

.pricing-compare .feature-tip-bubble::before {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: #111827;
}

.pricing-compare .feature-tip:hover .feature-tip-bubble,
.pricing-compare .feature-tip:focus-within .feature-tip-bubble {
    transform: translateX(-50%) translateY(0);
}

.feature-tip:hover .feature-tip-bubble,
.feature-tip:focus-within .feature-tip-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pricing-fees-section {
    padding: 8px 0 20px;
}

.pricing-fees-card {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 36px 32px 32px;
    text-align: center;
    background: var(--white);
}

.pricing-fees-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(2, 127, 255, 0.08);
}

.pricing-fees-section h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.pricing-fees-lead {
    color: var(--gray-text);
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.pricing-fees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 640px;
    margin: 0 auto 24px;
}

.pricing-fees-item {
    background: var(--gray-light);
    border-radius: 14px;
    padding: 20px 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-fees-item .brand-stripe,
.pricing-fees-item .brand-pc {
    display: block;
    font-size: 18px;
    margin: 0 0 8px;
}

.pricing-fees-rate {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 6px;
    line-height: 1.3;
}

.pricing-fees-rate-unit {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-text);
}

.pricing-fees-item .pricing-fees-note {
    margin: 0;
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.45;
}

.pricing-fees-example {
    margin: 0 auto;
    max-width: 620px;
    padding-top: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.6;
}

.pricing-cta-section {
    padding: 28px 0 36px;
}

.pricing-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 3px solid var(--primary-blue);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    text-decoration: none;
    background: var(--white);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.pricing-cta-card:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 40px rgba(2, 127, 255, 0.15);
    background: rgba(2, 127, 255, 0.03);
}

.pricing-cta-card-label {
    font-size: 17px;
    color: var(--gray-text);
    font-weight: 500;
}

.pricing-cta-card--solo {
    padding: 36px 32px;
}

.pricing-cta-card--solo .pricing-cta-card-btn {
    margin: 0;
}

.pricing-cta-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    padding: 14px 48px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(2, 127, 255, 0.3);
    transition: background 0.2s ease;
}

.pricing-cta-card:hover .pricing-cta-card-btn {
    background: #0266CC;
}

.brand-stripe {
    color: #533AFD;
    font-weight: 700;
}

.brand-pc {
    color: var(--primary-blue);
    font-weight: 700;
}

.cell-check {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 18px;
}

.cell-x {
    color: #9ca3af;
    font-weight: 600;
    font-size: 17px;
}

.cell-text {
    color: var(--gray-text);
    font-size: 14px;
}

/* Contact page */
.contact-page {
    padding: 56px 0 80px;
}

.contact-page h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.contact-page-lead {
    text-align: center;
    color: var(--gray-text);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 40px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(300px, 380px) minmax(280px, 1fr);
    gap: 40px;
    align-items: start;
}

.contact-form-embed {
    max-width: 92%;
    justify-self: end;
    width: 100%;
}

.contact-info-card {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.55;
}

.contact-info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--black);
}

.contact-info-address {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-address:hover {
    text-decoration: underline;
}

footer .footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

footer .footer-contact a:hover {
    color: var(--light-blue);
}

.footer-contact-address {
    display: block;
    text-decoration: none;
}

.footer-contact-address:hover {
    color: var(--light-blue);
}

.footer-address-line {
    display: block;
    line-height: 1.5;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-info-text span {
    display: block;
}

.contact-info-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-form-embed {
    border-radius: 16px;
    overflow: hidden;
    min-height: 480px;
    background: var(--gray-light);
}

.contact-form-embed iframe {
    width: 100%;
    border: none;
    display: block;
    min-height: 480px;
}

@media (max-width: 900px) {
    .pricing-tiers {
        grid-template-columns: 1fr;
    }

    .pricing-fees-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cta-card-btn {
        min-width: 220px;
        width: 100%;
        max-width: 320px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-embed {
        max-width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 768px) {
    .pricing-page-intro h1 {
        font-size: 32px;
    }

    .pricing-compare-heading h2 {
        font-size: 28px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

