:root {
    --primary-color: #c78905;
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.1);
    --font-family: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

img,
video {
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
}

.text-gold {
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: clamp(34px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
}

.section-subtitle {
    max-width: 760px;
    margin: 0 auto 48px;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── КНОПКИ ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;   /* не 999px — чтобы не перебивать btn-buy */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: white;
}

.btn-primary {
    min-height: 56px;
    padding: 0 34px;
    border-radius: 18px;
    background: linear-gradient(135deg, #d09a1a 0%, #a86d00 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    box-shadow:
        0 10px 30px rgba(199, 137, 5, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ─── АДАПТИВ ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .container {
        width: min(calc(100% - 32px), 1280px);
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 36px;
    }
}
.btn-get-started, .hero-btn-designer {
  box-shadow: 0 0 12px rgba(229,177,49,0.25), 0 0 25px rgba(229,177,49,0.12) !important;
  transition: box-shadow 0.3s ease !important;
}
.btn-get-started:hover, .hero-btn-designer:hover {
  box-shadow: 0 0 20px rgba(229,177,49,0.45), 0 0 40px rgba(229,177,49,0.22) !important;
}

.hero-btn-designer {
  overflow: visible !important;
}
.btn-get-started {
  overflow: visible !important;
}

.btn-get-started, .hero-btn-designer {
  filter: drop-shadow(0 0 8px rgba(229,177,49,0.5)) drop-shadow(0 0 16px rgba(229,177,49,0.3)) !important;
}
