:root {
    /* Colors - Exact match to your app */
    --primary: #F97015;
    --primary-dark: #E35D0A;
    --primary-light: rgba(249, 112, 21, 0.12);
    --primary-border: rgba(249, 112, 21, 0.35);
    
    --background: #FFFBF5;
    --background-card: #FFFFFF;
    --border: #EFE7DE;
    
    --text-dark: #2E2723;
    --text-medium: #7B726C;
    --text-light: #A39C96;
    
    /* Gradients & Effects */
    --gradient-warm: linear-gradient(135deg, #FFFBF5 0%, #FFF5E8 100%);
    --gradient-orange: linear-gradient(135deg, #F97015 0%, #FF8C3A 100%);
    --shadow-sm: 0 2px 8px rgba(46, 39, 35, 0.06);
    --shadow-md: 0 4px 16px rgba(46, 39, 35, 0.08);
    --shadow-lg: 0 8px 32px rgba(46, 39, 35, 0.12);
    --shadow-orange: 0 4px 20px rgba(249, 112, 21, 0.25);
    
    /* Typography */
    --font-display: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--background);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 600;
}

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

/* Typography */
h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.2px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Navigation */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-separator {
    width: 1px;
    height: 30px;
    background: var(--border);
    margin: 0 2rem;
}

.logo-icon {
    font-size: 1.75rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--gradient-warm);
    position: relative;
    overflow: hidden;
}

/* Add subtle pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(249, 112, 21, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 112, 21, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative elements */
.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 80%;
    background: radial-gradient(circle, rgba(249, 112, 21, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, 20px) scale(1.1);
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--text-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
    border: 1px solid var(--primary-border);
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: 0.3px;
}

.gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-body);
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--gradient-orange);
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(249, 112, 21, 0.35);
}

.btn-secondary {
    background: var(--background-card);
    color: var(--text-dark);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #2E2723 0%, #4A3F3A 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        var(--shadow-lg),
        0 0 0 8px rgba(249, 112, 21, 0.1);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #2E2723;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--background);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.scan-indicator {
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary);
    border-radius: 20px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    background: var(--primary-light);
}

.scan-indicator::before,
.scan-indicator::after {
    content: '';
    position: absolute;
    background: var(--primary);
}

.scan-indicator::before {
    width: 80%;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: scan-line 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary);
}

.scan-text {
    margin-top: 2rem;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.3px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        border-color: var(--primary);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
        border-color: var(--primary-dark);
    }
}

@keyframes scan-line {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scaleX(0);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scaleX(1);
    }
}

/* Sections */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.section-header {
    margin-bottom: 4rem;
}

/* Value Section */
.value-section {
    background: white;
    position: relative;
}

.value-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(249, 112, 21, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(249, 112, 21, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.value-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--background-card);
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: var(--transition-slow);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-border);
}

.value-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-light);
    border-radius: 20px;
    border: 1px solid var(--primary-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.value-card:hover .value-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.value-icon {
    font-size: 2.5rem;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 900;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Screenshots Section */
.screenshots-section {
    background: white;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.screenshot-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.screenshot-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.screenshot-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-border);
}

.screenshot-placeholder {
    aspect-ratio: 9/16;
    background: var(--background);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
}

.screenshot-placeholder:hover {
    border-color: var(--primary-border);
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.placeholder-icon {
    font-size: 3.5rem;
    opacity: 0.8;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.placeholder-title {
    font-weight: 900;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.placeholder-desc {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.875rem;
}

.screenshot-caption {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

.screenshots-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--primary-light);
    border-radius: 14px;
    border: 1px solid var(--primary-border);
    color: var(--text-dark);
    font-weight: 700;
}

/* Features Section */
.features-section {
    background: white;
}

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

.feature-item {
    padding: 2rem;
    background: var(--background-card);
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: var(--transition-slow);
    box-shadow: var(--shadow-sm);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-border);
}

.feature-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 900;
}

.feature-content p {
    color: var(--text-medium);
}

/* Access Section */
.access-section {
    background: var(--gradient-orange);
    color: white;
    position: relative;
    overflow: hidden;
}

.access-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.access-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.access-card h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.access-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.access-card .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    font-weight: 900;
}

.access-card .btn-primary:hover {
    background: var(--background);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.access-note {
    margin-top: 1.5rem;
    opacity: 0.9;
    font-size: 0.875rem;
}

/* Trust Section */
.trust-section {
    background: var(--background);
}

.trust-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 18px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.trust-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.trust-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.trust-card p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--background-card);
    padding: 3rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.optional {
    font-weight: 400;
    color: var(--text-light);
}

.required {
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    background: white;
    color: var(--text-dark);
    width: 100%;
    max-width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.contact-email {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-medium);
}

.contact-email a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-email a:hover {
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0;
}

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

.footer-copy {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

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

.separator {
    opacity: 0.5;
}

.footer-tagline {
    opacity: 0.8;
    font-size: 0.875rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.875rem;
    }
    
    .nav-separator {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.5rem;
        justify-content: center;
    }
    
    .nav-separator {
        display: none;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-card {
        padding: 2rem 1.5rem;
    }
}
