:root {
    /* Colors */
    --blueprint-blue: #1e3a8a;
    --blueprint-light: #2563eb;
    --concrete-gray: #e5e7eb;
    --concrete-dark: #cbd5e1;
    --steel-dark: #1f2937;
    --wood-accent: #b45309;
    /* professional wood/gold tone */
    --cta-color: #f59e0b;
    /* high contrast action color */
    --cta-hover: #d97706;
    --text-dark: #111827;
    --text-light: #6b7280;
    --bg-light: #f8fafc;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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);

    /* Radii */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--steel-dark);
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 1rem;
}

/* Container & Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

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

.text-right {
    text-align: right;
}

.text-white {
    color: #ffffff !important;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

/* Backgrounds & Textures */
.bg-light-gray {
    background-color: var(--concrete-gray);
}

.bg-white {
    background-color: #ffffff;
}

.bg-steel-dark {
    background-color: var(--steel-dark);
    color: #fff;
}

.bg-wood-accent {
    background-color: var(--wood-accent);
}

.bg-blueprint {
    background-color: var(--blueprint-blue);
}

.bg-orange-accent {
    background-color: #f59e0b;
    /* Amarelo alaranjado / amber-500 */
    color: #fff;
}

.bg-black {
    background-color: #111827;
    /* Darker than steel-dark */
}

/* Global Colors */
.text-orange {
    color: #f59e0b;
}

.text-red {
    color: #dc2626;
}

/* Blueprint Pattern */
.pattern-bg {
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.pattern-bg-light {
    background-color: #fff;
    background-image: linear-gradient(#e5e7eb 1px, transparent 1px),
        linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Urgency Bar */
.urgency-bar {
    background-color: #ef4444;
    /* Alert red */
    color: white;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sticky-top {
    position: sticky;
    top: 0;
}

.urgency-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .urgency-container {
        flex-direction: row;
    }
}

.urgency-text {
    margin: 0;
    text-align: center;
}

.timer-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: bold;
}

.timer-headline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.countdown {
    font-family: monospace;
    font-size: 1.125rem;
    letter-spacing: 2px;
}

.stylish-timer {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.w-full {
    width: 100%;
}

.font-bold {
    font-weight: 700;
}

.text-blueprint {
    color: var(--blueprint-light);
}

/* Typography Scale */
.main-title {
    font-size: 1.8rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--blueprint-blue);
    margin-bottom: 1rem;
}

.subheadline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--steel-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.huge-title {
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .huge-title {
        font-size: 3.5rem;
    }
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    text-align: center;
}

.primary-cta {
    background-color: var(--cta-color);
    color: #fff;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.primary-cta:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.secondary-cta {
    background-color: var(--blueprint-blue);
    color: #fff;
}

.secondary-cta:hover {
    background-color: var(--blueprint-light);
    transform: translateY(-2px);
}

.lg-btn {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    width: 100%;
    max-width: 400px;
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    background-color: #ffffff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 1rem;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 50px 50px;
    background-image:
        linear-gradient(to right, rgba(30, 58, 138, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(30, 58, 138, 0.05) 1px, transparent 1px);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* Fallback for older browsers without max-width constraint */
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    background-color: var(--steel-dark);
}

@media (min-width: 768px) {
    .video-wrapper {
        padding-bottom: 365.625px;
        /* Fixed height ratio (650 * 56.25%) to maintain 16:9 when max-width hits */
    }
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--steel-dark);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--concrete-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    gap: 1rem;
}

.play-icon {
    width: 64px;
    height: 64px;
    color: var(--cta-color);
}

/* Pricing Badges */
.pricing-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.prices {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-strikethrough {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.25rem;
}

.price-current {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    /* Success green */
}

.save-badge {
    background-color: #ecfdf5;
    color: #047857;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Problem Section */
.problem-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.huge-icon {
    width: 80px;
    height: 80px;
    color: var(--wood-accent);
}

@media (min-width: 768px) {
    .problem-content {
        flex-direction: row;
        text-align: left;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--concrete-gray);
    border-top: 4px solid var(--blueprint-blue);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(30, 58, 138, 0.1);
    color: var(--blueprint-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

.testimonial-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--blueprint-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -5px;
    right: 15px;
    font-size: 6rem;
    color: rgba(30, 58, 138, 0.03);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-top-color: var(--wood-accent);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.75rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f8fafc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.stars {
    display: flex;
    gap: 0.1rem;
}

.star-icon {
    width: 14px;
    height: 14px;
    fill: #f59e0b;
    color: #f59e0b;
}

.testimonial-text {
    font-style: italic;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

/* Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .models-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.model-card {
    background: white;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--wood-accent);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    transform: scale(1.03);
}

.card-header {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--concrete-gray);
}

.badge {
    background: var(--steel-dark);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.card-body h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* Bonus Section */
.bonus-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    background: rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .bonus-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.bonus-badge {
    display: inline-block;
    background: #fff;
    color: var(--wood-accent);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 1rem;
}

.bonus-text {
    flex: 1;
}

.bonus-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Pricing Section */
.pricing-box {
    background: white;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid var(--cta-color);
    text-align: center;
}

.pricing-header {
    background: var(--blueprint-blue);
    color: white;
    padding: 1.5rem;
}

.pricing-header.bg-orange-accent {
    background: #f59e0b;
    /* Amarelo alaranjado */
    color: white;
}

.pricing-header h3 {
    color: white;
    margin: 0 0 0.5rem 0;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-body {
    padding: 1.5rem 2rem;
}

.price-strikethrough-large {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-current-large {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--steel-dark);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--concrete-gray);
    border-radius: var(--radius-sm);
    background: white;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--steel-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    padding: 3rem 0;
    font-size: 0.875rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #fff;
}

.text-sm {
    font-size: 0.875rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.d-mobile-left {
    text-align: left;
}

@media (min-width: 768px) {
    .d-mobile-left {
        text-align: right;
    }
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pt-4 {
    padding-top: 1.5rem;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Icons */
.icon-3d {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0) rotateY(0);
}

.icon-3d:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(-10deg) scale(1.1) translateZ(20px);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1), -10px -10px 30px rgba(255, 255, 255, 0.8);
    z-index: 10;
}

@media (max-width: 768px) {
    .icon-3d.visible {
        animation: gentle-wobble 4s infinite alternate ease-in-out;
    }
}

@keyframes gentle-wobble {
    0% {
        transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale(1.02);
    }

    100% {
        transform: perspective(1000px) rotateX(-5deg) rotateY(5deg) scale(1.02);
    }
}

/* Small 3D Icons for Lists */
.icon-3d-sm {
    transition: transform 0.3s ease, color 0.3s ease;
    transform-style: preserve-3d;
    transform: perspective(500px) rotateX(0) rotateY(0);
}

.icon-3d-sm:hover {
    transform: perspective(500px) rotateX(15deg) rotateY(-15deg) scale(1.2) translateZ(10px);
    color: var(--wood-accent);
}

/* Urgency Elements */
.urgency-solid {
    background-color: #dc2626 !important;
    /* Strong red */
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    padding: 0.75rem 1rem;
    letter-spacing: 1px;
}

.urgency-solid .timer-headline {
    font-weight: 700;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Pricing features */
.pricing-features {
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 500;
}

.model-list li {
    align-items: center;
    /* better alignment for the file icons */
    margin-bottom: 0.5rem;
}

.text-green {
    color: #10b981;
    margin-top: 2px;
}

.justify-center {
    justify-content: center;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--steel-dark);
}

.text-light {
    color: var(--text-light);
}

/* Spreadsheet Visual */
.interactive-spreadsheet {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.sheet-header {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sheet-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.sheet-dot.red {
    background: #ef4444;
}

.sheet-dot.yellow {
    background: #f59e0b;
}

.sheet-dot.green {
    background: #10b981;
}

.sheet-title {
    margin-left: 0.5rem;
    font-weight: 600;
    color: #64748b;
    font-size: 0.75rem;
}

.sheet-body {
    background: #fff;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sheet-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #f1f5f9;
    min-width: 500px;
}

.header-row {
    background: #f8fafc;
    font-weight: 700;
    color: #475569;
}

.total-row {
    background: #f1f5f9;
    font-weight: 800;
    border-top: 2px solid #cbd5e1;
}

.cell {
    padding: 0.75rem 0.5rem;
    border-right: 1px solid #f1f5f9;
    text-align: left;
}

.cell:last-child {
    border-right: none;
}

.bg-blue {
    background: rgba(30, 58, 138, 0.05);
}

.bg-green {
    background: rgba(16, 185, 129, 0.05);
}

.highlight-green {
    color: #047857;
    font-size: 1rem;
}

/* Typing effect */
.typed-text::after {
    content: '|';
    animation: blink 1s step-end infinite;
}

.typed-text.done::after {
    display: none;
}

/* Spreadsheet Mobile Refinements */
@media (max-width: 768px) {
    .interactive-spreadsheet {
        font-size: 0.75rem;
        max-width: 100%;
    }

    .sheet-title {
        font-size: 0.65rem;
    }

    .cell {
        padding: 0.5rem 0.35rem;
    }

    .sheet-row {
        min-width: 400px; /* Reduced min-width to reduce scroll need */
    }

    .highlight-green {
        font-size: 0.875rem;
    }
}


@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* --- Pricing Card Coupled Timer --- */
.pricing-box {
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Ensures timer at top respects card border radius */
    border-color: var(--blueprint-blue);
}

.pricing-timer-coupled {
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0.75rem 0 !important;
    background-color: #dc2626 !important;
    order: -1; /* Physical top if not already */
    width: 100%;
}

.pricing-timer-coupled .urgency-container {
    flex-direction: row !important; /* Always row when coupled at top */
    justify-content: center;
    gap: 1rem;
}

.pricing-box .pricing-header {
    margin-top: 0;
}

/* Medium Dark Green CTA */
.green-cta {
    background-color: #059669 !important; /* Emerald 600 - Medium Dark Green */
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4) !important;
}

.green-cta:hover {
    background-color: #047857 !important; /* Emerald 700 */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.6) !important;
}

/* Ensure centering on the quadrant */
.pricing.section .container {
    display: flex;
    justify-content: center;
    align-items: center;
}


.pricing-header h3 {
    margin-bottom: 0.25rem !important;
}

.pricing-body .cta-button {
    margin-left: auto;
    margin-right: auto;
}