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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;  /* 600 is semi-bold, 700 is bold */
    line-height: 1.6;
    color: #333;
    background: white;
}

h1, h2, h3 {
    font-family: 'Onest', sans-serif;
}
/* Playfair Display */
.nav-links, .nav-links a, .cta-button, .cta-button-large, .footer {
    font-family: 'Onest', sans-serif;
}

.hero-container-simple {
    position: relative;
    display: inline-block;
}

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

/* Header */
header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
}
@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #6c5ce7;
}

.search-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: #666;
}

/* Hero Section */
.hero {
    background: rgb(255, 255, 255);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #6c5ce7;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    background: #6c5ce7;
    color: rgb(255, 255, 255);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #5f3dc4;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

<!-- .hero-illustration {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
} -->
.hero-image {
    max-width: 110%;    /* Adjust this percentage */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.illustration-element {
    position: absolute;
    background: rgba(0, 123, 255, 0.2);
    border-radius: 50%;
}

.element-1 {
    width: 60px;
    height: 60px;
    top: 50px;
    left: 50px;
    animation: float 3s ease-in-out infinite;
}

.element-2 {
    width: 40px;
    height: 40px;
    top: 100px;
    right: 60px;
    animation: float 3s ease-in-out infinite 1s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 60px;
    left: 80px;
    animation: float 3s ease-in-out infinite 2s;
}

.face-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 123, 255, 0.3);
    border-radius: 50%;
}

.eye {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 123, 255, 0.5);
    border-radius: 50%;
    top: 40px;
}

.eye-left {
    left: 35px;
}

.eye-right {
    right: 35px;
}
.hero-character {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: auto;
    border-radius: 12px;
    z-index: 5;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.sparkle {
    position: absolute;
    color: #ffd700;
    font-size: 1.5rem;
    z-index: 6;
    animation: twinkle 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 30px;
    right: 40px;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 50px;
    left: 30px;
    animation-delay: 1s;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Features Section */
.features {
    padding: 60px 0;
    background: white;
}

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

.feature {
    text-align: left;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-blue {
    background: #6c5ce7;
    border-radius: 6px;
}

.icon-circle {
    background: #6c5ce7;
    border-radius: 50%;
}

.icon-half-circle {
    background: linear-gradient(90deg, #6c5ce7 50%, #333 50%);
    border-radius: 50%;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

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

/* Part 2 Styles */
.content-section {
    padding: 80px 0;
    background: white;
    border-bottom: 2px solid #6c5ce7;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6c5ce7;
    line-height: 1.2;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #6c5ce7;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.feature-list li:before {
    content: "•";
    color: #6c5ce7;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.content-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-illustration {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.content-element {
    position: absolute;
    background: rgba(0, 123, 255, 0.2);
    border-radius: 50%;
}

.element-a {
    width: 50px;
    height: 50px;
    top: 40px;
    right: 60px;
    animation: float 4s ease-in-out infinite;
}

.element-b {
    width: 70px;
    height: 70px;
    bottom: 50px;
    left: 40px;
    animation: float 4s ease-in-out infinite 1.5s;
}

.element-c {
    width: 35px;
    height: 35px;
    top: 80px;
    left: 50px;
    animation: float 4s ease-in-out infinite 3s;
}

.content-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 123, 255, 0.3);
    border-radius: 50%;
}

.content-eye {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 123, 255, 0.6);
    border-radius: 50%;
    top: 35px;
}

.content-eye-left {
    left: 30px;
}

.content-eye-right {
    right: 30px;
}

.content-sparkle {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 12px;
    height: 12px;
    background: rgba(0, 123, 255, 0.4);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 2s ease-in-out infinite;
}

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

/* Device Section */
.device-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.device-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.device-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-mockup {
    background: linear-gradient(135deg, #e3f2fd 20%, #ffffff 80%);
    border: 2px dashed #6c5ce7;
    border-radius: 12px;
    padding: 40px;
    width: 320px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-frame {
    width: 200px;
    height: 320px;
    background: #333;
    border-radius: 25px;
    padding: 15px;
    position: relative;
}

.device-notch {
    width: 60px;
    height: 20px;
    background: #333;
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 15px;
}

.device-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6c5ce7;
    line-height: 1.2;
    margin-bottom: 20px;
}

.device-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-checklist {
    list-style: none;
    padding: 0;
}

.feature-checklist li {
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.checkmark {
    background: #6c5ce7;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Part 3: FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.faq-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6c5ce7;
    margin-bottom: 20px;
    text-align: center;
}

.faq-content > p {
    font-size: 1.1rem;
    color: #6c5ce7;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question span:first-child {
    color: #6c5ce7;
    font-size: 1rem;
    font-weight: 500;
}

.faq-arrow {
    color: #6c5ce7;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.2s ease;
}

.faq-question:hover .faq-arrow {
    transform: translateX(3px);
}

/* Part 4: CTA Section */
.cta-section {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

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

.cta-tagline {
    font-size: 1rem;
    color: #6c5ce7;
    margin-bottom: 20px;
    font-weight: 500;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #6c5ce7;
    line-height: 1.2;
    margin-bottom: 40px;
}

.cta-button-large {
    background: #6c5ce7;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button-large:hover {
    background: #5f3dc4;
}

/* Part 5: Footer */
.footer {
    background: white;
    padding: 60px 0 40px;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr) 250px;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c5ce7;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #6c5ce7;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #6c5ce7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #5f3dc4;
}

.footer-subscribe h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #6c5ce7;
    margin-bottom: 16px;
}

.subscribe-form {
    display: flex;
    margin-bottom: 12px;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    font-size: 0.95rem;
    outline: none;
    background: white;
    color: #333;
}

.email-input:focus {
    border-color: #6c5ce7;
}

.subscribe-btn {
    background: #6c5ce7;
    color: white;
    border: 1px solid #6c5ce7;
    border-radius: 0 6px 6px 0;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease;
}

.subscribe-btn:hover {
    background: #5f3dc4;
}

.subscribe-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .content-grid,
    .device-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .content-text h2,
    .device-content h2 {
        font-size: 2rem;
    }

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

    .faq-question {
        padding: 16px 20px;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 8px;
    }

    .email-input,
    .subscribe-btn {
        border-radius: 6px;
    }
}
