/* ===== VARIABLES ===== */
:root {
    --brand-orange: #b06037;
    --brand-orange-light: #c8764a;
    --brand-orange-dark: #8c4a2a;
    
    --bg-dark: #081704;
    --bg-black: #131313;
    --text-light: #f0f3f5;
    --text-white: #ffffff;
    --text-muted: #b0b0b0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease-out;
}

/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text-white);
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--brand-orange);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--brand-orange-light);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ===== BUTTONS ===== */
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
    color: var(--text-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    transition: all var(--transition-medium);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(176, 96, 55, 0.3);
}

.primary-btn:hover {
    background: linear-gradient(135deg, var(--brand-orange-light) 0%, var(--brand-orange) 100%);
    color: var(--text-white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(176, 96, 55, 0.5);
}

.secondary-btn {
    display: inline-block;
    background-color: #f2bf74;
    color: #131313;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.secondary-btn:hover {
    background-color: #bf975c;
    color: #131313;
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    background-color: var(--bg-black);
    /* For testing before we get real image */
    background-image: linear-gradient(rgba(19, 19, 19, 0.8), rgba(19, 19, 19, 0.9)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-logo {
    max-width: 300px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    max-width: 900px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #dddddd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-content .subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 800px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.video-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    margin-bottom: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(176,96,55,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(176,96,55,0.3);
    border-color: rgba(176,96,55,0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: var(--bg-black);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 6rem 0;
    background-color: var(--bg-black);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, var(--text-white) 0%, var(--brand-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-orange-light), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(176, 96, 55, 0.4);
    box-shadow: 0 20px 40px rgba(176, 96, 55, 0.15);
}

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

.feature-icon {
    font-size: 2rem;
    color: var(--brand-orange);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 96, 55, 0.1);
    border-radius: 50%;
}

.feature-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.feature-text p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

.center-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    padding: 8rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #000;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.about-content {
    max-width: 600px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    cursor: default;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-orange);
    transform: translateX(10px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--brand-orange);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 96, 55, 0.1);
    border-radius: 12px;
}

.stat-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
}

.stat-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.about-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    color: var(--brand-orange);
}

.about-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    background-color: #000;
}

.cta-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.guarantee {
    font-size: 1.25rem;
    color: var(--brand-orange);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
}

.pricing-card {
    flex: 1;
}

.pricing-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--brand-orange);
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(176,96,55,0.1);
}

.pricing-btn:hover {
    background: var(--brand-orange);
    color: #131313;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(176, 96, 55, 0.4);
}

.premium-btn {
    background: linear-gradient(135deg, var(--brand-orange-light) 0%, var(--brand-orange) 50%, var(--brand-orange-dark) 100%);
    border: none;
    color: #131313;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(176, 96, 55, 0.3);
}

.premium-btn:hover {
    box-shadow: 0 20px 50px rgba(176, 96, 55, 0.6);
    transform: scale(1.08) translateY(-5px);
}

.premium-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    20% { transform: translateX(100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

.premium-btn small {
    display: block;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-summary {
    color: #ba8569;
    font-size: 1.25rem;
}

/* ===== FOOTER ===== */
footer {
    background-color: #131313;
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content .secondary-btn {
    margin-bottom: 3rem;
}

.footer-links {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-light);
    font-weight: 600;
}

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

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .about-section .overlay {
        background: rgba(0,0,0,0.7);
    }
}

/* ===== APP MOCKUP SECTION ===== */
.features-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .features-layout {
        grid-template-columns: 1fr 380px;
        align-items: center;
    }
}

.app-mockup-wrapper {
    perspective: 1000px;
}

.css-iphone {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 45px;
    border: 12px solid #222;
    position: relative;
    box-shadow: 0 25px 60px rgba(176,96,55,0.25), inset 0 0 15px rgba(255,255,255,0.1);
    margin: 0 auto;
    overflow: hidden;
    transform-style: preserve-3d;
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #222;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #000000 100%);
    padding: 3.5rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.app-header { margin-bottom: 0.5rem; }
.greeting { font-size: 0.85rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px;}
.app-logo { font-size: 1.4rem; font-weight: 700; color: var(--brand-orange); font-family: var(--font-heading); letter-spacing: 2px;}

.app-card {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.app-card span { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 1.5px; }
.app-card h4 { font-size: 1.15rem; margin: 0.5rem 0; font-family: var(--font-body); color: #fff;}

.progress-bar { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; margin-top: 0.75rem; }
.progress-bar .fill { height: 100%; background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light)); border-radius: 3px;}

.macro-card { display: flex; flex-direction: column; gap: 0.5rem; }
.macros { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.macro { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: #eee;}
.macro .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.p { background: #ff4757; }
.dot.c { background: #eccc68; }
.dot.f { background: #7bed9f; }

.app-video-card {
    background: url('assets/cta-bg.jpg') center/cover;
    flex-grow: 1;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.app-video-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 60%); }
.app-video-card i, .app-video-card span { position: relative; z-index: 2; }
.app-video-card i { font-size: 2.5rem; color: rgba(255,255,255,0.9); margin-bottom: auto; text-shadow: 0 4px 10px rgba(0,0,0,0.5);}
.app-video-card span { font-size: 0.95rem; font-weight: 600; color: #fff;}
