.site-header {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    z-index: 1000;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px 40px;

    backdrop-filter: blur(16px);

    background:
      rgba(10,15,22,0.75);

    border-bottom:
      1px solid var(--border-color);
}

.logo-area {

    display: flex;

    align-items: center;

    gap: 12px;
}

.brand-name {

    color: white;

    font-size: 1.5rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.desktop-nav {

    display: flex;

    gap: 30px;
}

.desktop-nav a {

    text-decoration: none;

    color: white;

    transition:
      var(--transition-fast);
}

.desktop-nav a:hover {

    color:
      var(--accent-orange);
}

.hero-section {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 120px 20px;

    position: relative;

    overflow: hidden;
}

.hero-section::before {

    content: '';

    position: absolute;

    width: 800px;

    height: 800px;

    background:
      radial-gradient(
        circle,
        rgba(255,107,0,.25),
        transparent 70%
      );

    animation:
      floatGlow 8s infinite ease-in-out;
}

.hero-content {

    max-width: 900px;

    z-index: 2;
}

.hero-content h1 {

    font-size:
      clamp(
        3rem,
        8vw,
        7rem
      );

    line-height: 1.1;

    margin-bottom: 20px;
}


.opportunities-section {

    padding: 120px 20px;

    max-width: var(--container-width);

    margin: auto;
}

.section-header {

    text-align: center;

    margin-bottom: 60px;
}

.section-tag {

    display: inline-block;

    padding: 8px 16px;

    border-radius: 50px;

    background: rgba(255,107,0,0.15);

    color: var(--accent-orange);

    margin-bottom: 20px;
}

.section-header h2 {

    font-size: clamp(2rem,5vw,4rem);

    margin-bottom: 20px;
}

.section-header p {

    color: var(--text-secondary);

    max-width: 700px;

    margin: auto;
}

.opportunity-grid {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(280px,1fr)
        );

    gap: 30px;
}

.opportunity-card {

    background: var(--bg-card);

    border: 1px solid var(--border-color);

    border-radius: var(--radius-md);

    padding: 30px;

    backdrop-filter: blur(10px);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.opportunity-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 15px 35px rgba(255,107,0,0.2);
}


.how-section {

    padding: 120px 20px;
}

.how-grid {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(350px,1fr)
        );

    gap: 40px;

    max-width: 1200px;

    margin: auto;
}

.how-card {

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.02)
        );

    padding: 40px;

    border-radius: var(--radius-md);

    border:
      1px solid var(--border-color);
}

.how-card ul {

    padding-left: 20px;
}

.how-card li {

    margin-bottom: 15px;

    color: var(--text-secondary);
}


.site-footer {

    padding: 80px 20px 30px;

    border-top:
      1px solid var(--border-color);

    margin-top: 100px;
}

.footer-content {

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 30px;

    max-width: 1200px;

    margin: auto;
}

.footer-content a {

    display: block;

    color: var(--text-secondary);

    margin-bottom: 10px;

    text-decoration: none;
}

.copyright {

    text-align: center;

    margin-top: 40px;

    color: var(--text-secondary);
}


.showcase-section {

    padding: 120px 20px;

    max-width: var(--container-width);

    margin: auto;
}

.carousel-container {

    position: relative;

    overflow: hidden;

    border-radius: var(--radius-lg);

    margin-top: 50px;
}

.carousel-track {

    display: flex;

    transition:
      transform .7s ease;
}

.carousel-slide {

    min-width: 100%;

    position: relative;
}

.carousel-slide img {

    width: 100%;

    height: 650px;

    object-fit: cover;

    display: block;
}

.slide-overlay {

    position: absolute;

    inset: 0;

    background:
      linear-gradient(
          to top,
          rgba(0,0,0,.8),
          rgba(0,0,0,.1)
      );

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 60px;
}

.slide-overlay h3 {

    font-size: 3rem;

    margin-bottom: 10px;
}

.slide-overlay p {

    max-width: 500px;
}


.carousel-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;

    height: 55px;

    border-radius: 50%;

    border: none;

    cursor: pointer;

    background:
      rgba(255,255,255,.15);

    backdrop-filter: blur(10px);

    color: white;

    font-size: 24px;

    z-index: 20;
}

.carousel-btn:hover {

    background:
      rgba(255,107,0,.7);
}

.prev {

    left: 20px;
}

.next {

    right: 20px;
}


.carousel-indicators {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 10px;

    z-index: 20;
}

.carousel-dot {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background:
      rgba(255,255,255,.4);

    cursor: pointer;
}

.carousel-dot.active {

    background:
      var(--accent-orange);
}

.first-slide {
    color: #fff;
}

.second-slide {
    color: #fff;
}

.third-slide {
    color: #fff;
}

.fourth-slide {
    color: #fff;
}

.download-section {

    padding: 140px 20px;

    max-width: 1400px;

    margin: auto;
}

.download-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.phone-mockup {

    text-align: center;
}

.phone-mockup img {

    max-width: 380px;

    width: 100%;

    animation:
      floatPhone 4s ease-in-out infinite;
}

.store-buttons {

    display: flex;

    gap: 20px;

    margin-top: 30px;

    flex-wrap: wrap;
}

.store-btn {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 15px 25px;

    border-radius: 16px;

    text-decoration: none;

    color: white;

    background: var(--bg-card);

    border: 1px solid var(--border-color);
}

.store-btn:hover {

    border-color:
      var(--accent-orange);
}

.mobile-menu {

    position: fixed;

    top: 0;

    right: -100%;

    width: 300px;

    height: 100vh;

    background: #111827;

    transition: .4s;

    padding: 100px 30px;

    z-index: 999;
}

.mobile-menu.active {

    right: 0;
}

.mobile-menu a {

    display: block;

    color: white;

    text-decoration: none;

    margin-bottom: 25px;
}

.contact-hero {

    padding-top: 150px;
    padding-bottom: 100px;
}

.contact-container {

    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.contact-form-wrapper {

    margin-top: 50px;

    background:
      rgba(255,255,255,.03);

    border:
      1px solid var(--border-color);

    border-radius:
      var(--radius-md);

    padding: 40px;
}

#offlineBanner {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    background: #ff3d2e;

    color: white;

    text-align: center;

    padding: 12px;

    display: none;

    z-index: 5000;
}

/* ==========================
   LEGAL PAGES
========================== */

.legal-section {

    padding-top: 160px;
    padding-bottom: 100px;
}

.legal-container {

    max-width: 1000px;

    margin: 0 auto;

    padding: 0 24px;
}

.legal-container h1 {

    font-size: clamp(2.5rem, 5vw, 4rem);

    margin-bottom: 20px;

    color: #000;

    line-height: 1.2;
}

.last-updated {

    color: var(--text-secondary);

    margin-bottom: 50px;

    font-size: 0.95rem;

    font-style: italic;
}

.legal-container h2 {

    font-size: 1.9rem;

    margin-top: 50px;

    margin-bottom: 20px;

    color: var(--accent-orange);

    line-height: 1.3;
}

.legal-container h3 {

    font-size: 1.3rem;

    margin-top: 30px;

    margin-bottom: 15px;

    color: #000;

    line-height: 1.4;
}

.legal-container p {

    color: #4A4A4A;

    line-height: 1.9;

    margin-bottom: 20px;

    font-size: 1rem;
}

.legal-container ul {

    margin-bottom: 25px;

    padding-left: 25px;
}

.legal-container li {

    color: var(--text-secondary);

    margin-bottom: 12px;

    line-height: 1.8;
}

.legal-container ol {

    margin-bottom: 25px;

    padding-left: 25px;
}

.legal-container ol li {

    color: var(--text-secondary);

    margin-bottom: 12px;

    line-height: 1.8;
}

.legal-notice {

    background: rgba(255,107,0,0.08);

    border-left: 4px solid var(--accent-orange);

    padding: 20px;

    border-radius: 10px;

    margin: 30px 0;
}

.legal-container a {

    color: var(--accent-orange);

    text-decoration: none;
}

.legal-container a:hover {

    text-decoration: underline;
}

.legal-divider {

    border: none;

    height: 1px;

    background: var(--border-color);

    margin: 50px 0;
}

.logo {

    max-height: 50px;

    width: auto;

    display: block;
}

.contact-form-wrapper {

    background: rgba(105, 105, 105, 0.3);

    border: 1px solid #000;

    border-radius: 20px;

    padding: 40px;

    margin-top: 50px;

    backdrop-filter: blur(10px);
}

#contactForm {

    display: flex;

    flex-direction: column;

    gap: 24px;
}

#contactForm label {

    display: block;

    margin-bottom: 8px;

    font-weight: 600;

    color: #ffffff;
}

#contactForm input,
#contactForm textarea {

    width: 100%;

    padding: 14px 16px;

    border: 1px solid #1b1a1a;

    border-radius: 12px;

    background: rgba(113, 113, 113, 0.515);

    color: #000;

    font-size: 1rem;

    transition: all 0.3s ease;

    outline: none;
}

#contactForm input:focus,
#contactForm textarea:focus {

    border-color: #ff6b00;

    box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
}

#contactForm textarea {

    resize: vertical;

    min-height: 180px;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {

    color: rgba(255,255,255,0.45);
}

.form-group {

    width: 100%;
}

.form-row {

    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 20px;
}

#charCount {

    text-align: right;

    margin-top: 8px;

    font-size: 0.85rem;

    color: #4A4A4A;
}

.error {

    display: block;

    margin-top: 8px;

    color: #ff4d4f;

    font-size: 0.9rem;
}

#contactForm .btn-primary {

    width: fit-content;

    min-width: 180px;
}

.btn-primary {

    background: linear-gradient(
        135deg,
        #ff6b00,
        #ff8c1a
    );

    color: white;

    border: none;

    padding: 14px 28px;

    border-radius: 12px;

    font-weight: 600;

    cursor: pointer;

    transition: all .3s ease;
}

.btn-primary:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(255,107,0,.3);
}

.success-modal {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.75);

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 9999;
}

.success-content {

    background: #111827;

    padding: 40px;

    border-radius: 20px;

    text-align: center;

    max-width: 450px;

    width: 90%;

    border: 1px solid #4A4A4A;
}


