/* ===== NEW YEAR OVERLAY ===== */
#newYearOverlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ny-content {
    text-align: center;
}

.ny-content img {
    max-width: 90vw;
    max-height: 70vh;
}

#skipNewYear {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 18px;

    color: #ffffff;
    background-color: #5b0f14; /* NTBS maroon */
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
}

#skipNewYear:hover {
    background-color: #3f0a0d;
}


.ntbs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding-top: 14px;   /* reduced */
    padding-bottom: 6px; /* reduced */
    text-align: center;
}


.ntbs-logo {
    height: 60px;
    width: auto;
}

.ntbs-text h1 {
    font-size: 32px;      /* increased */
    font-weight: 600;
    color: var(--ntbs-maroon);
    line-height: 1.15;    /* tighter to avoid extra height */
}


.ntbs-text p {
    font-size: 14px;   /* keep same */
    color: #666;
    letter-spacing: 0.3px;
    margin-top: 2px;   /* ensures it doesn’t crowd the title */
}




:root {
    --ntbs-maroon: #5b0f14;
    --ntbs-maroon-dark: #3f0a0d;
    --text-dark: #1a1a1a;
    --text-muted: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
}

body {
    background: #ffffff;
    color: var(--text-dark);
}

/* ===== CAROUSEL LAYOUT ===== */
.carousel-section {
    display: grid;
    place-items: center;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    height: min(72vh, 480px); /* reduced */
    overflow: hidden;
    perspective: 1300px;

    padding: 0 20px;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 760px;
    height: 320px;
    transform-style: preserve-3d;

    touch-action: pan-y;
}

/* ===== CARDS ===== */
.card {
    position: absolute;
    inset: 0;
    margin: auto;

    width: 240px;
    height: 300px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;

    will-change: transform;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #5b0f14; /* NTBS maroon */
transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);

}

.card.active img {
    transform: scale(1.06);
}
    


/* NTBS brand accent on active card */
.card.active::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px solid var(--ntbs-maroon);
    border-radius: 12px;
    pointer-events: none;
}

/* ===== POSITION STATES ===== */
.pos-0 { transform: translateX(-260px) translateZ(-220px) rotateY(22deg); opacity: 0.35; }
.pos-1 { transform: translateX(-130px) translateZ(-120px) rotateY(12deg); opacity: 0.65; }
.pos-2 { transform: translateX(0) translateZ(0); opacity: 1; }
.pos-3 { transform: translateX(130px) translateZ(-120px) rotateY(-12deg); opacity: 0.65; }
.pos-4 { transform: translateX(260px) translateZ(-220px) rotateY(-22deg); opacity: 0.35; }

/* ===== NAVIGATION ===== */
.nav-btn {
    background: none;
    border: none;
    cursor: pointer;

    font-size: 46px;
    color: var(--ntbs-maroon);
    padding: 0 14px;
    user-select: none;
}

.nav-btn:hover {
    color: var(--ntbs-maroon-dark);
}

/* ===== TEXT ===== */
.carousel-text {
    text-align: center;
    margin: -6px auto 0; /* pull text upward */
    padding: 0 20px;
    max-width: 820px;
}




.carousel-text h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--ntbs-maroon);
}

.carousel-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}
/* ===== CONTACT LINKS BELOW CAROUSEL ===== */
.carousel-contact {
    margin-top: 6px;
    font-size: 14px;
    color: #555;
}

.carousel-contact a {
    color: var(--ntbs-maroon);
    text-decoration: none;
    font-weight: 500;
}

.carousel-contact a:hover {
    text-decoration: underline;
}

.carousel-contact .divider {
    margin: 0 8px;
    color: #aaa;
}
/* ===== FOOTER ===== */
.ntbs-footer {
    margin-top: 24px;
    padding: 12px 16px;
    text-align: center;

    font-size: 13px;
    color: #777;
    background-color: #f7f7f7;
}

.ntbs-footer p {
    margin: 0;
}
#fireworksCanvas {
    position: fixed;
    inset: 0;
    z-index: -1; /* behind GIF/text */
}
.carousel-contact {
    margin-top: 6px;
    font-size: 14px;
    color: #555;
}

.carousel-contact a {
    color: var(--ntbs-maroon);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.carousel-contact a:hover {
    text-decoration: underline;
}

.carousel-contact .divider {
    margin: 0 8px;
    color: #aaa;
}

/* Emphasise urgency */
.carousel-contact .urgent {
    color: #b30000;          /* strong red */
    font-weight: 700;
    text-transform: uppercase;
}
/* ===== DESIGNER PAGE ===== */

.designer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.designer-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #444;
}

.designer-section {
    margin-bottom: 30px;
}

.designer-section h2 {
    margin-bottom: 16px;
    color: var(--ntbs-maroon);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.radio-group label {
    font-size: 14px;
}

.note {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

.designer-action {
    text-align: center;
    margin: 40px 0;
}

.designer-action button {
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    background: var(--ntbs-maroon);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.designer-results {
    margin-top: 40px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.result-item {
    background: #f8f8f8;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.result-item span {
    font-size: 13px;
    color: #555;
}

.result-item strong {
    display: block;
    margin-top: 6px;
    font-size: 20px;
    color: var(--ntbs-maroon);
}

.designer-cta {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hidden {
    display: none;
}
.result-status {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

/* Status variants */
.result-ok {
    color: #2e7d32; /* green */
}

.result-warn {
    color: #e65100; /* amber */
}

.result-error {
    color: #b00020; /* red */
}
.validation-msg {
    margin-bottom: 14px;
    font-size: 14px;
    color: #b00020;
    text-align: center;
}
.reset-btn {
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 500;

    background: #f2f2f2;
    color: #555;

    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
}

.reset-btn:hover {
    background: #e6e6e6;
}
/* ===========Flexible Solar Panel Cards =======================*/
.panel-range-section {
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.panel-range-section h2 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--ntbs-maroon);
}

.panel-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.panel-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.panel-card h3 {
    font-size: 26px;
    color: var(--ntbs-maroon);
    margin-bottom: 10px;
}

.panel-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 16px;
}

.panel-card a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ntbs-maroon);
    text-decoration: none;
}

.panel-card a:hover {
    text-decoration: underline;
}

.panel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.ntbs-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.ntbs-nav a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
}

.ntbs-nav a:hover {
    color: var(--ntbs-maroon);
}

/* Highlight current page */
.ntbs-nav a.active {
    color: var(--ntbs-maroon);
    font-weight: 700;
}
/* Bottom Buttons Order Now etc */
.flexible-cta {
    margin: 28px auto 10px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Base button */
.cta-btn {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s ease;
}

/* Primary */
.cta-btn.primary {
    background: var(--ntbs-maroon);
    color: #fff;
}

.cta-btn.primary:hover {
    opacity: 0.85;
}

/* Secondary */
.cta-btn.secondary {
    background: #444;
    color: #fff;
}

.cta-btn.secondary:hover {
    opacity: 0.85;
}

/* Outline */
.cta-btn.outline {
    background: #fff;
    color: var(--ntbs-maroon);
    border: 2px solid var(--ntbs-maroon);
}

.cta-btn.outline:hover {
    background: var(--ntbs-maroon);
    color: #fff;
}
/* Sample Order Form ========== */
form {
  max-width: 720px;
  margin: 20px auto;
  padding: 20px;
}

label {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
}

input, select, textarea {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  font-size: 14px;
}

.primary-btn {
  background: var(--ntbs-maroon);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.primary-btn:hover {
  opacity: 0.9;
}

.form-note,
.form-disclaimer {
  font-size: 13px;
  color: #555;
}
.whatsapp-fallback {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed #ddd;
    text-align: center;
}

.whatsapp-fallback p {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}

.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 14px;
}

.whatsapp-btn:hover {
    opacity: 0.9;
}
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.info-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.info-card h2 {
    margin-bottom: 12px;
    color: #5a0f14;
}

.info-card ul {
    padding-left: 18px;
}

.highlight-card {
    border: 2px solid #5a0f14;
}
/* Clients*/
.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin: 12px 0 16px;
}

.client-logos img {
    height: 84px;
    max-width: 160px;
    object-fit: contain;
   
}

.client-note {
    font-size: 0.9rem;
    color: #555;
    margin-top: 8px;
    line-height: 1.5;
}
.clients-card {
    grid-column: 1 / -1;
}
.engagement-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.metric {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #6b0f12; /* NTBS maroon */
}

.metric-label {
    display: block;
    margin-top: 6px;
    font-size: 0.95rem;
    color: #555;
}

/* Wind Analysis Progress Indicator */
.analysis-loading {
    text-align: center;
    margin: 40px auto;
}

.analysis-loading h2 {
    color: #5a0f14; /* NTBS maroon */
    margin-bottom: 16px;
}

.loading-bar {
    width: 260px;
    height: 6px;
    background: #e0e0e0;
    border-radius: 4px;
    margin: 0 auto 12px;
    overflow: hidden;
}

.loading-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: #5a0f14;
    animation: loadingMove 1.2s infinite ease-in-out;
}

@keyframes loadingMove {
    0%   { transform: translateX(-100%); }
    50%  { transform: translateX(150%); }
    100% { transform: translateX(300%); }
}

.loading-note {
    font-size: 0.9rem;
    color: #666;
}
/* Bar Chart Limit */
.graph-card canvas {
    max-height: 300px;
}
.hidden {
    display: none;
}
.analysis-table {
    width: 100%;
    border-collapse: collapse;
}

.analysis-table th,
.analysis-table td {
    padding: 8px 12px;
}

.analysis-table th {
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

.analysis-table th.num,
.analysis-table td.num {
    text-align: right;
}
.analysis-table {
    width: 100%;
    border-collapse: collapse;
}

.analysis-table th,
.analysis-table td {
    padding: 8px 12px;
}

.analysis-table th {
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

.analysis-table th.num,
.analysis-table td.num {
    text-align: right;
}
/* map container */
.map-container {
    border: 1px solid #ccc;
    padding: 8px;
}

#locationMap {
    width: 100%;
    height: 300px;   /* REQUIRED */
    min-height: 300px;
}


.map-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 6px;
}
.card-image.bordered {
    padding: 10px;
    background: #ffffff;
    border: 1.5px solid #d6d6d6;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.card-image.bordered img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
.card-image.bordered {
    padding: 10px;
    background: #ffffff;
    border: 1.5px solid #d6d6d6;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.card-image.bordered img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
.card-cta {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.card-cta.primary {
    background: #6b0f1a;
    color: #fff;
}

.card-cta.primary:hover {
    background: #520b14;
}

.card-cta.secondary {
    background: #333;
    color: #fff;
}

.card-cta.secondary:hover {
    background: #000;
}

.card-cta.outline {
    border: 2px solid #6b0f1a;
    color: #6b0f1a;
    background: transparent;
}

.card-cta.outline:hover {
    background: #6b0f1a;
    color: #fff;
}
/* =====================================================
   EXHAUST WIND TURBINE SIMULATOR (ROOT STYLES)
   ===================================================== */

/* Page container aligned with NTBS pages */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* Simulator title */
.page-title {
    text-align: center;
    color: #6b0f1a; /* NTBS maroon */
    margin-bottom: 24px;
    font-size: 26px;
    font-weight: 600;
}

.page-title .sub {
    display: block;
    font-size: 0.85em;
    font-weight: 400;
    color: #555;
    margin-top: 4px;
}

/* Main simulator card */
.simulator-wrapper {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Control blocks */
.simulator-wrapper .controls {
    display: inline-block;
    margin: 10px 14px;
    font-size: 14px;
    color: #333;
}

.simulator-wrapper input[type="range"] {
    vertical-align: middle;
    margin: 0 6px;
}

/* Canvas alignment */
#turbineCanvas {
    display: block;
    margin: 24px auto;
}

/* Stats panel */
#stats {
    position: static; /* IMPORTANT: overrides old absolute positioning */
    margin-top: 24px;
    padding: 14px 18px;
    background: #fafafa;
    border-radius: 8px;
    display: inline-block;
    text-align: left;
    font-size: 14px;
}

#stats div {
    margin-bottom: 6px;
}

#stats strong {
    color: #6b0f1a;
}
.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    margin-top: 8px;
}
@media (max-width: 768px) {
    header {
        text-align: center;
    }

    .main-nav {
        font-size: 14px;
        line-height: 1.4;
    }

    .main-nav a {
        padding: 4px 6px;
        white-space: nowrap;
    }
}
/* Free wind CTAs */
/* Advanced CTA container */
.advanced-actions {
    margin-top: 28px; /* space from bullet list above */
    text-align: center;
}

/* Button row */
.action-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap; /* mobile safety */
}

/* Charges note */
.charges-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #7a7a7a;
    font-style: italic;
}

/* Optional: keep buttons aligned visually */
.cta-btn {
    min-width: 240px;
}
/* Office Hours Card */
.office-hours-card {
    text-align: center;
}

.office-title {
    font-size: 1.6rem;
    color: #1f4f8a;
    margin-bottom: 10px;
}

.office-time {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

.policy-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #eef4ff, #f8fbff);
    padding: 16px;
    border-radius: 12px;
    text-align: left;
}

.policy-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.policy-text h3 {
    margin: 0 0 6px;
    color: #1f4f8a;
}

.policy-text p {
    margin: 0 0 6px;
    font-size: 0.95rem;
    color: #444;
}

.policy-footer {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #555;
}

.policy-footer a {
    color: #1f4f8a;
    font-weight: 600;
    text-decoration: none;
}
/* Contact Page CTAs*/
/* ============================= */
/* EMAIL CTA CARD                */
/* ============================= */

.email-card {
    text-align: left;
}

.email-item {
    margin-bottom: 18px;
}

.email-item p {
    margin: 0 0 6px 0;
    font-weight: 600;
    color: #6b0f14; /* NTBS brand */
}

.email-card .cta-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    font-size: 15px;
}
/* Top navigation Allignment*/
/* ============================= */
/* HEADER & NAV – RESPONSIVE FIX */
/* ============================= */

.ntbs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    text-align: left;
    flex-wrap: wrap;
}

.ntbs-logo {
    height: 56px;
    width: auto;
}

.ntbs-text {
    max-width: 720px;
}

.ntbs-text h1 {
    margin: 0;
    font-size: 1.6rem;
}

.ntbs-text p {
    margin: 4px 0;
    font-size: 0.9rem;
}

/* NAV BAR */
.ntbs-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 12px 16px;
    flex-wrap: wrap;          /* 🔑 THIS FIXES MOBILE CUT */
    text-align: center;
}

.ntbs-nav a {
    white-space: nowrap;
    font-size: 0.95rem;
}

/* ============================= */
/* MOBILE TUNING */
/* ============================= */
@media (max-width: 768px) {

    .ntbs-header {
        flex-direction: column;
        text-align: center;
    }

    .ntbs-text h1 {
        font-size: 1.4rem;
    }

    .ntbs-nav {
        gap: 12px;
        padding: 10px 12px;
    }

    .ntbs-nav a {
        font-size: 0.9rem;
    }
}
/* ============================= */
/* EXHAUST SIM – HORIZONTAL LAYOUT */
/* ============================= */

.simulator-wrapper.horizontal-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 30px;
}

/* LEFT – SLIDERS */
.sim-controls {
    flex: 1.1;
}

.sim-controls .controls {
    margin-bottom: 16px;
}

/* MIDDLE – OUTPUT */
.sim-stats {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-size: 14px;
}

/* RIGHT – TURBINE */
.sim-canvas {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MOBILE FALLBACK */
@media (max-width: 900px) {
    .simulator-wrapper.horizontal-layout {
        flex-direction: column;
        align-items: center;
    }

    .sim-controls,
    .sim-stats,
    .sim-canvas {
        width: 100%;
    }
}
.info-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns = 2 x 3 layout */
    gap: 24px;
    margin-top: 40px;
}

.info-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Mobile */
@media (max-width: 900px) {
    .info-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .info-card-grid {
        grid-template-columns: 1fr;
    }
}
.cta-row {
    display: flex;
    flex-wrap: wrap;        /* ✅ CRITICAL */
    gap: 14px;
    margin: 24px 0;
    justify-content: flex-start;
}

.cta-row .cta-btn {
    white-space: nowrap;   /* prevents text breaking */
}
@media (max-width: 640px) {
    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-row .cta-btn {
        width: 100%;
        text-align: center;
    }
}
/* ===== SEO CARD GRID: 2 x 3 CENTERED ===== */

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 28px;

    max-width: 1200px;      /* prevents full-width stretch */
    margin: 48px auto 0;   /* centers grid horizontally */

    align-items: stretch;
    justify-content: center;
}

.info-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px 26px;

    box-shadow: 0 10px 28px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ===== TABLET ===== */
@media (max-width: 900px) {
    .info-card-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 90%;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
    .info-card-grid {
        grid-template-columns: 1fr;
        max-width: 94%;
    }
}
.comparison-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.comparison-section h2 {
    text-align: center;
    color: var(--brand-color);
    margin-bottom: 30px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #f7f7f7;
    font-weight: 600;
    color: #333;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        font-size: 14px;
        padding: 12px;
    }
}
/* Shared width container */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero section */
.page-hero {
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-hero h1 {
    text-align: center;
    margin-bottom: 20px;
}

.hero-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* CTA alignment */
.hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Mobile safety */
@media (max-width: 768px) {
    .hero-intro {
        text-align: left;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }
}
