:root {
    --primary: #FE7743;
    --primary-dark: #e55a28;
    --primary-light: #ff9468;

    --navy: #273F4F;
    --navy-dark: #1a2a36;
    --navy-light: #345163;

    --secondary: #447D9B;
    --secondary-dark: #356378;
    --secondary-light: #5a95b5;

    --grey: #D7D7D7;
    --grey-dark: #b8b8b8;
    --grey-light: #e8e8e8;

    --bg: #ffffff;
    --bg-alt: #ffffff;
    --surface: #ffffff;
    --surface-elevated: rgba(255, 255, 255, 0.95);

    --panel: rgba(255, 255, 255, 0.92);
    --panel-glass: rgba(255, 255, 255, 0.75);
    --overlay-dark: rgba(39, 63, 79, 0.92);
    --overlay-light: rgba(39, 63, 79, 0.75);

    --border: rgba(39, 63, 79, 0.12);
    --border-2: rgba(39, 63, 79, 0.20);
    --border-accent: rgba(254, 119, 67, 0.25);

    --text: #273F4F;
    --text-soft: rgba(39, 63, 79, 0.85);
    --muted: rgba(39, 63, 79, 0.65);
    --muted-2: rgba(39, 63, 79, 0.45);

    --shadow-sm: 0 1px 3px rgba(39, 63, 79, 0.08);
    --shadow: 0 2px 8px rgba(39, 63, 79, 0.08);
    --shadow-lg: 0 4px 16px rgba(39, 63, 79, 0.12);
    --shadow-glow: 0 0 16px rgba(254, 119, 67, 0.15);

    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --container: 1200px;
    --gap: 20px;

    --font: "Tajawal", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
        "Noto Sans Arabic", "Cairo", sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--navy);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

.full-bleed {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    min-height: 72px;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    transition: var(--transition-fast);
}

.brand:hover {

}

.brand__name {
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--navy) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand__title {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    font-weight: 500;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-soft);
    padding: 8px 14px;
    border-radius: 10px;
    transition: var(--transition-fast);
    position: relative;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: var(--transition-fast);
}

.nav a:hover {
    color: var(--primary);
    background: rgba(254, 119, 67, 0.08);
}

.nav a:hover::before {
    width: 70%;
}

.nav a.active {
    color: var(--primary);
    background: rgba(254, 119, 67, 0.1);
    font-weight: 700;
}

.nav a.active::before {
    width: 70%;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid var(--border);
    color: var(--navy);
    background: var(--bg-alt);
    transition: var(--transition-fast);
    cursor: pointer;
    min-width: 44px;
    height: 44px;
}

.lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(254, 119, 67, 0.05);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    padding: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--secondary);
    background: rgba(68, 125, 155, 0.08);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--bg-alt);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.mobile-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-nav-toggle:hover {
    border-color: var(--primary);
    background: rgba(254, 119, 67, 0.05);
}

.mobile-nav-toggle:hover span {
    background: var(--primary);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 2px solid var(--border);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
        z-index: 99;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav a {
        padding: 14px 16px;
        border-radius: 8px;
        margin-bottom: 4px;
        font-size: 15px;
    }

    .nav a::before {
        display: none;
    }

    .nav a:hover {
        background: rgba(254, 119, 67, 0.1);
    }

    .nav a.active {
        color: var(--primary);
        background: rgba(254, 119, 67, 0.15);
        font-weight: 700;
        border-left: 3px solid var(--primary);
    }

    .mobile-nav-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .site-header__row {
        padding: 12px 0;
        min-height: 64px;
    }

    .brand__name {
        font-size: 16px;
    }

    .nav-right {
        gap: 8px;
    }

    .social-link {
        display: none;
    }

    .nav {
        top: 64px;
    }
}

.h1 {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    color: var(--navy);
}

.h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
    color: var(--navy);
}

.h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--navy);
}

@media (max-width: 768px) {
    .h1 {
        font-size: 40px;
    }

    .h2 {
        font-size: 32px;
    }

    .h3 {
        font-size: 24px;
    }
}

.p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.p-strong {
    color: var(--text);
    font-weight: 600;
}

.grid {
    display: grid;
    gap: var(--gap);
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.card {
    border: 2px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.card-accent {
    border-color: var(--border-accent);
    background: linear-gradient(135deg,
        rgba(254, 119, 67, 0.02) 0%,
        rgba(68, 125, 155, 0.02) 100%
    );
}

.card-disabled {
    cursor: not-allowed;
    opacity: 0.6;
    background: rgba(215, 215, 215, 0.15);
}

.card-disabled:hover {
    transform: none;
    border-color: var(--border);
    box-shadow: var(--shadow);
}

.card-glass {
    background: var(--panel-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.card-title {
    font-weight: 800;
    font-size: 18px;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.card-desc {
    margin-top: 10px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.muted-title {
    color: var(--muted-2);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    border: 2px solid var(--border);
    background: var(--bg-alt);
    color: var(--text-soft);
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    border: 2px solid var(--border);
    background: var(--surface);
    color: var(--text);
    transition: var(--transition-fast);
}

.chip:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(68, 125, 155, 0.05);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    user-select: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(254, 119, 67, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 3px 12px rgba(254, 119, 67, 0.25);
    transform: translateY(-1px);
}

.btn-outline {
    border-color: var(--border-2);
    color: var(--navy);
    background: var(--bg-alt);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(254, 119, 67, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(68, 125, 155, 0.2);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    box-shadow: 0 3px 12px rgba(68, 125, 155, 0.25);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
}

.section-block {
    margin-top: 48px;
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.section-title {
    margin: 0;
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    margin-top: 10px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
}

.hero {
    position: relative;
    padding: 100px 0 80px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,
        var(--navy) 0%,
        var(--navy-light) 50%,
        var(--secondary-dark) 100%
    );
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(39, 63, 79, 0.85) 0%,
        rgba(39, 63, 79, 0.75) 50%,
        rgba(68, 125, 155, 0.65) 100%
    );
}

.hero__wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero {
        padding: 80px 0 60px;
        min-height: 60vh;
    }

    .hero__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0 40px;
    }
}

.hero__content {

}

.hero__title {
    margin: 16px 0 0;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 48px;
    }
}

@media (max-width: 640px) {
    .hero__title {
        font-size: 36px;
    }
}

.hero__tagline {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.01em;
}

.hero__desc {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    max-width: 620px;
    line-height: 1.8;
}

.hero__actions {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--navy);

}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.hero .badge {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.hero__social {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero__social .chip {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.hero__social .chip:hover {
    border-color: var(--primary);
    background: rgba(254, 119, 67, 0.2);
    color: #fff;
}

.hero__side {
    display: flex;
    justify-content: flex-end;

}

@media (max-width: 1024px) {
    .hero__side {
        justify-content: center;
    }
}

.hero__portrait {
    width: min(420px, 100%);
    border-radius: 28px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.hero__portrait:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero__portrait img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero__portraitBody {
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
}

.hero__portraitName {
    color: var(--navy);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.01em;
}

.hero__portraitRole {
    margin-top: 4px;
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
}

.about-simple {
    text-align: center;
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 20px;
}

.about-simple__inner {

}

.about-simple__title {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-simple__text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-soft);
    max-width: 680px;
    margin: 32px auto 0;
}

.about-simple__actions {
    margin-top: 32px;
}

.list {
    display: grid;
    gap: 12px;
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 16px;
    border: 2px solid var(--border);
    background: var(--surface);
    transition: var(--transition);
}

.list-item:hover {
    border-color: var(--border-accent);
    background: rgba(254, 119, 67, 0.02);
    transform: translateX(2px);
}

.list-item__t {
    font-weight: 800;
    color: var(--navy);
    font-size: 15px;
}

.list-item__d {
    margin-top: 4px;
    font-size: 13px;
    color: var(--muted);
}

.list-item__arrow {
    color: var(--muted-2);
    font-size: 20px;
    transition: var(--transition-fast);
}

.list-item:hover .list-item__arrow {
    color: var(--primary);
    transform: translateX(2px);
}

[dir="rtl"] .list-item__arrow {
    transform: scaleX(-1);
}

[dir="rtl"] .list-item:hover .list-item__arrow {
    transform: scaleX(-1) translateX(2px);
}

[dir="rtl"] .back-btn__arrow {
    transform: scaleX(-1);
}

.cta {
    margin-top: 60px;
    margin-bottom: 40px;
    border: 3px solid var(--border-accent);
    background: linear-gradient(135deg,
        rgba(254, 119, 67, 0.05) 0%,
        rgba(68, 125, 155, 0.05) 100%
    );
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta__title {
    font-weight: 900;
    font-size: 28px;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.cta__desc {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta {
        padding: 32px 24px;
    }

    .cta__title {
        font-size: 24px;
    }

    .cta__inner {
        text-align: center;
        justify-content: center;
    }
}

.input,
.textarea {
    width: 100%;
    border-radius: 14px;
    border: 2px solid var(--border);
    background: var(--surface);
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: var(--transition-fast);
    font-family: var(--font);
}

.input::placeholder,
.textarea::placeholder {
    color: var(--muted-2);
}

.input:focus,
.textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(254, 119, 67, 0.1);
}

.textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.code {
    border: 2px solid var(--border);
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 20px;
    overflow-x: auto;
    box-shadow: var(--shadow);
}

.code pre {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--grey-light);
    white-space: pre;
    font-family: 'Courier New', monospace;
}

.footer {
    margin-top: 80px;
    border-top: 3px solid var(--border);
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(247, 248, 251, 0.8) 100%
    );
}

.footer__top {
    padding: 48px 0 32px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer__brand {
    max-width: 420px;
}

.footer__name {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--navy) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__tagline {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.footer__contact {
    margin-top: 24px;
}

.footer__label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__email {
    display: inline-block;
    margin-top: 8px;
    font-weight: 800;
    font-size: 16px;
    color: var(--navy);
    transition: var(--transition-fast);
}

.footer__email:hover {
    color: var(--primary);
}

.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    min-width: 520px;
}

@media (max-width: 1024px) {
    .footer__cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .footer__cols {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .footer__top {
        padding: 32px 0 24px;
        gap: 32px;
    }
}

.footer__h {
    font-size: 13px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-soft);
    transition: var(--transition-fast);
}

.footer__a:hover {
    color: var(--primary);
}

.footer__bottom {
    border-top: 2px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 13px;
    color: var(--muted);
}

.footer__mini {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted);
}

.footer__miniLink {
    color: var(--text);
    font-weight: 700;
    transition: var(--transition-fast);
}

.footer__miniLink:hover {
    color: var(--primary);
}

.footer__dot {
    color: var(--border-2);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

@media (max-width: 640px) {
    :root {
        --gap: 16px;
    }
}

@media print {
    .site-header,
    .footer,
    .hero__actions,
    .btn,
    .cta {
        display: none;
    }
}
