/* Variables & Reset */
:root {
    --brand-color: #d35f12;
    --brand-light: #ff9f5a;
    --second-color: #54433a;
    --white-color: #bca79d;
    --white-pure: #ffffff;
    --green-primary: #009731;
    --green-dark: #006200;
    --bg-dark: #1a1512;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #f0e6e0;
    --text-secondary: #bca79d;
    
    --font-heading: 'Rye', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
    --spacing-md: 2rem;
    --spacing-lg: 6rem;
    --glow: 0 0 20px rgba(211, 95, 18, 0.3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--white-pure);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--brand-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background-color: var(--brand-color);
    color: var(--white-pure);
}

.btn--primary:hover {
    background-color: #e66a1b;
    transform: translateY(-2px);
}

.btn-app-store {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.btn-app-store--light {
    background-color: var(--white-pure);
    color: #000;
    border-color: rgba(0,0,0,0.1);
}

.btn-app-store--light .btn-app-store__icon {
    filter: brightness(0);
}

.btn-app-store:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-app-store__icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.btn-app-store__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.btn-app-store__text span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.btn-app-store__text strong {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Header */
.header {
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(26, 21, 18, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(211, 95, 18, 0.1);
    transition: var(--transition);
}

.header--scrolled {
    padding: 0.6rem 0;
    background-color: rgba(26, 21, 18, 0.95);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo__text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--brand-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, var(--brand-color), var(--brand-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.logo:hover .logo__text {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    color: var(--text-secondary);
}

.nav__link:hover {
    color: var(--brand-color);
}

.nav__mobile-actions {
    display: none;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__desktop-actions {
    display: block;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white-pure);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, #54433a 0%, #1a1512 60%);
    z-index: -1;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d35f12' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1.1;
    padding-bottom: 0.15em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--brand-color), var(--brand-light), var(--brand-color));
    background-size: 200% auto;
    animation: gradientText 5s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(211, 95, 18, 0.2));
}

@keyframes gradientText {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero__subtitle {
    font-size: 1.5rem;
    color: var(--white-pure);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero__description {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 90%;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero__placeholder-image img {
    border-radius: 40px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(211, 95, 18, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 320px;
    transform: rotateY(-10deg) rotateX(10deg);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(-10deg) rotateX(10deg); }
    50% { transform: translateY(-20px) rotateY(-5deg) rotateX(5deg); }
}

.hero__placeholder-image img:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
    animation-play-state: paused;
}

/* About Section */
.about {
    padding: var(--spacing-lg) 0;
    background-color: #1e1915;
    position: relative;
}

.about__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(211, 95, 18, 0.15);
    border: 1px solid rgba(255,255,255,0.08);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.about__image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 
        0 40px 80px -15px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(211, 95, 18, 0.25);
}

.about__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about__content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about__text p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about__text strong {
    color: var(--brand-color);
    font-weight: 600;
}

/* Features Section */
.features {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 95, 18, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(211, 95, 18, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(211, 95, 18, 0.2));
    transition: var(--transition);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card__title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--white-pure);
    position: relative;
}

.feature-card__desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
}

.feature-card--accent {
    border-color: rgba(0, 151, 49, 0.2);
}

.feature-card--accent .feature-card__title {
    color: var(--green-primary);
}

/* Gallery Section */
.gallery {
    padding: var(--spacing-lg) 0;
    background-color: #1a1512;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 4rem auto 0;
    perspective: 1000px;
}

.gallery__item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: var(--transition);
    aspect-ratio: 16/9;
    background-color: #111;
    border: 1px solid rgba(255,255,255,0.05);
    transform: rotateX(5deg);
}

.gallery__item:nth-child(even) {
    transform: rotateX(-5deg) translateY(20px);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__item:hover {
    transform: rotateX(0) translateY(-10px) scale(1.02);
    z-index: 10;
    border-color: var(--brand-color);
    box-shadow: 0 25px 50px rgba(211, 95, 18, 0.3);
}

.gallery__item:hover img {
    filter: brightness(1.1);
}

/* FAQ Section */
.faq {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(to bottom, transparent, rgba(211, 95, 18, 0.05));
}

.faq__list {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq__item {
    margin-bottom: 1.5rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item:hover {
    border-color: rgba(211, 95, 18, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.faq__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 2rem;
    color: var(--white-pure);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq__question::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--brand-color);
    transition: var(--transition);
    background: rgba(211, 95, 18, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq__question.active {
    color: var(--brand-color);
}

.faq__question.active::after {
    transform: rotate(45deg);
    background: var(--brand-color);
    color: var(--white-pure);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
}

.faq__answer p {
    padding-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq__question.active + .faq__answer p {
    opacity: 1;
    transition-delay: 0.1s;
}

.faq__question.active + .faq__answer {
    max-height: 500px; /* Base value, JS will override with scrollHeight */
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: radial-gradient(circle at center, rgba(211, 95, 18, 0.2) 0%, var(--bg-dark) 100%), 
                linear-gradient(rgba(26, 21, 18, 0.8), rgba(26, 21, 18, 0.8)),
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-43c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm58 18c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1z' fill='%23d35f12' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(211, 95, 18, 0.1);
    border-bottom: 1px solid rgba(211, 95, 18, 0.1);
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 95, 18, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--white-pure);
    text-shadow: 0 0 30px rgba(211, 95, 18, 0.3);
}

.cta__desc {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: #110e0c;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    color: var(--brand-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer__nav h4, .footer__download h4 {
    color: var(--white-pure);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer__nav ul li {
    margin-bottom: 0.8rem;
}

.footer__nav a {
    color: var(--text-secondary);
}

.footer__nav a:hover, .footer__link:hover {
    color: var(--brand-color);
}

.footer__link {
    display: block;
    color: var(--brand-color);
    font-weight: 600;
}

.footer__copyright {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Legal Pages (Privacy Policy, Support) */
.legal-page {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top, rgba(211, 95, 18, 0.05) 0%, var(--bg-dark) 70%);
    min-height: 80vh;
}

.container--narrow {
    max-width: 800px;
}

.legal-card {
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.legal-content .section-subtitle {
    margin-bottom: 4rem;
    font-size: 1.2rem;
}

.effective-date {
    color: var(--brand-color);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-card h2 {
    color: var(--white-pure);
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    font-family: var(--font-heading);
}

.legal-card p, .legal-card ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.legal-card ul {
    padding-left: 1.5rem;
}

.legal-card ul li {
    margin-bottom: 1rem;
    position: relative;
}

.legal-card ul li::before {
    content: '🌵';
    position: absolute;
    left: -1.8rem;
    font-size: 0.8rem;
}

.legal-card a {
    color: var(--brand-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.legal-card a:hover {
    color: var(--brand-light);
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.back-link {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--brand-color) !important;
    transform: translateX(-5px);
}

/* Support Page Specifics */
.troubleshooting-steps-list {
    display: grid;
    gap: 1.2rem;
    margin: 3rem 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 1.8rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-color);
    opacity: 0;
    transition: var(--transition);
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(211, 95, 18, 0.2);
    transform: translateX(15px);
}

.step-item:hover::before {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-color), var(--brand-light));
    color: var(--white-pure);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px; /* Squircle look */
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(211, 95, 18, 0.4);
    transition: var(--transition);
}

.step-item:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(211, 95, 18, 0.6);
}

.step-item p {
    margin-bottom: 0 !important;
    font-size: 1.15rem !important;
    font-weight: 500;
    color: var(--white-pure) !important;
}

.resource-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.resource-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.resource-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--brand-color);
}

.resource-item p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.resource-btn {
    display: inline-block;
    color: var(--white-pure) !important;
    font-weight: 600;
    text-decoration: none !important;
    padding: 0.8rem 1.5rem;
    background: rgba(211, 95, 18, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(211, 95, 18, 0.2);
    transition: var(--transition);
}

.resource-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-color);
    transform: translateY(-5px);
}

.resource-item:hover .resource-btn {
    background: var(--brand-color);
    box-shadow: 0 10px 20px rgba(211, 95, 18, 0.2);
}

@media (max-width: 600px) {
    .resource-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .legal-card {
        padding: 2rem;
        border-radius: 20px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .about__content {
        text-align: center;
    }
    
    .about__content .section-title {
        text-align: center !important;
    }
    
    .about__image-stack {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero__content {
        order: 2;
    }
    
    .hero__visual {
        order: 1;
        margin-bottom: 3rem;
    }
    
    .hero__title {
        font-size: 4rem;
    }
    
    .hero__subtitle, .hero__description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery__item, .gallery__item:nth-child(even) {
        transform: none;
    }
}

@media (max-width: 768px) {
    .header__desktop-actions {
        display: none;
    }

    .header .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
        margin-left: auto;
    }
    
    .header__inner {
        padding: 0 1rem;
    }
    
    .header.active .nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        padding: 3rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        align-items: center;
        gap: 2.5rem;
    }
    
    .nav__mobile-actions {
        display: block;
        width: fit-content;
        margin-top: 1rem;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.5rem;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }
}