/* ==========================================================================
   Long & Chybik — Design Tokens
   Concept: "The Diamond Seal" — built directly around the firm's real mark:
   a nested diamond enclosing "L&C" in deep teal and white. The diamond
   repeats as a divider motif, an icon frame, and a corner mark, echoing a
   notarized/patent-stamp seal without copying another firm's circular one.
   A faint blueprint grid nods to patent drawings and technical documents.
   ========================================================================== */
:root {
    --ink: #154854;              /* firm's real brand teal — dark chrome surfaces */
    --ink-deep: #0e343d;         /* darker teal for gradients/depth */
    --ink-soft: #2c5c67;         /* lifted ink for secondary dark text */
    --canvas: #f2f5f4;           /* pale blueprint-paper page background */
    --paper: #ffffff;            /* card surface, pure white */
    --brass: #b8863b;            /* brass/gold — primary accent, CTAs */
    --brass-deep: #96692a;       /* brass hover state */
    --slate-blue: #3d6079;       /* secondary accent — blueprint blue */
    --text-main: #2b3538;        /* body copy, dark teal-charcoal */
    --text-light: #647375;       /* muted supporting text */
    --border-color: #dbe3e2;     /* pale blueprint border */
    --font-heading: 'Spectral', 'Iowan Old Style', serif;
    --font-body: 'Work Sans', 'Segoe UI', sans-serif;
    --transition-speed: 0.3s;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-main);
    background-color: var(--canvas);
    padding-bottom: 60px; /* space for mobile call bar */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed);
}

/* Focus states — always visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Top Contact Bar */
.top-bar {
    background-color: var(--ink-deep);
    color: #f2f5f4;
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(242, 245, 244, 0.08);
}

.bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bar-item svg {
    color: var(--brass);
}

/* Header & Navigation */
.main-header {
    background-color: var(--ink);
    box-shadow: 0 4px 10px rgba(14, 52, 61, 0.18);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 84px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-seal {
    color: var(--brass);
    display: flex;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.68rem;
    color: var(--brass);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(242, 245, 244, 0.92);
}

.main-nav a:not(.cta-btn):hover {
    color: var(--brass);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform var(--transition-speed), opacity var(--transition-speed);
}

/* Utility Button Classes */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    transition: all var(--transition-speed);
}

.small-btn {
    padding: 10px 20px;
    font-size: 0.72rem;
}

.primary-btn {
    background-color: var(--brass);
    color: #fffaf2;
}

.primary-btn:hover {
    background-color: var(--brass-deep);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(242, 245, 244, 0.35);
    backdrop-filter: blur(4px);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 620px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -3;
    animation: heroDrift 25s infinite alternate ease-in-out;
}

@keyframes heroDrift {
    0% {
        transform: scale(1.02) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(-1%, -1%);
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(115deg, rgba(14, 52, 61, 0.96) 0%, rgba(21, 72, 84, 0.82) 48%, rgba(61, 96, 121, 0.62) 100%);
    z-index: -2;
}

/* Signature texture: faint blueprint grid over the hero */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    z-index: -1;
    pointer-events: none;
}

/* Signature element: nested diamond watermark, echoing the firm mark */
.hero-diamond-ring {
    position: absolute;
    top: 50%;
    right: -120px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(184, 134, 59, 0.35);
    transform: translateY(-50%) rotate(45deg);
    z-index: 0;
    pointer-events: none;
}

.hero-diamond-ring::before {
    content: '';
    position: absolute;
    inset: 50px;
    border: 1px solid rgba(184, 134, 59, 0.28);
}

.hero-content {
    max-width: 640px;
    z-index: 1;
}

.hero .badge {
    background-color: rgba(184, 134, 59, 0.18);
    border: 1px solid var(--brass);
    color: #fdf3e2;
    padding: 6px 16px;
    border-radius: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 26px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 4.6vw, 3.5rem);
    font-weight: 600;
    line-height: 1.18;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: #e9cd9a;
}

.hero p {
    font-size: 1.08rem;
    line-height: 1.65;
    margin-bottom: 38px;
    color: rgba(242, 245, 244, 0.88);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Trust Strip */
.trust-strip {
    background-color: var(--ink-deep);
    padding: 36px 0;
    border-bottom: 3px solid var(--brass);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--brass);
}

.trust-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(242, 245, 244, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Shared eyebrow label (section marks) */
.eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--ink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
}

.eyebrow-light {
    color: var(--brass);
}

/* Services Section */
.services-section {
    padding: 104px 0;
    background-color: var(--paper);
}

.section-title {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px auto;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
}

/* Signature divider: hairline with a centered diamond mark */
.divider {
    position: relative;
    width: 56px;
    height: 2px;
    background-color: var(--brass);
    margin: 0 auto 22px auto;
    border-radius: 2px;
}

.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border: 1.5px solid var(--brass);
    background-color: var(--canvas);
    transform: translate(-50%, -50%) rotate(45deg);
}

.divider-left {
    margin: 0 0 26px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    background-color: var(--canvas);
    border: 1px solid var(--border-color);
    padding: 44px 30px 34px;
    border-radius: 6px;
    transition: all var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(14, 52, 61, 0.1);
    border-color: rgba(184, 134, 59, 0.32);
}

.service-icon {
    margin-bottom: 20px;
}

/* Signature element: diamond medallion housing each line icon */
.medallion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background-color: var(--paper);
    border: 1.5px solid var(--brass);
    box-shadow: 0 0 0 4px var(--canvas), 0 0 0 5px rgba(184, 134, 59, 0.3);
    color: var(--ink);
    transform: rotate(45deg);
    transition: transform var(--transition-speed);
}

.medallion svg {
    transform: rotate(-45deg);
}

.service-card:hover .medallion {
    transform: rotate(45deg) scale(1.06);
}

.filing-no {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--brass);
    font-weight: 500;
    margin: 8px 0 6px;
    letter-spacing: 0.02em;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    color: var(--ink);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.card-link:hover {
    color: var(--brass-deep);
}

/* About Section */
.about-section {
    padding: 104px 0;
    background-color: var(--canvas);
}

.about-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.section-subtitle {
    font-size: 0.82rem;
    color: var(--ink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    display: block;
    margin-bottom: 12px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 20px;
    line-height: 1.22;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.75;
}

.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 14px 22px;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--brass);
    background-color: var(--paper);
    border-radius: 3px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 4px;
}

/* Signature element: diamond crop-marks on the attorney photo, nodding to
   patent-drawing registration marks rather than a notary corner frame */
.about-img-container {
    position: relative;
    padding: 18px;
}

.about-img-container::before,
.about-img-container::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1.5px solid var(--brass);
    transform: rotate(45deg);
}

.about-img-container::before {
    top: -4px;
    left: -4px;
}

.about-img-container::after {
    bottom: -4px;
    right: -4px;
}

.about-image {
    width: 100%;
    display: block;
    border-radius: 3px;
    box-shadow: 0 20px 40px rgba(14, 52, 61, 0.18);
    animation: floatImage 6s infinite ease-in-out;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Client Feedback */
.feedback-section {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--ink) 0%, var(--ink-deep) 100%);
    color: #ffffff;
    text-align: center;
}

.feedback-section .section-title h2 {
    color: #ffffff;
}

.quote-card {
    max-width: 700px;
    margin: 0 auto;
}

.quote-mark {
    color: var(--brass);
    margin-bottom: 20px;
}

.quote-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #f2f5f4;
    margin-bottom: 24px;
}

.quote-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brass);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Hours & Location */
.hours-section {
    padding: 104px 0;
    background-color: var(--paper);
    border-bottom: 1px solid var(--border-color);
}

.hours-section .section-title {
    margin-bottom: 44px;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Signature element: dashed-inset certificate card, patent-document styled */
.certificate-card {
    position: relative;
    background-color: var(--canvas);
    border: 1px solid var(--border-color);
    padding: 46px;
    border-radius: 6px;
}

.certificate-card::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(184, 134, 59, 0.4);
    border-radius: 3px;
    pointer-events: none;
}

.certificate-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-note {
    font-size: 0.9rem;
    color: var(--brass-deep);
    font-weight: 600;
    margin-top: 24px;
}

.address {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 16px;
}

/* Booking Section */
.booking-section {
    padding: 104px 0;
    background-color: var(--canvas);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--paper);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 20px 45px rgba(14, 52, 61, 0.1);
    overflow: hidden;
}

.booking-header {
    position: relative;
    background-color: var(--ink);
    color: #ffffff;
    padding: 44px 40px;
    text-align: center;
    overflow: hidden;
    border-bottom: 2px solid var(--brass);
}

.booking-header::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(184, 134, 59, 0.25);
    transform: rotate(45deg);
}

.booking-header .eyebrow {
    position: relative;
}

.booking-header h2 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.booking-header p {
    position: relative;
    color: rgba(242, 245, 244, 0.75);
    font-size: 0.95rem;
}

.booking-form {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    background-color: var(--canvas);
    transition: all var(--transition-speed);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--brass);
    background-color: var(--paper);
    box-shadow: 0 0 0 4px rgba(184, 134, 59, 0.14);
}

.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
}

.form-status {
    display: none;
    margin-top: 20px;
    padding: 16px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.form-status.success {
    background-color: #dfe9e2;
    color: #2f4a38;
    border: 1px solid #b9d0c0;
}

/* Footer */
.main-footer {
    background-color: var(--ink-deep);
    color: rgba(242, 245, 244, 0.6);
    padding: 40px 0;
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid rgba(242, 245, 244, 0.08);
}

.footer-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(242, 245, 244, 0.85);
}

.footer-seal svg {
    color: var(--brass);
    flex-shrink: 0;
}

.footer-note {
    margin-top: 10px;
    font-size: 0.78rem;
    color: rgba(242, 245, 244, 0.45);
}

.linkedin-ref {
    margin-top: 8px;
    font-size: 0.8rem;
}

.linkedin-ref a {
    color: #ffffff;
    text-decoration: underline;
}

.linkedin-ref a:hover {
    color: var(--brass);
}

/* Marketing Badge (Claim Badge) */
.marketing-badge {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: rgba(14, 52, 61, 0.97);
    border: 1px solid rgba(242, 245, 244, 0.12);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    backdrop-filter: blur(8px);
    animation: slideUp 0.5s ease-out;
    max-width: 600px;
    margin: 0 auto;
}

.badge-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.badge-content p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.badge-content strong {
    color: var(--brass);
}

.badge-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.badge-claim-btn {
    display: inline-flex;
    white-space: nowrap;
    background-color: var(--brass);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background-color var(--transition-speed);
}

.badge-claim-btn:hover {
    background-color: var(--brass-deep);
}

.badge-phone-btn {
    display: inline-flex;
    white-space: nowrap;
    background-color: transparent;
    border: 1px solid var(--brass);
    color: var(--brass);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all var(--transition-speed);
    text-decoration: none;
}

.badge-phone-btn:hover {
    background-color: var(--brass);
    color: var(--ink);
}

.close-badge {
    background: none;
    border: none;
    color: rgba(242, 245, 244, 0.6);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-speed);
}

.close-badge:hover {
    color: #ffffff;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Sticky Call Bar */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--ink-deep);
    border-top: 1px solid var(--brass);
    z-index: 999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}

.mobile-call-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 16px;
    width: 100%;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img-container {
        max-width: 420px;
        margin: 0 auto;
    }
    .hero-diamond-ring {
        display: none;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .bar-content {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    .header-container {
        height: 72px;
        position: relative;
    }
    .nav-toggle {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--ink);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 24px 20px;
        box-shadow: 0 12px 20px rgba(14, 52, 61, 0.2);
        display: none;
    }
    .main-nav.nav-open {
        display: flex;
    }
    .main-nav a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(242, 245, 244, 0.1);
    }
    .main-nav a.cta-btn {
        width: auto;
        margin-top: 14px;
        border-bottom: none;
    }
    .hero {
        height: auto;
        padding: 100px 0 80px 0;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hours-grid {
        grid-template-columns: 1fr;
    }
    .certificate-card {
        padding: 30px;
    }
    .about-stats {
        flex-direction: column;
    }
    .quote-text {
        font-size: 1.2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .marketing-badge {
        bottom: 78px;
        left: 12px;
        right: 12px;
        padding: 12px 16px;
    }
    .badge-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .badge-actions {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
    }
    .mobile-call-bar {
        display: flex;
    }
}

/* Scroll-Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .about-image {
        animation: none;
    }
    .reveal-on-scroll {
        transition: opacity 0.3s ease;
        transform: none;
    }
}
