:root {
    --bg-dark: #0E0D0D;
    --bg-card: rgba(220, 174, 93, 0.05);
    --bg-card-hover: rgba(220, 174, 93, 0.1);
    --border-color: rgba(220, 174, 93, 0.2);
    
    --primary-color: #DCAE5D;
    --primary-light: #EBDCC4;
    
    --text-main: #f8fafc;
    --text-muted: rgba(235, 220, 196, 0.7);
    
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, #EBDCC4 0%, #DCAE5D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-left {
    text-align: left !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: #0E0D0D;
    border: none;
    box-shadow: 0 4px 14px rgba(220, 174, 93, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(220, 174, 93, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background: rgba(220, 174, 93, 0.1);
}

.btn-small { padding: 10px 20px; font-size: 14px; }
.btn-large { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-xl { padding: 20px 40px; font-size: 20px; border-radius: 14px; font-weight: 700;letter-spacing: -0.01em; box-shadow: 0 8px 30px rgba(220, 174, 93, 0.4); }
.btn-xl:hover { box-shadow: 0 12px 40px rgba(220, 174, 93, 0.6); transform: translateY(-3px); }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14, 13, 13, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 22px;
    color: var(--primary-color);
    font-style: italic; /* giving it a cursive feel */
    font-family: 'Georgia', serif;
}
.logo-img {
    height: 40px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 60px;
    text-align: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 800px;
    background: radial-gradient(circle, rgba(220,174,93,0.15) 0%, rgba(14,13,13,0) 70%);
    z-index: -1;
}

.headline {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.sub-headline {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 32px;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-tags span {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(220,174,93,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(220,174,93,0.3);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1000px;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(235,220,196,0.15) 0%, rgba(220,174,93,0.1) 30%, rgba(0,0,0,0) 60%);
    z-index: -1;
    filter: blur(50px);
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(220,174,93,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(220,174,93,0.1);
    transform: rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: rotateX(0deg);
}

/* Common Section */
.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #151414 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(220,174,93,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-light);
}

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

/* Solution Section */
.solution {
    padding: 120px 0;
    background: #151414;
}

.solution-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(220,174,93,0.03);
    border-radius: 32px;
    border: 1px solid var(--border-color);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.solution-container::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(220,174,93,0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.solution-content {
    flex: 1;
    z-index: 1;
}

.solution-desc {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

.solution-list {
    list-style: none;
}

.solution-list li {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.solution-icon {
    font-size: 32px;
    background: rgba(220,174,93,0.1);
    color: var(--primary-color);
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(220,174,93,0.3);
}

.solution-text strong { 
    display: block;
    margin-bottom: 8px; 
    font-size: 18px;
    color: var(--primary-light);
}
.solution-text p { color: var(--text-muted); font-size: 15px; line-height: 1.5; }

.solution-image {
    flex: 1;
    z-index: 1;
}

.feature-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(220,174,93,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--bg-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 40px 24px;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(220,174,93,0.05) 0%, rgba(220,174,93,0) 100%);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: linear-gradient(180deg, rgba(220,174,93,0.1) 0%, rgba(220,174,93,0) 100%);
    border-color: rgba(220,174,93,0.4);
}

.b-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-light);
}

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

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
}

.cta-container {
    text-align: center;
    padding: 80px 40px;
    background: rgba(220,174,93, 0.05);
    border-radius: 32px;
    border: 1px solid rgba(220,174,93, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(220,174,93,0.15) 0%, rgba(0,0,0,0) 60%);
    z-index: -1;
    filter: blur(40px);
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 40px;
}

.micro-copy {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(235, 220, 196, 0.7);
    background: rgba(220,174,93,0.1);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(220,174,93,0.2);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    background: #090909;
}

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

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

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

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

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

/* Responsive */
@media (max-width: 992px) {
    .headline { font-size: 48px; }
    .solution-container { flex-direction: column; padding: 40px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .problem-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .headline { font-size: 36px; }
    .hero-tags { flex-direction: column; gap: 12px; align-items: center; }
    .hero-tags span { display: inline-block; width: max-content; }
    .hero-actions { flex-direction: column; }
    .navbar { padding: 16px 20px; }
    .nav-links, .nav-actions { display: none; }
    .section-title, .cta-title { font-size: 32px; }
    .solution-container { padding: 30px 20px; }
    .problem-card { padding: 24px; }
    .cta-container { padding: 60px 20px; }
}
