/* Taxavo Landing – 1:1 zu taxavo-landingpage.zip (Home.tsx + index.css) */

:root {
    --primary: #0f172a;
    --primary-foreground: #ffffff;
    --background: #f9fafb;
    --foreground: #1f2937;
    --card: #ffffff;
    --muted-foreground: #6b7280;
    --accent: #3b82f6;
    --border: #e2e8f0;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --header-h: 4rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 700;
}

.fonts-loaded body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.fonts-loaded h1,
.fonts-loaded h2,
.fonts-loaded h3,
.fonts-loaded h4 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Buttons (shadcn / Home.tsx) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: inherit;
    line-height: 1.25;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: color-mix(in srgb, var(--primary) 90%, white);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
}

.btn-accent:hover {
    background: color-mix(in srgb, var(--accent) 90%, white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline-primary:hover {
    background: color-mix(in srgb, var(--primary) 5%, transparent);
}

.btn-ghost {
    background: transparent;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.btn-ghost:hover {
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: var(--foreground);
}

.btn-lg {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    font-weight: 600;
}

.btn-white:hover {
    background: var(--accent);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 600;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
}

.icon-check {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--primary);
}

/* Navigation – 3-Spalten wie React */
.landing-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1rem;
}

@media (min-width: 768px) {
    .nav-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    justify-self: start;
}

.nav-logo .icon {
    height: 2rem;
    width: 2rem;
    object-fit: contain;
}

.nav-logo .text {
    height: 1.5rem;
    width: auto;
    object-fit: contain;
}

.nav-center {
    display: none;
    align-items: center;
    gap: 2rem;
    justify-self: center;
}

.nav-center a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-center a:hover {
    color: var(--foreground);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-self: end;
    margin-left: auto;
}

@media (min-width: 768px) {
    .nav-center {
        display: flex;
    }

    .nav-actions {
        margin-left: 0;
    }

    .nav-actions .btn-ghost {
        display: inline-flex;
    }
}

.nav-menu-btn {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--border);
    border-radius: 0.625rem;
    background: var(--card);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .nav-menu-btn {
        display: none;
    }
}

.nav-menu-btn .bar {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--foreground);
    border-radius: 1px;
    position: relative;
}

.nav-menu-btn .bar::before,
.nav-menu-btn .bar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

.nav-menu-btn .bar::before {
    top: -6px;
}

.nav-menu-btn .bar::after {
    top: 6px;
}

.nav-mobile-panel {
    display: none;
    flex-direction: column;
    padding: 0 0 1rem;
    border-top: 1px solid var(--border);
    margin-top: -1px;
}

.nav-mobile-panel.is-open {
    display: flex;
}

.nav-mobile-panel a {
    padding: 0.875rem 0;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.nav-mobile-panel a:hover {
    color: var(--foreground);
}

@media (min-width: 768px) {
    .nav-mobile-panel {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .nav-actions .btn-ghost {
        display: none;
    }
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding-top: 5rem;
    padding-bottom: 8rem;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 8rem;
        padding-bottom: 12rem;
    }
}

.hero-content {
    max-width: 42rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.4);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.75rem;
    }
}

.hero-lead {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .hero-lead {
        font-size: 1.25rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    font-size: 0.875rem;
}

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

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.625;
}

.section-header p.wide {
    max-width: 56rem;
}

.section-features {
    background: linear-gradient(
        180deg,
        rgba(191, 219, 254, 0.55) 0%,
        rgba(219, 234, 254, 0.35) 35%,
        rgba(249, 250, 251, 0.9) 70%,
        #ffffff 100%
    );
}

.section-features .section-header {
    margin-bottom: 3.5rem;
}

.section-features .section-header h2 {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.section-features .section-header p.wide {
    max-width: 52rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--muted-foreground);
}

.features-layout {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .features-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 2.5rem 3rem;
    }
}

.features-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-illustration img,
.features-illustration .landing-screenshot-zoom__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.landing-screenshot-zoom {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
    transition: box-shadow 0.2s, transform 0.2s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.landing-screenshot-zoom:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    transform: translateY(-2px);
}

.landing-screenshot-zoom:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.landing-screenshot-zoom__hint {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: rgba(15, 23, 42, 0.72);
    border-radius: 9999px;
    pointer-events: none;
    backdrop-filter: blur(6px);
}

.landing-screenshot-zoom picture,
.landing-screenshot-zoom__img {
    display: block;
    line-height: 0;
    /* iOS/Safari: Tap auf <img> im <button> sonst ohne click */
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Lightbox für Dashboard-Screenshot */
.landing-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s;
}

.landing-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.landing-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
    cursor: zoom-out;
}

.landing-lightbox__dialog {
    position: relative;
    z-index: 1;
    /* Nie breiter als das Bild in nativer Pixelgröße (verhindert Hochskalierung) */
    max-width: min(96vw, var(--lightbox-img-w, 1916px));
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-lightbox__img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(96vw, var(--lightbox-img-w, 1916px));
    max-height: 92vh;
    border-radius: 0.5rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    object-fit: contain;
}

/* Retina: Anzeige auf max. 50 % der CSS-Breite → 1 Gerätepixel pro Bildpixel */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .landing-lightbox__dialog,
    .landing-lightbox__img {
        max-width: min(96vw, calc(var(--lightbox-img-w, 1916px) / 2));
    }
}

.landing-lightbox__close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: background 0.15s, transform 0.15s;
}

.landing-lightbox__close:hover {
    background: var(--muted);
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .landing-lightbox {
        padding: 2rem;
    }

    .landing-lightbox__close {
        top: 0;
        right: 0;
        transform: translate(50%, -50%);
    }

    .landing-lightbox__close:hover {
        transform: translate(50%, -50%) scale(1.05);
    }
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0.625rem;
    background: #ffffff;
    border: none;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07);
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    transform: translateY(-1px);
}

.feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: rgba(59, 130, 246, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--primary);
}

.audience-card .feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-family: 'Inter', sans-serif;
    color: var(--primary);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.55;
    margin: 0;
}

.section-audience {
    background: #fff;
}

.audience-grid {
    display: grid;
    gap: 2rem;
}

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

.audience-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--card);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.audience-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.audience-card .feature-icon {
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.audience-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.audience-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.section-security {
    background: linear-gradient(
        180deg,
        rgba(191, 219, 254, 0.55) 0%,
        rgba(219, 234, 254, 0.35) 35%,
        rgba(249, 250, 251, 0.9) 70%,
        #ffffff 100%
    );
}

.security-layout {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .security-layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 2.5rem 3rem;
    }
}

.security-content h2 {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.security-lead {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 36rem;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.security-card {
    align-items: center;
}

.security-card p {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
    line-height: 1.45;
}

.security-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-illustration img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

@media (max-width: 767px) {
    .security-illustration {
        order: -1;
    }
}

.section-pricing {
    background: #fff;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

.price-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--card);
    display: flex;
    flex-direction: column;
}

.price-card.highlight {
    border: 2px solid var(--accent);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .price-card.highlight {
        transform: scale(1.05);
    }
}

.price-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.price-desc {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.price-amount-wrap {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-amount .value {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--foreground);
}

.price-amount .currency {
    color: var(--muted-foreground);
}

.price-period {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.price-card > .btn-block {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price-note {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
    margin: -1rem 0 1.5rem;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.375;
}

/* CTA */
.section-cta {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section-cta {
        padding: 8rem 0;
    }
}

.section-cta h2 {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-cta h2 {
        font-size: 3rem;
    }
}

.section-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin: 0 auto 2rem;
    line-height: 1.625;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Footer – bg-foreground aus ZIP */
.landing-footer {
    background: var(--foreground);
    color: #fff;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .landing-footer {
        padding: 4rem 0;
    }
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.footer-brand .nav-logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .meta-note {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

/* Contact modal */
.contact-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.contact-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.contact-modal {
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--card);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.contact-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0;
}

.contact-modal-header h3 {
    font-size: 1.25rem;
}

.contact-modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--background);
    border-radius: 8px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--muted-foreground);
}

.contact-modal-body {
    padding: 1rem 1.5rem 1.5rem;
}

.contact-modal-intro {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-grid label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    background: var(--background);
}

.contact-form-grid textarea {
    min-height: 88px;
    resize: vertical;
}

.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.contact-form-note {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.contact-form-actions .btn-outline-primary {
    border-color: var(--border);
    color: var(--foreground);
}
