:root {
    --primary: #6200EA;
    --primary-dark: #3700B3;
    --secondary: #03DAC6;
    --secondary-dark: #018786;
    --dark: #121212;
    --gray: #555555;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --gradient-start: #6200EA;
    --gradient-end: #3700B3;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.07), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --card-radius: 12px;
    --btn-radius: 8px;
    --section-spacing: 7rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: hidden;
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slideIn {
    animation: slideInRight 0.8s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: all 0.3s ease;
    background-color: var(--primary);
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(98, 0, 234, 0.98);
    backdrop-filter: blur(10px);
}

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

.header-right {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--secondary);
    margin-left: 2px;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 15px;
    z-index: 1001; /* Higher than the nav-links */
    position: relative;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 101;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        z-index: 100;
        align-items: center;
        justify-content: center;
        display: flex !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .nav-links a::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }
    
    /* Nav links styling is now handled in the hamburger menu section */
    
    .header-right {
        margin-left: auto;
    }
    
    .hamburger-menu {
        display: block !important;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-dark);
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        display: block;
        margin: 15px 0;
        font-size: 18px;
        color: var(--white);
        text-align: center;
        width: 100%;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    padding: 9rem 0 5rem;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(98, 0, 234, 0.15), transparent 70%);
    z-index: 0;
}

.hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    overflow: visible;
    min-height: calc(100vh - 180px);
}

.hero-content {
    max-width: 550px;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image {
    max-height: 90vh;
    object-fit: contain;
    margin-bottom: 2rem;
    width: auto;
    height: auto;
    max-width: 45%;
}

@media (min-width: 769px) {
    .hero-image {
        max-width: 45%;
        margin-bottom: 0;
    }
}

.hero-image:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-lg), 0 15px 30px rgba(98, 0, 234, 0.2);
}

@media (max-width: 1200px) {
    .hero-image {
        max-width: 42%;
    }
}

@media (max-width: 992px) {
    .hero-image {
        max-width: 40%;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 8rem 0 4rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
        padding-top: 2rem;
    }
    
    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-image {
        max-width: 90%;
    }
}

/* Email Form */
.email-form form {
    display: flex;
    width: 100%;
    max-width: 500px;
    margin-top: 2rem;
}

.email-form .email-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: none;
    border-radius: var(--card-radius) 0 0 var(--card-radius);
    font-size: 1rem;
    outline: none;
}

.email-form .btn {
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
}

.cta-form form {
    width: 100%;
}

/* Mobile styles for email form */
@media (max-width: 768px) {
    .email-form form {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 1rem;
    }
    
    .email-form .email-input,
    .email-form .btn {
        width: 100%;
        box-sizing: border-box;
        padding: 0.85rem 1rem;
    }
    
    .email-form .email-input {
        margin-bottom: 1.5rem;
    }
    
    .cta-form-group {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-input {
        width: 100%;
        border-radius: var(--card-radius);
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
        border-radius: var(--card-radius);
    }
    
    .cta-form-group {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-input {
        width: 100%;
        border-radius: var(--card-radius) !important;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
        border-radius: var(--card-radius) !important;
    }
}

@media (max-width: 768px) {
    .email-form form {
        width: calc(100% - 2rem);
        margin: 0 auto;
        padding: 0 0.5rem;
    }
    
    .email-form .email-input {
        min-width: 0;
        padding: 0.85rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .email-form .btn {
        font-size: 1rem;
        padding: 0.85rem 1rem;
    }
}

/* Features Section */
.features {
    background-color: var(--white);
    padding: var(--section-spacing) 0;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-title p {
    font-size: 1.25rem;
    color: var(--gray);
}

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

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(98, 0, 234, 0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(98, 0, 234, 0.1);
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.feature-icon img {
    width: 100%;
    height: auto;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background-color: rgba(98, 0, 234, 0.2);
}

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

.feature-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.feature-link {
    margin-top: auto;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-dark);
}

.feature-link:hover i {
    transform: translateX(3px);
}

/* Why Choose Minder AI Section */
.why-choose {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(98, 0, 234, 0.05), transparent 70%);
    z-index: 0;
    border-radius: 50%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(98, 0, 234, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(98, 0, 234, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 2.25rem;
    color: var(--primary);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background-color: rgba(98, 0, 234, 0.2);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        max-width: 450px;
        margin: 0 auto;
    }
}

/* For Whom Section */
.for-whom {
    padding: var(--section-spacing) 0;
    background-color: var(--light);
}

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

.persona-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.persona-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(98, 0, 234, 0.1);
}

.persona-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(98, 0, 234, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.persona-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.persona-card:hover .persona-icon {
    transform: scale(1.1);
    background-color: rgba(98, 0, 234, 0.2);
}

.persona-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.persona-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.persona-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.persona-card li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray);
}

.persona-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(98, 0, 234, 0.2);
    border-radius: 50%;
}

.persona-card li:last-child {
    margin-bottom: 0;
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
}

.steps {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 2rem;
    box-shadow: 0 6px 15px rgba(98, 0, 234, 0.25);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(98, 0, 234, 0.3);
}

.step:hover {
    transform: translateX(10px);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
    margin-bottom: 0;
}

.how-it-works-cta {
    margin-top: 4rem;
    text-align: center;
}

/* CTA Section */
.cta {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(3, 218, 198, 0.1), transparent 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

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

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto;
}

.cta-form-group {
    display: flex;
    gap: 0.75rem;
}

.cta-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: none;
    border-radius: var(--card-radius);
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cta-button {
    background-color: var(--secondary);
    color: var(--dark);
    font-weight: 700;
    padding: 1rem 1.8rem;
    border: none;
    border-radius: var(--card-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(3, 218, 198, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.cta-button:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.cta-button:hover:after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.cta-button:hover {
    background-color: rgba(3, 218, 198, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(3, 218, 198, 0.4);
}

.cta-privacy {
    font-size: 0.875rem;
    margin-top: 1rem;
    opacity: 0.7;
}

/* Mobile Responsive Styles for CTA Section */
@media (max-width: 768px) {
    .cta-form-group {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-input {
        width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
    }
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background-color: var(--dark);
    color: var(--light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo .logo {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo .logo span {
    color: var(--secondary);
}

.footer-logo p {
    color: var(--light);
    opacity: 0.7;
    font-size: 0.9375rem;
}

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

.footer-links-column h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

.footer-links-column li {
    margin-bottom: 0.75rem;
}

.footer-links-column a {
    color: var(--light);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links-column a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* Social Links in Footer */
.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--light);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        max-width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .steps {
        padding-left: 0;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-bottom: 2.5rem;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .step-content {
        text-align: center;
    }
    
    .how-it-works-cta {
        margin-top: 2rem;
    }
}

/* Floating animation for hero image */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Page Content Styles for About, Contact, Privacy pages */
.page-content {
    padding: 8rem 0 5rem;
    min-height: calc(100vh - 400px);
}

.page-content .section-title {
    margin-bottom: 3rem;
}

.page-content .section-title h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* About Page Styles */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-section {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.values-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.values-list li {
    background: rgba(98, 0, 234, 0.05);
    padding: 1.5rem;
    border-radius: var(--card-radius);
    transition: all 0.3s ease;
}

.values-list li:hover {
    background: rgba(98, 0, 234, 0.1);
    transform: translateY(-3px);
}

.values-list li strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(98, 0, 234, 0.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(98, 0, 234, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
    background-color: rgba(98, 0, 234, 0.2);
}

.contact-method h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-method p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.contact-method ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-method li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray);
}

.contact-method li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(98, 0, 234, 0.2);
    border-radius: 50%;
}

.contact-method li:last-child {
    margin-bottom: 0;
}

/* Simplified Contact Page */
.contact-simple {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-simple:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-email {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-email .contact-icon {
    width: 5rem;
    height: 5rem;
    background-color: rgba(98, 0, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-email .contact-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.contact-email .contact-details h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.contact-email .contact-details p a {
    font-size: 1.25rem;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email .contact-details p a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-note {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .contact-email .contact-icon {
        width: 4rem;
        height: 4rem;
    }
    
    .contact-email .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-email .contact-details h2 {
        font-size: 1.5rem;
    }
    
    .contact-email .contact-details p a {
        font-size: 1.1rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.privacy-section {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
}

.privacy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.privacy-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: var(--dark);
}

.privacy-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Responsive Styles for new pages */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .values-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-content {
        padding: 6rem 0 3rem;
    }
    
    .page-content .section-title h1 {
        font-size: 2.25rem;
    }
    
    .values-list {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-content .section-title h1 {
        font-size: 1.9rem;
    }
    
    .about-section, 
    .privacy-section, 
    .contact-method, 
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Responsive Styles for landing page */
@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }
    
    .header-container {
        justify-content: space-between;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Better card layouts */
    .features-grid, .personas {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card, .persona-card {
        padding: 1.5rem;
    }
    
    /* CTA section improvements */
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: var(--card-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:hover:after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(3, 218, 198, 0.3);
}

.btn-primary:hover {
    background-color: rgba(3, 218, 198, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(3, 218, 198, 0.4);
}

.cta-btn {
    font-size: 1.05rem;
    padding: 0.9rem 1.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 2px solid transparent;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(3, 218, 198, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(3, 218, 198, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(3, 218, 198, 0);
    }
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hidden {
  display: none;
}

/* Enhanced animations */
.feature-icon img, .persona-icon i {
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon img,
.persona-card:hover .persona-icon i {
    transform: scale(1.15) rotate(10deg);
}

/* Fancy hover effects for links */
.feature-link, .footer-links-column a {
    position: relative;
    transition: all 0.3s ease;
}

.feature-link:before, .footer-links-column a:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.feature-link:hover:before, .footer-links-column a:hover:before {
    width: 100%;
}

/* Pulse animation for CTA button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(3, 218, 198, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(3, 218, 198, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(3, 218, 198, 0);
    }
}

.cta-button {
    animation: pulse 2s infinite;
}

/* Improve form placeholder text visibility */
.cta-input::placeholder {
    opacity: 0.8;
}

/* Fancy scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-content {
        text-align: center;
        padding-top: 2rem;
    }
}
