@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
    --ink: #0f1117;
    --muted: #6b7280;
    --paper: #0a0d14;
    --card: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.09);
    --accent: #f5a623;
    --accent-2: #ff6b35;
    --gold: linear-gradient(135deg, #f5a623, #ff6b35);
    --navy: #0d1220;
    --navy-mid: #131929;
    --glow: 0 0 60px rgba(245, 166, 35, 0.18);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.25);
    --radius: 20px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth
}

body {
    color: #e8eaf0;
    background: #0a0d14;
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit
}

/* ─── BACKGROUND CANVAS ─────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80vw 60vh at 20% -10%, rgba(245, 166, 35, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60vw 50vh at 85% 110%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50vw 40vh at 50% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ─── CONTAINER ──────────────────────────────────────── */
.container {
    width: min(1140px, 92vw);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ─── NAV ────────────────────────────────────────────── */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px min(5vw, 52px);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 13, 20, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.logo-dot {
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    align-items: center;
}

.nav-links a {
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
    border-radius: 2px;
}

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

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

.nav-cta {
    background: var(--gold);
    color: #0a0d14 !important;
    padding: 9px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s, transform 0.2s !important;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
}

.nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px)
}

.nav-cta::after {
    display: none !important
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ────────────────────────────────────────────── */
.site-header {
    position: relative
}

.hero {
    position: relative;
    padding: 130px 0 160px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, #0d1220 0%, #101524 60%, #0a0d14 100%);
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px;
    height: 500px;
    top: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.22) 0%, transparent 70%);
    animation: floatOrb 8s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    top: 20%;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: floatOrb 10s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 40%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    animation: floatOrb 12s ease-in-out infinite alternate;
}

@keyframes floatOrb {
    from {
        transform: translate(0, 0) scale(1)
    }

    to {
        transform: translate(30px, 20px) scale(1.1)
    }
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.25);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.6s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.4)
    }
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.7s 0.1s ease both;
}

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

.lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
    animation: fadeSlideUp 0.7s 0.2s ease both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeSlideUp 0.7s 0.3s ease both;
}

.hero-note {
    margin-top: 28px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeSlideUp 0.7s 0.4s ease both;
}

.hero-note::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* Hero stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    animation: fadeSlideUp 0.7s 0.5s ease both;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    background: var(--gold);
    color: #0a0d14;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.2s;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(245, 166, 35, 0.5)
}

.button:hover::before {
    opacity: 1
}

.button:active {
    transform: translateY(-1px)
}

.button.ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.button.ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ─── SECTIONS ───────────────────────────────────────── */
.section {
    padding: 100px 0;
    position: relative;
}

.section-muted {
    background: rgba(255, 255, 255, 0.015);
}

.section-muted::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 15% 50%, rgba(245, 166, 35, 0.05), transparent);
    pointer-events: none;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    padding: 4px 14px;
    border-radius: 999px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.section-head p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 580px;
    line-height: 1.7;
}

.section-body {
    margin-top: 52px
}

/* ─── DIVIDER ─────────────────────────────────────────── */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.3), transparent);
    margin: 0;
    border: none;
}

/* ─── GRID / CARDS ───────────────────────────────────── */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(12px);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(245, 166, 35, 0.08);
    border-color: rgba(245, 166, 35, 0.2);
}

.card:hover::before {
    opacity: 1
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.card:hover .card-icon {
    transform: scale(1.1)
}

/* Color variants — change stroke color by swapping the class */
.icon-gold {
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.25);
    color: #f5a623;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #60a5fa;
}

.icon-purple {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #a78bfa;
}

.icon-teal {
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.25);
    color: #2dd4bf;
}

.icon-orange {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: #fb923c;
}

.icon-green {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

ul,
ol {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

li::before {
    content: '✦';
    color: var(--accent);
    font-size: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

ol {
    counter-reset: steps
}

ol li {
    counter-increment: steps
}

ol li::before {
    content: counter(steps);
    background: var(--gold);
    color: #0a0d14;
    font-weight: 700;
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── CTA / CONTACT ──────────────────────────────────── */
.cta {
    background: linear-gradient(150deg, #0d1525 0%, #111a2e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(245, 166, 35, 0.15), transparent 60%);
    pointer-events: none;
}

.cta h2 {
    margin-bottom: 12px
}

.cta .section-head p {
    margin: 0 auto 40px;
    max-width: 500px;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 20px 28px;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
    min-width: 240px;
    text-decoration: none;
    color: #fff;
}

.contact-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 166, 35, 0.3);
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-icon {
    color: #fff;
}

.contact-icon.telegram {
    background: linear-gradient(135deg, #2aabee, #229ed9)
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e)
}

.contact-icon.email {
    background: linear-gradient(135deg, #f5a623, #ff6b35)
}

.contact-icon.web {
    background: linear-gradient(135deg, #6366f1, #8b5cf6)
}

.contact-card-text {
    text-align: left
}

.contact-card-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    margin-bottom: 2px
}

.contact-card-value {
    font-weight: 600;
    font-size: 15px
}

/* ─── FLOATING CONTACT ───────────────────────────────── */
.float-contacts {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px 12px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    white-space: nowrap;
}

.float-btn span.label {
    max-width: 0;
    overflow: hidden;
    transition: max-width 0.35s ease;
    display: inline-block;
}

.float-btn:hover span.label {
    max-width: 140px
}

.float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45)
}

.float-btn.tg {
    background: linear-gradient(135deg, #2aabee, #229ed9)
}

.float-btn.wa {
    background: linear-gradient(135deg, #25d366, #128c7e)
}

.float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
    background: #070a0f;
    padding: 48px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.footer-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35)
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-socials {
    display: flex;
    gap: 12px
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    background: rgba(255, 255, 255, 0.06);
}

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

.social-btn {
    color: rgba(255, 255, 255, 0.7)
}

.social-btn:hover {
    color: #fff
}

.social-btn.tg {
    background: rgba(42, 171, 238, 0.15)
}

.social-btn.wa {
    background: rgba(37, 211, 102, 0.15)
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media(max-width:768px) {
    .nav {
        padding: 14px 20px
    }

    .nav-links {
        position: fixed;
        top: 65px;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 35vh;
        background: rgba(10, 13, 20, 0.97);
        backdrop-filter: blur(24px);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        gap: 0;
        padding: 20px 28px 20px;
        display: none;
        overflow-y: auto;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 18px;
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-links a:last-child {
        border-bottom: none
    }

    .nav-cta {
        margin-top: 24px;
        text-align: center;
        padding: 14px 22px;
    }

    .nav-toggle {
        display: block
    }

    /* hamburger active state */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

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

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

    .hero {
        padding: 100px 0 80px
    }

    h1 {
        font-size: clamp(34px, 8vw, 52px)
    }

    .hero-stats {
        gap: 24px;
        margin-top: 40px
    }

    .stat-number {
        font-size: 28px
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-actions .button {
        width: 100%;
        justify-content: center
    }

    .section {
        padding: 72px 0
    }

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

    .contact-cards {
        flex-direction: column;
        align-items: stretch
    }

    .contact-card {
        min-width: unset
    }

    .float-btn span.label {
        max-width: 0
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:480px) {
    .hero {
        padding: 80px 0 60px
    }

    .section {
        padding: 56px 0
    }

    .card {
        padding: 24px 20px
    }

    .cta .section-head p {
        font-size: 15px
    }
}