:root {
    --gtm-accent: #0f766e;
    --gtm-accent-dark: #115e59;
    --gtm-ink: #0f172a;
    --gtm-muted: #64748b;
    --gtm-soft: #f0fdfa;
    --gtm-soft-2: #f8fafc;
    --gtm-border: #e2e8f0;
    --gtm-white: #ffffff;
    --gtm-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    --gtm-radius: 24px;
    --gtm-radius-sm: 16px;
    --gtm-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--gtm-ink);
    background: var(--gtm-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--gtm-accent); text-decoration: none; }
a:hover { color: var(--gtm-accent-dark); }
img { max-width: 100%; height: auto; border-radius: var(--gtm-radius-sm); }
h1, h2, h3, h4 { line-height: 1.1; margin: 0 0 0.75rem; color: var(--gtm-ink); }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.06em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.045em; }
h3 { font-size: 1.25rem; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; color: var(--gtm-muted); }
ul { margin: 0; padding-left: 1.2rem; }
.gtm-container { max-width: var(--gtm-container); margin: 0 auto; padding: 0 22px; }
.gtm-narrow { max-width: 860px; }
.screen-reader-text, .skip-link {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}
.skip-link:focus {
    top: 10px; left: 10px; height: auto; width: auto; clip: auto;
    background: var(--gtm-ink); color: white; padding: 10px 14px; z-index: 10000;
}

.gtm-site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}
.gtm-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.gtm-logo-text {
    display: inline-flex;
    align-items: center;
    font-weight: 900;
    color: var(--gtm-ink);
    font-size: 1.35rem;
    letter-spacing: -0.04em;
}
.gtm-logo-text span { color: var(--gtm-accent); }
.custom-logo-link img { max-height: 56px; width: auto; border-radius: 0; }
.gtm-primary-nav { flex: 1; display: flex; justify-content: center; }
.gtm-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.gtm-menu li { position: relative; }
.gtm-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--gtm-ink);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
}
.gtm-menu a:hover { background: var(--gtm-soft); color: var(--gtm-accent-dark); }
.gtm-menu .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: var(--gtm-white);
    border: 1px solid var(--gtm-border);
    box-shadow: var(--gtm-shadow);
    border-radius: 18px;
    list-style: none;
    padding: 8px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.18s ease;
}
.gtm-menu li:hover > .sub-menu,
.gtm-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gtm-menu .sub-menu a { border-radius: 12px; }
.gtm-header-cta, .gtm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 850;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    line-height: 1;
}
.gtm-header-cta, .gtm-button-primary {
    background: var(--gtm-accent);
    color: white;
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.2);
}
.gtm-header-cta:hover, .gtm-button-primary:hover {
    color: white;
    background: var(--gtm-accent-dark);
    transform: translateY(-1px);
}
.gtm-button-secondary { background: white; color: var(--gtm-ink); border: 1px solid var(--gtm-border); }
.gtm-button-secondary:hover { background: var(--gtm-soft-2); color: var(--gtm-ink); transform: translateY(-1px); }
.gtm-button-light { background: white; color: var(--gtm-accent-dark); }
.gtm-button-light:hover { color: var(--gtm-ink); transform: translateY(-1px); }
.gtm-menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.gtm-menu-toggle span:not(.screen-reader-text) { display: block; width: 24px; height: 2px; background: var(--gtm-ink); margin: 5px 0; }

.gtm-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 85% 15%, rgba(20, 184, 166, 0.18), transparent 32%), linear-gradient(135deg, #f8fafc 0%, #f0fdfa 100%);
    padding: 92px 0 72px;
}
.gtm-hero::before {
    content: "";
    position: absolute;
    inset: auto auto -120px -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.08);
}
.gtm-hero-grid, .gtm-split, .gtm-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 42px;
    align-items: center;
}
.gtm-align-start { align-items: start; }
.gtm-hero-subtitle { font-size: clamp(1.12rem, 2vw, 1.35rem); max-width: 720px; }
.gtm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gtm-accent-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    margin-bottom: 1rem;
}
.gtm-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.gtm-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gtm-trust-row span {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(15,118,110,0.14);
    border-radius: 999px;
    padding: 9px 12px;
    color: var(--gtm-ink);
    font-weight: 700;
    font-size: 0.9rem;
}
.gtm-hero-card, .gtm-mini-card, .gtm-sidebar-card {
    background: white;
    border: 1px solid rgba(15, 118, 110, 0.13);
    border-radius: var(--gtm-radius);
    padding: 28px;
    box-shadow: var(--gtm-shadow);
}
.gtm-hero-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.gtm-pulse { width: 12px; height: 12px; border-radius: 99px; background: var(--gtm-accent); box-shadow: 0 0 0 8px rgba(15, 118, 110, 0.12); }
.gtm-hero-card ul { list-style: none; padding: 0; margin: 0 0 18px; }
.gtm-hero-card li { display: flex; gap: 12px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--gtm-border); color: var(--gtm-muted); }
.gtm-hero-card li span, .gtm-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--gtm-soft);
    color: var(--gtm-accent-dark);
    font-weight: 900;
}

.gtm-section { padding: 82px 0; }
.gtm-section-soft { background: var(--gtm-soft-2); }
.gtm-section-heading { max-width: 760px; margin-bottom: 32px; }
.gtm-heading-row { max-width: none; display: flex; justify-content: space-between; gap: 20px; align-items: end; }
.gtm-card-grid { display: grid; gap: 20px; }
.gtm-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gtm-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gtm-card, .gtm-post-card, .gtm-testimonial {
    background: white;
    border: 1px solid var(--gtm-border);
    border-radius: var(--gtm-radius);
    padding: 24px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.04);
}
.gtm-card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.gtm-service-card a, .gtm-text-link { font-weight: 900; }
.gtm-location-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.gtm-location-grid a {
    background: white;
    border: 1px solid var(--gtm-border);
    border-radius: 999px;
    padding: 12px 16px;
    color: var(--gtm-ink);
    font-weight: 800;
    text-align: center;
}
.gtm-location-grid a:hover { background: var(--gtm-soft); border-color: rgba(15, 118, 110, 0.3); color: var(--gtm-accent-dark); }
.gtm-location-grid-large { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gtm-cta-band, .gtm-final-cta {
    background: linear-gradient(135deg, var(--gtm-accent), var(--gtm-accent-dark));
    color: white;
    padding: 68px 0;
}
.gtm-cta-band h2, .gtm-cta-band p, .gtm-cta-band .gtm-eyebrow, .gtm-final-cta h2, .gtm-final-cta p { color: white; }
.gtm-final-cta { text-align: center; }
.gtm-feature-list { display: grid; gap: 16px; }
.gtm-feature-list div {
    padding: 20px;
    border: 1px solid var(--gtm-border);
    border-radius: var(--gtm-radius-sm);
    background: var(--gtm-soft-2);
}
.gtm-feature-list strong { display: block; margin-bottom: 4px; }
.gtm-feature-list span { color: var(--gtm-muted); }
.gtm-content-wrap { max-width: 940px; }
.gtm-seo-content, .gtm-page-content {
    font-size: 1.06rem;
}
.gtm-page-content h2, .gtm-seo-content h2 { margin-top: 2rem; }
.gtm-page-content p, .gtm-page-content li, .gtm-seo-content p, .gtm-seo-content li { color: #475569; }
.gtm-faq-grid { display: grid; gap: 14px; }
.gtm-faq-item {
    background: white;
    border: 1px solid var(--gtm-border);
    border-radius: var(--gtm-radius-sm);
    padding: 18px 20px;
}
.gtm-faq-item summary { cursor: pointer; font-weight: 900; color: var(--gtm-ink); }
.gtm-faq-item p { margin-top: 12px; margin-bottom: 0; }
.gtm-testimonial p { font-size: 1.05rem; color: #334155; }
.gtm-testimonial strong { display: block; color: var(--gtm-accent-dark); }

.gtm-page-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ecfeff 100%);
    padding: 74px 0;
    border-bottom: 1px solid var(--gtm-border);
}
.gtm-page-hero h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
.gtm-page-hero p { max-width: 760px; font-size: 1.15rem; }
.gtm-mini-card strong, .gtm-sidebar-card h2 { display: block; margin-bottom: 10px; }
.gtm-sidebar-card ul { padding-left: 1.1rem; color: var(--gtm-muted); }
.gtm-sidebar-card li { margin-bottom: 9px; }

.gtm-form {
    background: white;
    border: 1px solid var(--gtm-border);
    border-radius: var(--gtm-radius);
    padding: 24px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}
.gtm-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.gtm-form label { display: block; font-weight: 850; color: var(--gtm-ink); margin-bottom: 16px; }
.gtm-form input, .gtm-form select, .gtm-form textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
    color: var(--gtm-ink);
    background: white;
}
.gtm-form input:focus, .gtm-form select:focus, .gtm-form textarea:focus {
    outline: 3px solid rgba(15, 118, 110, 0.14);
    border-color: var(--gtm-accent);
}
.gtm-checkbox { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 700 !important; color: var(--gtm-muted) !important; }
.gtm-checkbox input { width: auto; margin-top: 5px; }
.gtm-alert { padding: 14px 16px; border-radius: 14px; margin-bottom: 16px; font-weight: 800; }
.gtm-alert-success { background: var(--gtm-soft); border: 1px solid rgba(15, 118, 110, 0.2); color: var(--gtm-accent-dark); }

.gtm-post-card h2, .gtm-post-card h3 { font-size: 1.35rem; }
.gtm-post-card h2 a, .gtm-post-card h3 a { color: var(--gtm-ink); }
.gtm-post-card h2 a:hover, .gtm-post-card h3 a:hover { color: var(--gtm-accent); }
.gtm-post-meta { font-size: 0.9rem; font-weight: 900; color: var(--gtm-accent-dark); text-transform: uppercase; letter-spacing: 0.08em; }
.gtm-featured-image { margin-bottom: 32px; }
.gtm-post-nav { margin-top: 32px; display: flex; justify-content: space-between; font-weight: 900; }
.gtm-pagination { margin-top: 36px; }

.gtm-site-footer {
    background: #0f172a;
    color: white;
    padding: 64px 0 24px;
}
.gtm-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
}
.gtm-site-footer h2 { font-size: 1rem; color: white; margin-bottom: 14px; }
.gtm-site-footer p { color: #cbd5e1; }
.gtm-footer-logo { color: white; margin-bottom: 12px; }
.gtm-footer-links { list-style: none; padding: 0; margin: 0; }
.gtm-footer-links li { margin-bottom: 9px; }
.gtm-footer-links a { color: #cbd5e1; font-weight: 700; }
.gtm-footer-links a:hover { color: white; }
.gtm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 36px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.9rem;
}
.gtm-footer-bottom p { margin: 0; }
.gtm-two-col-list { columns: 2; }

@media (max-width: 980px) {
    .gtm-header-inner { min-height: 70px; }
    .gtm-menu-toggle { display: inline-block; }
    .gtm-primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--gtm-border);
        box-shadow: var(--gtm-shadow);
        display: none;
        justify-content: stretch;
        padding: 14px 22px 22px;
    }
    .gtm-primary-nav.is-open { display: block; }
    .gtm-menu { display: block; }
    .gtm-menu a { border-radius: 12px; padding: 12px; }
    .gtm-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 0 14px;
        margin: 0;
        min-width: 0;
    }
    .gtm-header-cta { display: none; }
    .gtm-hero-grid, .gtm-split, .gtm-cta-grid { grid-template-columns: 1fr; }
    .gtm-four, .gtm-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gtm-location-grid, .gtm-location-grid-large { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .gtm-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gtm-footer-bottom { flex-direction: column; }
}

@media (max-width: 640px) {
    h1 { font-size: 2.55rem; }
    .gtm-hero { padding: 60px 0 54px; }
    .gtm-section { padding: 58px 0; }
    .gtm-four, .gtm-three, .gtm-form-grid, .gtm-location-grid, .gtm-location-grid-large, .gtm-footer-grid { grid-template-columns: 1fr; }
    .gtm-heading-row { display: block; }
    .gtm-card, .gtm-post-card, .gtm-testimonial, .gtm-form, .gtm-hero-card, .gtm-mini-card, .gtm-sidebar-card { padding: 20px; border-radius: 20px; }
    .gtm-hero-actions { flex-direction: column; align-items: stretch; }
    .gtm-button { width: 100%; }
    .gtm-trust-row span { width: 100%; border-radius: 14px; }
    .gtm-two-col-list { columns: 1; }
}

.gtm-template-content {
    margin-top: 44px;
    padding-top: 34px;
    border-top: 1px solid var(--gtm-border);
}
