:root {
    --bg-color: #050607;
    --bg-elevated: #0c1117;
    --card-bg: rgba(10, 14, 19, 0.78);
    --card-bg-strong: rgba(16, 22, 29, 0.94);
    --primary: #19dcff;
    --primary-hover: #6ee7ff;
    --accent: #f5b84b;
    --accent-soft: rgba(245, 184, 75, 0.18);
    --danger: #ff3b30;
    --text-main: #f8fafc;
    --text-muted: #9aa6b2;
    --text-soft: #d6dde6;
    --glass-border: rgba(255, 255, 255, 0.12);
    --hairline: rgba(255, 255, 255, 0.075);
    --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.62);
    --shadow-md: 0 18px 46px rgba(0, 0, 0, 0.4);
    --radius: 8px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.84), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.92)),
        linear-gradient(125deg, #030506 0%, #071018 45%, #0a1114 72%, #030506 100%);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(25, 220, 255, 0.07), transparent 22%, transparent 78%, rgba(245, 184, 75, 0.06)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 5px);
    opacity: 0.48;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0 7.5%, transparent 7.5% 92.5%, rgba(0, 0, 0, 0.42) 92.5% 100%),
        radial-gradient(ellipse at 50% 45%, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.62) 100%);
}

body > * {
    position: relative;
    z-index: 1;
}

header {
    z-index: 10000;
}

main,
footer {
    z-index: 1;
}

img {
    max-width: 100%;
}

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

.glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent), var(--card-bg);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

/* Navigation */
header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

header nav::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0, 217, 255, 0.08), transparent 36%, rgba(245, 184, 75, 0.07)),
        rgba(6, 8, 10, 0.66);
}

header nav .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 12px 28px rgba(0, 0, 0, 0.34);
}

.brand-name,
.footer-info .logo span {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-links {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1.35rem;
    margin-left: auto;
}

.nav-links a {
    position: relative;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.nav-links a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.45rem;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:not(.btn):hover::after {
    transform: scaleX(1);
}

.nav-links a.active {
    color: #fff;
}

.nav-links a.active:not(.btn)::after {
    transform: scaleX(1);
}

.menu-toggle {
    position: relative;
    z-index: 4;
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    color: var(--text-main);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
    border-color: rgba(0, 217, 255, 0.42);
    background: rgba(0, 217, 255, 0.1);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Language Switcher */
.lang-switch {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
}

.lang-switch button {
    min-width: 38px;
    min-height: 32px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.lang-switch button.active {
    background: linear-gradient(135deg, var(--primary), #57f1ff);
    color: #021014;
    box-shadow: 0 8px 18px rgba(0, 217, 255, 0.24);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.72rem 1.35rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: #f8fafc;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn-primary {
    border-color: rgba(25, 220, 255, 0.42);
    background:
        linear-gradient(135deg, rgba(25, 220, 255, 0.16), rgba(245, 184, 75, 0.08)),
        #071016;
    color: #f8fafc;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
    border-color: rgba(25, 220, 255, 0.72);
    background:
        linear-gradient(135deg, rgba(25, 220, 255, 0.23), rgba(245, 184, 75, 0.12)),
        #091923;
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4), 0 0 28px rgba(25, 220, 255, 0.18);
}

.btn-large {
    min-height: 62px;
    padding: 0.45rem 1.15rem;
}

#download-btn-hero {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #fff;
}

#download-btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 62px;
    padding: 0.78rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
        #050607;
    color: #fff;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.store-icon {
    width: 30px;
    height: 34px;
    display: block;
    flex: 0 0 auto;
    filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.35));
}

.store-copy {
    display: grid;
    gap: 0.08rem;
    text-align: left;
}

.store-copy small {
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.store-copy strong {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 96vh;
    padding: 9rem 0 5rem;
    display: flex;
    align-items: center;
    isolation: isolate;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.22) 52%, rgba(0, 0, 0, 0.72) 100%),
        radial-gradient(circle at 68% 40%, rgba(25, 220, 255, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(25, 220, 255, 0.07), transparent 54%, rgba(245, 184, 75, 0.055));
}

#hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.78fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5.5rem);
}

.hero-content {
    position: relative;
    max-width: 680px;
}

.hero-content::before {
    content: "REC";
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 34px;
    margin-bottom: 1.35rem;
    padding: 0.42rem 0.72rem;
    border: 1px solid rgba(255, 59, 48, 0.45);
    border-radius: 999px;
    background: rgba(255, 59, 48, 0.08);
    color: #ffb7b2;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

h1 {
    max-width: 12ch;
    margin-bottom: 1.25rem;
    color: #fff;
    font-size: clamp(3rem, 6.3vw, 5.7rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.62);
}

#hero p {
    max-width: 620px;
    margin-bottom: 2rem;
    color: var(--text-soft);
    font-size: clamp(1.05rem, 1.8vw, 1.32rem);
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    gap: 0.65rem;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(245, 184, 75, 0.26);
    border-radius: var(--radius);
    background: rgba(245, 184, 75, 0.09);
    color: var(--text-soft);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 0;
    text-shadow: 0 0 22px rgba(245, 184, 75, 0.42);
}

.hero-image {
    position: relative;
    display: grid;
    justify-items: center;
    min-width: 0;
    padding: 1.25rem;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 7% 5% 5% 6%;
    z-index: -1;
    border: 1px solid rgba(0, 217, 255, 0.26);
    border-radius: 32px;
    transform: rotate(-3deg);
    background:
        linear-gradient(135deg, rgba(25, 220, 255, 0.13), transparent 42%),
        rgba(255, 255, 255, 0.025);
    box-shadow: 0 0 86px rgba(25, 220, 255, 0.16);
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 14% -4% 12% auto;
    width: 28%;
    z-index: -1;
    border-right: 1px solid rgba(245, 184, 75, 0.34);
    border-top: 1px solid rgba(245, 184, 75, 0.18);
    border-bottom: 1px solid rgba(245, 184, 75, 0.18);
}

.main-hero-img {
    width: min(100%, 390px);
    max-height: 72vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: var(--shadow-lg), 0 0 72px rgba(25, 220, 255, 0.22);
    transform: rotate(1.5deg);
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s ease, filter 0.45s ease;
}

.main-hero-img:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.012);
    box-shadow: var(--shadow-lg), 0 0 96px rgba(25, 220, 255, 0.32);
    filter: saturate(1.06);
}

.floating {
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -14px;
    }
}

/* Sections */
main > section {
    position: relative;
    padding: 6.5rem 0;
}

main > section:not(#hero)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.32), rgba(245, 184, 75, 0.28), transparent);
}

.section-title {
    max-width: 880px;
    margin: 0 auto 3.4rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    text-wrap: balance;
}

.section-title::after {
    content: "";
    display: block;
    width: 84px;
    height: 2px;
    margin: 1.1rem auto 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-card {
    position: relative;
    min-height: 300px;
    padding: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 217, 255, 0.12), transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.feature-card > * {
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.35);
    background: var(--card-bg-strong);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 217, 255, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon {
    position: relative;
    width: 54px;
    height: 54px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 217, 255, 0.38);
    border-radius: var(--radius);
    background: rgba(0, 217, 255, 0.08);
    color: transparent;
    font-size: 0;
}

.feature-card .icon::before,
.feature-card .icon::after {
    content: "";
    position: absolute;
    display: block;
}

.feature-card:nth-child(1) .icon::before {
    left: 13px;
    top: 17px;
    width: 23px;
    height: 16px;
    border: 2px solid var(--primary);
    border-radius: 4px;
}

.feature-card:nth-child(1) .icon::after {
    right: 10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid var(--primary);
}

.feature-card:nth-child(2) .icon::before {
    left: 16px;
    top: 12px;
    width: 22px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 4px;
}

.feature-card:nth-child(2) .icon::after {
    left: 12px;
    top: 26px;
    width: 30px;
    height: 2px;
    background: var(--danger);
    transform: rotate(-35deg);
    box-shadow: 0 0 16px rgba(255, 59, 48, 0.55);
}

.feature-card:nth-child(3) .icon::before {
    left: 12px;
    top: 13px;
    width: 30px;
    height: 22px;
    border: 2px solid var(--primary);
    border-radius: 4px;
}

.feature-card:nth-child(3) .icon::after {
    right: 10px;
    bottom: 10px;
    width: 18px;
    height: 13px;
    border: 2px solid var(--accent);
    border-radius: 3px;
    background: rgba(245, 184, 75, 0.18);
}

.feature-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: initial;
}

.feature-card .icon::before,
.feature-card .icon::after {
    content: none;
}

.feature-card .icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 12px rgba(25, 220, 255, 0.22));
}

.feature-card h3 {
    margin-bottom: 0.9rem;
    color: #fff;
    font-size: 1.32rem;
    line-height: 1.2;
}

.feature-card p {
    color: var(--text-muted);
}

/* How it Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    counter-reset: steps;
}

.step {
    position: relative;
    min-height: 170px;
    padding: 2rem 1.5rem;
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    text-align: left;
    overflow: hidden;
}

.step::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 1.3rem;
    border: 1px solid rgba(245, 184, 75, 0.38);
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1rem;
    font-weight: 900;
}

.step p {
    color: var(--text-soft);
    font-weight: 600;
}

/* Screenshots Grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    perspective: 1200px;
}

.screenshot-item {
    position: relative;
    padding: 0.6rem;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.38s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.38s ease, box-shadow 0.38s ease;
}

.screenshot-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.16), transparent 38%, rgba(245, 184, 75, 0.12));
    opacity: 0;
    transition: opacity 0.38s ease;
}

.screenshot-item img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    height: auto;
    object-fit: cover;
    border-radius: calc(var(--radius) - 2px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.38s ease;
}

.screenshot-item:hover {
    transform: translateY(-12px) rotateX(4deg);
    border-color: rgba(0, 217, 255, 0.36);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42), 0 0 42px rgba(0, 217, 255, 0.16);
}

.screenshot-item:hover::before {
    opacity: 1;
}

.screenshot-item:hover img {
    transform: scale(1.018);
}

/* SEO Content */
.seo-benefits {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
        rgba(0, 0, 0, 0.08);
}

.seo-intro {
    max-width: 880px;
    margin: -1.4rem auto 2rem;
    color: var(--text-soft);
    font-size: 1.08rem;
    line-height: 1.8;
    text-align: center;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.seo-item {
    position: relative;
    min-height: 220px;
    padding: 1.65rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.seo-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.seo-item h3 {
    margin-bottom: 0.85rem;
    color: #fff;
    font-size: 1.18rem;
    line-height: 1.25;
}

.seo-item p {
    color: var(--text-muted);
}

/* FAQ */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-item {
    position: relative;
    padding: 1.5rem 1.65rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.faq-item h3 {
    margin-bottom: 0.6rem;
    color: #fff;
    font-size: 1.08rem;
}

.faq-item p {
    color: var(--text-muted);
}

/* CTA Section */
#cta .container {
    position: relative;
    padding: clamp(2rem, 5vw, 4.2rem);
    border-radius: var(--radius);
    text-align: center;
    overflow: hidden;
}

#cta .container::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 217, 255, 0.18), transparent 42%),
        linear-gradient(315deg, rgba(245, 184, 75, 0.16), transparent 38%);
}

#cta .container > * {
    position: relative;
}

#cta h2 {
    max-width: 760px;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
    text-wrap: balance;
}

#cta p {
    max-width: 720px;
    margin: 0 auto 2.2rem;
    color: var(--text-soft);
    font-size: 1.12rem;
}

/* Footer */
footer {
    padding: 5rem 0 2.5rem;
    border-top: 1px solid var(--hairline);
    background: rgba(0, 0, 0, 0.18);
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 430px;
}

.footer-info .logo {
    margin-bottom: 1.35rem;
}

.footer-info p {
    color: var(--text-muted);
}

footer nav.footer-links {
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    margin-bottom: 0.68rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

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

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

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive */
@media (max-width: 1060px) {
    #hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    h1,
    #hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .main-hero-img {
        width: min(68vw, 390px);
        transform: rotate(0deg);
    }

    .features-grid,
    .steps-grid,
    .seo-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

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

@media (max-width: 820px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    header nav {
        padding: 0.72rem 0;
    }

    header nav .container {
        gap: 0.85rem;
    }

    .brand-name {
        font-size: 1rem;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: 0;
    }

    .nav-links {
        position: absolute;
        z-index: 10002;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        margin-left: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
        padding: 0.85rem;
        border: 1px solid var(--glass-border);
        border-radius: var(--radius);
        background: rgba(6, 8, 10, 0.96);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    header nav .lang-switch {
        margin-left: auto;
    }

    body.menu-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        min-height: 42px;
        display: flex;
        align-items: center;
        padding: 0 0.85rem;
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.04);
    }

    .nav-links a:not(.btn)::after {
        display: none;
    }

    .nav-links .btn {
        width: 100%;
        min-height: 42px;
        padding: 0.66rem 0.8rem;
        font-size: 0.82rem;
    }

    .lang-switch button {
        min-width: 34px;
        min-height: 29px;
    }

    #hero {
        min-height: auto;
        padding: 7.5rem 0 4.5rem;
    }

    h1 {
        max-width: 12ch;
        font-size: clamp(2.45rem, 13vw, 4.6rem);
    }

    #hero p {
        font-size: 1.02rem;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }

    main > section {
        padding: 4.6rem 0;
    }

    .section-title {
        margin-bottom: 2.2rem;
    }

    .feature-card,
    .step,
    .faq-item {
        padding: 1.4rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 560px) {
    .logo img {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        display: none;
    }

    .btn-large {
        width: 100%;
    }

    .hero-btns {
        gap: 0.85rem;
    }

    .hero-btns .btn-large {
        width: auto;
    }

    .store-badge {
        min-height: 56px;
        padding: 0.72rem 1rem;
    }

    .main-hero-img {
        width: min(82vw, 330px);
    }

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

    .screenshot-item {
        max-width: 360px;
        margin: 0 auto;
    }
}
