/* CropKern custom styles — accent: #10b981 */
:root {
    --accent: #10b981;
    --accent-dark: #0a9467;
    --accent-light: #6ee7b7;
    --bg: #ffffff;
    --bg-rgb: 255, 255, 255;
    --surface: #f8fafb;
    --surface2: #e8f5f0;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: rgba(0,0,0,0.09);
    --radius: 10px;
    --nav-height: 70px;
}

/* ===== BASE RESET ===== */
body {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.85;
}

/* ===== R77: Nav cleanup ===== */
.nav-item {
    margin-bottom: 0 !important;
    background-image: none !important;
}
.site-logo {
    max-width: none !important;
}
.btn-accent, .cta-primary, .cta-secondary {
    white-space: nowrap;
}

/* ===== R79: Hero container transparent ===== */
.header-thumb {
    background: transparent !important;
    border: none !important;
}

/* ===== R81: Force accent color on icons ===== */
.feature-icon .fa, .card-icon .fa, .step-icon .fa {
    color: var(--accent) !important;
}

/* ===== R89: Template overlay must not block clicks ===== */
.tm-bg-overlay, [class*="overlay"] {
    pointer-events: none !important;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: 59px; font-weight: 700; line-height: 1.15; color: var(--text); }
h2 { font-size: 41px; font-weight: 700; line-height: 1.2; color: var(--text); }
h3 { font-size: 21px; font-weight: 600; line-height: 1.4; color: var(--text); }
h4 { font-size: 18px; font-weight: 600; color: var(--text); }
p  { font-size: 18px; line-height: 1.85; color: var(--text-muted); }

/* Override template uppercase/letter-spacing on headings */
h1, h2, h3, h4, h5, h6, .section-heading h4 {
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* ===== CONTAINER NARROW ===== */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

/* ===== NAVBAR OVERRIDES ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(20, 25, 35, 0.97);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    height: var(--nav-height);
    display: flex;
    align-items: center;
}
.header .container {
    width: 100%;
}
.navbar {
    margin-bottom: 0;
    border: none;
    min-height: var(--nav-height);
    background: transparent !important;
}
.navbar-brand {
    padding: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
}
.navbar-brand img.logo-img {
    height: 40px;
    width: auto;
}
/* The template uses .logo div — override for our img logo */
.navbar-brand .logo {
    background-image: none !important;
    width: auto;
    height: auto;
}
.navbar-nav > li > a {
    font-size: 15px;
    font-weight: 500;
    color: #d1d5db !important;
    padding: 0 14px;
    line-height: var(--nav-height);
}
.navbar-nav > li > a:hover,
.navbar-nav > li.active > a {
    color: var(--accent) !important;
    background: transparent !important;
}
.navbar-inverse .navbar-toggle {
    border-color: var(--accent);
}
.navbar-inverse .navbar-toggle .icon-bar {
    background-color: var(--accent);
}
.navbar-inverse .navbar-collapse {
    border-color: rgba(255,255,255,0.1);
    background: rgba(20,25,35,0.98);
}
/* Scroll-triggered nav */
.header.active {
    background-color: rgba(var(--bg-rgb), 0.98) !important;
}

/* ===== BUTTONS ===== */
/* Dark-bg variants */
.btn-accent {
    display: inline-block;
    background: var(--accent);
    color: #ffffff !important;
    border: 2px solid var(--accent);
    padding: 13px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #ffffff !important;
    text-decoration: none;
}
/* template primary-button override */
.primary-button a {
    display: inline-block;
    background: var(--accent) !important;
    color: #ffffff !important;
    border: 2px solid var(--accent) !important;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.2s;
}
.primary-button a:hover {
    background: var(--accent-dark) !important;
    border-color: var(--accent-dark) !important;
    color: #ffffff !important;
}
/* Light-bg outline variant */
.btn-outline-light-bg {
    display: inline-block;
    background: transparent;
    color: var(--accent) !important;
    border: 2px solid var(--accent);
    padding: 13px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.btn-outline-light-bg:hover {
    background: var(--accent);
    color: #ffffff !important;
    text-decoration: none;
}
/* Dark-bg outline variant */
.btn-outline-dark-bg {
    display: inline-block;
    background: transparent;
    color: #ffffff !important;
    border: 2px solid #ffffff;
    padding: 13px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.btn-outline-dark-bg:hover {
    background: rgba(255,255,255,0.15);
    color: #ffffff !important;
    text-decoration: none;
}
/* white-button template override */
.white-button a {
    display: inline-block;
    background: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.2s;
}
.white-button a:hover {
    background: rgba(255,255,255,0.15);
    color: #ffffff !important;
}

/* ===== SECTIONS ===== */
.page-section, .section {
    padding: 90px 0;
}
.section-dark {
    background: #111827;
    padding: 90px 0;
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: #e2e8f0; }
.section-dark p { color: #c8d6e5; }
.section-dark .text-muted { color: #8fabc4 !important; }

.section-light {
    background: var(--surface);
    padding: 90px 0;
}

.section-heading {
    margin-bottom: 50px;
    text-align: center;
}
.section-heading h2 {
    margin-bottom: 16px;
}
.section-heading p {
    max-width: 620px;
    margin: 0 auto;
}
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 14px;
}
.line-dec {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ===== HERO ===== */
.site-hero {
    min-height: 640px;
    background: #111827;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}
.site-hero h1 { color: #f1f5f9; margin-bottom: 24px; }
.site-hero p  { font-size: 20px; color: #c8d6e5; margin-bottom: 36px; max-width: 600px; }
.hero-img-wrap {
    text-align: right;
}
.hero-img-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.hero-badge {
    display: inline-block;
    background: rgba(16,185,129,0.15);
    color: var(--accent-light);
    border: 1px solid rgba(16,185,129,0.3);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: #111827;
    padding: 120px 0 70px;
    text-align: center;
}
.page-hero h1 { color: #f1f5f9; font-size: 50px; margin-bottom: 18px; }
.page-hero p  { color: #c8d6e5; font-size: 20px; max-width: 680px; margin: 0 auto; }

/* ===== FEATURE CARDS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
}
.feature-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(16,185,129,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.feature-card .card-icon .fa {
    font-size: 22px;
    color: var(--accent) !important;
}
.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
}

/* ===== STEPS (R80: CSS grid, NOT Bootstrap cols) ===== */
.steps-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}
.steps-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}
.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 16px;
    color: var(--text-muted);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--accent);
    padding: 50px 0;
    color: #ffffff;
}
.stats-bar .stat-item {
    text-align: center;
}
.stats-bar .stat-num {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    display: block;
}
.stats-bar .stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
}

/* ===== TEAM CARDS ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}
.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
}
.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.team-card .team-info {
    padding: 22px 20px;
}
.team-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}
.team-card .role {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.team-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===== CULTURE STATS (R84) ===== */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px;
}
.culture-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.culture-card .c-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}
.culture-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.culture-card p {
    font-size: 15px;
    color: var(--text-muted);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    position: relative;
    text-align: center;
}
.pricing-card.featured {
    background: #111827;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent);
}
.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .price-desc,
.pricing-card.featured li {
    color: #e2e8f0;
}
.pricing-card.featured p { color: #c8d6e5; }
.pricing-card .badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.pricing-card .price {
    font-size: 46px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
    margin: 14px 0 6px;
}
.pricing-card .price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
}
.pricing-card .price-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}
.pricing-card .features li {
    font-size: 15px;
    color: var(--text-muted);
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.pricing-card .features li:before {
    content: "\f00c";
    font-family: FontAwesome;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}
.btn-pricing-primary {
    display: inline-block;
    background: var(--accent);
    color: #ffffff !important;
    border: 2px solid var(--accent);
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    width: 100%;
    text-align: center;
    transition: background 0.2s;
}
.btn-pricing-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #ffffff !important;
    text-decoration: none;
}
.btn-pricing-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent) !important;
    border: 2px solid var(--accent);
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    width: 100%;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}
.btn-pricing-secondary:hover {
    background: var(--accent);
    color: #ffffff !important;
    text-decoration: none;
}
/* Annual billing note */
.pricing-annual-note {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    color: var(--text-muted);
}
.pricing-annual-note strong {
    color: var(--accent);
}

/* ===== FAQ ACCORDION (BS3 style) ===== */
.faq-section {
    padding: 80px 0;
    background: var(--surface);
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item .faq-question {
    width: 100%;
    background: #ffffff;
    color: var(--text);
    border: none;
    padding: 18px 22px;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item .faq-question .fa {
    color: var(--accent);
    font-size: 14px;
    transition: transform 0.2s;
}
.faq-item .faq-question[aria-expanded="true"] .fa {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 22px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}
.faq-answer p { margin: 0; padding: 14px 0 18px; font-size: 16px; }

/* ===== BLOG / INSIGHTS LISTING ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.blog-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.blog-card .card-body {
    padding: 22px 20px;
}
.blog-card .post-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.blog-card .post-meta .category {
    color: var(--accent);
    font-weight: 600;
}
.blog-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card h3 a {
    color: var(--text);
    text-decoration: none;
}
.blog-card h3 a:hover {
    color: var(--accent);
}
.blog-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}
.blog-card .read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}
.blog-card .read-more:hover { text-decoration: underline; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}
.contact-info-item .ci-icon {
    width: 42px;
    height: 42px;
    background: rgba(16,185,129,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-item .ci-icon .fa {
    font-size: 18px;
    color: var(--accent);
}
.contact-info-item p {
    margin: 0;
    font-size: 16px;
}
.contact-form .form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    color: var(--text);
    background: #ffffff;
    margin-bottom: 16px;
}
.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
    outline: none;
}
.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}
.btn-send {
    display: inline-block;
    background: var(--accent);
    color: #ffffff !important;
    border: none;
    padding: 14px 36px;
    font-size: 17px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s;
}
.btn-send:hover {
    background: var(--accent-dark);
    color: #ffffff !important;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0f1724;
    padding: 70px 0 0;
    color: #c8d6e5;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 50px;
}
.footer-grid h3 {
    font-size: 16px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-grid p {
    font-size: 15px;
    color: #8fabc4;
    line-height: 1.75;
}
.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-grid ul li {
    margin-bottom: 9px;
}
.footer-grid ul li a {
    font-size: 15px;
    color: #8fabc4;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-grid ul li a:hover {
    color: var(--accent);
}
.footer-address {
    font-size: 14px !important;
    color: #6b7f96 !important;
    margin-top: 10px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 14px;
    color: #6b7f96;
    margin: 0;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1c2533;
    color: #d1d5db;
    padding: 16px 24px;
    z-index: 99999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
    font-size: 15px;
}
#cookie-banner p {
    margin: 0;
    font-size: 15px;
    color: #d1d5db;
}
#cookie-banner a {
    color: var(--accent-light);
    text-decoration: underline;
}
#cookie-accept {
    background: var(--accent);
    color: #ffffff !important;
    border: none;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}
#cookie-accept:hover {
    background: var(--accent-dark);
}

/* ===== R-IMG: Article images ===== */
article img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: #111827;
    padding: 90px 0;
    text-align: center;
}
.cta-section h2 { color: #f1f5f9; margin-bottom: 18px; }
.cta-section p  { color: #c8d6e5; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== ABOUT PAGE ===== */
.about-story {
    max-width: 820px;
}
.about-story h2 { font-size: 38px; margin-bottom: 22px; }
.about-story p  { font-size: 18px; margin-bottom: 18px; }
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 36px;
}
.value-card {
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.value-card .fa {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}
.value-card h4 { font-size: 18px; margin-bottom: 8px; }
.value-card p  { font-size: 15px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .steps-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .culture-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid-3, .steps-grid-4 { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .culture-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .about-values-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    #cookie-banner { flex-direction: column; text-align: center; }
    .hero-btns { flex-direction: column; }
    .pricing-grid { grid-template-columns: 1fr; }
}
/* Ensure body doesn't get hidden behind fixed nav */
body > *:first-child {
    padding-top: 0;
}
