:root {
    --bg:           #09090A;
    --surface:      #0E0E10;
    --surface-2:    #141416;
    --card:         rgba(232, 176, 0, 0.04);
    --card-hover:   rgba(232, 176, 0, 0.09);
    --gold:         #E8B000;
    --gold-light:   #F5C800;
    --gold-dark:    #B88200;
    --gold-glow:    rgba(232, 176, 0, 0.18);
    --gold-rgb:     232, 176, 0;
    --border:       rgba(232, 176, 0, 0.15);
    --border-hover: rgba(232, 176, 0, 0.45);
    --text:         #F6F2E8;
    --muted:        rgba(246, 242, 232, 0.55);
    --muted-2:      rgba(246, 242, 232, 0.3);
    --shadow:       0 4px 24px rgba(0, 0, 0, 0.6);
    --shadow-gold:  0 8px 32px rgba(232, 176, 0, 0.25);
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 60px;
}

#background-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

/* ─── Typography ─── */

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
}

h1 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--gold-light) 0%, #FFF5DC 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
    margin-bottom: 1.5rem;
}

h2 .line {
    display: block;
    background: linear-gradient(135deg, var(--text) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--text);
}

section {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 2rem auto;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

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

/* ─── Gold Divider ─── */
.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* ─── Buttons ─── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #08080D;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, #FFF0B0 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: #08080D;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--border-hover);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--card-hover);
    border-color: var(--gold-light);
    color: var(--text);
}

/* ─── Header ─── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(8, 8, 13, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 2.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 38px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-cta {
    padding: 0.55rem 1.4rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #08080D !important;
    border-radius: 5px;
    font-weight: 700 !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
    color: #08080D !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 1001;
}

/* ─── Mobile Nav ─── */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 13, 0.97);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--gold-light); }

.mobile-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-close:hover { color: var(--gold-light); }

main {
    padding-top: 68px;
}

/* ─── Hero ─── */
#hero {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2.5rem 4rem;
    width: 100%;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: rgba(var(--gold-rgb), 0.08);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.hero-label .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-content {
    max-width: 780px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(244, 240, 232, 0.7);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

/* ─── Hero Stats ─── */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
}

.stat-block {
    background: var(--surface);
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: background 0.3s;
}

.stat-block:hover {
    background: var(--surface-2);
}

.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ─── Geography ─── */
#geography {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    background: var(--surface);
    border: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 0;
    box-shadow: none;
}

#geography .geo-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
}

.geography-carousel {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.geography-carousel::before,
.geography-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.geography-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--surface), transparent);
}

.geography-carousel::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--surface));
}

.carousel-track {
    display: flex;
    animation: carousel-scroll 32s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes carousel-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.country-card {
    flex-shrink: 0;
    width: 130px;
    margin: 0 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.country-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.flag-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 0.8rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color 0.35s, box-shadow 0.35s;
}

.country-card:hover .flag-box {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.25);
}

.flag-box img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.35s;
}

.country-card:hover .flag-box img {
    transform: scale(1.1);
}

.country-label {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
    transition: color 0.3s;
}

.country-card:hover .country-label {
    color: var(--gold-light);
}

/* ─── About ─── */
#about .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

#about .text-col p {
    font-size: 1.05rem;
    line-height: 1.85;
}

#about .text-col p strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* ─── Terminal Visual ─── */
.terminal {
    background: #07070B;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,158,50,0.08);
}

.terminal-bar {
    padding: 0.85rem 1.2rem;
    background: rgba(200,158,50,0.05);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.t-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.t-dot:nth-child(1) { background: #FF5F57; }
.t-dot:nth-child(2) { background: #FFBD2E; }
.t-dot:nth-child(3) { background: #27C93F; }

.terminal-logo-svg {
    margin-left: auto;
    height: 20px;
    width: auto;
    display: block;
}

.terminal-body {
    padding: 1.4rem 1.6rem;
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 2;
}

.t-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.15rem 0;
}

.t-key {
    color: rgba(246, 242, 232, 0.5);
    min-width: 140px;
    font-size: 0.8rem;
}

.t-val {
    color: var(--gold-light);
    font-weight: 600;
}

.t-val.green { color: #4ADE80; }
.t-val.blue  { color: #60A5FA; }

.t-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

.t-live {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 0 0.4rem;
}

.t-live-dot {
    width: 7px;
    height: 7px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.t-live-text {
    font-size: 0.78rem;
    color: #4ADE80;
}

.t-feed {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    height: 72px;
}

.t-feed-item {
    font-size: 0.78rem;
    color: rgba(246, 242, 232, 0.5);
    padding: 0.2rem 0;
    animation: feed-slide 6s linear infinite;
}

@keyframes feed-slide {
    0%   { transform: translateY(0); opacity: 1; }
    90%  { opacity: 0.8; }
    100% { transform: translateY(-100%); opacity: 0; }
}

/* ─── How It Works ─── */
#how-it-works .hiw-content {
    max-width: 760px;
    margin: 2rem auto 0;
}

#how-it-works h3 {
    color: var(--gold-light);
    font-size: 1.15rem;
    margin-top: 2.2rem;
    margin-bottom: 0.6rem;
    padding-left: 1rem;
    border-left: 3px solid var(--gold);
}

#how-it-works p {
    padding-left: 1rem;
}

/* ─── Conditions ─── */
#conditions {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
    text-align: center;
}

.conditions-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.cond-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.5rem 1.8rem;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    overflow: hidden;
}

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

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

.cond-card:hover {
    border-color: var(--border-hover);
    background: var(--card-hover);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.cond-card.featured {
    border-color: rgba(var(--gold-rgb), 0.35);
    background: rgba(var(--gold-rgb), 0.06);
}

.cond-num {
    position: absolute;
    top: 1rem; right: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.1;
    line-height: 1;
}

.cond-icon {
    width: 64px;
    height: 64px;
    background: rgba(var(--gold-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background 0.3s;
}

.cond-card:hover .cond-icon {
    background: rgba(var(--gold-rgb), 0.18);
}

.cond-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.cond-card h3 {
    font-size: 1.9rem;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.cond-card p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--muted);
}

.cond-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.cond-note i { color: var(--gold); }

/* ─── Features ─── */
#features {
    background: var(--bg);
    border: 1px solid var(--border);
}

.features-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 3.5rem;
    font-size: 1.05rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.adv-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem 1.6rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.adv-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.adv-card:hover::after { opacity: 1; }

.adv-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.adv-icon {
    width: 52px;
    height: 52px;
    background: rgba(var(--gold-rgb), 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: background 0.3s;
}

.adv-card:hover .adv-icon {
    background: rgba(var(--gold-rgb), 0.2);
}

.adv-icon i {
    font-size: 1.4rem;
    color: var(--gold);
}

.adv-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.adv-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.adv-badge {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.08;
}

/* ─── Features Stats Row ─── */
.feat-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.feat-stat {
    padding: 2rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.feat-stat:last-child { border-right: none; }

.feat-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.feat-stat-lbl {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-2);
}

/* ─── FAQ ─── */
#faq .faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(var(--gold-rgb), 0.3);
}

.faq-item.active {
    border-color: rgba(var(--gold-rgb), 0.4);
    background: rgba(var(--gold-rgb), 0.03);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold-light);
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.97rem;
    margin: 0;
}

/* ─── Contact ─── */
#contact {
    text-align: center;
    background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
}

.contact-card {
    max-width: 520px;
    margin: 2rem auto 0;
    background: rgba(var(--gold-rgb), 0.05);
    border: 1px solid rgba(var(--gold-rgb), 0.25);
    border-radius: 18px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.contact-card:hover {
    border-color: rgba(var(--gold-rgb), 0.45);
    box-shadow: 0 20px 50px rgba(var(--gold-rgb), 0.12);
}

.contact-icon-wrap {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    transition: transform 0.3s;
}

.contact-card:hover .contact-icon-wrap {
    transform: scale(1.05) rotate(3deg);
}

.contact-icon-wrap i {
    font-size: 2.6rem;
    color: #08080D;
}

.contact-card h3 {
    font-size: 1.7rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.tg-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.8rem;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    color: #08080D;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.tg-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: #08080D;
}

.tg-btn i { transition: transform 0.3s; }
.tg-btn:hover i { transform: translateX(4px); }

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
}

.contact-note p {
    font-size: 0.92rem;
    margin: 0;
    color: var(--muted);
}

/* ─── Footer ─── */
.site-footer {
    background: #050507;
    border-top: 1px solid var(--border);
    padding: 0;
    margin-top: 4rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    background-size: 200% 100%;
    animation: gold-flow 4s ease infinite;
}

@keyframes gold-flow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2.5rem 3rem;
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 5rem;
    align-items: start;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--muted);
    max-width: 240px;
    line-height: 1.7;
    margin-top: 1rem;
}

.footer-logo-svg {
    height: 48px;
    width: auto;
    display: block;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-col h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1.4rem;
    padding-left: 14px;
    border-left: 2px solid var(--gold);
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--muted);
    font-size: 0.9rem;
    padding: 0.35rem 0;
    transition: color 0.3s, transform 0.3s;
}

.footer-col a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-col a i {
    color: var(--gold-dark);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    transition: color 0.3s;
}

.footer-col a:hover i { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.4rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--muted-2);
    margin: 0;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(var(--gold-rgb), 0.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #08080D;
    transform: translateY(-2px);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 1.2rem;
        height: 60px;
    }

    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    main { padding-top: 60px; }

    .hero-inner {
        padding: 3rem 1.2rem 3rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions { gap: 0.8rem; }

    #about .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .feat-stats {
        grid-template-columns: 1fr;
    }

    .feat-stat { border-right: none; border-bottom: 1px solid var(--border); }
    .feat-stat:last-child { border-bottom: none; }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1.5rem 2rem;
    }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.2rem 1.5rem;
    }

    section {
        padding: 3rem 1.2rem;
        margin: 1.2rem auto;
        border-radius: 14px;
    }

    h2 { font-size: 1.8rem; }

    .geography-carousel::before,
    .geography-carousel::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content p { font-size: 1rem; }

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

    .adv-card {
        padding: 1.3rem 1rem;
    }

    .adv-card h3 { font-size: 0.9rem; }
    .adv-card p { font-size: 0.8rem; }
    .adv-badge { display: none; }

    .country-card { width: 100px; margin: 0 0.8rem; }
    .flag-box { width: 72px; height: 72px; }
    .flag-box img { width: 48px; height: 48px; }
}
