/* 
 * Latypov Foundation - Premium Design System
 * Dark Mode First | Futuristic with Soul
 */

/* ===== CSS VARIABLES ===== */
:root {
    /* Core Colors */
    --bg-primary: #07070f;
    --bg-secondary: #0d0d1a;
    --bg-tertiary: #141428;
    --bg-card: rgba(20, 20, 40, 0.6);

    /* Accent Colors */
    --color-primary: #4f8cff;
    --color-primary-light: #6ea3ff;
    --color-secondary: #f0b866;
    --color-tertiary: #64d8e0;
    --color-purple: #7c3aed;
    --color-pink: #ec4899;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --text-muted: #6b6b80;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #4f8cff 0%, #7c3aed 50%, #f0b866 100%);
    --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(79, 140, 255, 0.15) 0%, transparent 70%);

    /* Effects */
    --glass-bg: rgba(15, 15, 30, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glow-primary: 0 0 40px rgba(79, 140, 255, 0.4);
    --glow-secondary: 0 0 40px rgba(240, 184, 102, 0.3);
    --glow-purple: 0 0 60px rgba(124, 58, 237, 0.4);

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1280px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul,
ol {
    list-style: none;
}

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

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-glow {
    text-shadow: 0 0 40px rgba(79, 140, 255, 0.5);
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header p {
    font-size: 1.1rem;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-primary);
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(79, 140, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(240, 184, 102, 0.05) 0%, transparent 50%);
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-5%, -5%) scale(1.1);
        opacity: 0.8;
    }
}

/* Floating particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 40%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 50%;
    top: 60%;
    animation-delay: 1s;
    animation-duration: 18s;
}

.particle:nth-child(5) {
    left: 70%;
    top: 30%;
    animation-delay: 3s;
    animation-duration: 24s;
}

.particle:nth-child(6) {
    left: 80%;
    top: 70%;
    animation-delay: 5s;
    animation-duration: 21s;
}

.particle:nth-child(7) {
    left: 90%;
    top: 50%;
    animation-delay: 2.5s;
    animation-duration: 19s;
}

.particle:nth-child(8) {
    left: 40%;
    top: 10%;
    animation-delay: 1.5s;
    animation-duration: 23s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }

    25% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-50px) translateX(-30px);
        opacity: 0.5;
    }

    75% {
        transform: translateY(-150px) translateX(10px);
        opacity: 0.6;
    }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 12px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(79, 140, 255, 0.3));
    transition: var(--transition-normal);
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(79, 140, 255, 0.5));
    transform: scale(1.05);
}

.logo-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-hero);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--text-primary);
}

.nav-list a:hover::before,
.nav-list a.active::before {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-active {
    color: var(--color-primary);
}

.lang-switcher a:hover {
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-hero);
    color: white;
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(79, 140, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background: rgba(79, 140, 255, 0.1);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.1rem;
}

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-hero);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 140, 255, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(79, 140, 255, 0.1);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-body {
    padding: 40px;
}

/* Direction Cards */
.direction-card {
    text-align: center;
    padding: 48px 32px;
}

.direction-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.15), rgba(124, 58, 237, 0.15));
    border: 1px solid var(--glass-border);
    transition: var(--transition-normal);
    padding: 14px;
}

.direction-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.direction-card:hover .direction-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-primary);
}

.direction-card h3 {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.direction-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: var(--gradient-glow);
    animation: heroGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-quote {
    max-width: 800px;
    margin: 48px auto;
    padding: 40px 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
}

.hero-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 1;
}

.quote-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.quote-author {
    font-size: 1rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    background: var(--bg-secondary);
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0.5;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.mission-image {
    position: relative;
}

.mission-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(79, 140, 255, 0.15);
}

.mission-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.mission-image-wrapper:hover img {
    transform: scale(1.05);
}

.mission-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg-secondary), transparent);
}

/* Image decorations */
.mission-image::before,
.mission-image::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    opacity: 0.3;
}

.mission-image::before {
    top: -20px;
    left: -20px;
    border-right: none;
    border-bottom: none;
}

.mission-image::after {
    bottom: -20px;
    right: -20px;
    border-left: none;
    border-top: none;
}

.mission-content {
    position: relative;
    z-index: 1;
}

.mission-quote {
    font-family: Georgia, serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-primary);
    border-left: 4px solid var(--color-primary);
    padding-left: 24px;
    margin: 32px 0;
}

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

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

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

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

@media (max-width: 992px) {

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

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ===== FOUNDER PAGE ===== */
.founder-hero {
    padding-top: 160px;
}

.founder-portrait {
    max-width: 350px;
    margin: 0 auto 40px;
    position: relative;
}

.founder-portrait img {
    width: 100%;
    height: auto;
    border-radius: 50% 50% 30% 30%;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(79, 140, 255, 0.2);
    border: 3px solid var(--glass-border);
}

.founder-dates {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.founder-title {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
    max-width: 700px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-purple), var(--color-secondary));
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--color-primary);
}

.timeline-year {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.timeline-content {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Person Cards */
.person-card {
    overflow: hidden;
    padding: 0;
}

.person-image {
    height: 0;
    padding-bottom: 120%; /* Aspect ratio 5:6 for portrait photos */
    overflow: hidden;
    position: relative;
}

.person-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Align top of image to show heads */
    transition: var(--transition-slow);
}

.person-card:hover .person-image img {
    transform: scale(1.1);
}

.person-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.person-info {
    padding: 28px;
}

.person-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.person-info h3 {
    margin-bottom: 12px;
}

.person-info p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== CONSTRUCTION PAGE ===== */
.construction-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.construction-content {
    text-align: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.construction-content .grid-3 {
    max-width: 100%;
}

.construction-content .direction-card {
    min-height: 280px;
}

.construction-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.construction-icon svg {
    width: 80px;
    height: 80px;
    color: var(--color-primary);
}

/* Orbital rings */
.orbit {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: orbit 8s linear infinite;
}

.orbit-1 {
    width: 100%;
    height: 100%;
    border-top-color: var(--color-primary);
    border-left-color: var(--color-primary);
}

.orbit-2 {
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    border-top-color: var(--color-purple);
    border-right-color: var(--color-purple);
    animation-duration: 12s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 160%;
    height: 160%;
    top: -30%;
    left: -30%;
    border-bottom-color: var(--color-secondary);
    animation-duration: 16s;
}

@keyframes orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.construction-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* ===== FOOTER ===== */
.footer {
    background: #050510;
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-weight: 500;
}

.social-link:hover {
    border-color: var(--color-primary);
    background: rgba(79, 140, 255, 0.1);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav {
        display: none;
    }

    .nav.active {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100dvh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }

    .nav.active .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .nav.active .nav-list a {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .hero-quote {
        padding: 28px;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Body scroll lock when menu open */
body.menu-open {
    overflow: hidden;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}