/* ==========================================================================
   Hero & Site Header — Modern landing
   ========================================================================== */

html { scroll-behavior: smooth; }

body.page-home {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

/* ---- Header ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: var(--navbar-height);
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px rgba(91, 33, 182, 0.06);
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.site-header--hero,
.site-header--scrolled {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px rgba(91, 33, 182, 0.06);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header--hero .site-header__brand,
.site-header--hero .site-header__link,
.site-header--hero .site-header__toggle span,
.site-header--scrolled .site-header__brand,
.site-header--scrolled .site-header__link,
.site-header--scrolled .site-header__toggle span {
    color: var(--color-text);
}

.site-header--hero .site-header__nav-wrap,
.site-header--scrolled .site-header__nav-wrap {
    background: rgba(245, 243, 255, 0.8);
    border-color: rgba(124, 58, 237, 0.12);
}

.site-header--hero .site-header__link.is-active,
.site-header--hero .site-header__link:hover,
.site-header--scrolled .site-header__link.is-active,
.site-header--scrolled .site-header__link:hover {
    color: var(--color-primary);
    background: rgba(124, 58, 237, 0.08);
}

.site-header--hero .site-header__cta,
.site-header--scrolled .site-header__cta {
    background: var(--color-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.site-header--hero .site-header__cta:hover,
.site-header--scrolled .site-header__cta:hover {
    background: var(--color-primary-hover);
}

.site-header--hero .site-header__lang,
.site-header--scrolled .site-header__lang {
    background: rgba(245, 243, 255, 0.85);
    border-color: rgba(124, 58, 237, 0.14);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header--hero .site-header__lang-link,
.site-header--scrolled .site-header__lang-link {
    color: var(--color-text);
    opacity: 0.72;
}

.site-header--hero .site-header__lang-link:hover,
.site-header--scrolled .site-header__lang-link:hover {
    opacity: 1;
    background: rgba(124, 58, 237, 0.06);
}

.site-header--hero .site-header__lang-link.is-active,
.site-header--scrolled .site-header__lang-link.is-active {
    opacity: 1;
    color: var(--color-primary);
    background: rgba(124, 58, 237, 0.12);
    box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.18);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: var(--container-max, 1520px);
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.01em;
    flex-shrink: 0;
    min-width: 0;
    transition: opacity 0.2s;
}

.site-header__brand:hover {
    opacity: 0.9;
}

.site-header__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: transparent;
    transition: background 0.3s, border-color 0.3s;
    overflow: visible;
    flex-shrink: 0;
}

.site-header__logo-img {
    width: auto;
    height: 36px;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.site-header__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    min-width: 0;
    line-height: 1.2;
    font-size: 15px;
}

.site-header__title-line {
    display: block;
    white-space: nowrap;
}

.site-header__nav-wrap {
    margin-left: auto;
    padding: 5px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-header__link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
    position: relative;
}

.site-header__link.is-active::after {
    display: none;
}

.site-header__cta {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.site-header__lang {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.site-header__lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 999px;
    text-decoration: none;
    color: inherit;
    line-height: 1;
    transition: background 0.2s, opacity 0.2s, color 0.2s, box-shadow 0.2s;
}

.site-header__lang-flag {
    display: block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.site-header--hero .site-header__lang-flag {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.site-header__lang-link:hover {
    opacity: 1;
}

.site-header__lang-link.is-active {
    opacity: 1;
}

.site-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.site-header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1800&q=80');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.06);
    animation: heroKenBurns 22s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
    from { transform: scale(1.06) translate(0, 0); }
    to   { transform: scale(1.12) translate(-1%, -1%); }
}

.hero__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 40%, rgba(124, 58, 237, 0.55) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 20%, rgba(167, 85, 247, 0.35) 0%, transparent 55%),
        linear-gradient(125deg, rgba(46, 16, 101, 0.92) 0%, rgba(76, 29, 149, 0.82) 42%, rgba(109, 40, 217, 0.65) 100%);
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero__orb--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: rgba(196, 181, 253, 0.25);
    animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--2 {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: 10%;
    background: rgba(20, 184, 166, 0.15);
    animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(20px, -15px); }
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: center;
    max-width: var(--container-max, 1520px);
    width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: calc(var(--navbar-height) + 56px) 32px 72px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 12px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25); }
    50%      { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.1); }
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 4.2vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero__title em {
    font-style: normal;
    background: linear-gradient(90deg, #c4b5fd, #f0abfc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.94);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.hero__text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin-bottom: 24px;
}

/* Nasıl çalışır adımları */
.hero__steps {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 520px;
}

.hero__step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.4;
}

.hero__step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: #5b21b6;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hero__stat--accent strong {
    color: #a7f3d0;
}

.hero__stat--accent {
    border-color: rgba(52, 211, 153, 0.35);
    background: rgba(52, 211, 153, 0.1);
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 88px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.hero__stat strong {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero__stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn--hero-primary {
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    background: #fff;
    color: #5b21b6;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn--hero-primary:hover {
    background: #f5f3ff;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.btn--hero-secondary {
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.btn--hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

/* ---- Hero visual card ---- */
.hero__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    width: 100%;
}

.hero__brand-card,
.hero__map-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    animation: cardReveal 0.8s ease-out both;
}

.hero__brand-card {
    padding: 16px 22px;
    overflow: hidden;
}

.hero__brand-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    margin: 0;
    padding: 0;
    min-width: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.hero__brand-logo-img {
    display: block;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    object-fit: contain;
}

.hero__brand-logo-text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    color: #fff;
    font-size: clamp(14px, 2.2vw, 20px);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Pin ikonu optik ağırlığı; yazıyı dikey ortala */
    transform: translateY(-1px);
}

.hero__map-card {
    padding: 22px 22px 26px;
    animation-delay: 0.08s;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero__map-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero__map-card-hint {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
}

.hero__map-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
}

.hero__map-card-dot--live {
    animation: liveBlink 1.8s ease-in-out infinite;
}

@keyframes liveBlink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

.hero-map {
    width: 100%;
    display: block;
}

.hero-map__country {
    fill: url(#heroMapFill);
    stroke: rgba(124, 58, 237, 0.2);
    stroke-width: 1.5;
    stroke-linejoin: round;
}

.hero-map__strait {
    stroke-dasharray: 4 3;
}

.hero-map__pin {
    animation: pinFloat 3s ease-in-out infinite;
    transform-origin: center bottom;
    transform-box: fill-box;
}

.hero-map-shell {
    position: relative;
    min-height: 280px;
}

.hero-map--turkiye {
    width: 100%;
    display: block;
    min-height: 300px;
}

.hero-map__hidden {
    display: none;
}

.hero-province path {
    fill: rgba(255, 255, 255, 0.72);
    stroke: rgba(255, 255, 255, 0.95);
    stroke-width: 0.6;
    transition: fill 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
    cursor: default;
}

.hero-province--has-data path {
    cursor: pointer;
}

.hero-province--tier-1.hero-province--has-data path { fill: rgba(255, 255, 255, 0.78); }
.hero-province--tier-2.hero-province--has-data path { fill: rgba(221, 214, 254, 0.92); }
.hero-province--tier-3.hero-province--has-data path { fill: rgba(196, 181, 253, 0.95); }
.hero-province--tier-4.hero-province--has-data path { fill: rgba(167, 139, 250, 0.98); }
.hero-province--tier-5.hero-province--has-data path { fill: rgba(139, 92, 246, 1); }

.hero-province--has-data:hover path,
.hero-province--has-data:focus-visible path {
    filter: brightness(1.08);
    stroke-width: 1.2;
    stroke: rgba(255, 255, 255, 0.98);
}

.hero-province:focus {
    outline: none;
}

.hero-map__fallback {
    padding: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.hero-map__marker {
    cursor: pointer;
    outline: none;
}

.hero-map__marker:focus-visible .hero-map__dot {
    stroke: #fde68a;
    stroke-width: 3;
}

.hero-map__dot {
    transition: transform 0.2s ease;
    transform-origin: center;
    transform-box: fill-box;
}

.hero-map__marker:hover .hero-map__dot,
.hero-map__marker:focus-visible .hero-map__dot {
    transform: scale(1.08);
}

.hero-map__count {
    font-family: var(--font-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 11px;
    font-weight: 800;
    fill: #4c1d95;
    pointer-events: none;
    user-select: none;
    paint-order: stroke fill;
    stroke: rgba(255, 255, 255, 0.92);
    stroke-width: 2.5px;
}

.hero-province--tier-4 .hero-map__count,
.hero-province--tier-5 .hero-map__count {
    fill: #fff;
    stroke: rgba(76, 29, 149, 0.35);
    stroke-width: 1.5px;
}

.hero-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-map-legend__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-map-legend__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
}

.hero-map-legend__dot--total { background: #a78bfa; }

.hero-map-tooltip {
    position: absolute;
    z-index: 5;
    min-width: 160px;
    max-width: 220px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
    pointer-events: none;
    transform: translate(-50%, calc(-100% - 14px));
}

.hero-map-tooltip strong {
    display: block;
    font-size: 13px;
    color: var(--color-text);
    margin-bottom: 4px;
}

.hero-map-tooltip span {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.hero-map__pulse {
    animation: pinPulse 2.5s ease-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes pinFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

@keyframes pinPulse {
    0%   { transform: scale(0.6); opacity: 0.8; }
    70%  { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1.4); opacity: 0; }
}

.hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: floatDrift 4s ease-in-out infinite;
}

.hero__float--safe {
    bottom: 24px;
    left: -16px;
    animation-delay: 0.5s;
}

.hero__float--alert {
    top: 48px;
    right: -12px;
    animation-delay: 1s;
}

@keyframes floatDrift {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.hero__float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}

.hero__float--safe .hero__float-icon {
    background: rgba(20, 184, 166, 0.15);
    color: #0d9488;
}

.hero__float--alert .hero__float-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}

.hero__float strong {
    display: block;
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.2;
}

.hero__float span {
    font-size: 11px;
    color: var(--color-text-muted);
}

/* Amaç kartı */
.hero__purpose-card {
    margin-top: 20px;
    padding: 20px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    max-width: 460px;
    width: 100%;
}

.hero__purpose-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.hero__purpose-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero__purpose-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.hero__purpose-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c4b5fd;
}

/* ---- About ---- */
.about {
    padding: 72px 32px 80px;
    background: linear-gradient(180deg, #fff 0%, #f5f3ff 100%);
}

.about__header {
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
}

.about__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.about__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.about__lead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.about__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max, 1520px);
    width: 100%;
    margin: 0 auto;
}

.about__card {
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    background: #fff;
    text-align: center;
    transition: box-shadow 0.25s, transform 0.25s;
}

.about__card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.about__card-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.about__card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 8px;
}

.about__card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ---- Harita altı istatistikler (modern) ---- */
.home-stats {
    padding: 72px 32px 80px;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124, 58, 237, 0.06), transparent),
        linear-gradient(180deg, #faf8ff 0%, #fff 50%, #f8f6ff 100%);
}

.home-stats__inner {
    max-width: var(--container-max, 1520px);
    margin: 0 auto;
}

.home-stats__header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
}

.home-stats__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #5b21b6;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 999px;
}

.home-stats__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: badgePulse 2s ease-in-out infinite;
}

.home-stats__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.home-stats__desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.home-stats__error {
    text-align: center;
    padding: 12px 16px;
    margin-bottom: 24px;
    border-radius: 12px;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 14px;
}

.home-stats__metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.stat-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(91, 33, 182, 0.08);
}

.stat-card--primary {
    border-color: rgba(124, 58, 237, 0.25);
    background: linear-gradient(145deg, rgba(250, 245, 255, 0.95), #fff);
}

.stat-card--safe { border-color: rgba(0, 111, 105, 0.28); }
.stat-card--unsafe { border-color: rgba(198, 40, 40, 0.28); }

.stat-card__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    line-height: 1;
}

.stat-card__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.stat-card--safe .stat-card__icon,
.stat-card--unsafe .stat-card__icon,
.stat-card--primary .stat-card__icon,
.stat-card--cities .stat-card__icon {
    width: 48px;
    height: 48px;
}

.stat-card--safe .stat-card__icon img,
.stat-card--unsafe .stat-card__icon img,
.stat-card--primary .stat-card__icon img,
.stat-card--cities .stat-card__icon svg {
    width: 44px;
    height: 44px;
}

.stat-card--cities {
    border-color: rgba(114, 60, 162, 0.28);
}

.stat-card__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.stat-card__value {
    display: block;
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--color-text);
}

.stat-card__hint {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: var(--color-text-muted);
}

.home-stats__panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.panel-card {
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #fff;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.panel-card--wide {
    margin-bottom: 24px;
}

.panel-card__head {
    padding: 22px 24px 0;
}

.panel-card__title {
    font-size: 16px;
    font-weight: 650;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.panel-card__sub {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.panel-card__body {
    padding: 20px 24px 24px;
}

.panel-card__body--flush {
    padding: 0 0 8px;
}

.panel-card__empty {
    font-size: 14px;
    color: var(--color-text-muted);
    text-align: center;
    padding: 24px;
}

.panel-bar + .panel-bar { margin-top: 14px; }

.panel-bar__top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.panel-bar__name { font-size: 13px; font-weight: 500; }
.panel-bar__count { font-size: 13px; font-weight: 700; color: var(--color-primary); }

.panel-bar__track {
    height: 8px;
    border-radius: 999px;
    background: #f1f5f9;
    overflow: hidden;
}

.panel-bar__fill {
    height: 100%;
    border-radius: inherit;
    background: var(--bar-color, #7c3aed);
}

.panel-rank {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.panel-rank:last-child { border-bottom: none; }

.panel-rank__num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f5f3ff;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
}

.panel-rank__name { font-weight: 500; }
.panel-rank__count { font-size: 13px; color: var(--color-text-muted); }

/* Dağılım paneli — donut + detay */
.panel-card--distribution {
    display: flex;
    flex-direction: column;
}

.panel-card--distribution .panel-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 16px;
}

.panel-distribution__visual {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    padding-bottom: 20px;
}

.ratio-donut {
    --safe-ratio: 50;
    width: 118px;
    height: 118px;
    flex-shrink: 0;
    border-radius: 50%;
    background: conic-gradient(
        #22c55e 0 calc(var(--safe-ratio) * 1%),
        #ef4444 calc(var(--safe-ratio) * 1%) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.ratio-donut__hole {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.ratio-donut__value {
    font-size: 22px;
    font-weight: 750;
    letter-spacing: -0.03em;
    color: var(--color-text);
    line-height: 1.1;
}

.ratio-donut__label {
    margin-top: 2px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 64px;
    line-height: 1.2;
}

.panel-distribution__legend {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.panel-distribution__legend-item {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: #fafafa;
}

.panel-distribution__legend-item--safe {
    background: rgba(34, 197, 94, 0.06);
    border-color: rgba(34, 197, 94, 0.16);
}

.panel-distribution__legend-item--unsafe {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.14);
}

.panel-distribution__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.panel-distribution__legend-item--safe .panel-distribution__dot {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.panel-distribution__legend-item--unsafe .panel-distribution__dot {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

.panel-distribution__legend-name {
    display: block;
    font-size: 13px;
    font-weight: 650;
    color: var(--color-text);
}

.panel-distribution__legend-meta {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: var(--color-text-muted);
}

.panel-distribution__legend-value {
    font-size: 18px;
    font-weight: 750;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.panel-distribution__compose {
    padding: 18px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.compose-bar {
    display: flex;
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: #f1f5f9;
}

.compose-bar__segment {
    height: 100%;
    min-width: 4px;
    transition: width 0.6s ease;
}

.compose-bar__segment--safe {
    background: linear-gradient(90deg, #16a34a, #22c55e);
}

.compose-bar__segment--unsafe {
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

.compose-bar__labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
}

.compose-bar__label--safe { color: #15803d; }
.compose-bar__label--unsafe { color: #b91c1c; }

.panel-distribution__details {
    padding-top: 18px;
    flex: 1;
}

.panel-bar--compact + .panel-bar--compact {
    margin-top: 12px;
}

.panel-distribution__footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
}

.panel-distribution__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.panel-distribution__stat span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
}

.panel-distribution__stat strong {
    font-size: 20px;
    font-weight: 750;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.panel-distribution__stat--accent {
    background: rgba(124, 58, 237, 0.06);
    border-color: rgba(124, 58, 237, 0.14);
}

.panel-distribution__stat--accent strong {
    color: var(--color-primary);
}

.stats-table-wrap { overflow-x: auto; }

.stats-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.stats-table th {
    padding: 12px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    background: #fafafa;
    border-bottom: 1px solid var(--color-border);
}

.stats-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}

.stats-table tbody tr:hover { background: #fafafa; }

.stats-table__desc {
    max-width: 320px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stats-table__date {
    font-size: 13px;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.stats-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

.stats-badge--safe { background: #dcfce7; color: #166534; }
.stats-badge--unsafe { background: #fee2e2; color: #991b1b; }
.stats-badge--caution { background: #fef9c3; color: #854d0e; }

.home-stats__footer {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

/* ---- İletişim ---- */
.contact-section {
    padding: 0 32px 80px;
    background: linear-gradient(180deg, #f8f6ff 0%, #fff 100%);
}

.contact-section__inner {
    max-width: var(--container-max, 1520px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.contact-section__content {
    padding: 36px 40px;
    border-radius: 24px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    background: linear-gradient(145deg, #faf5ff 0%, #fff 60%);
    box-shadow: 0 12px 40px rgba(91, 33, 182, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.contact-section__badge {
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5b21b6;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 999px;
}

.contact-section__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.contact-section__desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.contact-section__list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-section__list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(124, 58, 237, 0.08);
}

.contact-section__list li strong {
    display: block;
    margin-bottom: 2px;
}

.contact-section__list li span:last-child {
    color: var(--color-text-muted);
    font-size: 13px;
}

.contact-section__list-icon { font-size: 20px; line-height: 1; }

.contact-section__note {
    font-size: 13px;
    color: var(--color-text-muted);
}

.contact-section__note code {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    background: #f1f5f9;
}

.contact-section__card {
    padding: 36px;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    background: #fff;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
}

.contact-section__card-title {
    font-size: 17px;
    font-weight: 650;
    margin-bottom: 12px;
}

.contact-section__card-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.contact-section__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.contact-section__link:hover { text-decoration: underline; }

.contact-section__aside {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(124, 58, 237, 0.12);
}

.contact-section__aside-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.contact-section__form-card {
    padding: 36px 40px;
    border-radius: 24px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    background: #fff;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.contact-section__form-title {
    font-size: 20px;
    font-weight: 650;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.contact-section__form-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form .form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: #64748b;
}

.contact-form .form-control {
    width: 100%;
    padding: 13px 16px;
    font-size: 15px;
    line-height: 1.45;
    border: 1.5px solid rgba(124, 58, 237, 0.14);
    border-radius: 14px;
    background: linear-gradient(180deg, #fdfcff 0%, #f8f6ff 100%);
    color: var(--color-text);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-form .form-control::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.contact-form .form-control:hover {
    border-color: rgba(124, 58, 237, 0.28);
    background: #fff;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
    box-shadow:
        0 0 0 4px rgba(124, 58, 237, 0.14),
        0 4px 14px rgba(91, 33, 182, 0.08);
}

.contact-form select.form-control {
    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='%237c3aed' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 132px;
}

.contact-form .form-hint {
    margin-top: 6px;
    font-size: 12px;
    color: var(--color-text-muted);
    text-align: right;
}

.contact-form__status {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-form__status--success {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.contact-form__status--error {
    background: rgba(239, 68, 68, 0.08);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.18);
}

.contact-form__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: auto;
    padding-top: 8px;
}

.contact-form__actions .btn--hero-primary {
    min-width: 160px;
    padding: 14px 28px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.28);
}

.contact-form__actions .btn--hero-primary:hover {
    box-shadow: 0 10px 28px rgba(124, 58, 237, 0.34);
    transform: translateY(-1px);
}

.contact-form__privacy {
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin: 0;
}

.contact-section__btn {
    margin-bottom: 0;
}

/* ---- Purpose steps (hero altı, 3 adım) ---- */
.purpose-steps {
    padding: 28px 32px 32px;
    background: linear-gradient(180deg, #f5f3ff 0%, #faf8ff 40%, #fff 100%);
}

.purpose-steps__inner {
    max-width: var(--container-max, 1520px);
    margin: 0 auto;
    padding: 28px 28px 32px;
    border-radius: 24px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.purpose-steps__head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 22px;
}

.purpose-steps__badge {
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5b21b6;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 999px;
}

.purpose-steps__title {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.purpose-steps__desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-text-muted);
    margin: 0;
}

.purpose-steps__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
}

.purpose-steps__cards::before {
    display: none;
}

.hero + .purpose-steps {
    margin-top: -16px;
}

.purpose-steps + .map-section {
    padding-top: 28px;
}

/* ---- Purpose hero (hakkımızda) ---- */
.purpose-hero {
    padding: 48px 32px 56px;
    background: linear-gradient(180deg, #fff 0%, #faf8ff 50%, #f5f3ff 100%);
}

.purpose-hero__inner {
    max-width: var(--container-max, 1520px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.purpose-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

.purpose-hero__intro {
    position: relative;
    padding: 36px 36px 32px;
    border-radius: 24px;
    border: 1px solid rgba(124, 58, 237, 0.12);
    background:
        linear-gradient(145deg, rgba(250, 245, 255, 0.95) 0%, #fff 55%),
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(167, 139, 250, 0.12), transparent 55%);
    box-shadow:
        0 12px 40px rgba(91, 33, 182, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.purpose-hero__intro-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #7c3aed, #a855f7 45%, rgba(168, 85, 247, 0.2));
    border-radius: 24px 0 0 24px;
}

.purpose-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5b21b6;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.14);
    border-radius: 999px;
}

.purpose-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 650;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #1e1b4b;
    max-width: 22ch;
}

.purpose-hero__title em {
    display: block;
    margin-top: 0.15em;
    font-style: normal;
    color: var(--color-primary);
    background: linear-gradient(120deg, #6d28d9, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.purpose-hero__prose {
    margin-bottom: 26px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.purpose-hero__lead {
    font-size: 15px;
    line-height: 1.78;
    color: #475569;
    margin: 0;
    max-width: none;
    text-wrap: pretty;
}

.purpose-hero__cta {
    display: inline-flex;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.22);
}

.purpose-hero__why {
    padding: 28px 28px 26px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: #fff;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
}

.purpose-hero__why-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    color: #0f172a;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.purpose-hero__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.purpose-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 16px 16px 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    border: 1px solid rgba(148, 163, 184, 0.16);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.purpose-feature:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 10px 28px rgba(91, 33, 182, 0.08);
}

.purpose-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    font-size: 18px;
    line-height: 1;
}

.purpose-feature__icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

.purpose-feature--experiences .purpose-feature__icon {
    color: #006f69;
    background: rgba(0, 111, 105, 0.12);
    border: 1px solid rgba(0, 111, 105, 0.18);
}

.purpose-feature--solutions .purpose-feature__icon {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.16);
}

.purpose-feature--share .purpose-feature__icon {
    color: #b45309;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.22);
}

.purpose-feature__body {
    min-width: 0;
    padding-top: 2px;
}

.purpose-feature__body strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: -0.01em;
    color: #0f172a;
    line-height: 1.35;
}

.purpose-feature__body span {
    display: block;
    font-size: 13px;
    line-height: 1.62;
    color: #64748b;
}

.map-section + .purpose-hero {
    padding-top: 40px;
}

.purpose-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px 18px 16px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: #fff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.purpose-card:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, 0.22);
    box-shadow: 0 12px 32px rgba(91, 33, 182, 0.1);
}

.purpose-card__step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.purpose-card__content {
    min-width: 0;
    flex: 1;
    padding-top: 2px;
}

.purpose-card__title {
    font-size: 16px;
    font-weight: 650;
    margin: 0 0 6px;
    text-align: left;
    letter-spacing: -0.01em;
    color: #0f172a;
}

.purpose-card__text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
    text-align: left;
}

/* ---- Neden var? (adımlar altı, 2 kolon) ---- */
.why-exists {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.why-exists__head {
    max-width: 720px;
    margin: 0 auto 22px;
    text-align: center;
}

.why-exists__title {
    margin: 0 0 10px;
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    color: #1e1b4b;
}

.why-exists__intro {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
}

.why-exists__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.why-exists__col {
    padding: 22px 20px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: #fff;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
}

.why-exists__col--positive {
    border-color: rgba(0, 111, 105, 0.22);
    background: linear-gradient(160deg, rgba(240, 253, 250, 0.7) 0%, #fff 55%);
}

.why-exists__col--negative {
    border-color: rgba(198, 40, 40, 0.2);
    background: linear-gradient(160deg, rgba(254, 242, 242, 0.65) 0%, #fff 55%);
}

.why-exists__col-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.why-exists__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
}

.why-exists__col--positive .why-exists__icon {
    color: #006f69;
    background: rgba(0, 111, 105, 0.12);
    border: 1px solid rgba(0, 111, 105, 0.16);
}

.why-exists__col--negative .why-exists__icon {
    color: #c62828;
    background: rgba(198, 40, 40, 0.1);
    border: 1px solid rgba(198, 40, 40, 0.16);
}

.why-exists__col-title {
    margin: 0;
    padding-top: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.35;
    color: #0f172a;
}

.why-exists__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-exists__list li {
    position: relative;
    padding-left: 18px;
    font-size: 13.5px;
    line-height: 1.65;
    color: #475569;
}

.why-exists__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.why-exists__col--positive .why-exists__list li::before {
    background: #006f69;
}

.why-exists__col--negative .why-exists__list li::before {
    background: #c62828;
}

@media (max-width: 900px) {
    .why-exists__grid {
        grid-template-columns: 1fr;
    }
}

.purpose-hero__disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-left: 3px solid var(--color-primary);
    margin: 0;
    text-align: center;
}

/* ---- Son paylaşımlar kartları ---- */
.activity-cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.activity-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    background: #fafafa;
}

.activity-card__badge {
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

.activity-card__badge--safe { background: #dcfce7; color: #166534; }
.activity-card__badge--unsafe { background: #fee2e2; color: #991b1b; }
.activity-card__badge--caution { background: #fef9c3; color: #854d0e; }

.activity-card__title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 2px;
}

.activity-card__meta {
    font-size: 12px;
    color: var(--color-text-muted);
}

.home-stats__note {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0 0 20px;
}

/* ---- Anasayfa logo / partner şeridi ---- */
.home-strip {
    width: 100%;
    padding: 36px 24px 48px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.home-strip__inner {
    max-width: var(--container-max, 1520px);
    width: 100%;
    margin: 0 auto;
}

.home-strip__eyebrow {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
    text-align: center;
}

.home-strip__panel {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 18px 40px rgba(15, 23, 42, 0.05);
    padding: 8px;
}

.home-strip__grid {
    display: grid;
    grid-template-columns: repeat(var(--home-strip-count, 5), minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}

.home-strip__item {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 156px;
    padding: 24px 14px;
    position: relative;
}

.home-strip__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18%;
    right: 0;
    width: 1px;
    height: 64%;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(148, 163, 184, 0.45),
        transparent
    );
}

.home-strip__img {
    display: block;
    width: auto;
    max-width: 96%;
    height: auto;
    max-height: 108px;
    object-fit: contain;
    object-position: center;
    filter: none;
    opacity: 1;
    transition: transform 0.25s ease;
}

@media (hover: hover) {
    .home-strip__item:hover .home-strip__img {
        transform: scale(1.04);
    }
}

@media (max-width: 900px) {
    .home-strip {
        padding: 28px 16px 36px;
    }

    .home-strip__grid {
        grid-template-columns: repeat(min(var(--home-strip-count, 5), 3), minmax(0, 1fr));
    }

    .home-strip__item:nth-child(3n)::after {
        display: none;
    }

    .home-strip__item {
        min-height: 128px;
        padding: 18px 12px;
    }

    .home-strip__img {
        max-height: 82px;
    }
}

@media (max-width: 560px) {
    .home-strip__panel {
        border-radius: 16px;
        padding: 6px;
    }

    .home-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-strip__item:nth-child(2n)::after {
        display: none;
    }

    .home-strip__item:nth-child(3n)::after {
        display: block;
    }

    .home-strip__item {
        min-height: 112px;
    }

    .home-strip__img {
        max-height: 70px;
    }
}

/* ---- Proje Künyesi (hakkımızda altı, full width / col-12) ---- */
.project-credits {
    display: block;
    width: 100%;
    max-width: none;
    padding: 0 32px 40px;
    background: linear-gradient(180deg, #f5f3ff 0%, #faf8ff 45%, #fff 100%);
    box-sizing: border-box;
}

.purpose-hero + .project-credits {
    margin-top: -8px;
    padding-top: 0;
}

.project-credits__inner {
    display: block;
    width: 100%;
    max-width: var(--container-max, 1520px);
    margin: 0 auto;
    box-sizing: border-box;
}

.project-credits__card {
    display: block;
    position: relative;
    width: 100%;
    max-width: none;
    padding: 32px 36px 34px;
    border-radius: 24px;
    border: 1px solid rgba(124, 58, 237, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, #faf7ff 100%);
    box-shadow:
        0 16px 48px rgba(76, 29, 149, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    box-sizing: border-box;
}

.project-credits__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #7c3aed, #a855f7 50%, rgba(168, 85, 247, 0.35));
}

.project-credits__head {
    margin-bottom: 18px;
    padding-left: 8px;
    width: 100%;
}

.project-credits__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5b21b6;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.14);
    border-radius: 999px;
}

.project-credits__title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    color: #1e1b4b;
    line-height: 1.25;
}

.project-credits__body {
    padding-left: 8px;
    width: 100%;
    max-width: none;
}

.project-credits__body p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.78;
    color: #475569;
    text-wrap: pretty;
}

.project-credits__body p:last-child {
    margin-bottom: 0;
}

.project-credits__body a {
    color: #6d28d9;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word;
}

.project-credits__body a:hover {
    color: #5b21b6;
}

@media (max-width: 768px) {
    .project-credits {
        padding: 0 16px 28px;
    }

    .project-credits__card {
        padding: 24px 20px 24px 22px;
        border-radius: 18px;
    }

    .project-credits__body p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ---- Footer ---- */
.site-footer {
    position: relative;
    padding: 0;
    background: #0f0a1f;
    color: rgba(255, 255, 255, 0.72);
    overflow: hidden;
}

.site-footer__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 100%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.6), transparent);
}

.site-footer__glow::after {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 160px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.site-footer__inner {
    position: relative;
    max-width: var(--container-max, 1520px);
    width: 100%;
    margin: 0 auto;
    padding: 56px 32px 32px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px 32px;
    margin-bottom: 40px;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 16px;
}

.site-footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

.site-footer__logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.site-footer__brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-footer__brand-text strong {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.site-footer__brand-text small {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__tagline {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    max-width: 320px;
}

.site-footer__heading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__nav a,
.site-footer__list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.site-footer__nav a:hover,
.site-footer__list a:hover {
    color: #fff;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer__cta-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.site-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.site-footer__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45);
    color: #fff;
}

.site-footer__bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px 24px;
}

.site-footer__copy-block {
    justify-self: start;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 420px;
}

.site-footer__copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.site-footer__license {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.4;
}

.site-footer__credit {
    justify-self: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__credit:hover {
    color: #c4b5fd;
}

.site-footer__meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    max-width: 420px;
    text-align: right;
    justify-self: end;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__visual {
        order: -1;
        padding: 8px 0 16px;
        gap: 12px;
    }

    .hero__brand-card {
        padding: 12px 16px;
    }

    .hero__brand-logo {
        gap: 10px;
    }

    .hero__brand-logo-img {
        width: 48px;
        height: 48px;
    }

    .hero__brand-logo-text {
        font-size: clamp(12px, 3.6vw, 15px);
        transform: none;
    }

    .hero__brand-card,
    .hero__map-card {
        max-width: 520px;
        margin: 0 auto;
    }

    .hero__map-card {
        padding: 14px 14px 12px;
    }

    .hero__map-card-header {
        margin-bottom: 4px;
    }

    .hero__map-card-hint {
        margin-top: 4px;
    }

    .hero-map-shell {
        min-height: 0;
    }

    .hero-map--turkiye {
        min-height: 0;
        height: auto;
        max-height: 220px;
    }

    .hero__float--safe { left: 8px; }
    .hero__float--alert { right: 8px; }

    .purpose-hero__grid {
        grid-template-columns: 1fr;
    }

    .purpose-steps__cards::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .site-header__nav-wrap,
    .site-header__cta {
        display: none;
    }

    .site-header__inner {
        gap: 10px;
    }

    .site-header__brand {
        flex: 1 1 auto;
        min-width: 0;
        gap: 10px;
    }

    .site-header__title {
        gap: 1px;
        font-size: 13px;
        line-height: 1.2;
        max-width: none;
        width: 100%;
    }

    .site-header__title-line {
        display: block;
        white-space: nowrap;
    }

    .site-header__lang {
        margin-left: auto;
        margin-right: 0;
        flex-shrink: 0;
    }

    .site-header__nav-wrap.is-open {
        display: block;
        position: absolute;
        top: calc(var(--navbar-height) + 8px);
        left: 16px;
        right: 16px;
        padding: 12px;
        background: #fff;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--color-border);
        backdrop-filter: none;
    }

    .site-header--hero .site-header__nav-wrap.is-open {
        background: rgba(255, 255, 255, 0.98);
    }

    .site-header__nav.is-open {
        flex-direction: column;
        gap: 4px;
    }

    .site-header__nav.is-open .site-header__link {
        color: var(--color-text);
        padding: 12px 16px;
        width: 100%;
        text-align: left;
    }

    .site-header__nav.is-open .site-header__link.is-active,
    .site-header__nav.is-open .site-header__link:hover {
        color: var(--color-primary);
        background: rgba(124, 58, 237, 0.08);
    }

    .site-header__toggle {
        display: flex;
        margin-left: 0;
        flex-shrink: 0;
    }

    .hero__content {
        text-align: center;
    }

    .hero__text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__stats,
    .hero__actions,
    .hero__steps {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__purpose-card {
        margin-left: auto;
        margin-right: auto;
    }

    .about__inner {
        grid-template-columns: 1fr;
    }

    .home-stats__metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-stats__panels {
        grid-template-columns: 1fr;
    }

    .panel-distribution__visual {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .panel-distribution__legend {
        width: 100%;
    }

    .panel-distribution__legend-item {
        grid-template-columns: 10px 1fr auto;
        text-align: left;
    }

    .contact-section__inner {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .site-header__logo-wrap {
        width: 46px;
        height: 46px;
    }

    .site-header__logo-img {
        height: 30px;
        max-width: 150px;
    }

    .site-header__title {
        font-size: 12.5px;
    }

    .site-header__inner {
        padding: 0 16px;
        gap: 8px;
    }

    .hero__inner {
        padding: calc(var(--navbar-height) + 32px) 20px 56px;
    }

    .hero__map-card {
        padding: 12px 12px 10px;
    }

    .hero-map--turkiye {
        max-height: 190px;
    }

    .hero__stat {
        min-width: calc(33% - 8px);
        padding: 12px 10px;
    }

    .hero__stat strong {
        font-size: 18px;
    }

    .hero__float {
        display: none;
    }

    .home-stats {
        padding: 48px 20px 64px;
    }

    .home-stats__metrics {
        grid-template-columns: 1fr;
    }

    .purpose-steps__cards {
        grid-template-columns: 1fr;
    }

    .purpose-steps {
        padding: 20px 16px 24px;
    }

    .purpose-steps__inner {
        padding: 22px 18px 24px;
    }

    .hero + .purpose-steps {
        margin-top: -8px;
    }

    .purpose-hero {
        padding: 36px 20px 48px;
    }

    .purpose-hero__intro {
        padding: 28px 24px 26px 28px;
    }

    .purpose-hero__title {
        max-width: none;
    }

    .purpose-hero__prose {
        padding: 14px 16px;
    }

    .purpose-hero__intro,
    .purpose-hero__why {
        padding: 24px;
    }

    .purpose-hero__disclaimer {
        text-align: left;
    }

    .activity-cards {
        grid-template-columns: 1fr;
    }

    .map-section--lead {
        padding-top: calc(var(--navbar-height, 64px) + 20px);
    }

    .contact-section__content,
    .contact-section__form-card {
        padding: 24px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .site-footer__inner {
        padding: 48px 20px 28px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr;
        justify-items: start;
        text-align: left;
    }

    .site-footer__copy,
    .site-footer__copy-block,
    .site-footer__credit,
    .site-footer__meta {
        justify-self: start;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__bg,
    .hero__orb,
    .hero-map__pin,
    .hero-map__pulse,
    .hero__float,
    .hero__badge-dot,
    .hero__map-card-dot--live {
        animation: none;
    }
}
