@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --ink: #1a2330;
    --muted: #5a6472;
    --line: #dce5dc;
    --paper: #ffffff;
    --soft: #f4f7f3;
    --green: #1a7a4a;
    --green-mid: #166040;
    --green-dark: #0e3d28;
    --blue: #1a5fa0;
    --amber: #e09c28;
    --amber-dark: #b87d1a;
    --red: #b54747;
    --shadow-sm: 0 2px 8px rgba(14, 61, 40, 0.08);
    --shadow: 0 12px 36px rgba(14, 61, 40, 0.13);
    --shadow-lg: 0 24px 60px rgba(14, 61, 40, 0.18);
    --radius: 10px;
    --radius-sm: 6px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    display: block;
    max-width: 100%;
}

p {
    margin: 0 0 1em;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.topbar .container,
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar .container {
    min-height: 44px;
}

.top-links,
.social-links,
.nav-actions,
.meta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.social-links a,
.top-links a {
    opacity: 0.88;
    font-weight: 500;
}

.social-links a:hover,
.top-links a:hover {
    opacity: 1;
    color: var(--amber);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(14, 61, 40, 0.09);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 14px 0;
    flex-shrink: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    font-weight: 900;
    font-size: 17px;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.brand-title {
    display: block;
    font-weight: 800;
    font-size: 15px;
    color: var(--green-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: white;
    color: var(--green-dark);
    font-size: 20px;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
    flex-shrink: 0;
}

.nav-toggle:hover {
    background: var(--soft);
    border-color: var(--green);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: inline-flex;
    align-items: center;
    min-height: 74px;
    padding: 0 13px;
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    gap: 5px;
    white-space: nowrap;
}

.nav-menu > li > a::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--green);
    position: absolute;
    bottom: 0;
    left: 13px;
    right: 13px;
    transform: scaleX(0);
    transition: transform var(--transition);
    border-radius: 2px;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.is-active::after {
    transform: scaleX(1);
}

.nav-menu > li > a:hover {
    color: var(--green);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 240px;
    padding: 8px 6px;
    background: white;
    border: 1px solid rgba(14, 61, 40, 0.09);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    list-style: none;
    z-index: 200;
}

.nav-menu li:hover > .dropdown,
.nav-menu li:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 9px 13px;
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}

.dropdown a:hover {
    background: var(--soft);
    color: var(--green-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 20px;
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    background: var(--green);
    color: white;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover {
    background: var(--green-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(14, 61, 40, 0.25);
}

.btn:active {
    transform: translateY(0);
}

.btn.secondary {
    background: var(--amber);
    color: #2a1c00;
    border-color: var(--amber);
}

.btn.secondary:hover {
    background: var(--amber-dark);
    border-color: var(--amber-dark);
    color: #2a1c00;
}

.btn.ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    color: white;
}

.btn.outline {
    background: white;
    border-color: var(--line);
    color: var(--green-dark);
}

.btn.outline:hover {
    border-color: var(--green);
    color: var(--green);
    background: white;
    box-shadow: 0 4px 14px rgba(14, 61, 40, 0.1);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
    position: relative;
    min-height: clamp(540px, 75vh, 800px);
    color: white;
    overflow: hidden;
    background: var(--green-dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    opacity: 0;
    transition: opacity 0.75s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(7, 30, 19, 0.90) 0%,
        rgba(7, 30, 19, 0.60) 50%,
        rgba(7, 30, 19, 0.15) 100%
    );
    z-index: 1;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-slide.is-active img {
    transform: scale(1.04);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 780px;
    padding: 0 0 90px;
}

.hero h1 {
    margin: 16px 0 20px;
    font-size: clamp(38px, 6.5vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: white;
}

.hero p {
    max-width: 640px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.55;
}

.hero-controls {
    position: absolute;
    z-index: 5;
    right: max(20px, calc((100vw - 1180px) / 2 + 20px));
    bottom: 36px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 44px;
    height: 5px;
    border: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background var(--transition), width var(--transition);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-dot.is-active {
    background: var(--amber);
    width: 60px;
}

/* ============================================================
   EYEBROW
   ============================================================ */
.eyebrow {
    display: inline-block;
    color: var(--amber);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    background: rgba(224, 156, 40, 0.12);
    border-radius: 30px;
    border: 1px solid rgba(224, 156, 40, 0.25);
}

/* ============================================================
   STAT ROW
   ============================================================ */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -52px;
    position: relative;
    z-index: 8;
}

.stat {
    padding: 24px;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid rgba(14, 61, 40, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}

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

.stat strong {
    display: block;
    color: var(--green);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat span {
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 88px 0;
}

.section.soft {
    background: var(--soft);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 40px;
}

.section-title {
    margin: 0;
    color: var(--green-dark);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.section-copy {
    max-width: 600px;
    color: var(--muted);
    margin: 12px 0 0;
    font-size: 16.5px;
    line-height: 1.65;
}

/* ============================================================
   GRID
   ============================================================ */
.grid {
    display: grid;
    gap: 24px;
}

.grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.grid.four {
    grid-template-columns: repeat(4, 1fr);
}

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

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: white;
    border: 1px solid rgba(14, 61, 40, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(14, 61, 40, 0.15);
}

.card-media {
    aspect-ratio: 16 / 10;
    background: #e2ece6;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-media img {
    transform: scale(1.05);
}

.card-body {
    padding: 22px 24px;
}

.card h3 {
    margin: 8px 0 10px;
    color: var(--green-dark);
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.card h3 a {
    transition: color var(--transition);
}

.card h3 a:hover {
    color: var(--green);
}

.card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.card-media a {
    display: block;
    height: 100%;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
    transition: color var(--transition), gap var(--transition);
}

.read-more::after {
    content: '→';
    transition: transform var(--transition);
}

.read-more:hover::after {
    transform: translateX(3px);
}

.read-more:hover {
    color: var(--green-dark);
}

/* ============================================================
   FEATURE BAND (Çalışma Alanları)
   ============================================================ */
.feature-band {
    background: linear-gradient(135deg, var(--green-dark) 0%, #183d28 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.feature-band::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.feature-band .section-title,
.feature-band .section-copy {
    color: rgba(255, 255, 255, 0.95);
}

.program-card {
    min-height: 220px;
    padding: 30px 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.program-card:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}

.program-card strong {
    display: block;
    margin-bottom: 14px;
    color: var(--amber);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.program-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, #0d3020 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--green), transparent);
}

.page-hero h1 {
    max-width: 860px;
    margin: 12px 0 0;
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: white;
}

.page-hero p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    max-width: 680px;
    line-height: 1.6;
}

/* ============================================================
   CONTENT LAYOUT (Detail pages)
   ============================================================ */
.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
}

.article {
    font-size: 17.5px;
    line-height: 1.75;
}

.article img.lead {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 28px;
}

.article h2,
.article h3 {
    color: var(--green-dark);
    margin-top: 1.5em;
    letter-spacing: -0.02em;
}

.sidebar-panel {
    position: sticky;
    top: 100px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-panel h3 {
    margin: 0 0 8px;
    color: var(--green-dark);
    font-size: 17px;
}

.sidebar-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.field {
    display: grid;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font: inherit;
    font-size: 15px;
    color: var(--ink);
    background: white;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26, 122, 74, 0.12);
}

input::placeholder,
textarea::placeholder {
    color: #aab5af;
}

textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

/* ============================================================
   ALERTS & EMPTY STATES
   ============================================================ */
.alert {
    margin-bottom: 22px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid #b0d9c2;
    background: #edf9f3;
    color: #0d4a28;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert::before {
    content: '✓';
    font-weight: 900;
    font-size: 16px;
    color: var(--green);
}

.alert.error {
    border-color: #e5b5b5;
    background: #fff0f0;
    color: #8b2f2f;
}

.alert.error::before {
    content: '✕';
    color: var(--red);
}

.empty {
    padding: 40px 28px;
    border: 1.5px dashed var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    background: var(--soft);
    text-align: center;
    font-size: 15px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #0a1f14;
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 0;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.15fr;
    gap: 36px;
}

.footer h3 {
    margin: 0 0 16px;
    color: white;
    font-size: 17px;
    letter-spacing: -0.02em;
}

.footer h4 {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0 0 12px;
}

.footer a {
    display: block;
    margin: 7px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    transition: color var(--transition);
}

.footer a:hover {
    color: var(--amber);
}

.footer .social-links {
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    margin: 0;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.footer .social-links a:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: #1a0f00;
}

/* Newsletter */
.newsletter {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.newsletter input {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: white;
    font-size: 14px;
}

.newsletter input:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(224, 156, 40, 0.15);
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.newsletter .btn {
    width: 100%;
    justify-content: center;
}

.footer-bottom {
    margin-top: 48px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   PARTNERS CARD
   ============================================================ */
.card.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav-actions {
        margin-left: auto;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        justify-content: flex-start;
        padding: 14px 16px 20px;
        background: white;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        z-index: 99;
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu > li > a {
        min-height: 46px;
        padding: 10px 4px;
    }

    .nav-menu > li > a::after {
        display: none;
    }

    /* Mobile dropdown — always visible when menu is open */
    .nav-menu.is-open .dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        border-left: 3px solid var(--line);
        border-radius: 0;
        padding: 4px 0 4px 16px;
        margin: 0 0 4px;
        background: transparent;
    }

    .nav-menu.is-open .dropdown a {
        color: var(--muted);
        font-size: 13.5px;
        padding: 7px 10px;
    }

    /* When nav is NOT open, dropdowns must stay hidden */
    .nav-menu:not(.is-open) .dropdown {
        display: none;
    }

    .grid.three,
    .grid.four,
    .stat-row,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-panel {
        position: static;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 720px) {
    .topbar .container {
        align-items: flex-start;
        flex-direction: column;
        padding: 10px 0;
        gap: 6px;
    }

    .brand {
        min-width: 0;
    }

    .nav-actions .btn:not(:last-child) {
        display: none;
    }

    .hero {
        min-height: 580px;
    }

    .hero-slide::before {
        background: rgba(7, 30, 19, 0.78);
    }

    .hero-content {
        padding: 0 0 70px;
    }

    .section {
        padding: 60px 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .grid.three,
    .grid.four,
    .grid.two,
    .stat-row,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .stat-row {
        margin-top: 28px;
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-controls {
        left: 20px;
        right: auto;
        bottom: 24px;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-hero {
        padding: 60px 0;
    }
}
