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

:root {
    --orange: #f97316;
    --orange-light: #fb923c;
    --orange-dark: #ea580c;
    --copper: #b45309;
    --amber: #f59e0b;
    --yellow: #fbbf24;
    --bg-dark: #1a0f0a;
    --bg-card: #261810;
    --bg-card-hover: #342218;
    --text: #fef3e2;
    --text-muted: #d4b896;
    --border: rgba(249, 115, 22, 0.25);
    --glow: rgba(249, 115, 22, 0.4);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(180, 83, 9, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Announcement Bar */
.announce-bar {
    background: linear-gradient(90deg, var(--copper), var(--orange), var(--amber), var(--orange), var(--copper));
    background-size: 300% 100%;
    animation: shimmer 5s ease infinite;
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Header */
header {
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow), var(--orange), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 6px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

nav a:hover,
nav a.active {
    color: white;
    background: linear-gradient(135deg, var(--orange), var(--copper));
}

/* Hero */
.hero {
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content .label {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--copper));
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--copper));
    color: white;
    box-shadow: 0 4px 20px var(--glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--glow);
}

.btn-outline {
    background: transparent;
    color: var(--orange-light);
    border: 2px solid var(--orange);
}

.btn-outline:hover {
    background: var(--orange);
    color: white;
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Info Cards Row */
.info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.info-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--copper), var(--orange), var(--amber));
}

.info-card h3 {
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.info-card span {
    color: var(--text-muted);
    font-size: 14px;
}

/* Page Header */
.page-header {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.08) 0%, transparent 100%);
}

.page-header h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-muted);
    font-size: 18px;
}

/* Sections */
.section {
    padding: 70px 0;
}

.section-dark {
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.04) 0%, transparent 100%);
}

.sec-title {
    text-align: center;
    margin-bottom: 50px;
}

.sec-title .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--copper));
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sec-title h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sec-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Copper Cards */
.copper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.copper-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.copper-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.5s ease;
}

.copper-card:hover::before {
    left: 100%;
}

.copper-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.15);
}

.copper-card .card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--orange), var(--copper));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.copper-card .card-icon img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
}

.copper-card h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}

.copper-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Two Column */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse > * {
    direction: ltr;
}

.split-text .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--copper));
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.split-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.split-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.split-text ul {
    list-style: none;
    margin: 20px 0 30px;
}

.split-text ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
}

.split-text ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 12px;
}

.split-img img {
    width: 100%;
    border-radius: 16px;
    border: 2px solid var(--border);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.15);
}

/* Steps */
.step-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.step-item .step-num {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--orange), var(--copper));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 18px;
}

.step-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.step-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* FAQ */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-box:hover {
    border-color: var(--orange);
}

.faq-box h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--orange-light);
}

.faq-box p {
    color: var(--text-muted);
    font-size: 15px;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--copper), var(--orange-dark));
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-section .btn-group {
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    background: white;
    color: var(--copper);
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--copper);
}

/* Footer */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--orange-light);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    text-align: center;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-grid,
    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-section.reverse {
        direction: ltr;
    }

    .hero-content h1 {
        font-size: 34px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .sec-title h2 {
        font-size: 26px;
    }

    .info-row {
        grid-template-columns: 1fr 1fr;
    }

    .step-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 40px 20px;
    }
}
