:root {
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-dark: #111827;
    --bg-darker: #0f172a;
    --text: #172033;
    --text-soft: #5c667a;
    --line: #e5e7eb;
    --line-dark: rgba(255,255,255,0.12);
    --white: #ffffff;
    --primary: #d97706;
    --primary-hover: #b45309;
    --primary-soft: rgba(217, 119, 6, 0.12);
    --success: #0f766e;
    --shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 6px 22px rgba(15, 23, 42, 0.05);
    --radius: 18px;
    --radius-sm: 12px;
    --max-width: 1220px;
    --transition: 0.2s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
ul,
ol {
    margin-top: 0;
}

.container {
    width: min(100% - 32px, var(--max-width));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: var(--bg-dark);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 0 0 10px 10px;
}

.skip-link:focus {
    left: 16px;
}

.topbar {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.92);
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.topbar-contact a:hover {
    color: #ffd7a0;
}

.topbar-sep {
    opacity: 0.55;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f9fafb, #eef2f7);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-text strong {
    font-size: 22px;
    line-height: 1.1;
    color: var(--bg-dark);
}

.brand-text span {
    font-size: 13px;
    color: var(--text-soft);
    margin-top: 4px;
}

.site-nav {
    justify-self: center;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.site-nav a {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.site-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    border: 1px solid transparent;
    padding: 14px 22px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(217, 119, 6, 0.22);
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border-color: var(--line);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    border-color: #d1d5db;
    background: #fcfcfd;
}

.btn-sm {
    padding: 12px 18px;
    font-size: 14px;
}

.btn-large {
    min-width: 240px;
    padding: 16px 24px;
}

.site-main {
    min-height: 60vh;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(217, 119, 6, 0.18), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 65%);
    padding: 72px 0 56px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.hero-copy h1,
.inner-hero h1,
.section-head h2,
.content-box h2,
.cta-copy h2 {
    margin: 0 0 16px;
    line-height: 1.1;
}

.hero-copy h1 {
    font-size: clamp(36px, 5vw, 62px);
    max-width: 840px;
}

.hero-lead {
    font-size: 18px;
    color: var(--text-soft);
    max-width: 760px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.hero-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-card-image {
    aspect-ratio: 16 / 10;
    background: #eef2f7;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-body {
    padding: 26px;
}

.hero-card-body h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.contact-list li {
    padding: 12px 14px;
    background: var(--bg-soft);
    border-radius: 14px;
    border: 1px solid var(--line);
}

.section {
    padding: 78px 0;
}

.section-light {
    background: var(--bg-soft);
}

.section-dark {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
    color: var(--white);
}

.section-cta {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-head {
    max-width: 860px;
    margin-bottom: 38px;
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 46px);
}

.section-head p {
    margin: 0;
    color: var(--text-soft);
    font-size: 17px;
}

.section-head-light p,
.section-head-light h2 {
    color: var(--white);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.card h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.card p {
    margin: 0;
    color: var(--text-soft);
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.content-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.content-box h2 {
    font-size: clamp(28px, 3vw, 40px);
}

.content-box h3 {
    margin-top: 0;
    font-size: 26px;
}

.content-box p:last-child {
    margin-bottom: 0;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--text);
    font-weight: 600;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: 800;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.process-card {
    position: relative;
    border-radius: 20px;
    padding: 28px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line-dark);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.18);
    color: #ffd8a6;
    font-weight: 800;
    font-size: 18px;
}

.process-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.process-card p {
    margin: 0;
    color: rgba(255,255,255,0.86);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.area-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.seo-copy .section-head {
    margin-bottom: 28px;
}

.text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.text-columns p {
    color: var(--text);
    font-size: 17px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding: 36px;
    border-radius: 26px;
    background: linear-gradient(135deg, #111827, #1e293b);
    color: var(--white);
    box-shadow: var(--shadow);
}

.cta-copy {
    max-width: 760px;
}

.cta-copy p {
    color: rgba(255,255,255,0.88);
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.inner-hero {
    padding: 68px 0 24px;
    background:
        radial-gradient(circle at top right, rgba(217, 119, 6, 0.14), transparent 24%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.inner-hero h1 {
    font-size: clamp(34px, 4vw, 56px);
    margin-bottom: 0;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 38px 0 14px;
}

.legal-content p,
.legal-content li {
    font-size: 17px;
    color: var(--text);
}

.legal-content a {
    color: var(--primary-hover);
    font-weight: 700;
}

.notice-box,
.form-box {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
}

.notice-box {
    border-left: 5px solid var(--primary);
}

.form-box {
    margin-top: 18px;
}

.site-footer {
    margin-top: 30px;
    padding: 56px 0 18px;
    background: var(--bg-dark);
    color: rgba(255,255,255,0.88);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 28px;
}

.footer-col h3 {
    margin-top: 0;
    margin-bottom: 14px;
    color: var(--white);
}

.footer-col p {
    margin: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-list a:hover {
    color: #ffd8a6;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    font-size: 14px;
}

.floating-call {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 18px 34px rgba(217, 119, 6, 0.35);
    overflow: visible;
}

.floating-call:hover {
    background: var(--primary-hover);
}

.floating-call-inner {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.floating-call-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.92;
}

.floating-call-number {
    font-size: 15px;
    font-weight: 800;
    margin-top: 4px;
}

.floating-call-ring,
.floating-call::before,
.floating-call::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(217, 119, 6, 0.26);
    z-index: 1;
    animation: pulse 2.2s infinite;
}

.floating-call::after {
    animation-delay: 0.8s;
}

.floating-call-ring {
    animation-delay: 1.4s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.56;
    }
    70% {
        transform: scale(1.28);
        opacity: 0;
    }
    100% {
        transform: scale(1.28);
        opacity: 0;
    }
}

@media (max-width: 1120px) {
    .header-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .site-nav ul {
        gap: 18px;
    }

    .hero-grid,
    .two-col,
    .text-columns,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .area-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .topbar-inner {
        justify-content: center;
        text-align: center;
    }

    .site-nav ul {
        gap: 14px;
    }

    .site-nav a {
        font-size: 14px;
    }

    .brand {
        flex-direction: column;
        text-align: center;
    }

    .brand-text strong {
        font-size: 20px;
    }

    .hero-section {
        padding: 48px 0 38px;
    }

    .section,
    .inner-hero {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }

    .hero-lead,
    .section-head p,
    .text-columns p,
    .legal-content p,
    .legal-content li {
        font-size: 16px;
    }

    .card-grid,
    .process-grid,
    .area-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 26px;
    }

    .cta-actions,
    .hero-actions {
        width: 100%;
    }

    .cta-actions .btn,
    .hero-actions .btn {
        width: 100%;
    }

    .btn-large,
    .btn {
        min-width: 0;
    }

    .floating-call {
        left: 12px;
        right: 12px;
        bottom: 12px;
        min-width: 0;
        justify-content: center;
    }

    .floating-call-number {
        font-size: 14px;
    }
}