:root {
    --primary-text-color: #0067ff;
    --secondary-text-color: #333;
}

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

body {
    font-family: "Public Sans", BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--secondary-text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff2e0;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-text-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo a:hover {
    opacity: 0.8;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--secondary-text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--primary-text-color);
}

/* Hero Section */
.hero {
    background-image: url(images/slide1-bg.jpg), linear-gradient(275deg, rgb(205, 214, 229) 0px, rgb(211, 246, 242) 100%);
    color: var(--secondary-text-color);
    text-align: center;
    border-radius: 0 0 50px 50px;
    padding-top: 100px;
    background-size: cover;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--primary-text-color);
}

.hero .description {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problems-list {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    font-size: 1.4rem;
}

.problems-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.problems-list li span{
    color: var(--primary-text-color);
    font-weight: bold;
}

.problems-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: var(--primary-text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Features Section */
.features {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-text-color);
}

/* Mockups Section */
.mockups {
    background: white;
}

.mockups-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.mockup {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.mockup:hover {
    transform: translateY(-10px);
}

.mockup-desktop {
    width: 600px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
}

.mockup-tablet {
    width: 300px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 15px;
}

.mockup-mobile {
    width: 200px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 10px;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.mockup-label {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-text-color);
}

/* Calendar Section */
.calendar-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.calendar-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
}

.calendar-day.header {
    color: var(--primary-text-color);
    font-weight: 600;
    background: #f8f9fa;
}

.calendar-day.today {
    background: var(--primary-text-color);
    color: white;
}

.calendar-day.appointment {
    background: #28a745;
    color: white;
    position: relative;
}

.calendar-day.appointment:after {
    content: "📅";
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.8rem;
}

/* Growth Statistics Section */
.growth-section {
    padding: 80px 20px;
    min-height: auto;
    margin: 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #a1d0ff 0%, #e8edf2 25%, #f0f0ef 50%, #d3dce3 75%, #a1d0ff 100%);
}

.growth-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-text-color);
    margin-bottom: 4rem;
}

.growth-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.growth-stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.growth-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-text-color);
    display: inline-block;
    line-height: 1;
}

.stat-unit {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-text-color);
    display: inline-block;
    margin-left: 0.2rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-text-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.growth-note {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
    margin-top: 2rem;
}

/* Responsive for Growth Section */
@media (max-width: 968px) {
    .growth-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .growth-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-unit {
        font-size: 2.5rem;
    }
}

/* Early Bird Access Section */
.early-bird-section {
    background: linear-gradient(135deg, #a1d0ff 0%, #e8edf2 25%, #f0f0ef 50%, #d3dce3 75%, #a1d0ff 100%);
    padding: 100px 20px;
    min-height: auto;
    margin: 20px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.early-bird-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 103, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.early-bird-section .container {
    position: relative;
    z-index: 1;
}

.early-bird-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.early-bird-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.early-bird-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-text-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.early-bird-title .highlight {
    color: var(--primary-text-color);
    position: relative;
    display: inline-block;
    text-decoration: underline;
}



.early-bird-description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.early-bird-pricing {
    font-size: 1.2rem;
    color: var(--secondary-text-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.early-bird-pricing strong {
    color: var(--primary-text-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.early-bird-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-text-color);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.early-bird-cta {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-text-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 15px rgba(0, 103, 255, 0.3);
}

.early-bird-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 103, 255, 0.4);
    background: #0052cc;
}

/* Responsive for Early Bird Section */
@media (max-width: 1200px) {
    .early-bird-title {
        font-size: 2rem;
    }

    .early-bird-description {
        font-size: 1.1rem;
    }

    .early-bird-pricing {
        font-size: 1rem;
    }

    .early-bird-pricing strong {
        font-size: 1.1rem;
    }

    .early-bird-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }

    .benefit-text h3 {
        font-size: 1.2rem;
    }
}

/* Form Section */
.form-section {
    padding: 4rem 20px;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-text-color);
}

.form-container p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-text-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 300px;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--primary-text-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-button:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.success-message {
    display: none;
    padding: 1rem;
    background: #28a745;
    color: white;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .description {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .mockups-container {
        flex-direction: column;
    }

    .calendar-grid {
        gap: 5px;
    }

    .calendar-day {
        padding: 10px 5px;
        font-size: 0.9rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 1000;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-text-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-text-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Slider Section */
.slider-section {
    padding: 100px 20px;
    min-height: auto;
    position: relative;
    overflow: hidden;
}

.slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.slider-section .container {
    position: relative;
    z-index: 1;
}

/* Feature grid (replaces slider) */
.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 2.5rem;
}

.feature-row-3 .slide-image {
    height: 390px;
}

.feature-row.feature-row-reverse {
    grid-template-columns: 2fr 1fr;
    padding: 60px 20px;
    min-height: auto;
    margin: 20px;
    border-radius: 50px;
    box-shadow: 1px 1px 20px 1px #d4d4d4;
    background: linear-gradient(135deg, #fff2e0 0%, #ffe8cc 25%, #ffdfb3 50%, #ffd699 75%, #ffcc80 100%);
}

.feature-row-reverse .feature-text {
    order: 2;
}

.feature-row-reverse .slide-image,
.feature-row-reverse .slide-video-container {
    order: 1;
}

.feature-text {
    padding: 20px 40px;
}

.feature-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-text-color);
    line-height: 1.2;
}

.feature-text p {
    font-size: 1.4rem;
    color: var(--secondary-text-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.slide-image {
    width: 600px;
    height: 500px;
    max-width: 100%;
    max-height: 700px;
    justify-self: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    align-items: flex-end;
    display: flex;
}

.slide-image img {
    width: 100%;
}

.slide-image5 {
    height: 458px;
}

.slide-video-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 700px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-video-container1 {
    width: 800px;
    height: 600px;
}
.slide-video-container2 {
    width: 600px;
    height: 380px;
}
.slide-video-container4 {
    width: 600px;
    height: 380px;
}

.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-link {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-text-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.2s;
}

.slide-link:hover {
    background: #0052cc;
    transform: translateY(-2px);
}

.slider-nav {
    display: none;
}

.slider-dots {
    display: none;
}

/* Responsive for Slider */
@media (max-width: 1200px) {
    .section {
        padding: 100px 20px 20px 20px;
    }

    .main-nav {
        display: none;
    }
    .feature-row-reverse .feature-text {
        order: 1;
    }
    .feature-row-reverse .slide-image, .feature-row-reverse .slide-video-container {
        order: 2;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 10px;
    }

    .feature-row.feature-row-reverse {
        grid-template-columns: 1fr;
        padding: 0;
        margin: 10px;
        border-radius: 20px 20px 0 0;
    }

    .feature-row-3 .slide-image {
        height: auto;
        width: 100%;
    }

    .feature-text {
        padding: 40px 20px;
        text-align: center;
    }

    .feature-text h2 {
        font-size: 2.4rem;
    }

    .feature-text p {
        font-size: 1.2rem;
    }

    .slide-image,
    .slide-video-container,
    .slide-video {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }

    .slider-section {
        padding: 0;
    }

    .slide-image {
        min-height: 265px;
        background-size: cover;
    }

    .slide-video-container,
    .slide-video {
        min-height: 300px;
        width: 100%;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .early-bird-section {
        padding: 40px;
    }
}

/* Footer */
.main-footer {
    background: var(--secondary-text-color);
    color: white;
    padding: 3rem 20px 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--primary-text-color);
}

.footer-section h4 {
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--primary-text-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-nav {
        gap: 1rem;
        flex-wrap: wrap;
    }

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