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

:root {
    --primary-orange: #ff7a3d;
    --primary-orange-deep: #e8590c;
    --primary-orange-light: #ffb37a;
    --green: #16a34a;
    --blue: #2f80ed;
    --bg: #fffaf6;
    --card: #ffffff;
    --text-primary: #1c1917;
    --text-secondary: #57534e;
    --text-muted: #a8a29e;
    --border: #f2e4d8;
    --gradient-hero: linear-gradient(160deg, #ffb37a 0%, #ff7a3d 45%, #e8590c 100%);
    --gradient-primary: linear-gradient(135deg, #ff9d5c, #e8590c);
    --shadow-warm: 0 24px 60px rgba(232, 89, 12, 0.16);
    --shadow-soft: 0 12px 32px rgba(28, 25, 23, 0.06);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
}

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

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

/* Navbar */

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(255, 250, 246, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    text-decoration: none;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.25s ease;
}

.nav-menu a:hover {
    color: var(--primary-orange-deep);
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.25s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-primary);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
    padding: 152px 0 96px;
    background: var(--gradient-hero);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.22), transparent 45%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
    gap: 64px;
    align-items: center;
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-title {
    max-width: 660px;
    font-size: clamp(42px, 6.4vw, 68px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: #fff;
}

.hero-subtitle {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 19px;
    line-height: 1.65;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 26px;
    border-radius: 14px;
    text-decoration: none;
    border: 0;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--primary-orange-deep);
    background: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.24);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 140px));
    gap: 16px;
}

.stat {
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    padding: 16px;
}

.stat strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: #fff;
    margin-bottom: 6px;
}

.stat span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 700;
}

.hero-phone {
    position: relative;
    max-width: 320px;
    justify-self: center;
    border-radius: 40px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.hero-phone img {
    aspect-ratio: 9 / 19.5;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 30px;
}

/* Sections */

.features,
.about,
.support {
    padding: 96px 0;
}

.features {
    background: var(--bg);
}

.section-title {
    font-size: clamp(32px, 4.6vw, 46px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.section-subtitle {
    max-width: 620px;
    margin: 0 auto 54px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 17px;
}

/* Feature cards */

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-warm);
    border-color: rgba(232, 89, 12, 0.28);
}

.feature-image {
    background: linear-gradient(160deg, #ffe3cc, #ffb37a);
}

.feature-image img {
    width: 100%;
    aspect-ratio: 9 / 12;
    object-fit: cover;
    object-position: top;
}

.feature-body {
    padding: 22px 24px 26px;
}

.feature-body h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-body p {
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.6;
}

/* About */

.about {
    background: linear-gradient(180deg, rgba(255, 179, 122, 0.1), transparent);
}

.about-content {
    max-width: 1040px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 42px;
}

.about-intro h3 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.about-lead {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 34px;
}

.achievement-card,
.story-card,
.contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.achievement-card {
    padding: 24px 18px;
    text-align: center;
}

.achievement-card:hover,
.story-card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 89, 12, 0.28);
    box-shadow: var(--shadow-warm);
}

.achievement-number {
    display: block;
    min-height: 40px;
    color: var(--primary-orange-deep);
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 10px;
}

.achievement-label {
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 700;
}

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

.story-card {
    padding: 26px;
}

.story-card h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.story-card p {
    color: var(--text-secondary);
    font-size: 14.5px;
}

/* Support */

.support {
    background: var(--bg);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 64px;
}

.contact-card {
    padding: 32px;
    color: var(--text-primary);
    text-align: center;
    text-decoration: none;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    color: #fff;
    background: var(--gradient-primary);
    font-size: 12.5px;
    font-weight: 900;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 14.5px;
}

.faq {
    max-width: 780px;
    margin: 0 auto;
}

.faq-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 22px;
    text-align: center;
    color: var(--text-primary);
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 12px;
    background: var(--card);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: 0;
    text-align: left;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
}

.faq-toggle {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(232, 89, 12, 0.1);
    color: var(--primary-orange-deep);
    font-size: 16px;
    font-weight: 900;
    transition: transform 0.25s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 260px;
}

.faq-answer p {
    padding: 0 22px 20px;
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary-orange-deep);
    font-weight: 700;
    text-decoration: underline;
}

/* Footer */

.footer {
    padding: 34px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    background: #fff;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

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

.footer p {
    color: var(--text-muted);
    font-size: 13.5px;
}

/* Responsive */

@media (max-width: 980px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {

    .hero-grid,
    .story-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 42px;
    }

    .hero-phone {
        max-width: 280px;
    }

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

@media (max-width: 720px) {
    .container {
        width: min(100% - 32px, 1200px);
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 72px;
        left: 16px;
        right: 16px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow-soft);
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu a {
        display: block;
        padding: 13px 12px;
        border-radius: 12px;
    }

    .nav-menu a:hover {
        background: rgba(232, 89, 12, 0.06);
    }

    .nav-menu a::after {
        display: none;
    }

    .hero {
        padding: 118px 0 72px;
    }

    .hero-title {
        font-size: clamp(36px, 11vw, 52px);
    }

    .hero-subtitle {
        font-size: 16.5px;
    }

    .hero-stats,
    .features-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .features,
    .about,
    .support {
        padding: 68px 0;
    }
}

@media (prefers-reduced-motion: reduce) {

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