@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-color: #050505;
    --bg-gradient: linear-gradient(135deg, #050505 0%, #0a1128 100%);
    --accent-color: #00f2ff;
    --accent-glow: rgba(0, 242, 255, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(5, 5, 5, 0.8);
    --transition: all 0.3s ease;

    /* New Brand Colors */
    --brand-gold: #f59e0b;
    --brand-blue: #395699;
    --btn-gradient: linear-gradient(to right, #0ea5e9, #8b5cf6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    background: var(--bg-color);
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    max-width: 100%;
    /* Far left and far right */
    padding: 0 4rem;
    /* Add some space from the absolute edges */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    /* Increased further */
    margin-right: 10px;
    transition: var(--transition);
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

nav ul li a:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1.2rem;
    font-style: normal;
    /* Force normal style for buttons */
    text-transform: none;
    /* Removed uppercase */
    letter-spacing: -0.02em;
    /* Matched h3 */
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    /* Matched h3 */
}

.btn-primary {
    background: var(--btn-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: var(--card-border);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to bottom, #fff 70%, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-icon-container {
    position: relative;
    width: 200px;
    /* Increased from 120px */
    height: 200px;
    /* Increased from 120px */
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floating 4s ease-in-out infinite;
}

.tooth-icon {
    font-size: 8rem;
    /* Increased from 5rem */
    color: var(--brand-gold);
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.4));
}

.dollar-icon {
    position: absolute;
    top: 50%;
    right: -30px;
    /* Adjusted orbit */
    font-size: 4rem;
    /* Increased from 2rem */
    color: #ffd700;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    animation: orbit 6s linear infinite;
}

.crown-icon {
    position: absolute;
    top: -40px;
    /* Adjusted position */
    font-size: 4rem;
    /* Increased from 2.5rem */
    color: var(--brand-gold);
    transform: rotate(-15deg);
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.6));
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(100px) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

.txt-gold {
    color: var(--brand-gold) !important;
    -webkit-text-fill-color: var(--brand-gold) !important;
}

.txt-brand-blue {
    color: var(--brand-blue) !important;
    -webkit-text-fill-color: var(--brand-blue) !important;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Two-column Sections */
.split-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.split-section .short-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.split-section .bullet-points {
    margin-bottom: 2.5rem;
}

.split-section .bullet-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.split-section .bullet-points li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

/* Cards & Icons */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* How We Work */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.grid-4 .card {
    text-align: center;
}

.grid-4 .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Results */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.result-item {
    padding: 2rem;
}

.result-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 1rem 0 0.5rem;
}

.result-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: left;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 300px;
    border: 1px solid var(--card-border);
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.faq-item.active .faq-question {
    border-radius: 12px 12px 0 0;
    color: var(--accent-color);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--card-border);
    background: rgba(0, 0, 0, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--card-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.copyright-links a {
    margin-left: 20px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline Style for How We Work */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--card-border), transparent);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    width: 20%;
    text-align: center;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--btn-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.timeline-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Redesigned Results */
.results-header h2 {
    font-size: 3.5rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.results-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.result-card {
    background: #0a0a0a;
    border: 1px solid var(--card-border);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.result-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.result-card .icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.result-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.result-card .metrics {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.result-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (max-width: 968px) {
    .timeline {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        width: 100%;
    }

    .results-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }

    .split-section .container {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {

    .grid-4,
    .results-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
    }

    .copyright {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* SOON Badge Animation */
.soon-badge {
    display: block;
    font-size: 5rem;
    /* Massive size */
    color: var(--brand-gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: floatVertical 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
    line-height: 1;
}

@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}