:root {
    --green: #20b15a;
    --green-dark: #168a47;
    --text: #222;
    --muted: #667085;
    --bg: #f5f7f8;
    --white: #fff;
    --line: #e6eaee;
    --radius: 18px;
    --shadow: 0 18px 45px rgba(16, 24, 40, .08);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 5vw, 72px);
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.brand { font-size: 24px; font-weight: 800; letter-spacing: 0; }
.brand span { color: var(--green); }
.main-nav { display: flex; align-items: center; gap: 18px; font-weight: 650; color: #344054; }
.main-nav a:hover { color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(32, 177, 90, .28);
    border-radius: 999px;
    background: #fff;
    color: var(--green-dark);
    font-weight: 850;
    box-shadow: 0 8px 20px rgba(16, 24, 40, .06);
    white-space: nowrap;
}
.nav-button:hover { transform: translateY(-1px); border-color: rgba(32, 177, 90, .52); }
.nav-button.accent {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}
.nav-button.accent:hover { background: var(--green-dark); }
.nav-button.ghost { background: #f7fbf8; }
.nav-button.download {
    padding-inline: 18px;
}
.nav-button.glow {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, .42), 0 12px 28px rgba(249, 115, 22, .24);
    animation: buttonPulse 1.9s ease-in-out infinite;
}
.nav-button.glow::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -45%;
    width: 38%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.68), transparent);
    transform: rotate(24deg);
    animation: buttonShine 2.4s ease-in-out infinite;
}
.nav-button.glow:hover {
    border-color: #ea580c;
    background: linear-gradient(135deg, #f97316, #ea580c);
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, .38), 0 12px 28px rgba(249, 115, 22, .24); }
    50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0), 0 16px 34px rgba(249, 115, 22, .34); }
}

@keyframes buttonShine {
    0% { left: -45%; opacity: 0; }
    22% { opacity: 1; }
    52% { left: 120%; opacity: 0; }
    100% { left: 120%; opacity: 0; }
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 580px;
    padding: 88px 20px 34px;
    background:
        linear-gradient(180deg, rgba(24, 33, 47, .34), rgba(24, 33, 47, .82)),
        linear-gradient(90deg, rgba(24, 33, 47, .76), rgba(24, 33, 47, .28)),
        var(--hero-image, url('../images/hero-family.png')) center/cover;
    color: var(--white);
    overflow: hidden;
}
.hero-inner { width: min(1180px, 100%); margin: 0 auto; }
.hero-copy { max-width: 940px; margin: 0 auto; text-align: center; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--green-dark);
    font-weight: 850;
    box-shadow: 0 14px 28px rgba(16, 24, 40, .12);
}
.hero-badge span:nth-child(2) { color: rgba(22, 138, 71, .45); }
.hero h1 { margin: 0 0 14px; font-size: clamp(42px, 6vw, 76px); line-height: 1.03; letter-spacing: 0; text-shadow: 0 5px 24px rgba(0, 0, 0, .26); }
.hero p { margin: 0 auto 34px; max-width: 760px; font-size: clamp(19px, 2.1vw, 26px); color: rgba(255,255,255,.96); font-weight: 750; text-shadow: 0 4px 18px rgba(0, 0, 0, .28); }
.search-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 0;
    max-width: 940px;
    margin: 0 auto;
    padding: 0;
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(16, 24, 40, .28);
}
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 15px;
    font: inherit;
    color: var(--text);
    background: var(--white);
}
textarea { min-height: 120px; resize: vertical; }
.field-error {
    border-color: #d92d20 !important;
    background: #fff6f5;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, .08);
}
.field-error-text {
    color: #b42318;
    font-size: 13px;
    font-weight: 800;
}
.form-error-summary {
    margin-bottom: 18px;
    padding: 13px 15px;
    border: 1px solid #fda29b;
    border-radius: 8px;
    background: #fff6f5;
    color: #b42318;
    font-weight: 850;
}
.search-box input {
    min-height: 72px;
    border: 0;
    border-radius: 0;
    padding-left: 58px;
    font-size: 20px;
    background:
        linear-gradient(transparent, transparent),
        var(--white);
}
.search-box::before {
    content: "⌕";
    position: absolute;
    margin: 20px 0 0 24px;
    color: #98a2b3;
    font-size: 28px;
    line-height: 1;
    pointer-events: none;
}
.search-box .btn { min-height: 72px; border-radius: 0; font-size: 20px; }
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    background: var(--green);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
}
.btn:hover { background: var(--green-dark); }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn:disabled:hover { background: var(--green); }
.btn.secondary { background: #eef8f2; color: var(--green-dark); }
.btn.dark { background: #18212f; color: #fff; }
.btn.dark:hover { background: #101828; }
.btn.danger { background: #d92d20; }
.glow-download {
    position: relative;
    overflow: hidden;
    border: 1px solid #f59e0b !important;
    background: linear-gradient(135deg, #f59e0b, #f97316) !important;
    color: #fff !important;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, .42), 0 12px 28px rgba(249, 115, 22, .24) !important;
    animation: buttonPulse 1.9s ease-in-out infinite;
}
.glow-download::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -45%;
    width: 38%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.68), transparent);
    transform: rotate(24deg);
    animation: buttonShine 2.4s ease-in-out infinite;
}
.glow-download:hover {
    border-color: #ea580c !important;
    background: linear-gradient(135deg, #f97316, #ea580c) !important;
}

.section { padding: 54px clamp(18px, 5vw, 72px); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section h2, .page-title h1 { margin: 0; font-size: clamp(28px, 3vw, 42px); letter-spacing: 0; }
.section p, .page-title p { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(16, 24, 40, .05);
}
.service-card img { width: 100%; height: 150px; object-fit: cover; background: #f2f4f7; }
.card-body { padding: 18px; }
.card h3 { margin: 0 0 8px; font-size: 20px; }
.meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.service-sector { display: grid; gap: 18px; margin-bottom: 38px; }
.service-sector:last-child { margin-bottom: 0; }
.service-sector-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}
.service-sector-head h2 { margin: 0; font-size: clamp(22px, 2.4vw, 30px); }
.service-sector-head span { color: var(--muted); font-weight: 800; white-space: nowrap; }
.trend-section {
    background: #fff;
}
.trend-section h2 {
    margin: 0 0 26px;
    text-align: center;
    font-size: clamp(28px, 3vw, 38px);
    color: #111827;
}
.trend-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}
.trend-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
}
.trend-card a {
    display: block;
    min-height: 190px;
}
.trend-card img {
    width: 100%;
    height: 122px;
    object-fit: cover;
    background: #f2f4f7;
}
.trend-card h3 {
    margin: 9px 10px 4px;
    color: var(--green-dark);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 850;
}
.trend-meta {
    display: grid;
    gap: 2px;
    margin: 0 10px 10px;
    color: #111827;
    font-size: 12px;
    line-height: 1.35;
}
.trend-offer {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    border-radius: 4px;
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease;
}
.trend-card:hover .trend-offer {
    opacity: 1;
    transform: translateY(0);
}
.trend-card:hover {
    border-color: #cfd6dd;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .08);
}

.testimonials-band {
    background: linear-gradient(180deg, #f8fbf9 0%, #fff 100%);
    border-block: 1px solid var(--line);
    overflow: hidden;
}
.testimonials-band-title {
    margin: 0 0 28px;
    text-align: center;
    font-size: clamp(24px, 2.8vw, 36px);
    color: #111827;
}
.testimonials-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.testimonials-track {
    display: flex;
    width: max-content;
    animation: testimonialsScroll var(--testimonials-duration, 70s) linear infinite;
}
.testimonials-marquee:hover .testimonials-track {
    animation-play-state: paused;
}
.testimonials-group {
    display: flex;
    gap: 16px;
    padding-inline: 8px;
}
.testimonial-card {
    flex: 0 0 300px;
    width: 300px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(16, 24, 40, .05);
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1;
}
.testimonial-name {
    font-size: 16px;
    color: #111827;
}
.testimonial-location,
.testimonial-service {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.35;
}
.testimonial-service {
    font-weight: 700;
    color: var(--green-dark);
}
.testimonial-comment {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #344054;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.testimonial-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ecfdf3;
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .02em;
}
@keyframes testimonialsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .testimonials-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }
    .testimonials-group[aria-hidden="true"] {
        display: none;
    }
    .testimonials-marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

.service-strip { background: #fff; border-bottom: 1px solid var(--line); }
.service-pill-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.service-pill {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fbfcfd;
    font-weight: 800;
    color: #344054;
    box-shadow: 0 8px 22px rgba(16, 24, 40, .04);
}
.service-pill:hover { border-color: rgba(32, 177, 90, .42); color: var(--green-dark); transform: translateY(-1px); }
.service-pill img { width: 58px; height: 58px; border-radius: 12px; object-fit: cover; }

.page-title { padding: 44px clamp(18px, 5vw, 72px) 18px; }
.content-wrap { padding: 24px clamp(18px, 5vw, 72px) 60px; }
.content-wrap > .form-card,
.content-wrap > .panel-card {
    margin-inline: auto;
}
.seo-hero {
    padding: 54px clamp(18px, 5vw, 72px);
    background: linear-gradient(120deg, #eef8f2, #ffffff);
    border-bottom: 1px solid var(--line);
}
.seo-hero > div { max-width: 980px; }
.seo-hero h1 { margin: 14px 0 14px; font-size: clamp(34px, 5vw, 58px); line-height: 1.08; letter-spacing: 0; }
.seo-hero p { max-width: 780px; color: var(--muted); font-size: 19px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 700; }
.breadcrumb a { color: var(--green-dark); }
.seo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.seo-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; align-items: start; }
.seo-content {
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(22px, 4vw, 44px);
    box-shadow: 0 10px 26px rgba(16, 24, 40, .05);
}
.seo-content .lead { font-size: 19px; color: #344054; }
.seo-content h2 { margin-top: 34px; font-size: clamp(24px, 3vw, 34px); }
.seo-content p, .seo-content li { color: #475467; }
.seo-content,
.seo-sidebar,
.seo-mini-card,
.seo-feature-grid > div,
.panel-card {
    overflow-wrap: anywhere;
    word-break: normal;
}
.seo-feature-grid,
.seo-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
    margin: 18px 0 8px;
}
.seo-feature-grid > div,
.seo-mini-card {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfd;
}
.seo-feature-grid strong,
.seo-mini-card strong {
    display: block;
    margin-bottom: 6px;
    color: #18212f;
}
.seo-feature-grid span,
.seo-mini-card span,
.seo-mini-card small {
    display: block;
    color: var(--muted);
    font-weight: 750;
}
.seo-mini-card p { margin: 10px 0 0; }
.seo-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.seo-price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
}
.seo-price-table th,
.seo-price-table td {
    padding: 13px 15px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}
.seo-price-table th {
    background: #f7fbf8;
    color: #344054;
}
.seo-price-table tr:last-child td { border-bottom: 0; }
.seo-instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    margin: 18px 0 8px;
}
.seo-instagram-card {
    display: grid;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 24, 40, .04);
}
.seo-instagram-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    background: #eef2f6;
}
.seo-instagram-card-v1 img { object-position: center 45%; filter: saturate(1.04); }
.seo-instagram-card-v2 img { object-position: left center; filter: contrast(1.04) saturate(.98); }
.seo-instagram-card-v3 img { object-position: right center; filter: brightness(.98) saturate(1.08); }
.seo-instagram-card-v4 img { object-position: center 62%; filter: contrast(.98) saturate(1.12); }
.seo-instagram-card-v5 img { object-position: 35% center; filter: brightness(1.03) contrast(1.02); }
.seo-instagram-card-v6 img { object-position: 70% center; filter: saturate(.95) contrast(1.06); }
.seo-instagram-card span,
.seo-instagram-card strong {
    display: block;
    padding-inline: 12px;
}
.seo-instagram-card span {
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 850;
}
.seo-instagram-card strong {
    padding-bottom: 13px;
    color: #18212f;
    font-size: 15px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}
.seo-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 8px;
    background: #18212f;
    color: #fff;
}
.seo-cta-band strong,
.seo-cta-band span { display: block; }
.seo-cta-band span { color: rgba(255,255,255,.76); }
.seo-sidebar { display: grid; min-width: 0; gap: 18px; position: sticky; top: 92px; }
.seo-sidebar a { display: block; margin: 9px 0; color: var(--green-dark); font-weight: 750; }
.seo-link-group { margin-top: 14px; }
.seo-link-group h4 { margin: 0 0 10px; font-size: 14px; color: #344054; }
.seo-compact-links { display: flex; flex-wrap: wrap; gap: 8px; }
.seo-sidebar .seo-compact-links a {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 32px;
    margin: 0;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fbfcfd;
    color: #216e45;
    font-size: 13px;
    line-height: 1.2;
    overflow-wrap: anywhere;
}
.seo-sidebar .seo-compact-links a:hover {
    border-color: rgba(32, 177, 90, .42);
    background: #f1fbf5;
}
.seo-location-accordion { display: grid; gap: 8px; }
.seo-location-accordion details {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fbfcfd;
    overflow: hidden;
}
.seo-location-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 11px;
    color: #344054;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}
.seo-location-accordion summary span { color: var(--muted); font-weight: 700; }
.seo-location-accordion .seo-compact-links { padding: 0 10px 10px; }
.check-list, .process-list { padding-left: 22px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; background: #fbfcfd; }
.faq-list summary { cursor: pointer; font-weight: 800; color: #344054; }
.form-card, .panel-card {
    width: min(860px, 100%);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(20px, 3vw, 34px);
    box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.auth-switch { margin: 18px 0 0; color: var(--muted); font-weight: 650; }
.auth-switch a { color: var(--green-dark); font-weight: 850; }
.checkbox-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.checkbox-grid label { display: flex; align-items: center; gap: 8px; font-weight: 650; }
.checkbox-grid input { width: auto; }
.sector-checkbox-list { display: grid; gap: 16px; }
.checkbox-sector {
    min-width: 0;
    margin: 0;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}
.checkbox-sector legend {
    padding: 0 8px;
    color: #18212f;
    font-weight: 900;
}
.checkbox-inline { display: flex; align-items: center; gap: 8px; }
.checkbox-inline input { width: auto; }
.service-area-picker {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfd;
}
.service-area-picker > p { margin: 0; color: var(--muted); font-weight: 650; }
.service-area-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 10px;
    align-items: end;
}
.service-area-list { display: flex; flex-wrap: wrap; gap: 8px; }
.service-area-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid #cfd6dd;
    border-radius: 8px;
    background: #fff;
    color: #344054;
    font-weight: 750;
}
.service-area-item button {
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #eef2f4;
    color: #344054;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}
label { display: grid; gap: 7px; font-weight: 700; color: #344054; }
.service-question-panel {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fbfcfd;
}
.service-question-panel[hidden] { display: none; }
.service-question-title {
    color: #18212f;
    font-size: 18px;
    font-weight: 850;
}
.question-progress-wrap {
    display: grid;
    gap: 8px;
}
.question-progress-head {
    color: #475467;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}
.question-progress-track {
    width: min(300px, 100%);
    height: 4px;
    margin: 0 auto 6px;
    overflow: hidden;
    border-radius: 999px;
    background: #d9f0e3;
}
.question-progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--green);
    transition: width .18s ease;
}
.final-step-title {
    margin-bottom: 16px;
    color: #18212f;
    font-size: 18px;
    font-weight: 850;
}
.final-step {
    padding-top: 8px;
    border-top: 1px solid var(--line);
}
.final-step[hidden] { display: none; }
.service-question {
    display: grid;
    gap: 10px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}
.service-question[hidden] { display: none; }
.service-question-error {
    padding: 12px;
    border: 1px solid #fda29b;
    border-radius: 12px;
    background: #fff6f5;
}
.service-question-error::after {
    content: "Devam etmek için bu soruyu cevaplayın.";
    color: #b42318;
    font-size: 13px;
    font-weight: 800;
}
.service-question legend {
    margin-bottom: 8px;
    color: #344054;
    font-weight: 800;
}
.option-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.option-choice {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: #344054;
    font-weight: 750;
    cursor: pointer;
}
.option-choice:has(input:checked) {
    border-color: rgba(32, 177, 90, .45);
    background: #eef8f2;
    color: var(--green-dark);
}
.option-choice input {
    width: auto;
    accent-color: var(--green);
}
.question-nav {
    position: sticky;
    bottom: 0;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(251,252,253,0), #fbfcfd 28%);
}
.question-nav [hidden] { display: none; }
.question-nav .btn {
    min-width: 150px;
}
.location-section {
    background:
        linear-gradient(110deg, rgba(24, 33, 47, .92), rgba(32, 177, 90, .72)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: #fff;
}
.location-section .section-head p { color: rgba(255,255,255,.78); }
.location-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 28px; align-items: start; }
.location-copy { display: grid; gap: 16px; max-width: 560px; }
.location-copy h3 { margin: 0; font-size: 30px; }
.location-copy p { margin: 0; color: rgba(255,255,255,.82); }
.location-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.location-links a {
    padding: 12px 13px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 12px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-weight: 750;
    backdrop-filter: blur(8px);
}
.location-links a:hover { background: rgba(255,255,255,.2); }
.blog-preview-section { background: #fff; }
.social-blog-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}
.social-blog-strip a {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid rgba(22, 163, 74, .28);
    border-radius: 12px;
    background: #f0fdf4;
    color: #14532d;
}
.social-blog-strip span {
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.social-blog-strip strong {
    color: #101828;
    font-size: 15px;
    line-height: 1.25;
}
.social-blog-strip img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    background: #e5e7eb;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.blog-card {
    display: grid;
    gap: 12px;
    align-content: start;
    min-height: 260px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 26px rgba(16, 24, 40, .05);
}
.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    background: #eef2f6;
}
.blog-card span {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef8f2;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 850;
}
.blog-card h2, .blog-card h3 { margin: 0; font-size: 22px; line-height: 1.25; }
.blog-card p { margin: 0; color: var(--muted); }
.blog-card a:not(.btn) { color: var(--green-dark); font-weight: 850; }
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: #344054;
    font-weight: 850;
}
.pagination a:hover,
.pagination .active {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}
.blog-detail { width: min(880px, 100%); }
.blog-detail-image {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    border-radius: var(--radius);
    background: #eef2f6;
}
.social-embed {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 4px 0 8px;
}
.social-embed.instagram-embed {
    justify-content: stretch;
}
.social-embed.instagram-embed .instagram-media {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.social-embed-frame {
    max-width: 100%;
    border-radius: 12px;
    background: #eef2f6;
}
.detail-layout { display: grid; grid-template-columns: 1.4fr .6fr; gap: 24px; align-items: start; }
.detail-hero { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.detail-hero img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(16, 24, 40, .05);
}
.table th, .table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.table th { background: #eef8f2; }
.admin-lead { max-width: 860px; color: var(--muted); font-weight: 650; }
.admin-table small { color: var(--muted); }
.inline-admin-form { margin: 0; }
.small-btn { min-height: 34px; padding: 0 12px; border-radius: 8px; font-size: 13px; }
.admin-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 22px 0 24px;
}
.admin-metric {
    position: relative;
    display: grid;
    gap: 9px;
    min-height: 112px;
    padding: 18px 18px 16px 62px;
    border: 1px solid #e6ebf0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
    overflow: hidden;
}
.admin-metric::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 20px;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    box-shadow: inset 0 0 0 1px rgba(22, 163, 74, .14);
}
.admin-metric::after {
    content: "";
    position: absolute;
    left: 29px;
    top: 31px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}
.admin-metric span {
    color: #667085;
    font-size: 13px;
    font-weight: 850;
}
.admin-metric strong {
    color: #101828;
    font-size: 30px;
    line-height: 1;
}
.admin-tools {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}
.admin-filter-form,
.admin-topup-form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px auto;
    gap: 10px;
    align-items: center;
    padding: 16px;
    border: 1px solid #e6ebf0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .05);
}
.admin-topup-form { grid-template-columns: 130px 140px minmax(180px, 1fr) auto; }
.stack-form { display: grid; gap: 8px; min-width: 180px; margin-bottom: 10px; }
.status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #3538cd;
    font-size: 13px;
    font-weight: 850;
}
.status-badge.active,
.status-badge.accepted,
.status-badge.approved,
.status-badge.completed { background: #eef8f2; color: var(--green-dark); }
.status-badge.pending,
.status-badge.open,
.status-badge.offered,
.status-badge.sent { background: #fff7e6; color: #b54708; }
.status-badge.passive,
.status-badge.cancelled,
.status-badge.rejected { background: #fff1f0; color: #b42318; }
.admin-main .form-card {
    padding: 22px;
}
.admin-main .form-grid label {
    color: #344054;
    font-size: 13px;
    font-weight: 850;
}
.admin-main input,
.admin-main select,
.admin-main textarea {
    border-color: #d0d5dd;
    border-radius: 10px;
    background: #fff;
}
.admin-main input:focus,
.admin-main select:focus,
.admin-main textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, .12);
    outline: none;
}
.admin-main .table {
    border: 1px solid #e6ebf0;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(16, 24, 40, .06);
}
.admin-main .table th {
    background: #f8fafc;
    color: #667085;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.admin-main .table td {
    background: #fff;
}
.admin-main .table tr:hover td {
    background: #fbfefc;
}
.admin-main .btn {
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(22, 163, 74, .12);
}
.admin-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 0%, rgba(34, 197, 94, .08), transparent 30%),
        linear-gradient(180deg, #f8fafc 0%, #f3f6f8 100%);
    color: #111827;
}
.admin-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100vh;
    padding: 24px 18px;
    border-right: 1px solid #e6ebf0;
    background: rgba(255,255,255,.92);
    color: #111827;
    box-shadow: 12px 0 35px rgba(16, 24, 40, .04);
}
.admin-sidebar h2 {
    margin: 0 0 18px;
    padding: 0 10px 14px;
    border-bottom: 1px solid #eef2f6;
    color: #101828;
    font-size: 23px;
    letter-spacing: 0;
}
.admin-sidebar-head {
    display: grid;
    gap: 10px;
}
.admin-menu {
    display: contents;
}
.admin-menu-toggle {
    display: none;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    background: #fff;
    color: #14532d;
    font-weight: 900;
}
.admin-sidebar h2::after {
    content: "Go";
    color: var(--green);
}
.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 10px;
    color: #344054;
    font-weight: 800;
}
.admin-sidebar a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d5dd;
}
.admin-sidebar a:hover,
.admin-sidebar a:focus-visible {
    background: #eef8f2;
    color: var(--green-dark);
}
.admin-sidebar a:hover::before,
.admin-sidebar a:focus-visible::before {
    background: var(--green);
}
.admin-sidebar a[href$="logout.php"] {
    margin-top: auto;
    color: #b42318;
}
.admin-sidebar a[href$="logout.php"]::before { background: #fda29b; }
.admin-main {
    width: min(1260px, 100%);
    padding: 30px clamp(18px, 3vw, 42px) 56px;
}
.admin-main > h1 {
    margin: 0;
    color: #101828;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.08;
}
.admin-main > h2 {
    margin-top: 28px;
    color: #101828;
}
.admin-main > .admin-lead {
    margin: 10px 0 24px;
}
.admin-main .two-col {
    align-items: start;
}
.admin-main .two-col > section,
.admin-main > section,
.admin-main > .table,
.admin-main > .form-card,
.admin-main .form-card {
    border: 1px solid #e6ebf0;
    border-radius: 14px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 16px 40px rgba(16, 24, 40, .06);
}
.admin-main .two-col > section {
    padding: 18px;
}
.admin-main .two-col > section h2,
.admin-main .form-card h2 {
    margin-top: 0;
}

.tech-app {
    width: min(960px, 100%);
    margin: 0 auto;
    padding: 34px 18px 96px;
    background: #fff;
}
.tech-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 10px 0 30px;
}
.tech-top span {
    display: block;
    margin-bottom: 30px;
    text-align: left;
    color: #111827;
    font-size: 21px;
    font-weight: 800;
}
.tech-top small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 850;
}
.tech-top p { margin: 0 0 4px; font-size: 26px; color: #111827; }
.tech-top h1 { margin: 0; font-size: clamp(34px, 8vw, 48px); line-height: 1.05; letter-spacing: 0; }
.tech-top img {
    flex: 0 0 auto;
    width: clamp(92px, 18vw, 142px);
    height: clamp(92px, 18vw, 142px);
    border-radius: 999px;
    object-fit: cover;
}
.tech-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.tech-stats div {
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfd;
}
.tech-stats strong { font-size: 22px; }
.tech-stats span { color: var(--muted); font-weight: 700; }
.tech-menu {
    display: grid;
    margin-bottom: 30px;
}
.tech-menu[hidden] { display: none; }
.tech-menu a {
    position: relative;
    display: grid;
    grid-template-columns: 38px 1fr 22px;
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}
.tech-menu a > span {
    color: #111827;
    font-size: 28px;
    line-height: 1;
    text-align: center;
}
.tech-menu strong {
    display: block;
    margin-bottom: 4px;
    color: #111827;
    font-size: clamp(21px, 4.4vw, 30px);
    line-height: 1.1;
}
.tech-menu small {
    display: block;
    color: #667085;
    font-size: clamp(14px, 2.8vw, 18px);
    line-height: 1.35;
}
.tech-menu em {
    color: #111827;
    font-size: 34px;
    font-style: normal;
    line-height: 1;
}
.tech-menu a.active { color: var(--green); }
.tech-menu a.active strong,
.tech-menu a.active > span,
.tech-menu a.active em { color: var(--green); }
.wide-panel { width: 100%; margin-bottom: 30px; box-shadow: none; }
.panel-section { margin: 34px 0; }
.panel-section[hidden],
.tech-panel[hidden] { display: none; }
.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}
.panel-head h2 { margin: 0 0 4px; }
.panel-head p { margin: 0; color: var(--muted); }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.request-list { display: grid; gap: 16px; }
.request-card,
.customer-request-card,
.offer-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 24, 40, .04);
}
.request-card { display: grid; gap: 14px; padding: 18px; }
.request-card div:first-child { display: grid; gap: 4px; }
.request-card strong { font-size: 19px; }
.request-card span,
.offer-card span,
.offer-card small { color: var(--muted); }
.offer-chat {
    margin-top: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfd;
    display: grid;
    gap: 10px;
}
.offer-chat-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}
.offer-chat-head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}
.offer-chat-messages {
    display: grid;
    gap: 8px;
    max-height: 260px;
    overflow-y: auto;
    padding-right: 4px;
}
.offer-chat-empty {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}
.offer-chat-message {
    max-width: 88%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
}
.offer-chat-message.mine {
    margin-left: auto;
    background: #ecfdf3;
    border-color: #b7ebc6;
}
.offer-chat-message p {
    margin: 0 0 4px;
    line-height: 1.45;
    white-space: pre-wrap;
}
.offer-chat-message time {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.offer-chat-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: end;
}
.offer-chat-form textarea {
    width: 100%;
    min-height: 72px;
    resize: vertical;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    font: inherit;
}
.offer-chat-row td {
    background: #fbfcfd;
    border-top: none;
    padding-top: 0;
}
.inline-offer-form {
    display: grid;
    grid-template-columns: 150px minmax(180px, 1fr) auto;
    gap: 10px;
}
.empty-state {
    padding: 18px;
    border: 1px dashed #cfd6dd;
    border-radius: 8px;
    background: #fbfcfd;
    color: var(--muted);
    font-weight: 750;
}
.wallet-balance {
    margin: 0;
    color: var(--green-dark);
    font-size: 40px;
    font-weight: 900;
}
.bank-box {
    display: grid;
    gap: 7px;
    margin: 18px 0;
    padding: 14px;
    border: 1px solid #c7e6d3;
    border-radius: 8px;
    background: #f4fbf7;
}
.bank-box strong { color: #145b36; }
.bank-box span {
    color: #344054;
    font-weight: 750;
    overflow-wrap: anywhere;
}
.bank-box em {
    color: #b54708;
    font-style: normal;
    font-weight: 850;
}
.mini-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}
.tech-bottom-nav {
    position: fixed;
    z-index: 20;
    left: 50%;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(960px, 100%);
    transform: translateX(-50%);
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
}
.tech-bottom-nav a {
    display: grid;
    justify-items: center;
    gap: 4px;
    padding: 12px 4px 10px;
    color: #667085;
    font-size: 26px;
    font-weight: 800;
}
.tech-bottom-nav span { font-size: 13px; }
.tech-bottom-nav .active { color: var(--green); }
.customer-dashboard {
    display: grid;
    gap: 20px;
}
.customer-request-card { padding: 22px; }
.customer-request-card header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}
.customer-request-card header span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--green-dark);
    font-weight: 850;
}
.customer-request-card h2 { margin: 0 0 4px; }
.customer-request-card header p { margin: 0; color: var(--muted); }
.won-offer-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 24, 40, .04);
}
.won-offer-card header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}
.won-offer-card header h3 {
    margin: 4px 0;
    font-size: 19px;
}
.won-offer-card header p {
    margin: 0;
    color: var(--muted);
}
.won-offer-card header strong {
    color: var(--green-dark);
    font-size: 22px;
    white-space: nowrap;
}
.won-offer-contact {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid #e6eaee;
    border-radius: 8px;
    background: #fbfcfd;
}
.won-offer-contact span {
    color: var(--muted);
    line-height: 1.45;
}
.offer-list { display: grid; gap: 12px; margin-top: 18px; }
.offer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
}
.offer-card-with-chat {
    display: grid;
    align-items: stretch;
}
.offer-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.offer-card div { display: grid; gap: 3px; }
.review-form {
    display: grid;
    grid-template-columns: 76px minmax(160px, 1fr) auto;
    gap: 8px;
}

.flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 18px clamp(18px, 5vw, 72px) 0;
    padding: 14px 16px;
    border-radius: 12px;
    background: #eef8f2;
    color: var(--green-dark);
    font-weight: 700;
    transition: opacity .22s ease, transform .22s ease;
}
.flash.is-hiding {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}
.flash button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 24, 40, .08);
    color: inherit;
    cursor: pointer;
    font-size: 22px;
    font-weight: 850;
    line-height: 1;
}
.flash.success {
    position: fixed;
    z-index: 100;
    top: 50%;
    left: 50%;
    width: min(520px, calc(100vw - 36px));
    margin: 0;
    padding: 28px 30px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(32, 177, 90, .2);
    border-radius: 16px;
    background: var(--white);
    color: #145b36;
    box-shadow: 0 28px 80px rgba(16, 24, 40, .22);
    font-size: 20px;
    line-height: 1.45;
    text-align: center;
}
.flash.success span { flex: 1; }
.flash.success button {
    position: absolute;
    top: 10px;
    right: 10px;
}
.flash.success.is-hiding {
    transform: translate(-50%, -48%);
}
.flash.success::before {
    content: "";
    position: fixed;
    z-index: -1;
    inset: -100vh -100vw;
    background: rgba(16, 24, 40, .38);
    backdrop-filter: blur(3px);
}
.flash.error { background: #fff1f0; color: #b42318; }
.legal-title { max-width: 1100px; margin: 0 auto; }
.legal-page {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
}
.legal-page h2 {
    margin: 30px 0 10px;
    color: #18212f;
    font-size: clamp(20px, 2vw, 26px);
}
.legal-page p, .legal-page li {
    color: #475467;
    font-size: 16px;
    line-height: 1.72;
}
.legal-page ul { padding-left: 22px; }
.terms-check {
    align-items: start;
    color: #475467;
    font-weight: 750;
}
.terms-check a { color: var(--green-dark); font-weight: 900; text-decoration: underline; }
.profile-upload-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}
.profile-upload-row.full {
    grid-column: 1 / -1;
}
.profile-upload-row img {
    width: 92px;
    height: 92px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #eef8f2;
    object-fit: cover;
}
.profile-upload-row small {
    color: var(--muted);
    font-weight: 700;
}
.profile-card {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}
.site-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 42px clamp(18px, 5vw, 72px);
    background: #18212f;
    color: #fff;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,.72); }
.site-footer a { display: block; margin: 8px 0; }

@media (max-width: 980px) {
    .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .trend-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-pill-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .location-layout, .blog-grid { grid-template-columns: 1fr; }
    .location-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .detail-layout, .admin-shell, .seo-layout { grid-template-columns: 1fr; }
    .seo-layout {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    .seo-sidebar {
        position: static;
        width: 100%;
        max-width: 100%;
    }
    .seo-sidebar .panel-card {
        width: 100%;
        max-width: 100%;
    }
    .site-footer { grid-template-columns: 1fr 1fr; }
    .admin-shell { display: block; }
    .admin-sidebar {
        position: sticky;
        top: 0;
        z-index: 20;
        flex-direction: column;
        align-items: stretch;
        height: auto;
        min-height: 0;
        padding: 16px;
        overflow: visible;
        border-right: 0;
        border-bottom: 1px solid #e6ebf0;
        box-shadow: 0 10px 30px rgba(16, 24, 40, .08);
    }
    .admin-sidebar-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    .admin-sidebar h2 {
        flex: none;
        margin: 0;
        padding: 0;
        border-right: 0;
        border-bottom: 0;
        font-size: 20px;
    }
    .admin-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }
    .admin-menu {
        display: none;
        gap: 8px;
        padding-top: 12px;
        border-top: 1px solid #e6ebf0;
    }
    .admin-menu.is-open {
        display: grid;
    }
    .admin-sidebar a {
        flex: none;
        width: 100%;
        min-height: 42px;
        white-space: normal;
        background: #fff;
        border: 1px solid #eef2f6;
    }
    .admin-sidebar a[href$="logout.php"] { margin-top: 0; }
    .admin-main {
        padding: 22px 16px 44px;
    }
    .admin-main .table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .inline-offer-form { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    html, body { max-width: 100%; overflow-x: hidden; }
    .site-header { align-items: flex-start; flex-direction: column; }
    .main-nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
    .nav-actions { width: 100%; flex-wrap: wrap; gap: 8px; }
    .nav-button { flex: 1 1 calc(33.333% - 8px); min-width: 108px; padding: 0 10px; font-size: 14px; }
    .hero { min-height: 540px; padding: 58px 16px 28px; }
    .hero-badge { gap: 8px; padding: 8px 12px; font-size: 13px; }
    .search-box, .form-grid, .service-area-controls { grid-template-columns: 1fr; }
    .search-box input { min-height: 62px; padding-left: 48px; font-size: 17px; }
    .search-box::before { margin: 17px 0 0 18px; font-size: 24px; }
    .search-box .btn { min-height: 58px; }
    .hero-actions { flex-direction: column; }
    .service-pill-grid, .location-links { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr; }
    .option-choice-grid { grid-template-columns: 1fr; }
    .grid, .trend-grid, .site-footer { grid-template-columns: 1fr; }
    .page-title,
    .content-wrap,
    .seo-hero {
        padding-left: 14px;
        padding-right: 14px;
    }
    .seo-hero h1 {
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.13;
    }
    .seo-hero p,
    .seo-content .lead {
        font-size: 17px;
    }
    .seo-content {
        width: 100%;
        max-width: 100%;
        padding: 18px 14px;
        border-radius: 10px;
        overflow-x: hidden;
    }
    .seo-content h2 {
        font-size: clamp(21px, 6vw, 27px);
        line-height: 1.18;
    }
    .seo-feature-grid,
    .seo-card-grid,
    .seo-instagram-grid {
        grid-template-columns: 1fr;
    }
    .seo-table-wrap {
        width: 100%;
        max-width: 100%;
    }
    .seo-price-table {
        min-width: 0;
        table-layout: fixed;
    }
    .seo-price-table th,
    .seo-price-table td {
        padding: 11px 10px;
        overflow-wrap: anywhere;
    }
    .seo-cta-band {
        align-items: stretch;
        flex-direction: column;
    }
    .seo-cta-band .btn {
        width: 100%;
    }
    .seo-sidebar .seo-compact-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
    }
    .seo-sidebar .seo-compact-links a {
        width: 100%;
        border-radius: 8px;
    }
    .seo-location-accordion summary {
        min-width: 0;
    }
    .trend-card a { min-height: 200px; }
    .trend-card img { height: 132px; }
    .trend-offer { position: static; margin: 8px 10px 10px; opacity: 1; transform: none; }
    .section-head { align-items: flex-start; flex-direction: column; }
    .testimonial-card {
        flex-basis: 260px;
        width: 260px;
    }
    .tech-app { padding-inline: 18px; }
    .tech-top { align-items: flex-end; }
    .tech-top span { margin-bottom: 24px; font-size: 19px; }
    .tech-top p { font-size: 22px; }
    .tech-top h1 { font-size: clamp(29px, 8vw, 40px); }
    .tech-stats, .two-col { grid-template-columns: 1fr; }
    .admin-metrics,
    .admin-filter-form,
    .admin-topup-form { grid-template-columns: 1fr; }
    .admin-main > h1 {
        font-size: 30px;
    }
    .admin-metric {
        min-height: 96px;
        padding: 16px 16px 15px 58px;
    }
    .admin-metric strong {
        font-size: 26px;
    }
    .admin-main .form-card,
    .admin-main .two-col > section {
        padding: 16px;
        border-radius: 12px;
    }
    .admin-sidebar {
        gap: 8px;
    }
    .admin-sidebar a {
        min-height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }
    .admin-sidebar a::before {
        width: 7px;
        height: 7px;
    }
    .tech-menu a { grid-template-columns: 32px 1fr 18px; gap: 12px; min-height: 82px; padding: 13px 0; }
    .tech-menu a > span { font-size: 24px; }
    .tech-menu strong { font-size: 22px; }
    .tech-menu small { font-size: 14px; }
    .tech-menu em { font-size: 30px; }
    .panel-head { align-items: stretch; flex-direction: column; }
    .panel-head .btn { width: 100%; }
    .offer-card,
    .customer-request-card header { align-items: stretch; flex-direction: column; }
    .review-form { grid-template-columns: 1fr; }
    .profile-upload-row { grid-template-columns: 72px minmax(0, 1fr); }
    .profile-upload-row img { width: 72px; height: 72px; }
    .table { display: block; overflow-x: auto; white-space: nowrap; }
}

.tech-top .tech-profile-photo {
    border-radius: 50%;
    object-fit: cover;
    background: #eef8f2;
}

.review-stars {
    color: #d97706;
    letter-spacing: 0.5px;
}

/* —— Dashboard panels (usta / müşteri) —— */
.dash-app {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    min-height: calc(100vh - 72px);
    background: var(--bg);
}
.dash-sidebar {
    position: sticky;
    top: 72px;
    align-self: start;
    height: calc(100vh - 72px);
    padding: 22px 16px 20px;
    background: #fff;
    border-right: 1px solid var(--line);
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    overflow: auto;
}
.dash-sidebar-brand a {
    font-size: 22px;
    font-weight: 800;
}
.dash-sidebar-brand span { color: var(--green); }
.dash-role-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef8f2;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
}
.dash-nav { display: grid; gap: 4px; align-content: start; }
.dash-nav-heading {
    margin: 14px 0 6px;
    padding: 0 10px;
    color: #98a2b3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.dash-nav-link {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #344054;
    font-weight: 650;
    transition: background .15s ease, color .15s ease;
}
.dash-nav-link:hover { background: #f8fafc; color: var(--green-dark); }
.dash-nav-link.is-active,
.dash-nav-link.active {
    background: #eef8f2;
    color: var(--green-dark);
}
.dash-nav-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #f2f4f7;
    font-size: 14px;
}
.dash-nav-link.is-active .dash-nav-icon,
.dash-nav-link.active .dash-nav-icon {
    background: #d9f3e5;
}
.dash-nav-badge {
    min-width: 22px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #7f56d9;
    color: #fff;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    text-align: center;
}
.dash-sidebar-cta {
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(160deg, #eef8f2, #f8fffb);
    border: 1px solid #d9f3e5;
}
.dash-sidebar-cta p {
    margin: 0 0 12px;
    color: #475467;
    font-size: 13px;
    line-height: 1.45;
}
.dash-sidebar-cta .btn { width: 100%; justify-content: center; }
.dash-main {
    min-width: 0;
    padding: 22px clamp(16px, 2.5vw, 32px) 88px;
}
.dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}
.dash-topbar-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: #101828;
}
.dash-topbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.dash-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    padding: 22px 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.dash-hero-kicker {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}
.dash-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.15;
}
.dash-hero-sub {
    margin: 0;
    color: var(--muted);
    font-weight: 650;
}
.dash-pill {
    display: inline-block;
    margin-top: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #eef8f2;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
}
.dash-hero-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid var(--line);
}
.dash-hero-profile img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background: #eef8f2;
}
.dash-hero-profile strong { display: block; font-size: 15px; }
.dash-hero-profile span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}
.dash-hero-profile a {
    display: inline-block;
    margin-top: 8px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
}
.dash-stats {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}
.dash-stat-card {
    display: grid;
    gap: 4px;
    padding: 14px 14px 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(16, 24, 40, .04);
    transition: transform .15s ease, box-shadow .15s ease;
}
a.dash-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16, 24, 40, .08);
}
.dash-stat-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.dash-stat-value {
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.1;
}
.dash-stat-card small {
    color: #98a2b3;
    font-size: 11px;
    font-weight: 650;
}
.dash-stat-card.tone-green .dash-stat-value { color: var(--green-dark); }
.dash-stat-card.tone-blue .dash-stat-value { color: #175cd3; }
.dash-stat-card.tone-purple .dash-stat-value { color: #6941c6; }
.dash-stat-card.tone-amber .dash-stat-value { color: #b54708; }
.dash-stat-card.tone-orange .dash-stat-value { color: #c4320a; }
.dash-stat-card.tone-teal .dash-stat-value { color: #0e7490; }
.dash-grid { display: grid; gap: 18px; }
.dash-grid-2-1 { grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr); }
.dash-grid-1-1 { grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr); }
.dash-stack { display: grid; gap: 18px; align-content: start; }
.dash-card {
    padding: 18px 18px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(16, 24, 40, .05);
}
.dash-card-accent {
    background: linear-gradient(180deg, #fff, #f8fffb);
    border-color: #d9f3e5;
}
.dash-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.dash-card-head h2 {
    margin: 0;
    font-size: 18px;
}
.dash-card-head a {
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
}
.dash-table-wrap { overflow: auto; }
.dash-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.dash-table th,
.dash-table td {
    padding: 11px 10px;
    border-bottom: 1px solid #eef2f6;
    text-align: left;
}
.dash-table th {
    color: #98a2b3;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.dash-table tr:last-child td { border-bottom: 0; }
.dash-table small { color: var(--muted); }
.dash-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}
.dash-badge.is-success { background: #ecfdf3; color: #027a48; }
.dash-badge.is-info { background: #eff8ff; color: #175cd3; }
.dash-badge.is-warning { background: #fffaeb; color: #b54708; }
.dash-badge.is-danger { background: #fef3f2; color: #b42318; }
.dash-badge.is-neutral { background: #f2f4f7; color: #475467; }
.dash-empty {
    color: var(--muted);
    font-weight: 650;
}
.dash-quick-links {
    display: grid;
    gap: 8px;
}
.dash-quick-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 700;
}
.dash-quick-links a:hover {
    border-color: #bfe8cf;
    background: #f8fffb;
}
.dash-quick-links em {
    color: var(--green);
    font-style: normal;
    font-size: 18px;
}
.dash-review-list { display: grid; gap: 12px; }
.dash-review-item {
    padding-bottom: 12px;
    border-bottom: 1px solid #eef2f6;
}
.dash-review-item:last-child { border-bottom: 0; padding-bottom: 0; }
.dash-review-item p {
    margin: 6px 0 0;
    color: #475467;
    font-size: 13px;
}
.dash-meta-list {
    margin: 0 0 14px;
    display: grid;
    gap: 10px;
}
.dash-meta-list div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eef2f6;
}
.dash-meta-list dt {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}
.dash-meta-list dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}
.dash-panel {
    margin-top: 8px;
}
.dash-panel .panel-card,
.dash-panel.panel-card {
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, .05);
}
.dash-mobile-nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}
.dash-mobile-nav a {
    display: grid;
    justify-items: center;
    gap: 2px;
    padding: 6px 4px;
    border-radius: 10px;
    color: #667085;
    font-size: 11px;
    font-weight: 700;
}
.dash-mobile-nav a span { font-size: 18px; line-height: 1; }
.dash-mobile-nav a.is-active,
.dash-mobile-nav a.active {
    background: #eef8f2;
    color: var(--green-dark);
}

@media (max-width: 1180px) {
    .dash-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .dash-grid-2-1,
    .dash-grid-1-1 { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .dash-app { grid-template-columns: 1fr; }
    .dash-sidebar {
        position: static;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .dash-sidebar-cta { display: none; }
    .dash-nav {
        grid-auto-flow: column;
        grid-auto-columns: minmax(140px, 1fr);
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .dash-nav-heading { display: none; }
    .dash-main { padding-bottom: 96px; }
    .dash-mobile-nav { display: grid; }
    .dash-hero { grid-template-columns: 1fr; }
    .dash-hero-profile { justify-self: start; }
}

@media (max-width: 680px) {
    .dash-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dash-topbar { align-items: stretch; flex-direction: column; }
    .dash-topbar-actions .btn { flex: 1; text-align: center; }
}
