:root {
    --ink: #0F172A;
    --ink-light: #334155;
    --slate: #64748B;
    --cloud: #F1F5F9;
    --mist: #F8FAFC;
    --white: #ffffff;
    --accent: #0EA5E9;
    --accent-dark: #0284C7;
    --success: #10B981;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
    --transition: all 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink-light);
    line-height: 1.6;
    background: var(--white);
}
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--ink); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--cloud);
    z-index: 1000;
    padding: 14px 0;
}
.nav-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-mark {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.mark-line {
    width: 24px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.mark-line:nth-child(2) { width: 16px; }
.mark-line:nth-child(3) { width: 20px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.brand-sub { font-size: 0.65rem; font-weight: 700; letter-spacing: 3px; color: var(--accent); }
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}
.nav-links a {
    color: var(--slate);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--ink); }
.nav-phone {
    background: var(--ink);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.nav-phone:hover { background: var(--ink-light); }
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 70px;
}
.hero-media {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-tint {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(15,23,42,0.7) 0%, rgba(15,23,42,0.3) 60%, rgba(15,23,42,0.1) 100%);
}
.hero-body {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 24px;
    margin-left: 5%;
}
.hero-pill {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}
.hero-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-dark {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink-light); border-color: var(--ink-light); }
.btn-white {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}
.btn-white:hover { background: var(--cloud); border-color: var(--cloud); }
.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-block { display: block; width: 100%; text-align: center; margin-bottom: 10px; }

/* Trust Strip */
.trust-strip {
    background: var(--mist);
    border-bottom: 1px solid var(--cloud);
    padding: 28px 0;
}
.trust-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-light);
}
.trust-check {
    width: 22px;
    height: 22px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Section Label */
.section-label {
    display: block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 { font-size: 2.2rem; margin-bottom: 12px; }
.section-header p { color: var(--slate); max-width: 520px; margin: 0 auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }

/* About */
.about { padding: 100px 0; background: var(--white); }
.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; color: var(--slate); font-size: 1.02rem; }
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--cloud);
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; color: var(--slate); font-weight: 500; }
.about-media { position: relative; }
.about-media img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.media-caption {
    position: absolute;
    bottom: -12px;
    left: 24px;
    right: 24px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-light);
    text-align: center;
}

/* Services */
.services { padding: 100px 0; background: var(--mist); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.svc-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--cloud);
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.svc-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.svc-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.svc-card p { color: var(--slate); font-size: 0.95rem; }

/* Why */
.why { padding: 100px 0; background: var(--white); }
.why-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.why-visual img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.why-content h2 { font-size: 2.2rem; margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.why-icon {
    width: 44px;
    height: 44px;
    background: var(--cloud);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--accent);
}
.why-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.why-item p { color: var(--slate); font-size: 0.95rem; }

/* Reviews */
.reviews { padding: 100px 0; background: var(--ink); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 32px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.08); }
.review-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; }
.review-card p { color: rgba(255,255,255,0.8); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.reviewer { color: var(--accent); font-weight: 600; font-size: 0.85rem; }

/* Contact */
.contact { padding: 100px 0; background: var(--mist); }
.contact-frame {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}
.contact-info h2 { font-size: 2.2rem; margin-bottom: 16px; }
.contact-info p { color: var(--slate); margin-bottom: 36px; }
.info-blocks { display: flex; flex-direction: column; gap: 20px; }
.info-block { display: flex; flex-direction: column; gap: 4px; }
.info-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--slate); font-weight: 600; }
.info-value { font-size: 1.05rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.info-value:hover { color: var(--accent); }
.contact-action { display: flex; justify-content: center; }
.action-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.action-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.action-card p { color: var(--slate); margin-bottom: 24px; font-size: 0.95rem; }

/* Footer */
.footer { background: var(--ink); color: var(--white); padding: 56px 0 28px; }
.footer-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-top .brand-mark .mark-line { background: var(--accent); }
.footer-top .brand-name { color: var(--white); }
.footer-top p { color: var(--slate); font-size: 0.9rem; margin-left: auto; max-width: 300px; text-align: right; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-meta { display: flex; gap: 12px; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.copyright { width: 100%; text-align: center; margin-top: 16px; color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* Responsive */
@media (max-width: 992px) {
    .about-row, .why-row, .contact-frame { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
    .footer-top p { margin-left: 0; text-align: left; width: 100%; margin-top: 12px; }
    .trust-wrap { justify-content: center; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        transform: translateY(-150%);
        transition: var(--transition);
        border-bottom: 1px solid var(--cloud);
    }
    .nav-links.active { transform: translateY(0); }
    .menu-btn { display: flex; }
    .nav-phone { display: none; }
    .hero-title { font-size: 2.2rem; }
    .hero-body { margin-left: 0; text-align: center; }
    .hero-cta { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-row { flex-direction: column; gap: 20px; }
    .footer-top { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .action-card { padding: 32px; }
    .section-header h2 { font-size: 1.7rem; }
}
