:root {
    --red: #E63946;
    --red-dark: #B71C1C;
    --red-glow: rgba(230, 57, 70, 0.3);
    --black: #0a0a0a;
    --black-2: #111111;
    --black-3: #1a1a1a;
    --white: #ffffff;
    --white-dim: rgba(255, 255, 255, 0.7);
    --white-muted: rgba(255, 255, 255, 0.5);
    --green: #34C759;
    --green-dark: #2DB150;
    --green-glow: rgba(52, 199, 89, 0.3);
    --gray: #2c2c2e;
    --gray-light: #3a3a3c;
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: default;
}

::selection {
    background: var(--red);
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(230, 57, 70, 0.12);
    border: 1px solid rgba(230, 57, 70, 0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section__title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section__desc {
    font-size: 16px;
    color: var(--white-dim);
    line-height: 1.7;
}

.gradient-text {
    background: linear-gradient(135deg, var(--red), #ff6b6b, var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,57,70,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* Particles Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    position: relative;
}

.logo__star {
    width: 28px;
    height: 28px;
    background: var(--white);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: starPulse 3s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(255,255,255,0.3)); }
    50% { filter: drop-shadow(0 0 12px rgba(255,255,255,0.6)); }
}

.logo span {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 2px;
}

.logo small {
    font-size: 10px;
    color: var(--white-dim);
    letter-spacing: 1px;
    font-weight: 400;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 14px;
}

.btn--accent {
    background: linear-gradient(135deg, var(--red), #ff4757);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.btn--accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-light);
}

.btn--outline:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(230, 57, 70, 0.05);
}

.btn--large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn--pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3); }
    50% { box-shadow: 0 4px 40px rgba(230, 57, 70, 0.5); }
}

.btn--glow {
    position: relative;
}

.btn--glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: calc(var(--radius-sm) + 2px);
    background: linear-gradient(135deg, var(--red), transparent, var(--green), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition);
}

.btn--glow:hover::before {
    opacity: 1;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    z-index: 2;
}

.hero__bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    position: relative;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 24px;
}

.hero__title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--white-dim);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    gap: 0;
    margin-top: 24px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 6px;
    overflow: hidden;
}
.hero__stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    flex: 1;
    min-width: 0;
    transition: background .3s;
}
.hero__stat:hover { background: rgba(255,255,255,.03); }
.hero__stat-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--black-3);
    border-radius: 10px;
    font-size: 16px;
    color: var(--red);
    flex-shrink: 0;
}
.hero__stat-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero__stat-divider {
    width: 1px;
    background: rgba(255,255,255,.06);
    margin: 10px 0;
    flex-shrink: 0;
}
.hero__stat-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1;
    transition: all .3s;
}
.hero__stat-label {
    font-size: 11px;
    color: var(--white-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* Hero Visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__card-mockup {
    position: relative;
    width: 340px;
}

.hero__card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

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

.hero__card {
    background: var(--black-2);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    padding: 16px;
    position: relative;
    backdrop-filter: blur(10px);
}

.hero__card--mini {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: auto;
    max-width: 190px;
    padding: 10px 14px;
    animation: floatCard 4s ease-in-out infinite;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__card-header {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.hero__card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero__card-dot.red { background: var(--red); }
.hero__card-dot.yellow { background: var(--warning, #FF9500); }
.hero__card-dot.green { background: var(--green); }

.hero__card-body {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hero__card-icon {
    width: 44px;
    height: 44px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--red);
}

.hero__card-info {
    flex: 1;
}

.hero__card-info strong {
    display: block;
    font-size: 14px;
    color: var(--white);
}

.hero__card-info span {
    font-size: 12px;
    color: var(--white-muted);
}

.hero__card-status {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}

.hero__card-status.pending {
    background: rgba(255, 149, 0, 0.15);
    color: #FF9500;
}

.hero__card-progress {
    width: 100%;
    height: 4px;
    background: var(--gray);
    border-radius: 2px;
    margin-bottom: 12px;
    overflow: hidden;
}

.hero__card-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--green));
    border-radius: 2px;
    animation: progressAnim 2s ease-in-out infinite;
}

@keyframes progressAnim {
    0% { width: 0%; }
    100% { width: 100%; }
}

.hero__card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--white-muted);
}

.hero__card-footer i {
    margin-right: 4px;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white-muted);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* About */
.about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about__card {
    background: var(--black-2);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--green));
    opacity: 0;
    transition: opacity var(--transition);
}

.about__card:hover {
    border-color: var(--gray-light);
    transform: translateY(-4px);
}

.about__card:hover::before {
    opacity: 1;
}

.about__card-icon {
    width: 52px;
    height: 52px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--red);
    margin-bottom: 20px;
}

.about__card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about__card p {
    font-size: 14px;
    color: var(--white-dim);
    line-height: 1.6;
}

/* How it works */
.how__steps {
    max-width: 600px;
    margin: 0 auto;
}

.how__step {
    display: flex;
    gap: 24px;
    background: var(--black-2);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}

.how__step:hover {
    border-color: var(--gray-light);
    transform: translateX(8px);
}

.how__step-num {
    font-size: 48px;
    font-weight: 900;
    color: rgba(230, 57, 70, 0.15);
    line-height: 1;
    min-width: 60px;
}

.how__step-content {
    flex: 1;
}

.how__step-icon {
    width: 48px;
    height: 48px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--red);
    margin-bottom: 16px;
}

.how__step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.how__step-content p {
    font-size: 14px;
    color: var(--white-dim);
}

.how__step-arrow {
    display: flex;
    justify-content: center;
    padding: 12px 0;
    color: var(--red);
    font-size: 20px;
    opacity: 0.5;
}

/* Tariffs */
.tariffs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tariff-card {
    background: var(--black-2);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.tariff-card:hover {
    border-color: var(--gray-light);
    transform: translateY(-4px);
}

.tariff-card--popular {
    border-color: var(--red);
    transform: scale(1.05);
    z-index: 2;
}

.tariff-card--popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.tariff-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--red), #ff4757);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.tariff-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--red);
    margin: 0 auto 16px;
}

.tariff-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tariff-card__price {
    margin-bottom: 8px;
}

.tariff-card__num {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tariff-card__currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-muted);
}

.tariff-card__desc {
    font-size: 14px;
    color: var(--white-muted);
    margin-bottom: 24px;
}

.tariff-card__features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.tariff-card__features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--white-dim);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.tariff-card__features li i {
    width: 18px;
    color: var(--green);
}

.tariff-card__features li.disabled {
    color: var(--white-muted);
    opacity: 0.5;
}

.tariff-card__features li.disabled i {
    color: var(--red);
}

.tariff-card__btn {
    width: 100%;
    justify-content: center;
}

/* Order Form */
.order-form {
    max-width: 750px;
    margin: 0 auto;
    background: var(--black-2);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    padding: 40px;
}

.order-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.order-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-form__group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--white-dim);
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-form__group label i {
    color: var(--red);
    font-size: 12px;
}

.order-form__group input,
.order-form__group textarea,
.order-form__group select {
    padding: 14px 16px;
    background: var(--black);
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    transition: border-color var(--transition);
}

.order-form__group input:focus,
.order-form__group textarea:focus,
.order-form__group select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.order-form__file {
    border: 2px dashed var(--gray);
    border-radius: var(--radius-sm);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.order-form__file:hover {
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.03);
}

.order-form__file i {
    font-size: 32px;
    color: var(--red);
}

.order-form__file span {
    font-size: 13px;
    color: var(--white-muted);
}

.order-form__submit {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    height: 56px;
}

/* Mobile Section */
.mobile__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.mobile__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--black-2);
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile__feature:hover {
    border-color: var(--gray-light);
    transform: translateX(4px);
}

.mobile__feature i {
    width: 36px;
    height: 36px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
}

.mobile__feature span {
    font-size: 14px;
    font-weight: 500;
}

.mobile__btns {
    display: flex;
    gap: 12px;
}

/* Phone Mockup */
.mobile__phone {
    width: 280px;
    margin: 0 auto;
    background: var(--black);
    border: 3px solid var(--gray);
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow: 0 0 60px rgba(230, 57, 70, 0.1);
}

.mobile__phone-notch {
    width: 120px;
    height: 28px;
    background: var(--black);
    border-radius: 20px;
    margin: 0 auto 12px;
    position: relative;
}

.mobile__phone-notch::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gray);
    border-radius: 50%;
}

.mobile__phone-screen {
    background: var(--black-2);
    border-radius: 28px;
    overflow: hidden;
    min-height: 500px;
}

.mobile__app {
    padding: 16px;
}

.mobile__app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mobile__app-logo {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
}

.mobile__app-header i {
    color: var(--red);
    font-size: 18px;
}

.mobile__app-order {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile__app-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--black);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray);
}

.mobile__app-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.mobile__app-card-info {
    flex: 1;
}

.mobile__app-card-info strong {
    display: block;
    font-size: 13px;
}

.mobile__app-card-info span {
    font-size: 11px;
    color: var(--white-muted);
}

.mobile__app-card-status.delivered {
    color: var(--green);
}

.mobile__app-card-status.pending {
    color: #FF9500;
}

.mobile__app-bottom {
    margin-top: 20px;
}

.mobile__app-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--red), #ff4757);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
}

.mobile__app-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

/* Footer */
.footer {
    background: var(--black-2);
    border-top: 1px solid var(--gray);
    padding: 80px 0 0;
    position: relative;
    z-index: 2;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer__brand .logo {
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 14px;
    color: var(--white-muted);
    margin-bottom: 20px;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__socials a {
    width: 40px;
    height: 40px;
    background: var(--black-3);
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-dim);
    text-decoration: none;
    transition: all var(--transition);
}

.footer__socials a:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

.footer__links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer__links a {
    display: block;
    font-size: 14px;
    color: var(--white-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--red);
}

.footer__contacts h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer__contacts a,
.footer__contacts span {
    display: block;
    font-size: 14px;
    color: var(--white-dim);
    text-decoration: none;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__contacts a i {
    color: var(--red);
    width: 16px;
}

.footer__bottom {
    border-top: 1px solid var(--gray);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--white-muted);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="flip-up"] {
    opacity: 0;
    transform: perspective(600px) rotateX(10deg) translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="flip-up"].aos-animate {
    opacity: 1;
    transform: perspective(600px) rotateX(0) translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__title {
        font-size: 48px;
    }

    .hero__subtitle {
        margin: 0 auto 32px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        flex-wrap: wrap;
        padding: 4px;
        border-radius: 14px;
    }
    .hero__stat { padding: 10px 14px; gap: 10px; }
    .hero__stat-icon { width: 32px; height: 32px; font-size: 13px; }
    .hero__stat-num { font-size: 18px; }
    .hero__stat-label { font-size: 10px; }
    .hero__stat-divider { display: none; }

    .hero__visual {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    .hero__card--mini { bottom: -30px; right: -20px; }

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

    .tariffs__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .tariff-card--popular {
        transform: none;
    }

    .tariff-card--popular:hover {
        transform: translateY(-4px);
    }

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

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--gray);
        z-index: 100;
    }

    .nav.open {
        display: flex;
    }

    .burger {
        display: flex;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__stats {
        flex-wrap: wrap;
        padding: 6px;
    }
    .hero__stat { padding: 8px 10px; gap: 8px; flex: 0 0 auto; }
    .hero__stat-icon { width: 28px; height: 28px; font-size: 12px; border-radius: 8px; }
    .hero__stat-num { font-size: 16px; }
    .hero__stat-label { font-size: 10px; }

    .section__title {
        font-size: 28px;
    }

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

    .order-form__row {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .btn--large {
        padding: 14px 24px;
        font-size: 14px;
    }

    .contacts__grid,
    .contacts__messengers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ══════════════════════════════════════════════
   PAGE HERO (subpages)
   ══════════════════════════════════════════════ */
.page-hero {
    padding: 120px 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--gray);
    position: relative;
    z-index: 2;
}

.page-hero__title {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red), #ff6b6b, var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.page-hero__subtitle {
    font-size: 16px;
    color: var(--white-dim);
}

/* ══════════════════════════════════════════════
   CONTACTS PAGE
   ══════════════════════════════════════════════ */
.contacts__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--black-2);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: var(--gray-light);
    transform: translateY(-4px);
}

.contact-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--red);
    margin: 0 auto 16px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 14px;
    color: var(--white-dim);
}

.contact-card__link {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition);
    margin-bottom: 4px;
}

.contact-card__link:hover {
    color: var(--red);
}

.contact-card__label {
    display: block;
    font-size: 12px;
    color: var(--white-muted);
    margin-bottom: 16px;
}

.contact-card__big {
    font-size: 24px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 4px;
}

.contacts__map {
    margin-bottom: 60px;
}

.contacts__map h2 {
    text-align: center;
    margin-bottom: 24px;
}

.contacts__map-container {
    background: var(--black-2);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    padding: 8px;
    overflow: hidden;
}

.contacts__messengers h2 {
    text-align: center;
    margin-bottom: 24px;
}

.contacts__messengers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.contact-messenger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: var(--black-2);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
}

.contact-messenger:hover {
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.05);
    transform: translateY(-4px);
}

.contact-messenger i {
    font-size: 32px;
    color: var(--red);
}

/* ══════════════════════════════════════════════
   FAQ PAGE
   ══════════════════════════════════════════════ */
.faq__grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--black-2);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq__item:hover {
    border-color: var(--gray-light);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq__question i {
    font-size: 14px;
    color: var(--red);
    transition: transform var(--transition);
}

.faq__item.open .faq__question i {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.open .faq__answer {
    max-height: 1000px;
    padding: 0 24px 24px;
}

.faq__answer p {
    font-size: 14px;
    color: var(--white-dim);
    line-height: 1.7;
}

.faq__answer a {
    color: var(--red);
    text-decoration: underline;
}

/* ══════════════════════════════════════════════
   VACANCIES PAGE
   ══════════════════════════════════════════════ */
.vacancies__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
}

.vacancy-card {
    background: var(--black-2);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}

.vacancy-card:hover {
    border-color: var(--gray-light);
}

.vacancy-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.vacancy-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--red);
}

.vacancy-card__header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.vacancy-card__info {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.vacancy-card__info div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--white-dim);
}

.vacancy-card__info div i {
    color: var(--red);
    width: 16px;
    text-align: center;
}

.vacancy-card__desc h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    margin-top: 16px;
}

.vacancy-card__desc ul {
    list-style: none;
    margin-bottom: 16px;
}

.vacancy-card__desc ul li {
    font-size: 14px;
    color: var(--white-dim);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vacancy-card__desc ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.vacancies__form-block {
    max-width: 750px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════
   API PAGE
   ══════════════════════════════════════════════ */
.api__intro code.api__endpoint {
    display: block;
    padding: 12px 20px;
    background: var(--black);
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--green);
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.api__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.api__nav-item {
    padding: 10px 20px;
    background: var(--black-2);
    border: 1px solid var(--gray);
    border-radius: 50px;
    color: var(--white-dim);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition);
}

.api__nav-item:hover {
    border-color: var(--red);
    color: var(--white);
    background: rgba(230, 57, 70, 0.05);
}

.api__sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.api__section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.api__section > p {
    font-size: 14px;
    color: var(--white-dim);
    margin-bottom: 20px;
}

.api__section > p a {
    color: var(--red);
    text-decoration: none;
}

.api__desc {
    font-size: 14px;
    color: var(--white-dim);
    margin-bottom: 20px;
    line-height: 1.7;
}

.endpoint {
    background: var(--black-2);
    border: 1px solid var(--gray);
    border-radius: var(--radius);
    margin-bottom: 20px;
    overflow: hidden;
}

.endpoint__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--black-3);
    border-bottom: 1px solid var(--gray);
}

.endpoint__method {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.endpoint__method.post {
    background: rgba(52, 199, 89, 0.15);
    color: var(--green);
}

.endpoint__method.get {
    background: rgba(10, 132, 255, 0.15);
    color: #0A84FF;
}

.endpoint__method.delete {
    background: rgba(255, 59, 48, 0.15);
    color: var(--red);
}

.endpoint__method.put {
    background: rgba(255, 149, 0, 0.15);
    color: #FF9500;
}

.endpoint__path {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--white);
}

.endpoint__desc {
    font-size: 12px;
    color: var(--white-muted);
    margin-left: auto;
}

.endpoint__body {
    padding: 20px;
}

.endpoint__body h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white-dim);
    margin-bottom: 10px;
    margin-top: 20px;
}

.endpoint__body h4:first-child {
    margin-top: 0;
}

.endpoint__body pre {
    background: var(--black);
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    padding: 16px;
    overflow-x: auto;
}

.endpoint__body code {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    color: #e0e0e0;
}

.api__table {
    margin-top: 12px;
}

.api__table td {
    font-size: 13px;
}

.api__table td code {
    background: var(--black);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--green);
}

/* Nav active state on subpages */
.nav__link.active {
    color: var(--red);
    font-weight: 600;
}

/* ══════════════════════════════════════════════
   RESPONSIVE (subpages)
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .page-hero__title {
        font-size: 32px;
    }

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

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

    .endpoint__header {
        flex-wrap: wrap;
    }

    .endpoint__desc {
        width: 100%;
        margin-left: 0;
        margin-top: 4px;
    }

    .api__nav {
        gap: 6px;
    }

    .api__nav-item {
        font-size: 12px;
        padding: 8px 14px;
    }

    .vacancy-card__info {
        flex-direction: column;
        gap: 8px;
    }
}

/* SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--red);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 500;
    box-shadow: 0 4px 20px rgba(230,57,70,.3);
    transition: opacity .3s;
}

/* CHAT STUB */
.chat-stub {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--black-2);
    border: 2px solid var(--red);
    border-radius: 14px;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: chatPulse 2s infinite;
}

@keyframes chatPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(230,57,70,.4); }
    50% { box-shadow: 0 0 0 12px rgba(230,57,70,0); }
}
