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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.1rem 2rem;
    gap: 2rem;
}

/* Logo Styles */
.logo-container {
    flex-shrink: 0;
    margin-top: calc(0.25rem + 5px);
}

.logo-container a {
    display: inline-block;
    text-decoration: none;
}

.logo {
    height: 41px;
    width: auto;
    object-fit: contain;
    margin: -5px 0;
    display: block;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation Styles */
.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: #1a73e8;
}

/* Dropdown Menu Styles */
.nav-menu li.dropdown {
    position: relative;
}

.nav-menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    border-radius: 4px;
    z-index: 1000;
}

.nav-menu li.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .submenu li {
    margin: 0;
    padding: 0;
}

.nav-menu .submenu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-menu .submenu li a:hover {
    background-color: #f5f5f5;
    color: #1a73e8;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-get-started {
    display: inline-block;
    background-color: #5a6c7d;
    color: #ffffff;
    text-decoration: none;
    border: none;
    padding: 0.39rem 1.5rem;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-get-started:hover {
    background-color: #4a5c6d;
    transform: translateY(-1px);
}

.btn-get-started:active {
    transform: translateY(0);
}

.btn-login {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.3rem 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-login:hover {
    color: #1a73e8;
}

.whatsapp-icon {
    color: #2c3e50;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.whatsapp-icon:hover {
    color: #25D366;
    transform: scale(1.1);
}

/* Banner Slider Styles */
.banner-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-image-fullwidth {
    background-size: 100% 100%;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.25rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    z-index: 3;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot.active {
    background-color: #ffffff;
    transform: scale(1.2);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Steps Section */
.steps-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.steps-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.steps-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.steps-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 500;
}

.btn-get-started-steps {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 0.75rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    background-color: #1a73e8;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-get-started-steps:hover {
    background-color: #1557b0;
}

/* Modal "Please Select your Plan" */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 320px;
    text-align: center;
}

.modal-message {
    margin: 0 0 1.5rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.modal-close-btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #1a73e8;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.modal-close-btn:hover {
    background-color: #1557b0;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    white-space: normal;
    word-break: normal;
    text-align: left;
}

.step-select {
    width: 100%;
    margin-top: 1rem;
    padding: 0.6rem 0.75rem;
    font-size: 1rem;
    color: #2c3e50;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
}

.step-select:focus {
    outline: none;
    border-color: #1a73e8;
}

.btn-fill-form {
    display: block;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background-color: #2563eb;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 10rem;
    text-align: center;
    box-sizing: border-box;
}

.btn-fill-form:hover {
    background-color: #1d4ed8;
}

.step-paypal-form {
    margin-top: 1rem;
}

/* Pay Now button - same style as Step 3 (Fill the Form) */
.btn-pay-now {
    display: block;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background-color: #2563eb;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 10rem;
    text-align: center;
    box-sizing: border-box;
}

.btn-pay-now:hover {
    background-color: #1d4ed8;
}

/* Row to align PayPal with Step 4 (same grid as steps) - hidden by default, slides down when open */
.steps-paypal-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.steps-paypal-row.steps-paypal-row--open {
    max-height: 500px;
    opacity: 1;
    margin-top: 2rem;
}

.steps-paypal-spacer {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    visibility: hidden;
    pointer-events: none;
}

.steps-paypal-box {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.steps-paypal-label {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
}

.step-paypal-container {
    margin-top: 0;
    min-height: 45px;
    width: 100%;
}

.btn-paypal {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background-color: #0070ba;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
    width: 10rem;
    text-align: center;
    box-sizing: border-box;
}

.btn-paypal:hover {
    background-color: #003087;
}

/* Main Content */
.main-content {
    flex: 1;
    min-height: calc(100vh - 200px);
}

/* Video page - full width player */
.video-page {
    width: 100%;
    padding: 10px 0;
    margin: 0;
    background-color: #000;
}

.video-container {
    width: 80%;
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Image page - same look as video page (black bg, 80% width) */
.image-page {
    width: 100%;
    padding: 10px 0;
    margin: 0;
    background-color: #000;
}

.image-container {
    width: 80%;
    max-width: 80%;
    margin: 0 auto;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.video-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    padding: 1.5rem;
    background: #2c3e50;
    color: #fff;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.video-fallback code {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Legal / Policy pages */
.legal-page {
    padding: 3rem 2rem 4rem;
    background-color: #ffffff;
}

.legal-page-container {
    max-width: 800px;
    margin: 0 auto;
    color: #2c3e50;
}

.legal-page h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.legal-effective-date {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-page ul {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #1a73e8;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.pricing-container {
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
}

.pricing-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.875rem;
    justify-content: center;
    align-items: stretch;
}

.pricing-card {
    min-width: 0;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.15rem 0.75rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.pricing-card {
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #1a73e8;
}

.pricing-card.selected {
    border-color: #1a73e8;
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.2);
    background-color: #f8f9ff;
}

.pricing-card h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.pricing-starting {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #666;
    margin: 0 0 0.25rem;
}

.pricing-price {
    font-size: 1.55rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 0.65rem;
    line-height: 1.15;
}

.price-note {
    font-size: 0.72rem;
    font-weight: 400;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 0.65rem;
    text-align: left;
    flex: 1 1 auto;
}

.pricing-features li {
    padding: 0.22rem 0;
    color: #2c3e50;
    font-size: 0.78rem;
    line-height: 1.3;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #1a73e8;
    font-weight: bold;
    font-size: 0.85rem;
    line-height: 1.3;
}

.btn-pricing-start {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 0.45rem 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    background-color: #1a73e8;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-pricing-start:hover {
    background-color: #1557b0;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.35);
}

.btn-pricing-start:focus-visible {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
}

.steps-cta {
    margin-top: 3rem;
    text-align: center;
}

.pricing-cta {
    margin-top: 3rem;
    text-align: center;
}

.btn-pricing-get-started {
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-pricing-get-started:hover {
    background-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.btn-pricing-get-started:active {
    transform: translateY(0);
}

/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: auto;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    flex: 1;
    min-width: 180px;
}

.footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex: 0 0 auto;
}

.footer-social-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.contact-info {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
}

.contact-email {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #ffffff;
}

.follow-us {
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.instagram-icon {
    color: #ffffff;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.instagram-icon:hover {
    color: #E4405F;
    transform: scale(1.1);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    flex: 1;
    min-width: 180px;
    justify-content: flex-end;
}

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

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

.footer-links a:hover {
    color: #1a73e8;
}

.footer-content p {
    font-size: 0.9rem;
    margin: 0;
}

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

.powered-by {
    font-size: 0.85rem;
    color: #ffffff;
}

.quantum-soft {
    color: #39ff14;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.footer-bottom-line {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    text-align: center;
}

.footer-bottom-line p {
    margin: 0;
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.5;
}

.footer-bottom-line a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-line a:hover {
    color: #1a73e8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu li a {
        font-size: 0.9rem;
    }
}

@media (max-width: 1100px) {
    .pricing-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.35rem 1rem;
    }

    .pricing-card h2 {
        font-size: 1.3rem;
    }

    .pricing-price {
        font-size: 1.85rem;
    }

    .pricing-features li {
        font-size: 0.88rem;
        padding: 0.3rem 0;
        padding-left: 1.25rem;
    }

    .pricing-features li:before {
        top: 0.28rem;
        font-size: 0.95rem;
    }

    .btn-pricing-start {
        padding: 0.55rem 0.75rem;
        font-size: 0.9rem;
    }

    .pricing-starting {
        font-size: 0.78rem;
    }

    .price-note {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .banner-slider {
        height: 450px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .prev-btn {
        left: 1rem;
    }

    .next-btn {
        right: 1rem;
    }

    .slider-dots {
        bottom: 1rem;
    }

    .header-container {
        flex-wrap: nowrap;
        padding: 0.35rem 1rem;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        position: relative;
    }

    .header {
        position: relative;
        background-color: #1a73e8;
    }

    .logo {
        height: 42px;
    }

    .logo-container {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        order: 2;
        flex: 0 0 auto;
        margin-left: 0.75rem;
        margin-top: calc(0.25rem + 5px);
    }

    .logo {
        filter: brightness(0) invert(1);
    }

    .mobile-menu-toggle {
        display: flex;
        order: 1;
        flex-shrink: 0;
        z-index: 1000;
        position: relative;
    }

    .mobile-menu-toggle span {
        background-color: #ffffff;
    }

    .header-actions {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        order: 3;
        flex-shrink: 0;
        justify-content: flex-end;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        z-index: 10;
    }

    .btn-get-started {
        display: inline-block !important;
        background-color: #8b99a8;
    }

    .btn-get-started:hover {
        background-color: #7a8796;
    }

    .btn-login {
        display: none;
    }

    .whatsapp-icon {
        color: #ffffff;
    }

    .navigation {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        width: 280px;
        max-width: calc(100vw - 2rem);
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 998;
    }

    .navigation.active {
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-menu li a {
        color: #2c3e50;
        text-align: left;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .nav-menu li {
        border-bottom: 1px solid #e0e0e0;
        text-align: left !important;
        width: 100%;
        align-self: flex-start;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li > a {
        display: block;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        font-weight: 500;
        text-align: left !important;
        width: 100%;
    }

    .nav-menu .submenu {
        display: none;
        background-color: #f5f5f5;
        padding: 0;
        margin: 0;
        list-style: none;
        border-radius: 0 0 12px 12px;
    }

    .nav-menu .dropdown.open .submenu {
        display: block;
    }

    .nav-menu .submenu li {
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-menu .submenu li:last-child {
        border-bottom: none;
    }

    .nav-menu .submenu li a {
        padding: 0.75rem 1.25rem 0.75rem 2rem;
        font-size: 0.9rem;
        font-weight: 400;
        color: #666;
        text-align: left !important;
        width: 100%;
    }

    .header {
        background-color: #1a73e8;
    }

    .logo-container {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-left: 0.75rem;
        order: 2;
    }

    .mobile-menu-toggle {
        order: 1;
    }

    .btn-get-started {
        display: inline-block !important;
        background-color: #8b99a8;
    }

    .btn-get-started:hover {
        background-color: #7a8796;
    }

    .btn-login {
        display: none;
    }

    .whatsapp-icon {
        color: #ffffff;
    }

    .logo {
        filter: brightness(0) invert(1);
    }

    .mobile-menu-toggle span {
        background-color: #ffffff;
    }

    .nav-menu li a {
        color: #2c3e50;
        text-align: left;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        margin-left: 0;
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }

    .steps-section {
        padding: 3rem 1.5rem;
    }

    .steps-section h1 {
        font-size: 2.5rem;
    }

    .steps-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

    .steps-grid {
        gap: 1.5rem;
    }

    .step-item {
        min-width: 200px;
    }

    .pricing-section {
        padding: 3rem 1.5rem;
    }

    .pricing-section h1 {
        font-size: 2.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Video / Image pages - mobile */
    .video-page,
    .image-page {
        padding: 10px 1rem;
        box-sizing: border-box;
    }

    .video-container,
    .image-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 350px;
    }

    .slide-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .prev-btn {
        left: 0.5rem;
    }

    .next-btn {
        right: 0.5rem;
    }

    .slider-dots {
        bottom: 0.75rem;
        gap: 0.5rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        position: relative;
    }

    .logo-container {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        order: 2;
        flex: 0 0 auto;
        margin-left: 0.75rem;
    }

    .logo {
        filter: brightness(0) invert(1);
    }

    .mobile-menu-toggle {
        order: 1;
        flex-shrink: 0;
        z-index: 10;
        position: relative;
    }

    .header-actions {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        order: 3;
        flex-shrink: 0;
        justify-content: flex-end;
        width: auto;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        z-index: 10;
    }

    .btn-get-started {
        display: inline-block !important;
        background-color: #8b99a8;
    }

    .btn-get-started:hover {
        background-color: #7a8796;
    }

    .navigation {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        width: 280px;
        max-width: calc(100vw - 2rem);
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 998;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    .navigation.active {
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        text-align: left !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .nav-menu li {
        border-bottom: 1px solid #e0e0e0;
        text-align: left !important;
        width: 100%;
        align-self: flex-start;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 1.25rem;
        color: #2c3e50;
        font-size: 1rem;
        font-weight: 500;
        text-align: left !important;
        width: 100%;
    }

    .nav-menu .submenu {
        display: none;
        background-color: #f5f5f5;
        padding: 0;
        margin: 0;
        list-style: none;
        border-radius: 0 0 12px 12px;
    }

    .nav-menu .dropdown.open .submenu {
        display: block;
    }

    .nav-menu .submenu li {
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-menu .submenu li:last-child {
        border-bottom: none;
    }

    .nav-menu .submenu li a {
        padding: 0.75rem 1.25rem 0.75rem 2rem;
        font-size: 0.9rem;
        font-weight: 400;
        color: #666;
        text-align: left !important;
        width: 100%;
    }

    .steps-section {
        padding: 3rem 1rem;
    }

    .steps-section h1 {
        font-size: 2rem;
    }

    .steps-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .step-item {
        width: 100%;
        max-width: 100%;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-item h3 {
        font-size: 1.25rem;
    }

    .step-item p {
        font-size: 0.95rem;
    }

    .steps-cta {
        margin-top: 2rem;
    }

    .steps-paypal-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .steps-paypal-spacer {
        display: none;
    }

    .steps-paypal-box {
        width: 100%;
        max-width: 100%;
    }

    .pricing-section {
        padding: 3rem 1rem;
    }

    .pricing-section h1 {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pricing-cta {
        margin-top: 2rem;
    }

    .btn-pricing-get-started {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    /* Video / Image pages - small mobile */
    .video-page,
    .image-page {
        padding: 10px 0.5rem;
        box-sizing: border-box;
    }

    .video-container,
    .image-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .image-container img {
        max-width: 100%;
    }
}

