:root {
    --yellow: #F5C518;
    --yellow-hover: #DFB215;
    --yellow-light: #FFF8DC;
    --dark: #1C1C1C;
    --dark-mid: #2A2A2A;
    --bg: #ffffff;
    --bg-warm: #F7F7F5;
    --text: #1C1C1C;
    --text-mid: #555;
    --text-dim: #888;
    --text-on-dark: #ccc;
    --border: #E5E5E2;
    --radius: 10px;
    --section-gap: 80px;
    --container: 1180px;
    --anim-speed: 1;
    --fs-label: 0.78rem;
    --text-form: #777;
    --field-border: #333;
    --radius-sm: 6px;
    --radius-pill: 20px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
    font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
    color: var(--text); background: var(--bg);
    line-height: 1.6; overflow-x: clip;
    -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ═══ REVEAL ANIMATIONS ═══ */
.rv { opacity: 1; translate: 0 0; }
.js .rv { opacity: 0; translate: 0 16px; transition: opacity 0.6s ease, translate 0.6s ease; }
.js .rv.v { opacity: 1; translate: 0 0; }
@supports (animation-timeline: view()) {
    .js .rv { opacity: 1; translate: 0 0; transition: none;
        animation: rv linear both; animation-timeline: view(); animation-range: entry 0% entry 100%; }
}
@keyframes rv { from { opacity: 0; translate: 0 16px; } to { opacity: 1; translate: 0 0; } }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01s !important; transition-duration: 0.01s !important; }
}

/* Subtle dot texture for dark surfaces */
.has-texture::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}
.has-texture { position: relative; }
.has-texture > * { position: relative; z-index: 1; }

/* ═══ HEADER (dark frame) ═══ */
.header {
    position: sticky; top: 0; z-index: 100;
    background: var(--dark);
}
.header .container {
    display: flex; justify-content: space-between; align-items: center;
    height: 58px;
}
.logo {
    font-weight: 700; font-size: 1.1rem; color: #fff;
    display: flex; align-items: center; gap: 8px; min-height: 44px;
}
.logo-mark {
    width: 30px; height: 30px; background: var(--yellow);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 16px; height: 16px; }
.logo span { color: var(--yellow); }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-size: 0.85rem; font-weight: 500; color: var(--text-on-dark); transition: color 0.15s; }
.nav a:hover { color: #fff; }
.nav-phone {
    color: var(--yellow) !important; font-weight: 700;
    display: flex; align-items: center; gap: 6px;
}
.nav-phone svg { width: 15px; height: 15px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; }
.hamburger svg { width: 22px; height: 22px; color: #fff; }
.mobile-nav { display: none; flex-direction: column; background: var(--dark-mid); padding: 8px 24px 16px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; font-size: 0.95rem; font-weight: 500; color: var(--text-on-dark); border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav a:last-child { border-bottom: none; color: var(--yellow); font-weight: 700; }

/* ═══ HERO (dark, brand energy) ═══ */
.hero {
    background: linear-gradient(rgba(17,17,17,0.82), rgba(17,17,17,0.88)), url('../assets/BG.png') center/cover no-repeat;
    padding: 56px 0 64px;
}
.hero .container {
    display: grid; grid-template-columns: 1fr 400px;
    gap: 48px; align-items: center;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: var(--fs-label); font-weight: 700;
    color: var(--yellow); text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 16px;
}
.hero-eyebrow::before {
    content: ''; width: 8px; height: 8px;
    background: #4ade80; border-radius: 50%;
    box-shadow: 0 0 6px rgba(74,222,128,0.4);
}
.hero h1 {
    font-size: clamp(2.1rem, 4.2vw, 2.8rem);
    font-weight: 700; line-height: 1.22;
    letter-spacing: -0.02em;
    color: #fff; margin-bottom: 16px;
}
.hero-sub {
    font-size: 1rem; color: var(--text-on-dark);
    line-height: 1.6; margin-bottom: 32px;
    max-width: 420px;
}
.hero-phone {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 12px;
}
.hero-phone-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--yellow); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.hero-phone-icon svg { width: 22px; height: 22px; color: var(--dark); }
.hero-phone-number {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 700; color: #fff;
    letter-spacing: -0.01em;
    min-height: 44px; display: flex; align-items: center;
}
.hero-phone-number:hover { color: var(--yellow); }
.hero-hours {
    font-size: 0.82rem; color: var(--text-dim);
    margin-bottom: 28px; padding-left: 58px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-call-btn { margin-top: 4px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 24px; font-family: inherit;
    font-size: 0.88rem; font-weight: 700;
    border-radius: var(--radius); border: none;
    cursor: pointer; transition: all 0.15s;
}
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: var(--yellow-hover); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: rgba(255,255,255,0.4); }

/* Hero visual — photo with presence */
.hero-visual {
    border-radius: 16px;
    aspect-ratio: 4/5;
    max-height: 420px;
    position: relative; overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.4),
        12px 12px 0 rgba(245,197,24,0.15);
}
.hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: 25% center;
}
.hero-visual-stats {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex; gap: 0;
    background: rgba(28,28,28,0.85);
    backdrop-filter: blur(4px);
}
.hero-vstat {
    flex: 1; text-align: center; padding: 14px 8px;
}
.hero-vstat + .hero-vstat { border-left: 1px solid rgba(255,255,255,0.08); }
.hero-vstat strong { display: block; font-size: 1.2rem; font-weight: 700; color: var(--yellow); line-height: 1.15; }
.hero-vstat span { font-size: var(--fs-label); color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; display: block; line-height: 1.35; }

/* Hero form */
.hero-form {
    background: var(--dark-mid); border-radius: var(--radius);
    padding: 24px; border: 1px solid rgba(255,255,255,0.06);
    align-self: start;
}
.hero-form h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; }

/* Contact photo (replaces form at bottom) */
.contact-photo {
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
.contact-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center center;
}

/* ═══ TRUST STRIP (light, bold yellow icons) ═══ */
.trust {
    padding: 48px 0;
    background: var(--bg-warm);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust .container {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-item {
    display: flex; flex-direction: column;
    align-items: center; text-align: center; gap: 12px;
}
.trust-icon {
    width: 56px; height: 56px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 26px; height: 26px; color: var(--dark); }
.trust-label {
    font-size: 0.85rem; font-weight: 600; color: var(--text);
    line-height: 1.3;
}

/* ═══ SECTIONS ═══ */
.section { padding: var(--section-gap) 0; }
.section-eyebrow {
    font-size: var(--fs-label); font-weight: 700; color: var(--yellow);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.section-title {
    font-size: clamp(1.6rem, 3.2vw, 2.15rem);
    font-weight: 700; line-height: 1.22;
    letter-spacing: -0.02em; margin-bottom: 12px;
}
.section-desc {
    font-size: 0.92rem; color: var(--text-mid);
    line-height: 1.65; max-width: 500px;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .section-desc { margin: 0 auto; }

/* ═══ SERVICES ═══ */
.services { background: var(--bg-warm); }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc {
    background: #fff; border: 1px solid var(--border);
    border-top: 3px solid var(--yellow);
    border-radius: 2px 2px var(--radius) var(--radius);
    padding: 28px 24px;
    display: flex; flex-direction: column;
    justify-content: flex-start; align-items: flex-start;
    transition: box-shadow 0.2s, translate 0.2s;
}
.svc:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    translate: 0 -3px;
}
.svc-icon {
    width: 48px; height: 48px;
    background: var(--yellow-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.svc-icon svg { width: 24px; height: 24px; color: var(--yellow-hover); }
.svc h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.svc p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }
.svc .brands {
    font-size: 0.72rem; color: var(--text-dim); line-height: 1.5;
    margin-top: auto; padding-top: 14px;
    border-top: 1px solid var(--border); width: 100%;
}

/* ═══ GUIDE (3-column expandable) ═══ */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.guide-card {
    background: #fff; border: 1px solid var(--border);
    border-left: 4px solid var(--yellow);
    border-radius: var(--radius);
    padding: 24px 22px;
    display: flex; flex-direction: column;
    transition: translate 0.25s ease;
}
.guide-card:hover { translate: -4px 0; }
.guide-card-icon {
    width: 48px; height: 48px; background: var(--yellow-light);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.guide-card-icon svg { width: 26px; height: 26px; color: var(--yellow-hover); }
.guide-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.guide-card-intro { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.guide-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.guide-tags span {
    font-size: 0.7rem; font-weight: 500;
    background: var(--bg-warm); border: 1px solid var(--border);
    border-radius: var(--radius-pill); padding: 3px 10px; color: var(--text-mid);
}
.guide-card .brands {
    font-size: 0.72rem; color: var(--text-dim); line-height: 1.5;
    margin-top: auto; padding-top: 12px;
    border-top: 1px solid var(--border); width: 100%;
}
.guide-expand { margin-top: 14px; }
.guide-expand summary {
    display: inline-flex; align-items: center; gap: 4px;
    min-height: 44px;
    font-size: 0.82rem; font-weight: 600; color: var(--yellow-hover);
    cursor: pointer; list-style: none;
    padding-top: 12px; border-top: 1px solid var(--border);
}
.guide-expand summary::-webkit-details-marker { display: none; }
.guide-expand summary::after { content: ' →'; }
.guide-expand[open] summary::after { content: ' ↓'; }
.guide-expand[open] summary { margin-bottom: 12px; }
.guide-detail { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }
.guide-detail dl { margin: 0; }
.guide-detail dt { font-weight: 600; color: var(--text); margin-top: 10px; }
.guide-detail dt:first-of-type { margin-top: 0; }
.guide-detail dd { margin: 2px 0 0 0; }
.guide-detail p { margin-top: 10px; font-style: italic; color: var(--text-dim); }

/* ═══ TRANSPARENCY ═══ */
.transparency-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.transparency-card {
    background: var(--bg-warm); border-radius: var(--radius);
    padding: 32px 28px; border: 1px solid var(--border);
    position: relative;
}
.transparency-icon {
    width: 44px; height: 44px; background: var(--yellow);
    border-radius: 10px; display: grid; place-items: center;
    margin-bottom: 16px;
}
.transparency-icon svg { width: 22px; height: 22px; stroke: var(--dark); }
.transparency-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.transparency-sub { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 16px; }
.transparency-card ul { list-style: none; }
.transparency-card li {
    font-size: 0.95rem; color: var(--text-mid); line-height: 1.7;
    padding: 4px 0; display: flex; align-items: baseline; gap: 10px;
}
.transparency-card li::before { content: '✓'; color: var(--yellow-hover); font-weight: 700; flex-shrink: 0; font-size: 1rem; }

/* ═══ PROCESS ═══ */
.steps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; position: relative;
}
.steps::before {
    content: ''; position: absolute;
    top: 28px; left: calc(16.66% + 16px); right: calc(16.66% + 16px);
    height: 2px; background: var(--border);
}
.step {
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.step-num {
    width: 56px; height: 56px;
    background: var(--yellow); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; color: var(--dark);
    margin-bottom: 16px; position: relative; z-index: 1;
}
.step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; max-width: 240px; }

/* ═══ PROBLEMS (split) ═══ */
.problems { background: var(--bg-warm); }
.problems .container {
    display: grid; grid-template-columns: 300px 1fr;
    gap: 48px; align-items: start;
}
.problems-intro .section-desc { margin-bottom: 24px; }
.problems-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.85rem; font-weight: 700; color: var(--yellow-hover);
    min-height: 44px;
}
.problems-cta svg { width: 16px; height: 16px; }
.problems-list { display: flex; flex-direction: column; gap: 8px; }
.faq {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius);
}
.faq summary {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; font-size: 0.9rem; font-weight: 600; min-height: 48px;
    cursor: pointer; list-style: none; transition: background 0.15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1rem; color: var(--text-dim); }
.faq[open] summary::after { content: '−'; color: var(--yellow-hover); }
.faq summary:hover { background: var(--bg-warm); }
.faq summary:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.faq-body {
    padding: 0 18px 14px;
    font-size: 0.84rem; color: var(--text-mid); line-height: 1.65;
}
.faq-body ul { list-style: disc; padding-left: 18px; margin-top: 8px; }
.faq-body li { margin-bottom: 4px; }

/* ═══ BRANDS ═══ */
.brands-list {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 10px 24px;
}
.brands-list span {
    font-size: 0.82rem; font-weight: 600;
    color: var(--text); opacity: 0.3;
    text-transform: uppercase; letter-spacing: 0.03em;
}

/* ═══ CONTACT (dark frame) ═══ */
.contact { background: var(--dark); color: #fff; }
.contact .container {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: stretch;
}
.contact .section-eyebrow { color: var(--yellow); }
.contact .section-title { color: #fff; }
.contact .section-desc { color: var(--text-on-dark); margin-bottom: 28px; }
.contact-phone {
    font-size: 1.5rem; font-weight: 700; color: var(--yellow);
    display: inline-flex; align-items: center; min-height: 44px; margin-bottom: 24px;
}
.contact-phone:hover { text-decoration: underline; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-row { display: flex; align-items: center; gap: 12px; }
.contact-row svg { width: 18px; height: 18px; color: var(--yellow); opacity: 0.5; flex-shrink: 0; }
.contact-row-text { display: flex; flex-direction: column; }
.contact-row-label { font-size: var(--fs-label); color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.35; }
.contact-row-value { font-size: 0.88rem; font-weight: 600; }

/* ═══ FORMS ═══ */
.contact-form {
    background: var(--dark-mid); border-radius: var(--radius);
    padding: 28px; border: 1px solid rgba(255,255,255,0.06);
}
.contact-form h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.form-group { margin-bottom: 12px; }
.form-group label {
    display: block; font-size: var(--fs-label); font-weight: 600;
    color: var(--text-form); text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 5px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; background: var(--dark);
    border: 1px solid var(--field-border); border-radius: var(--radius-sm);
    padding: 10px 12px; font-family: inherit;
    font-size: 1rem; color: #fff; transition: border-color 0.15s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-mid); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--yellow); }
.form-group select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
}
.form-group select option { background: var(--dark); color: #fff; }
.form-group textarea { resize: vertical; min-height: 64px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-submit {
    width: 100%; padding: 14px; margin-top: 4px;
    background: var(--yellow); color: var(--dark);
    font-family: inherit; font-size: 0.88rem; font-weight: 700;
    border: none; border-radius: var(--radius-sm);
    cursor: pointer; transition: background 0.15s;
}
.form-submit:hover { background: var(--yellow-hover); }

/* ═══ FOOTER ═══ */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}
.footer .container { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.75rem; color: var(--text-mid); }
.footer a { font-size: 0.75rem; color: var(--text-mid); transition: color 0.15s; min-height: 44px; display: inline-flex; align-items: center; }
.footer a:hover { color: #888; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
    :root { --section-gap: 56px; }
    .hero .container { grid-template-columns: 1fr; gap: 24px; }
    .hero-hours { padding-left: 0; }
    .nav { display: none; }
    .hamburger { display: block; }
    .trust .container { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .services-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 20px; }
    .steps::before { display: none; }
    .problems .container { grid-template-columns: 1fr; gap: 28px; }
    .contact .container { grid-template-columns: 1fr; gap: 32px; }
    .guide-grid { grid-template-columns: 1fr; }
    .transparency-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    :root { --section-gap: 48px; }
    .trust .container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .hero-call-btn { width: 100%; justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    /* iOS zoom prevention */
    .form-group input, .form-group textarea, .form-group select { font-size: 16px; }
    .contact-photo { aspect-ratio: 4/3; max-height: 280px; }
    .footer .container { flex-direction: column; gap: 8px; text-align: center; }
}
