/* Reset and Base Styles */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  /* Custom Scrollbar */
  ::-webkit-scrollbar {
      width: 12px;
  }

  ::-webkit-scrollbar-track {
      background: #000000;
  }

  ::-webkit-scrollbar-thumb {
      background: linear-gradient(135deg, #0C3D28 0%, #1a5d3a 100%);
      border-radius: 6px;
      border: 2px solid #000000;
  }

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1a5d3a 0%, #0C3D28 100%);
}

/* User Login Modal */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    background: linear-gradient(135deg, #0C3D28 0%, #1a5d3a 100%);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.login-modal.active .login-modal-content {
    transform: scale(1);
}

.login-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.login-modal-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.close-login-modal {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-login-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.login-modal-body p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: #b0b0b0;
}

.form-group input:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.login-submit-button {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    color: #0C3D28;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.login-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.login-button-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.login-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.login-links a:hover {
    color: #ffffff;
}

.login-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-message.success {
    background-color: rgba(212, 237, 218, 0.2);
    color: #155724;
    border: 1px solid rgba(195, 230, 203, 0.3);
}

.login-message.error {
    background-color: rgba(248, 215, 218, 0.2);
    color: #721c24;
    border: 1px solid rgba(245, 198, 203, 0.3);
}

  /* Top Left Logo */
  .top-logo {
      position: fixed;
      top: 2rem;
      left: 2rem;
      z-index: 1000;
      transition: all 0.3s ease;
  }

  .top-logo:hover {
      transform: scale(1.1);
  }

  .top-logo-icon {
      width: 50px;
      height: 50px;
      object-fit: contain;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
      transition: all 0.3s ease;
  }

   .top-logo:hover .top-logo-icon {
       filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4)) brightness(1.1);
   }

   /* Top Left Logo - User Login Button */
   .top-logo {
       cursor: pointer;
       border-radius: 50%;
       padding: 8px;
       background: rgba(0, 0, 0, 0.1);
       backdrop-filter: blur(10px);
       border: 2px solid transparent;
   }

   .top-logo:hover {
       background: rgba(12, 61, 40, 0.2);
       border-color: rgba(12, 61, 40, 0.5);
       box-shadow: 0 4px 15px rgba(12, 61, 40, 0.3);
   }

   .top-logo:active {
       transform: scale(0.95);
   }

:root {
    --primary-color: #0C3D28;
    --primary-light: #1a5d3a;
    --secondary-color: #ffffff;
    --accent-color: #00D4AA;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --background-primary: #000000;
    --background-secondary: #0a0a0a;
    --background-card: rgba(255, 255, 255, 0.05);
    --border-color: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #0C3D28 0%, #1a5d3a 100%);
    --gradient-accent: linear-gradient(135deg, #00D4AA 0%, #0C3D28 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(12, 61, 40, 0.3);
}

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

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ensure no white lines between sections */
section {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

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

/* Right Menu */
.right-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.right-menu.visible {
    right: 0;
}

.menu-content {
    padding: 2rem 0;
    height: 100%;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 2rem;
}

.menu-item {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

.menu-item:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(-10px);
    filter: brightness(1.5);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--background-card);
    border-color: var(--text-secondary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--background-card);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-icon {
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #000000 30%, #0C3D28 80%, #1a5d3a 100%);
    position: relative;
    overflow: hidden;
}


/* Story Section - CRED Style */
.story-section {
    padding: 6rem 0 8rem 0;
    background: #000000;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}



.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid transparent;
    position: relative;
}

.menu-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00FF88, #0C3D28);
    transition: width 1s ease 0.5s;
}

.menu-overlay.active .menu-header::after {
    width: 100%;
}

.menu-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #00FF88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
}

.menu-overlay.active .menu-title {
    opacity: 1;
    transform: translateY(0);
}

.menu-close {
    background: #0C3D28;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    pointer-events: auto;
}

.menu-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, transparent, transparent);
    transition: left 0.5s ease;
}

.menu-close:hover::before {
    left: 100%;
}

.menu-close:hover {
    background: #1a5d3a;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.menu-close-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
    height: 16px;
    position: relative;
    pointer-events: none;
}

.menu-close-icon span {
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 1px;
    position: absolute;
}

.menu-close-icon span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-close-icon span:nth-child(2) {
    transform: rotate(-45deg);
}

.menu-close:hover .menu-close-icon span {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.menu-content-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.menu-overlay.active .menu-content-page {
    opacity: 1;
    transform: translateY(0);
}

.menu-section {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.menu-overlay.active .menu-section:nth-child(1) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu-section:nth-child(2) {
    transition-delay: 0.7s;
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active .menu-section:nth-child(3) {
    transition-delay: 0.8s;
    opacity: 1;
    transform: translateY(0);
}

.menu-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 0.5rem;
}

.menu-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00FF88, #0C3D28);
    border-radius: 1px;
}

.menu-link {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu-link:hover::before {
    left: 100%;
}

.menu-link:hover {
    color: #00FF88;
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    transform: translateX(15px);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.story-container {
    width: 90%;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
}

.security-icon {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.security-icon svg {
    width: 80px;
    height: 80px;
}

.main-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4rem;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.story-text-block {
    text-align: center;
    width: 100%;
    margin: 0 auto 4rem auto;
    position: relative;
}

.story-paragraph {
    font-family: 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin: 0;
    padding: 0;
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Video Section */
.video-section {
    width: 100%;
    height: 100vh;
    display: block;
    background: #000000;
    overflow: hidden;
    border: none;
    margin: 0;
    padding: 0 0 4px 0;
    position: relative;
}

.video-section video {
    width: 100%;
    height: 120%;
    object-fit: cover;
    background: #000000;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    /* Mobile video optimization */
    -webkit-playsinline: true;
    playsinline: true;
    pointer-events: none;
    user-select: none;
}

.video-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: #ffffff;
}

.video-title {
    font-family: 'Inter', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    text-shadow: none;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: none;
}


.video-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
    text-shadow: none;
    opacity: 0.9;
    line-height: 1.5;
    letter-spacing: 0;
    max-width: 600px;
    margin: 0 auto;
}


/* Blank Section */
.blank-section {
    width: 100%;
    min-height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    margin: 0;
    padding: 0;
}

.blank-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.waitlist-form-container {
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.waitlist-form {
    background: transparent;
    padding: 60px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.waitlist-title {
    font-family: 'Times New Roman', serif;
    font-size: 4rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.waitlist-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.waitlist-form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #aaaaaa;
}

.form-input:focus {
    outline: none;
    border-color: #0C3D28;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(12, 61, 40, 0.3);
}

.waitlist-button {
    background: linear-gradient(135deg, #0C3D28 0%, #1a5d3a 100%);
    border: none;
    border-radius: 15px;
    padding: 20px 40px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(12, 61, 40, 0.3);
}

.waitlist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 61, 40, 0.4);
    background: linear-gradient(135deg, #1a5d3a 0%, #0C3D28 100%);
}

.waitlist-icon {
    width: 28px;
    height: 28px;
}

.waitlist-button-text {
    font-weight: 600;
}

.form-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.phone-right-container {
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000000;
}

.phone-right-asset {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.phone-right-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
}

.phone-right-overlay-icon {
    width: 120px;
    height: 120px;
}

/* ProfitWise Video Section */
.profitwise-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profitwise-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Mobile video optimization */
    -webkit-playsinline: true;
    playsinline: true;
    pointer-events: none;
    user-select: none;
}

.profitwise-video-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 80px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    max-width: 800px;
    margin: 0 auto;
}

.profitwise-video-title {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.profitwise-video-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.video-section {
    position: relative;
}


/* Features Section */
.features-section {
    padding: 8rem 0;
    background: #000000;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.features-title {
    font-family: 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 4rem;
    letter-spacing: 0.5px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

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

.feature-title {
    font-family: 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-description {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #000000 0%, #0C3D28 50%, #1a5d3a 100%);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3rem;
}

.cta-title {
    font-family: 'Times New Roman', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.cta-description {
    font-family: 'Times New Roman', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #000000 0%, #0C3D28 50%, #1a5d3a 100%);
    border: 1px solid transparent;
    padding: 1.5rem 3rem;
    border-radius: 16px;
    font-family: 'Times New Roman', serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.2);
    border-color: transparent;
}

.cta-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.hero-container {
    width: 100%;
    margin: 0;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ChatGPT Style Hero Navigation */
.hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4rem;
    width: 100%;
    position: relative;
}

.hero-nav-logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hero-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.hero-nav-link:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

.hero-logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}


.hero-get-started-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.hero-get-started-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background-card);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 800px;
}

.white-text {
    color: #ffffff;
}

.green-text {
    color: #0C3D28;
    text-shadow: none;
}

.gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a5d3a 0%, #00D4AA 50%, #0C3D28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(1px);
    opacity: 0.3;
    z-index: -1;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
    max-width: 700px;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.cta-primary-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-primary-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

a.cta-primary-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

a.cta-primary-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: #000000;
}

.cta-secondary-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-secondary-link:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

.cta-arrow {
    width: 16px;
    height: 16px;
}

.cta-chevron {
    width: 16px;
    height: 16px;
}

/* AI Analysis Section */
.ai-analysis-section {
    background-image: url('../your-paragraph-text.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.ai-analysis-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.ai-analysis-content {
    max-width: 600px;
    padding: 4rem 0;
}

.ai-analysis-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.ai-analysis-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Features Section */
.features-section {
    background: #000000;
    padding: 4rem 0;
    position: relative;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-content {
    padding: 2rem 0;
}

.features-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.features-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.features-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.features-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Mobile Business Section */
.mobile-business-section {
    background: #000000;
    padding: 4rem 0;
    position: relative;
}

.mobile-business-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mobile-business-content {
    padding: 2rem 0;
}

.mobile-business-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.mobile-business-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.mobile-business-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mobile-business-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Full Page Spacing Between Sections */
.hero {
    margin-bottom: 0;
    min-height: 100vh;
}

.ai-analysis-section {
    margin-bottom: 0;
    min-height: 100vh;
}

.features-section {
    margin-bottom: 0;
    min-height: 80vh;
}

.mobile-business-section {
    margin-bottom: 0;
    min-height: 80vh;
}

.tools-section {
    margin-bottom: 0;
    min-height: 80vh;
}

/* Tools Section */
.tools-section {
    background: #000000;
    padding: 4rem 0;
    position: relative;
}

.tools-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tools-content {
    padding: 2rem 0;
}

.tools-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.tools-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.tools-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tools-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.hero-cta {
    margin-top: 3rem;
}

.btn-lets-start {
    background: linear-gradient(135deg, #000000 0%, #0C3D28 50%, #1a5d3a 100%);
    border: 1px solid transparent;
    padding: 1.5rem 3rem;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 4px 15px rgba(12, 61, 40, 0.2),
        inset 0 1px 0 transparent;
    text-transform: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 320px;
    justify-content: flex-start;
    padding-left: 2.5rem;
    backdrop-filter: blur(10px);
    transform: scale(1);
}

/* Make anchor tag look like button */
a.btn-lets-start {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
}

.btn-lets-start::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-lets-start:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(12, 61, 40, 0.3),
        inset 0 1px 0 transparent;
    background: linear-gradient(135deg, #0C3D28 0%, #1a5d3a 50%, #0C3D28 100%);
    border-color: transparent;
}

.btn-lets-start:hover::before {
    opacity: 1;
}

.btn-lets-start:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-arrow {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.btn-lets-start:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-lets-start:hover .btn-text {
    color: rgba(255, 255, 255, 0.95);
}

.btn-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.btn-lets-start:hover .btn-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px transparent);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 700px;
    text-align: center;
}

.hero-logo {
    width: 100%;
    max-width: 1000px;
    height: auto;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 212, 170, 0.1);
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid transparent;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
}

.mockup-dots span:first-child {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:last-child {
    background: #28ca42;
}

.mockup-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-container {
    position: relative;
    height: 120px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    overflow: hidden;
}

.chart-line {
    position: relative;
    width: 100%;
    height: 100%;
}

.chart-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00D4AA;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.chart-point:nth-child(1) { animation-delay: 0s; }
.chart-point:nth-child(2) { animation-delay: 0.2s; }
.chart-point:nth-child(3) { animation-delay: 0.4s; }
.chart-point:nth-child(4) { animation-delay: 0.6s; }
.chart-point:nth-child(5) { animation-delay: 0.8s; }

@keyframes pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid transparent;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00D4AA;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #0C3D28 100%);
}

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

.section-badge {
    display: inline-block;
    background: var(--background-card);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.guarantee-icon {
    font-size: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #0C3D28 100%);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 28px;
    width: auto;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

/* Mobile-First Responsive Design */
@media (max-width: 480px) {
    /* Mobile Typography */
    .video-title {
        font-size: 2.5rem;
        line-height: 1.2;
        padding: 0 1rem;
    }
    
    .video-description {
        font-size: 1rem;
        padding: 0 1rem;
        margin-top: 1rem;
    }
    
    .profitwise-video-title {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .profitwise-video-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Mobile Hero Section */
    .hero {
        padding: 2rem 0;
        min-height: 80vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin: 1rem 0;
    }
    
    /* Mobile Buttons */
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        margin: 0.5rem;
    }
    
    .waitlist-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Mobile Video Sections */
    .video-section {
        height: 60vh;
    }
    
    .profitwise-video-section {
        height: 60vh;
    }
    
    /* Mobile Story Section */
    .story-section {
        padding: 3rem 0;
    }
    
    .story-container {
        padding: 0 1rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .story-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Mobile Features */
    .features-section {
        padding: 3rem 0;
    }
    
    .features-container {
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Mobile Waitlist */
    .waitlist-section {
        padding: 3rem 0;
    }
    
    .waitlist-container {
        padding: 0 1rem;
    }
    
    .waitlist-form {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-input {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    /* Mobile Footer */
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p, .footer-section a {
        font-size: 0.9rem;
    }
    
    /* Mobile Logo */
    .top-logo {
        top: 1rem;
        left: 1rem;
    }
    
    .top-logo-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Mobile Menu Button */
    .menu-button {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    /* Mobile Loading Screen */
    .loading-video-container {
        width: 95%;
        height: 50%;
        max-width: 350px;
        max-height: 250px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: -0.01em;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .right-menu {
        width: 250px;
        right: -250px;
    }
    
    
    .phone-right-container {
        width: 85%;
    }
    
    .phone-right-overlay-icon {
        width: 80px;
        height: 80px;
    }
    
    .blank-container {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }
    
    .waitlist-form-container {
        width: 100%;
        height: 50vh;
        order: 2;
    }
    
    .phone-right-container {
        width: 100%;
        height: 50vh;
        order: 1;
    }
    
    .waitlist-form {
        padding: 40px 20px;
        max-width: 100%;
    }
    
    .waitlist-title {
        font-size: 3rem;
    }
    
    .waitlist-description {
        font-size: 1.2rem;
    }
}



.main-content {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.main-content.hidden {
    opacity: 0;
    pointer-events: none;
}


/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #000000 0%, #0C3D28 100%);
    color: #ffffff;
    padding: 80px 0 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(12, 61, 40, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(12, 61, 40, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-family: 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #0C3D28;
    transform: translateX(5px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #0C3D28;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #aaaaaa;
    margin: 0;
}

.footer-newsletter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #cccccc;
    margin: 0;
    white-space: nowrap;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    width: 250px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #aaaaaa;
}

.newsletter-input:focus {
    outline: none;
    border-color: #0C3D28;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(12, 61, 40, 0.3);
}

.newsletter-button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #0C3D28 0%, #1a5d3a 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 61, 40, 0.4);
    background: linear-gradient(135deg, #1a5d3a 0%, #0C3D28 100%);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-newsletter {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .footer-logo {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0;
    }
    
    .hero-description {
        font-size: 1.1rem;
        letter-spacing: 0;
    }
    
    .btn-lets-start {
        padding: 1.5rem 3rem;
        font-size: 1.3rem;
        min-width: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .logo-container {
        height: 300px;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .dashboard-mockup {
        max-width: 300px;
        padding: 1rem;
    }
    
    .chart-container {
        height: 80px;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .right-menu {
        width: 200px;
        right: -200px;
    }
    
    .ai-analysis-section {
        min-height: 100vh;
        background-size: 100% 100%;
    }
    
    .ai-analysis-container {
        padding: 0 1rem;
    }
    
    .ai-analysis-content {
        max-width: 100%;
        padding: 2rem 0;
    }
    
    .ai-analysis-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .ai-analysis-description {
        font-size: 1.1rem;
    }
    
    .features-section {
        padding: 3rem 0;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .features-content {
        order: 2;
        text-align: center;
    }
    
    .features-video {
        order: 1;
    }
    
    .features-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .features-description {
        font-size: 1.1rem;
    }
    
    .mobile-business-section {
        padding: 3rem 0;
    }
    
    .mobile-business-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .mobile-business-content {
        order: 2;
        text-align: center;
    }
    
    .mobile-business-video {
        order: 1;
    }
    
    .mobile-business-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mobile-business-description {
        font-size: 1.1rem;
    }
    
    .tools-section {
        padding: 3rem 0;
    }
    
    .tools-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .tools-content {
        order: 2;
        text-align: center;
    }
    
    .tools-video {
        order: 1;
    }
    
    .tools-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .tools-description {
        font-size: 1.1rem;
    }
}