:root {
    --ink: #1a1a1a;
    --paper: #fafaf7;
    --accent: #e8623a;
    --accent-deep: #c44a25;
    --steel: #2c3e50;
    --steel-light: #3d5266;
    --slate: #5a6c7d;
    --mist: #e8e4df;
    --mist-warm: #f0ece6;
    --teal: #1a8a7d;
    --teal-glow: #1a8a7d22;
    --gold: #c7944a;
    --radius-sm: 0.5rem;
    --radius-md: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --radius-2xl: 2.5rem;
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    --shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-modal: 0 24px 64px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
    --transition-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 320ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-sans);
    background-color: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.bg-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

.site-wrapper {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-bar {
    background: var(--steel);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.5rem 0;
    position: relative;
    z-index: 100;
}
.top-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}
.top-bar a:hover {
    opacity: 0.8;
}
.top-bar .emergency-badge {
    background: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.75rem;
    animation: pulse-badge 2.2s ease-in-out infinite;
}
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 98, 58, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(232, 98, 58, 0); }
}

.main-header {
    background: #fff;
    border-bottom: 1px solid #e8e4df;
    position: sticky;
    top: 0;
    z-index: 99;
    transition: box-shadow var(--transition-smooth);
}
.main-header.scrolled {
    box-shadow: var(--shadow-elevated);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--steel);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.logo-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    position: relative;
    z-index: 1;
}
.logo-icon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.7;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-text .company-name {
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.1;
    color: var(--steel);
    letter-spacing: -0.01em;
}
.logo-text .company-tagline {
    font-size: 0.7rem;
    color: var(--slate);
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.15rem;
    align-items: center;
    flex-wrap: wrap;
}
.nav-links a {
    text-decoration: none;
    color: var(--steel);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    background: var(--mist-warm);
    color: var(--steel-light);
}
.nav-links a.active {
    font-weight: 600;
}
.nav-links .nav-cta {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.55rem 1.3rem;
    margin-left: 0.5rem;
    transition: all var(--transition-smooth);
}
.nav-links .nav-cta:hover {
    background: var(--accent-deep);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(232, 98, 58, 0.35);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}
.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--steel);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}
.mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 100;
    padding: 5rem 1.5rem 2rem;
    box-shadow: var(--shadow-modal);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    overflow-y: auto;
}
.mobile-nav.open {
    transform: translateX(0);
}
.mobile-nav a {
    display: block;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: var(--steel);
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    border-bottom: 1px solid #f0ece6;
}
.mobile-nav a:hover {
    background: var(--mist-warm);
}
.mobile-nav .mobile-cta {
    background: var(--accent);
    color: #fff;
    text-align: center;
    border-radius: 999px;
    margin-top: 1rem;
    font-weight: 600;
    border-bottom: none;
}
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}
.mobile-overlay.show {
    display: block;
    opacity: 1;
}

main {
    flex: 1;
}

.hero-section {
    position: relative;
    padding: 5rem 2rem 6rem;
    overflow: hidden;
    background: linear-gradient(175deg, #fafaf7 0%, #f0ece6 40%, #e8e4df 100%);
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}
.hero-blob.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -180px;
    right: -120px;
    opacity: 0.15;
    animation: blob-float 14s ease-in-out infinite;
}
.hero-blob.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--teal);
    bottom: -100px;
    left: -80px;
    opacity: 0.12;
    animation: blob-float 18s ease-in-out infinite reverse;
}
.hero-blob.blob-3 {
    width: 200px;
    height: 200px;
    background: var(--gold);
    top: 30%;
    left: 50%;
    opacity: 0.1;
    animation: blob-float 12s ease-in-out infinite 2s;
}
@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -25px) scale(1.08); }
    50% { transform: translate(-15px, 20px) scale(0.94); }
    75% { transform: translate(-25px, -15px) scale(1.05); }
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--steel);
    margin-bottom: 1.25rem;
}
.hero-content h1 .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}
.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.2;
    border-radius: 4px;
    z-index: -1;
}
.hero-content .hero-subtitle {
    font-size: 1.15rem;
    color: var(--slate);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    font-family: var(--font-sans);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 18px rgba(232, 98, 58, 0.3);
}
.btn-primary:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 98, 58, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--steel);
    border: 2px solid var(--steel);
}
.btn-outline:hover {
    background: var(--steel);
    color: #fff;
    transform: translateY(-2px);
}
.btn-teal {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 4px 18px rgba(26, 138, 125, 0.3);
}
.btn-teal:hover {
    background: #157a6f;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26, 138, 125, 0.4);
}
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1/1;
}
.hero-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-elevated);
    transition: all var(--transition-smooth);
}
.hero-card.card-main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    z-index: 3;
    text-align: center;
    padding: 2rem 1.5rem;
}
.hero-card.card-main .card-icon {
    width: 56px;
    height: 56px;
    background: var(--teal-glow);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.hero-card.card-main .card-stat {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--steel);
    letter-spacing: -0.02em;
}
.hero-card.card-main .card-label {
    font-size: 0.8rem;
    color: var(--slate);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hero-card.card-float-1 {
    top: 5%;
    right: 5%;
    width: 55%;
    z-index: 2;
    animation: card-float 7s ease-in-out infinite;
}
.hero-card.card-float-2 {
    bottom: 8%;
    left: 3%;
    width: 50%;
    z-index: 1;
    animation: card-float 9s ease-in-out infinite 1s;
}
@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
.hero-card .mini-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--steel);
    margin: 0.3rem 0;
}
.hero-card .mini-check .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

.trust-strip {
    background: #fff;
    border-bottom: 1px solid #e8e4df;
    padding: 1.5rem 2rem;
}
.trust-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate);
}
.trust-strip-inner .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.trust-strip-inner .trust-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
}

.section-pad {
    padding: 5rem 2rem;
}
.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.section-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--steel);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-subheading {
    color: var(--slate);
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem 1.75rem;
    border: 1px solid #e8e4df;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: #d5cfc7;
}
.service-card .svc-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}
.service-card .svc-icon.icon-toilet { background: #e8f4f8; }
.service-card .svc-icon.icon-drain { background: #fef3ee; }
.service-card .svc-icon.icon-emergency { background: #fde8e8; }
.service-card .svc-icon.icon-pipe { background: #e8f5f0; }
.service-card h3 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--steel);
    position: relative;
    z-index: 1;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.service-card .svc-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    transition: gap var(--transition-fast);
}
.service-card:hover .svc-arrow {
    gap: 0.6rem;
}
.service-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}
.service-card.icon-toilet-card::before { background: #e8f4f8; }
.service-card.icon-drain-card::before { background: #fef3ee; }
.service-card.icon-emergency-card::before { background: #fde8e8; }
.service-card.icon-pipe-card::before { background: #e8f5f0; }
.service-card:hover::before {
    opacity: 0.7;
}

.async-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.async-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-banner {
    background: var(--steel);
    color: #fff;
    border-radius: var(--radius-2xl);
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}
.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    top: -100px;
    right: -80px;
}
.cta-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--teal);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    bottom: -60px;
    left: -50px;
}
.cta-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.cta-banner p {
    position: relative;
    z-index: 1;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.cta-banner .btn {
    position: relative;
    z-index: 1;
}

.reviews-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.reviews-scroll::-webkit-scrollbar {
    display: none;
}
.review-card {
    min-width: 320px;
    max-width: 380px;
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid #e8e4df;
    scroll-snap-align: start;
    transition: all var(--transition-smooth);
}
.review-card:hover {
    box-shadow: var(--shadow-card);
}
.review-stars {
    color: #e8a838;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}
.review-card .review-text {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}
.review-card .review-author {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--steel);
}
.review-card .review-date {
    font-size: 0.75rem;
    color: #999;
}

.footer-main {
    background: #1a1d24;
    color: #c5c8ce;
    padding: 4rem 2rem 2rem;
    margin-top: auto;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}
.footer-col h4 {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.55rem;
}
.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}
.footer-col ul li a:hover {
    color: #fff;
}
.footer-bottom {
    max-width: 1280px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #2a2d35;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: #7a7e86;
}
.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #e8e4df;
    padding: 1.25rem 2rem;
    z-index: 999;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-banner p {
    font-size: 0.85rem;
    color: var(--slate);
    max-width: 600px;
    line-height: 1.5;
}
.cookie-banner p a {
    color: var(--teal);
    font-weight: 500;
}
.cookie-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.8rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.btn-sm-accept {
    background: var(--steel);
    color: #fff;
}
.btn-sm-accept:hover {
    background: #1a1d24;
}
.btn-sm-decline {
    background: transparent;
    color: var(--slate);
    border: 1px solid #ccc;
}
.btn-sm-decline:hover {
    border-color: #999;
    color: #333;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
    padding: 1rem;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-dialog {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    max-width: 520px;
    width: 100%;
    box-shadow: var(--shadow-modal);
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}
.modal-overlay.active .modal-dialog {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}
.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}
.modal-dialog h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--steel);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.modal-dialog .modal-subtitle {
    font-size: 0.85rem;
    color: var(--slate);
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--steel);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e8e4df;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast);
    background: #fafaf7;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: #fff;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.modal-step {
    display: none;
}
.modal-step.active {
    display: block;
}
.step-indicator {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0dcd6;
    transition: background var(--transition-fast);
}
.step-dot.done {
    background: var(--teal);
}
.step-dot.current {
    background: var(--accent);
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-content .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-card-stack {
        max-width: 300px;
        margin: 0 auto;
        aspect-ratio: 1/1;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .mobile-nav {
        display: block;
    }
}
@media (max-width: 768px) {
    .section-pad {
        padding: 3rem 1.25rem;
    }
    .header-inner {
        padding: 0.6rem 1.25rem;
    }
    .hero-section {
        padding: 3rem 1.25rem 4rem;
    }
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    .trust-strip-inner {
        gap: 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .top-bar-inner {
        justify-content: center;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .hero-card-stack {
        max-width: 240px;
    }
    .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}