/* Header Styles */
.header-strip-1 {
    background-color: var(--primary-orange);
    height: 51px; /* Reduced from 60px by 15% (60 * 0.85 = 51) */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Desktop header logo sizing */
.header-logo img {
    height: calc(40px * var(--scale, 1)) !important;
    width: auto !important;
}

/* Desktop footer logo sizing */
.footer-logo {
    height: calc(40px * var(--scale, 1)) !important;
    width: auto !important;
}

.header-logo-icon {
    width: 32px; /* Match the larger text size */
    height: 32px; /* Match the larger text size */
    background: var(--white);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 16px; /* Adjusted for the larger icon */
}

.header-logo-text {
    color: var(--white);
    font-size: 32px; /* Much larger - increased from current size */
    font-weight: 500;
    font-family: var(--font-family);
}

.header-strip-2 {
    background: var(--white);
    height: var(--header-height);
    position: fixed;
    top: 51px; /* Match the exact height of header-strip-1 (51px) */
    left: 0;
    right: 0;
    z-index: 9999;
    border-top: 1px solid #e8f4f8;
    border-bottom: 1px solid #e8f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.countdown-text {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    margin-right: 4px; /* Add small space after the text */
}

/* Default state - show desktop text, hide mobile text */
.desktop-text {
    display: inline;
}
.mobile-text {
    display: none;
}

.countdown-timer {
    display: flex;
    align-items: baseline;
    gap: 4px; /* Reduced from 12px to minimize spacing */
}

.timer-number {
    color: var(--primary-blue);
    font-size: 22px;
    font-weight: 700;
}

.timer-unit {
    color: #666;
    font-size: 20px;
    font-weight: 700;
    margin-left: 1px; /* Reduced from 2px to minimize spacing */
    vertical-align: baseline;
}

.countdown-container {
    display: flex;
    align-items: center;
    gap: 8px; /* Small gap between text and countdown */
    justify-content: center;
}

/* Hero Section */
.hero-section {
    background-color: var(--white);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-logo {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: left;
}

.hero-title .blue { color: var(--primary-blue); }
.hero-title .orange { color: var(--primary-orange); }

.hero-subtitle {
    color: var(--text-gray);
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: left;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f0 100%);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    width: 480px;
    box-shadow: 0 8px 32px var(--shadow-light);
}

.form-title {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid var(--border-input);
    border-radius: var(--border-radius);
    font-size: 16px;
    background-color: var(--white);
    color: var(--text-dark);
}

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

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

.submit-btn {
    width: 100%;
    height: 60px;
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-lg);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Validation */
.field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.form-input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-note {
    color: var(--text-gray);
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

/* Blue Section */
.blue-section {
    background-color: var(--primary-blue);
    padding: 100px 0;
    color: var(--white);
    /* Add these properties to make it full width */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

/* Blue Section - Fix left alignment */
.blue-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px; /* Match hero section gap */
    /* Add this to ensure proper alignment */
    justify-content: flex-start; /* Align content to the left */
    /* Add padding to maintain content spacing */
    padding: 0 20px;
}

.blue-text {
    flex: 1;
    max-width: 600px;
    /* Ensure it doesn't push content too far right */
    margin-left: auto; /* Push to the right side */
}

.blue-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.blue-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

.features-grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex: 1; /* Use flex: 1 to take available space */
    max-width: 600px; /* Match hero-left max-width */
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--white);
    text-align: center;
    flex: 1; /* Distribute space evenly */
}

.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--white);
    text-align: center;
    max-width: 160px; /* Increased to accommodate 2 lines */
    /* Ensure proper spacing for 2-line layout */
    margin: 0 auto;
}

/* Bonus Section */
.bonus-section {
    background-color: var(--light-blue);
    padding: 80px 0;
    /* Add these properties to make it full width */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

/* Bonus Section - Fix centering */
.bonus-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px; /* Reduced from 60px for tighter grouping */
    justify-content: center; /* Changed from flex-start to center */
    padding: 0 20px;
}

.bonus-left {
    flex: 1;
    /* Ensure it starts from the left boundary */
    max-width: 600px; /* Match hero-left max-width */
}

.bonus-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px; /* Reduced from 25px to 10px */
}

.bonus-subtitle {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px; /* Keep this for spacing before description */
}

.bonus-description {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.bonus-right {
    flex: 1;
    text-align: center;
    /* Remove margin-left: auto; to allow centering */
}

.pde-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pde-icon-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.pde-description {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    max-width: 280px; /* Increased to allow 2 lines instead of 4 */
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    padding: 80px 0;
    /* Add these properties to make it full width */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
    /* Add padding to maintain content spacing */
    padding: 0 20px;
}

.faq-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
}

/* Accordion Styles */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-dark);
}

.accordion-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background-color: #0046b3;
}

.accordion-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    flex: 1;
}

.accordion-icon {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--white);
}

.accordion-body {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

.accordion-body p {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.accordion-body ul {
    margin: 15px 0;
    padding-left: 20px;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.accordion-body li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.accordion-body strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Active state */
.accordion-item.active .accordion-content {
    max-height: 600px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-header {
    background-color: #0046b3;
}

/* Scroll Animation CSS */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

#lp-pom-image-382, #lp-pom-image-381, #lp-pom-image-379, #lp-pom-image-402 {
    transition: all 0.8s ease-out;
    transform: scale(0.8) translateY(50px);
    opacity: 0;
}

#lp-pom-image-382.animate-in, 
#lp-pom-image-381.animate-in, 
#lp-pom-image-379.animate-in,
#lp-pom-image-402.animate-in {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Footer */
.footer {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    /* Add these properties to make it full width */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 50px;
}

.footer-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    font-family: var(--font-family);
}

.footer-logo {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

/* Remove old footer styles */
.footer-left,
.footer-right,
.footer-contact,
.footer-email {
    display: none;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 14px;
}

/* App Store Section */
.app-store-section {
    background-color: var(--white);
    padding: 40px 0;
    border-top: 1px solid #e8f4f8;
}

.app-store-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding: 0 50px;
}

.app-store-left {
    flex: 1;
}

.coming-soon-text {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: var(--font-family);
}

.app-store-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.app-store-link {
    display: block;
    transition: var(--transition);
}

.app-store-link:hover {
    transform: translateY(-2px);
}

.app-store-badge {
    height: 50px;
    width: auto;
}

/* Individual app store badge sizing for visual consistency */
.google-play-badge {
    height: 45px !important;
    width: auto !important;
}

.apple-store-badge {
    height: 50px !important;
    width: auto !important;
}

.app-store-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.pdc-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pdc-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pdc-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.pdc-text {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family);
}

.pdc-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pdc-name {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-family);
    margin: 0;
}

.pdc-copyright {
    color: var(--text-gray);
    font-size: 14px;
    font-family: var(--font-family);
    margin: 0;
}

.pdc-contact {
    color: var(--text-gray);
    font-size: 14px;
    font-family: var(--font-family);
    margin: 0;
}

/* Mobile Footer Layout */
.app-store-mobile {
    display: none;
}

.mobile-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
}

.mobile-pdc-logo {
    display: flex;
    justify-content: center;
}

.mobile-pdc-name {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-family);
    text-align: center;
}

.mobile-pdc-copyright {
    color: var(--text-gray);
    font-size: 14px;
    font-family: var(--font-family);
    text-align: center;
}

.mobile-pdc-contact {
    color: var(--text-gray);
    font-size: 14px;
    font-family: var(--font-family);
    text-align: center;
}

.mobile-spacer {
    height: 20px;
}

.mobile-coming-soon {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-family);
    text-align: center;
}

.mobile-app-store-badges {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
} 

/* Responsive order for blue section */
@media (min-width: 769px) {
  .blue-title-mobile,
  .blue-subtitle-mobile {
    display: none;
  }
  .blue-text {
    display: block;
  }
}
@media (max-width: 768px) {
  .blue-title-mobile {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    text-align: center;
  }
  .blue-subtitle-mobile {
    display: block;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-top: 25px;
  }
  .blue-text {
    display: none;
  }
} 

@media (min-width: 769px) {
  .bonus-title-mobile,
  .bonus-subtitle-mobile,
  .bonus-description-mobile,
  .mobile-bonus-icon {
    display: none !important;
  }
  .bonus-left,
  .bonus-right {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .bonus-title-mobile {
    display: block !important;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-blue);
    text-align: center;
  }
  .bonus-subtitle-mobile {
    display: block !important;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-blue);
    text-align: center;
  }
  .bonus-description-mobile {
    display: block !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--primary-blue);
    text-align: center;
    margin-top: 25px;
  }
  .mobile-bonus-icon {
    display: block !important;
    text-align: center;
    margin-bottom: 10px;
  }
  .bonus-left,
  .bonus-right {
    display: none !important;
  }
} 

@media (max-width: 768px) {
    .bonus-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .bonus-title {
        font-size: 28px;
    }
} 