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

:root {
    /* Theme Colors */
    --tasks-color: #BFE4F8;
    --reminders-color: #FFE3A3;
    --routins-color: #A9DDB1;
    --events-color: #F7A6A1;
    --ai-assistant-color: #CAB8FF;
    --primary: #77BDF8;
    --secondary: #C8B9F2;
    --background: #FCFCFB;
    --text: #21242b;
    
    /* Primary hover */
    --primary-hover: #5AABF5;
    --secondary-hover: #B5A5E8;
    
    /* Neutral colors */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container-custom {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-custom {
        padding: 0 2rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(119, 189, 248, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px 0 rgba(119, 189, 248, 0.4);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
    font-weight: 600;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-dark {
    background-color: var(--text);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--gray-800);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(252, 252, 251, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.navbar-logo-img {
    height: auto;
    width: 180px;
    object-fit: contain;
}

.navbar-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .navbar-menu {
        gap: 1rem;
    }
    
    .navbar-logo-img {
        width: 150px;
    }
    
    .btn-download-desktop {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

.navbar-link {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    text-decoration: none;
    position: relative;
}

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

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

.navbar-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text);
    position: relative;
    width: 2rem;
    height: 2rem;
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.mobile-menu-toggle .hamburger-icon,
.mobile-menu-toggle .close-icon {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.mobile-menu-toggle .close-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.mobile-menu-toggle.active .hamburger-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.mobile-menu-toggle.active .close-icon {
    opacity: 1;
    transform: rotate(0deg);
}

/* Hide Download App button on mobile */
.btn-download-desktop {
    display: inline-flex;
}

@media (max-width: 767px) {
    .btn-download-desktop {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.3s ease-out;
}

@media (max-width: 767px) {
    .mobile-menu {
        display: flex;
    }
}

.mobile-menu.active {
    max-height: 500px;
    padding: 1rem 0;
    opacity: 1;
}

.mobile-menu-link {
    padding: 0.75rem 1rem;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s, background-color 0.2s;
    border-radius: 0.375rem;
    margin: 0 1rem;
}

.mobile-menu-link:hover {
    color: var(--text);
    background-color: var(--gray-50);
}

.mobile-menu-download {
    margin: 0.5rem 1rem 0 1rem;
    width: calc(100% - 2rem);
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #FFE5D4, #E3F2FD);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem 0;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(119, 189, 248, 0.15);
    border: 1px solid rgba(119, 189, 248, 0.3);
    color: var(--text);
}

.hero-icon-spark {
    width: 1.5rem;
    height: 1.5rem;
    animation: spark 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-accent {
    display: block;
    color: var(--primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.bg-green {
    background-color: var(--routins-color);
}

.bg-blue {
    background-color: var(--primary);
}

.bg-purple {
    background-color: var(--secondary);
}

/* Phone Mockup */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-image {
    width: 20rem;
    height: auto;
    object-fit: contain;
    border-radius: 2rem;
}

.phone-mockup {
    position: relative;
    margin: 0 auto;
    width: 16rem;
    height: 520px;
    background-color: var(--text);
    border-radius: 3rem;
    padding: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: 2.5rem;
    overflow: hidden;
    position: relative;
}

.phone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(119, 189, 248, 0.2), transparent);
}

.phone-notch {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background-color: var(--gray-800);
    border-radius: 9999px;
}

.phone-home-indicator {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.25rem;
    background-color: var(--gray-800);
    border-radius: 9999px;
}

.floating-element {
    position: absolute;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    opacity: 0.2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-top {
    top: -1rem;
    right: -1rem;
    animation: bounce 2s infinite;
}

.floating-bottom {
    bottom: -1rem;
    left: -1rem;
    animation: pulse 2s infinite;
}

.floating-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--white);
}

.floating-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Sections */
.section {
    padding: 5rem 0;
    background-color: var(--background);
}

.section-gray {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

/* Features */
.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background-color: var(--white);
    border-radius: 2.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(119, 189, 248, 0.15);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.feature-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 14px 0 rgba(119, 189, 248, 0.2);
}

.feature-icon-tasks {
    background-color: var(--tasks-color);
    box-shadow: 0 4px 14px 0 rgba(191, 228, 248, 0.3);
}

.feature-icon-reminders {
    background-color: var(--reminders-color);
    box-shadow: 0 4px 14px 0 rgba(255, 227, 163, 0.3);
}

.feature-icon-routins {
    background-color: var(--routins-color);
    box-shadow: 0 4px 14px 0 rgba(169, 221, 177, 0.3);
}

.feature-icon-events {
    background-color: var(--events-color);
    box-shadow: 0 4px 14px 0 rgba(247, 166, 161, 0.3);
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    color: var(--text);
}

.feature-icon-tasks .feature-icon,
.feature-icon-reminders .feature-icon,
.feature-icon-routins .feature-icon,
.feature-icon-events .feature-icon {
    color: var(--text);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.75;
}

/* Steps */
.steps-grid {
    display: grid;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background-color: var(--white);
    border-radius: 2.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.step-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background-color: var(--primary);
}

.step-icon-svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--white);
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-700);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-arrow {
    display: none;
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    color: var(--gray-400);
    z-index: 10;
}

@media (min-width: 768px) {
    .step-arrow {
        display: block;
    }
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--gray-600);
    line-height: 1.75;
}

.steps-indicator {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.steps-indicator-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.steps-indicator-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.steps-indicator-arrow {
    width: 1rem;
    height: 1rem;
    color: var(--gray-400);
}

/* Screens Carousel */
.screens-container {
    max-width: 64rem;
    margin: 0 auto;
}

.screens-carousel {
    position: relative;
    background-color: var(--text);
    border-radius: 1.5rem;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.carousel-screen {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: var(--white);
    background: linear-gradient(to bottom, #EEE8FF, #FCFCFB);
    border-radius: 1rem;
    overflow: hidden;
    transition: background 0.5s ease;
}

@media (max-width: 767px) {
    .carousel-screen {
        height: 500px;
    }
}

.carousel-image {
    width: 100%;
    height: 80%;
    object-fit: contain;
    transition: all 0.5s;
    background-color: transparent;
    margin: 32px auto;
    display: block;
}

.carousel-gradient {
    display: none;
}

.carousel-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: var(--text);
}

.carousel-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.carousel-description {
    font-size: 1.125rem;
    opacity: 0.9;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--white);
}

.carousel-btn-prev {
    left: 1.25rem;
}

.carousel-btn-next {
    right: 1.25rem;
}

.carousel-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text);
}

.carousel-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background-color: rgba(33, 36, 43, 0.3);
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-dot.active {
    background-color: var(--text);
}

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

@media (min-width: 768px) {
    .screens-thumbnails {
        grid-template-columns: repeat(5, 1fr);
    }
}

.thumbnail {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
    padding: 0;
    background: none;
}

.thumbnail:hover {
    opacity: 0.8;
}

.thumbnail.active {
    opacity: 1;
    outline: 4px solid var(--primary);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.thumbnail img {
    width: 100%;
    height: 6rem;
    object-fit: contain;
    background-color: var(--white);
}

@media (max-width: 767px) {
    .thumbnail img {
        height: 8rem;
    }
}

.thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.thumbnail-title {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Pricing */
.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 2.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.pricing-card-popular {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 25px -5px rgba(119, 189, 248, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(119, 189, 248, 0.3);
    min-width: 200px;
    justify-content: center;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text);
}

.pricing-period {
    color: var(--gray-600);
}

.pricing-description {
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    margin-bottom: 0;
}

.pricing-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.check-icon-small {
    width: 1rem;
    height: 1rem;
    color: var(--green);
}

.pricing-card > .btn {
    margin-top: auto;
}

.pricing-footer {
    margin-top: 4rem;
    text-align: center;
}

.pricing-footer-text {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.pricing-footer-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.pricing-footer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* FAQ */
.faq-container {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 0 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.75;
}

.faq-footer {
    margin-top: 4rem;
    text-align: center;
    background-color: var(--gray-50);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.faq-footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.faq-footer-text {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: #151A2B;
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: auto;
    width: 180px;
    object-fit: contain;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-social-link {
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-social-link:hover {
    color: var(--white);
}

.footer-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Page Styles */
.page-container {
    min-height: 100vh;
    background-color: var(--white);
    padding-top: 4rem;
}

.page-header {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.page-content {
    max-width: 64rem;
    margin: 0 auto;
}

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

.page-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-section p {
    color: var(--gray-700);
    line-height: 1.75;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.page-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

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

.page-card {
    background-color: var(--white);
    border-radius: 2.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.page-card-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .page-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.page-card-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(119, 189, 248, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.page-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.page-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.page-card-text {
    color: var(--gray-600);
}

/* Contact Form */
.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

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

.contact-info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(119, 189, 248, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.contact-info-content h3 {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.contact-info-content .text-sm {
    font-size: 0.875rem;
    color: var(--gray-500);
}

