/* =====================================================
   ProText Akademie Frankfurt — keen-gate-545.css
   ===================================================== */

:root {
    --primary: #1D4ED8;
    --primary-dark: #1e3a8a;
    --primary-light: #3B82F6;
    --accent: #E85D04;
    --accent-hover: #c44d03;
    --accent-light: rgba(232, 93, 4, 0.1);
    --dark: #0F172A;
    --gray-900: #1E293B;
    --gray-800: #2D3748;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F8FAFC;
    --white: #FFFFFF;
    --green: #16A34A;
    --font-main: 'Inter', system-ui, sans-serif;
    --radius: 8px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .10), 0 2px 4px rgba(0, 0, 0, .06);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06);
    --container: 1140px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--gray-50);
    color: var(--gray-700);
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, opacity .2s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--gray-100);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .6);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--white);
}

/* ---- Section headings ---- */
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

/* ---- Badge ---- */
.badge-new {
    display: inline-block;
    padding: 3px 10px;
    background: var(--green);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .04em;
    position: absolute;
    top: 16px;
    right: 16px;
}

/* ====================================================
   HEADER
   ==================================================== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gray-900);
    opacity: 1;
    transition: opacity .2s;
}

.logo-wrap:hover {
    opacity: .8;
}

.logo-wrap svg {
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color .15s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.nav-cta {
    padding: 9px 22px;
    font-size: .85rem;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    color: var(--gray-700);
    transition: background .15s;
}

.hamburger:hover {
    background: var(--gray-100);
}

.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav nav {
    padding: 12px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav a {
    display: block;
    padding: 10px 12px;
    font-size: .95rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: background .15s, color .15s;
}

.mobile-nav a:hover {
    background: var(--gray-100);
    color: var(--accent);
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
    background: var(--white);
    padding: 80px 0 96px;
}

.hero-inner {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero-kicker {
    display: inline-block;
    padding: 5px 16px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: .82rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-600);
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: .85rem;
    color: var(--gray-500);
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust i {
    color: var(--green);
}

/* ====================================================
   HERO IMAGE SECTION
   ==================================================== */
.hero-img-section {
    background: var(--gray-50);
    padding: 48px 0;
}

.hero-img-section .img-wrap {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-section img {
    width: 100%;
    object-fit: cover;
}

/* ====================================================
   FEATURES GRID A
   ==================================================== */
.features-a {
    background: var(--gray-50);
    padding: 80px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: box-shadow .2s, transform .2s;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 1.3rem;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.card p {
    font-size: .92rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-link {
    font-size: .88rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-link:hover {
    text-decoration: underline;
}

/* ====================================================
   SHOWCASE / IMAGE BAND
   ==================================================== */
.showcase {
    background: var(--white);
    padding: 80px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.showcase-grid.reverse {
    direction: rtl;
}

.showcase-grid.reverse>* {
    direction: ltr;
}

.showcase-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.showcase-text p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
}

.showcase-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.showcase-img img {
    width: 100%;
    object-fit: cover;
}

/* ====================================================
   FEATURES GRID B (flat)
   ==================================================== */
.features-b {
    background: var(--gray-50);
    padding: 80px 0;
}

.card-flat {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    transition: border-color .2s;
}

.card-flat:hover {
    border-color: var(--accent);
}

/* ====================================================
   PRICING
   ==================================================== */
.pricing {
    background: var(--white);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: border-color .2s, box-shadow .2s;
}

.pricing-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured .featured-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.pricing-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-price sup {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: super;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-500);
}

.pricing-period {
    color: var(--gray-500);
    font-size: .85rem;
    margin-bottom: 24px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    font-size: .9rem;
    color: var(--gray-600);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pricing-features li i {
    color: var(--green);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials {
    background: var(--gray-50);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #FBBF24;
    margin-bottom: 12px;
    font-size: .9rem;
}

.testimonial-text {
    font-size: .95rem;
    color: var(--gray-700);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gray-200);
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--gray-900);
}

.author-role {
    font-size: .8rem;
    color: var(--gray-500);
}

/* ====================================================
   CTA BAND
   ==================================================== */
.cta-band {
    background: var(--accent);
    padding: 80px 0;
}

.cta-band-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-band h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-band p {
    color: rgba(255, 255, 255, .88);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
    background: var(--gray-900);
    color: var(--white);
    margin-top: auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 48px;
}

.footer-brand .logo-wrap {
    color: var(--white);
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: .88rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-brand .social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    border-radius: 8px;
    color: var(--gray-400);
    font-size: .9rem;
    transition: background .15s, color .15s;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-col h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col li a {
    font-size: .88rem;
    color: var(--gray-400);
    transition: color .15s;
}

.footer-col li a:hover {
    color: var(--white);
}

.footer-col address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: .88rem;
    color: var(--gray-400);
}

.footer-col address i {
    color: var(--accent);
    margin-right: 6px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 20px 0;
    text-align: center;
    font-size: .82rem;
    color: var(--gray-500);
}

/* ====================================================
   COOKIES GDPR
   ==================================================== */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 999;
    font-size: .88rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .25);
    transform: translateY(0);
    transition: transform .3s;
}

.cookie-bar.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-bar a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-accept {
    padding: 8px 20px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: .85rem;
    transition: background .2s;
}

.cookie-accept:hover {
    background: var(--accent-hover);
}

.cookie-decline {
    padding: 8px 16px;
    background: transparent;
    color: var(--gray-400);
    border: 1px solid var(--gray-700);
    border-radius: 6px;
    cursor: pointer;
    font-size: .85rem;
    transition: border-color .2s, color .2s;
}

.cookie-decline:hover {
    border-color: var(--gray-400);
    color: var(--white);
}

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--gray-900);
}

.contact-detail p {
    font-size: .92rem;
    color: var(--gray-600);
    margin: 0;
}

.contact-form-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.contact-form-card>p {
    font-size: .9rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: .92rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 93, 4, .1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* ====================================================
   FAQ
   ==================================================== */
.faq-section {
    background: var(--white);
    padding: 80px 0;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s;
}

.faq-item.open {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-main);
    font-size: .97rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    gap: 12px;
}

.faq-question i {
    color: var(--accent);
    flex-shrink: 0;
    transition: transform .2s;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 22px 18px;
    font-size: .92rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ====================================================
   ABOUT PAGE
   ==================================================== */
.about-hero {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.about-hero p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}

.about-section {
    background: var(--white);
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img img {
    width: 100%;
    object-fit: cover;
}

.team-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.team-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 14px;
    overflow: hidden;
    background: var(--gray-200);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.team-role {
    font-size: .85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-bio {
    font-size: .85rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ====================================================
   STATIC PAGES (privacy, terms, cookies)
   ==================================================== */
.page-hero {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 60px 0 40px;
}

.page-hero h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.page-hero p {
    color: var(--gray-500);
    font-size: .92rem;
}

.prose-section {
    background: var(--white);
    padding: 60px 0 80px;
}

.prose {
    max-width: 780px;
}

.prose h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 36px 0 12px;
}

.prose h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 24px 0 10px;
}

.prose p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: .95rem;
}

.prose ul,
.prose ol {
    padding-left: 20px;
    margin-bottom: 14px;
}

.prose ul {
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 6px;
    font-size: .95rem;
}

.prose a {
    color: var(--accent);
    text-decoration: underline;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: .9rem;
}

.prose th,
.prose td {
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
}

.prose th {
    background: var(--gray-50);
    font-weight: 700;
    color: var(--gray-800);
}

/* ====================================================
   NUMBERS / STATS
   ==================================================== */
.stats-band {
    background: var(--primary);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    margin-top: 6px;
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 56px 0 64px;
    }

    .features-a,
    .features-b,
    .pricing,
    .testimonials,
    .cta-band,
    .showcase,
    .about-section,
    .team-section,
    .faq-section,
    .contact-section {
        padding: 56px 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 28px 22px;
    }
}

@media (max-width: 560px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}