:root {
    --orange: #FE3913;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #1B120B;
    --gray-light: #F5F5F5;
    --orange-dark: #D92E0F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(1.75rem, 8vw, 5rem);
}

h2 {
    font-size: clamp(1.5rem, 6vw, 3.5rem);
}

h3 {
    font-size: clamp(1.25rem, 4vw, 2rem);
}

@media (max-width: 480px) {
    h1 {
        font-size: clamp(1.5rem, 6vw, 4rem);
    }

    h2 {
        font-size: clamp(1.25rem, 5vw, 2.5rem);
    }

    h3 {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .nav-toggle {
        display: flex !important;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.logo:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 57, 19, 0.2);
    border-radius: 8px;
}

.logo-icon {
    width: auto;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-icon img {
    height: 100%;
    width: auto;
    max-width: 160px;
    display: block;
}

.logo:hover .logo-icon img {
    filter: brightness(0.9);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Mobile menu button */
.nav-toggle {
    display: none !important;
    background: transparent;
    border: 2px solid transparent;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-toggle:hover {
    background: rgba(254, 57, 19, 0.08);
    border-color: rgba(254, 57, 19, 0.2);
}

.nav-toggle:focus {
    outline: none;
    background: rgba(254, 57, 19, 0.12);
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(254, 57, 19, 0.15);
}

.nav-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

/* hamburger -> X animation */
.nav-toggle.open .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-links .btn-primary::after{
    background: none;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-links a:focus {
    outline: none;
    color: var(--orange);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--orange);
    color: white;
    text-align: center;
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(254, 57, 19, 0.3);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 10px 30px rgba(254, 57, 19, 0.3), 0 0 0 4px rgba(254, 57, 19, 0.2);
}

.btn-secondary {
    background: var(--black);
    color: white;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--gray);
    transform: translateY(-2px);
}

.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: white;
}

.btn-outline:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1B120B 100%);
    padding-top: 100px;
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 90px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 2rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(254, 57, 19, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(254, 57, 19, 0.1) 0%, transparent 50%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .hero-container {
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        gap: 1.5rem;
    }
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-highlight {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.hero-visual {
    position: relative;
    animation: fadeIn 1s ease 0.6s both;
}

@media (max-width: 768px) {
    .hero-visual {
        order: -1;
    }
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(254, 57, 19, 0.2);
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero-image-container {
        aspect-ratio: 3 / 2;
        height: auto;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        aspect-ratio: 1 / 1;
        min-height: 280px;
    }
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 57, 19, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* App showcase */
.app-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, #fff 0%, #f9f7f6 100%);
}

@media (max-width: 1024px) {
    .app-section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .app-section {
        padding: 3rem 0 3.5rem;
    }
}

@media (max-width: 480px) {
    .app-section {
        padding: 2.5rem 0 3rem;
    }
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .app-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .app-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .app-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.phone-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    min-height: 600px;
}

@media (max-width: 1024px) {
    .phone-card {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .phone-card {
        order: 2;
        margin-top: 0;
        overflow: visible;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .phone-card {
        order: 2;
        margin-top: 0;
        overflow: visible;
        min-height: auto;
    }
}

.phone-mockup {
    width: 320px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 36px;
    background: #0b0b0b;
    padding: 18px;
    box-shadow: 0 30px 60px rgba(11,11,11,0.15), 0 6px 18px rgba(254,57,19,0.08);
    position: relative;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .phone-mockup {
        width: 280px;
        padding: 16px;
        box-shadow: 0 25px 50px rgba(11,11,11,0.12), 0 5px 15px rgba(254,57,19,0.06);
    }
}

@media (max-width: 768px) {
    .phone-mockup {
        width: 240px;
        padding: 12px;
        box-shadow: 0 20px 40px rgba(11,11,11,0.1), 0 4px 12px rgba(254,57,19,0.04);
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 200px;
        padding: 10px;
        box-shadow: 0 15px 30px rgba(11,11,11,0.08), 0 3px 10px rgba(254,57,19,0.02);
    }
}

.phone-screen {
    height: 640px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .phone-screen {
        height: 560px;
    }
}

@media (max-width: 768px) {
    .phone-screen {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .phone-screen {
        height: 340px;
    }
}

.phone-screen img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stylised hands / person hint */
.person-behind {
    width: 420px;
    height: 420px;
    border-radius: 220px;
    background: linear-gradient(180deg,#3b2a20 0%, #2a1d15 100%);
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

@media (max-width: 1024px) {
    .person-behind {
        width: 320px;
        height: 320px;
        border-radius: 160px;
        margin: 0 auto 1.5rem;
        box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    }
}

@media (max-width: 768px) {
    .person-behind {
        display: none;
    }
}

@media (max-width: 480px) {
    .person-behind {
        display: none;
    }
}

.person-behind::before,
.person-behind::after {
    content: '';
    position: absolute;
    bottom: -20px;
    width: 120px;
    height: 60px;
    border-radius: 40px 40px 20px 20px;
    background: linear-gradient(180deg,#3b2a20 0%, #2a1d15 100%);
    transform: rotate(-8deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.person-behind::after {
    right: -10px;
    left: auto;
    transform: rotate(8deg);
}

.phone-mockup-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -260px;
}

@media (max-width: 1024px) {
    .phone-mockup-wrapper {
        margin-top: -180px;
    }
}

@media (max-width: 768px) {
    .phone-mockup-wrapper {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .phone-mockup-wrapper {
        margin-top: 0.75rem;
    }
}

.app-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-content h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    line-height: 1.3;
}

.app-content > p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .app-content h3 {
        margin-bottom: 0.75rem;
        font-size: clamp(1.125rem, 5vw, 1.5rem);
    }

    .app-content > p {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem 0;
}

.app-features li {
    padding: 0.85rem 0;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .app-features li {
        padding: 0.65rem 0;
        gap: 0.65rem;
        font-size: 0.9rem;
    }
}

.app-features li .dot {
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.35rem;
}

.app-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.app-actions .btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .app-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .app-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Pre-registration form styles */
.prereg-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}

@media (max-width: 1024px) {
    .prereg-section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .prereg-section {
        padding: 3.5rem 0;
    }
}

.prereg-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .prereg-grid {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .prereg-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.prereg-card {
    padding: 2.5rem;
    border-radius: 18px;
    background: white;
    box-shadow: 0 12px 40px rgba(10,10,10,0.06);
    border: 1px solid rgba(254, 57, 19, 0.05);
}

@media (max-width: 768px) {
    .prereg-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .prereg-card {
        padding: 1.5rem;
    }
}

.prereg-card h3 { 
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--black);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section:last-of-type {
    margin-bottom: 2.5rem;
}

.form-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--orange);
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

.form-row-2col {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.prereg-form label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--black);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.required {
    color: var(--orange);
    font-weight: 700;
}

.prereg-form input,
.prereg-form select,
.prereg-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--black);
}

.prereg-form input::placeholder,
.prereg-form select::placeholder {
    color: #b0b0b0;
}

.prereg-form input:hover,
.prereg-form select:hover,
.prereg-form textarea:hover {
    border-color: rgba(254, 57, 19, 0.4);
    background: #fafafa;
}

.prereg-form input:focus,
.prereg-form select:focus,
.prereg-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(254, 57, 19, 0.12);
    color: var(--black);
}

.prereg-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FE3913' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.field-error {
    color: #d32f2f;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
    background: #ffebee;
    padding: 0.6rem 0.85rem;
    border-radius: 6px;
    border-left: 3px solid #d32f2f;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.form-actions .btn {
    flex: 1;
    min-width: 140px;
}

.form-actions .btn[type="reset"] {
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-actions .btn {
        width: 100%;
        flex: 1;
    }
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.prereg-benefits {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0 0;
}

.prereg-benefits li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.benefit-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .prereg-benefits li {
        padding: 0.65rem 0;
        font-size: 0.9rem;
    }

    .benefit-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .prereg-form input,
    .prereg-form select,
    .prereg-form textarea {
        padding: 0.75rem 0.9rem;
        font-size: 0.9rem;
    }

    .form-section {
        margin-bottom: 1.75rem;
    }

    .form-section-title {
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-actions {
        margin-bottom: 1.25rem;
    }
}

.spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    animation: spin 700ms linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.success-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.success-modal.show {
    display: flex;
    animation: modalSlideIn 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-modal .card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 18px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.success-modal .card h3 {
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.success-modal .card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.prereg-form .muted { color: var(--gray); font-size:0.95rem; }

.form-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.success-note { display:none; padding:1rem; border-radius:8px; background: #eaf7ee; color: #165a2b; margin-bottom:1rem; }

.floating-badge {
    position: absolute;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .floating-badge {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .floating-badge {
        display: none !important;
    }
}

.badge-1 {
    top: 10%;
    right: -5%;
}

.badge-2 {
    bottom: 15%;
    left: -5%;
}

.badge-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
    display: block;
}

@media (max-width: 768px) {
    .badge-number {
        font-size: 1.5rem;
    }
}

.badge-label {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 600;
}

/* Problem Section */
.problem-section {
    padding: 8rem 0;
    background: white;
}

@media (max-width: 1024px) {
    .problem-section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .problem-section {
        padding: 3rem 0;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 2rem;
    }
}

.section-label {
    display: inline-block;
    background: rgba(254, 57, 19, 0.1);
    color: var(--orange);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.problem-card {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.problem-number {
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.problem-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Solution Section */
.solution-section {
    padding: 8rem 0;
    background: var(--black);
    color: white;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .solution-section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: 3rem 0;
    }
}

.solution-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(254, 57, 19, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .solution-grid {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.solution-column h3 {
    color: var(--orange);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-list li::before {
    content: '→';
    color: var(--orange);
    font-weight: 900;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Vision Section */
.vision-section {
    padding: 8rem 0;
    background: white;
}

@media (max-width: 1024px) {
    .vision-section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 3rem 0;
    }
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mobile-menu {
    display: none !important;
    position: fixed;
    inset: 0;
    height: 100vh;
    /* background: linear-gradient(180deg, rgba(0,0,0,0.94) 0%, rgba(11,11,11,0.97) 100%); */
    background: #ffffff;
    backdrop-filter: blur(12px);
    color: rgb(0, 0, 0);
    z-index: 2000;
    padding: 5.5rem 1.5rem 3rem;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateY(-100vh);
    opacity: 0;
    transition: transform 320ms cubic-bezier(0.32, 0, 0.27, 1), opacity 200ms ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.show {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 1.1rem;
    /* color: rgba(255, 255, 255, 0.9); */
    color: #000000;
    text-decoration: none;
    padding: 0.9rem 1.25rem;
    border-radius: 10px;
    background: transparent;
    width: 100%;
    text-align: left;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    letter-spacing: 0.3px;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
    background: rgba(254, 57, 19, 0.12);
    border-left-color: var(--orange);
    color: #000000;
    outline: none;
    padding-left: 1.5rem;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 5px;
    background: var(--orange);
    border-radius: 0 2px 2px 0;
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu a:hover::before,
.mobile-menu a:focus::before {
    width: 4px;
}

.mobile-menu-cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%) !important;
    color: white !important;
    font-weight: 700;
    border-left-color: transparent !important;
    margin-top: 1rem;
    padding: 1rem 1.25rem !important;
    border-radius: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem !important;
}

.mobile-menu-cta:hover,
.mobile-menu-cta:focus {
    background: linear-gradient(135deg, var(--orange-dark) 0%, #b81f00 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254, 57, 19, 0.35);
}

.mobile-menu-cta::before {
    display: none !important;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(254, 255, 255, 0.08);
    border: 1px solid rgba(254, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    font-weight: 500;
    line-height: 1;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus {
    background: rgba(254, 57, 19, 0.2);
    border-color: var(--orange);
    color: var(--orange);
    outline: none;
    box-shadow: 0 0 12px rgba(254, 57, 19, 0.3);
    transform: scale(1.05);
}

.mobile-menu-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-logo img {
    height: 100%;
    width: auto;
    max-width: 140px;
    display: block;
}

.vision-quote {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.3;
    margin: 2rem 0;
    color: var(--black);
}

.vision-quote .highlight {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transform: rotate(-3deg);
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Founder Section */
.founder-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: white;
}

@media (max-width: 1024px) {
    .founder-section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 3rem 0;
    }
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .founder-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.leader-card {
    background: rgba(255,255,255,0.06);
    padding: 1.5rem;
    border-radius: 18px;
    display: flex;
    gap: 1rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 1024px) {
    .leader-card {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .leader-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
}

.leader-avatar {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(180deg,#3b2a20 0%, #2a1d15 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    .leader-avatar {
        width: 100px;
        height: 100px;
    }
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leader-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.leader-role {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.leader-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
}

.founder-content h2 {
    margin-bottom: 1rem;
}

.founder-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.founder-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--black);
    color: white;
    text-align: center;
}

@media (max-width: 1024px) {
    .cta-section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Footer */
footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    footer {
        padding: 2.5rem 0 1.5rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a, .footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover, .footer-bottom a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container,
    .solution-grid,
    .founder-grid,
    .app-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 4rem;
    }

    .hero-visual {
        order: -1;
    }

    .floating-badge {
        display: none !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-toggle {
        display: flex !important;
    }

    body.menu-open { overflow: hidden; }
}