/* Suiteo Landing Page Styles */

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

html {
    scroll-padding-top: 80px;
}

body {
    overflow-x: hidden;
}

:root {
    --primary-blue: #0A2540;
    --light-blue: #4C9AFF;
    --accent-mint: #00C2A8;
    --light-gray: #f5f7fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    
    /* Sophisticated High-Ticket color palette */
    --luxury-silver: #C5D4E8;
    --luxury-platinum: #E8EDF5;
    --luxury-steel: #8BA3C7;
    --luxury-navy: #1B2951;
    --luxury-deep-navy: #0F1B2E;
    --luxury-ice: #F4F7FB;
    --luxury-pearl: #FFFFFF;
    --luxury-accent: #4A90E2;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* Decorative underline for highlighted text */
.underlined-text {
    position: relative;
    display: inline-block;
}

.underlined-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-mint), var(--light-blue));
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% {
        opacity: 0.7;
        transform: scaleX(0.95);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--accent-mint);
}

section {
    padding: 5rem 0;
}

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

/* Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--accent-mint);
    color: var(--white);
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0, 194, 168, 0.2);
}

.cta-button:hover {
    background-color: #00a894;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 194, 168, 0.3);
    color: var(--white);
}

.cta-microtext {
    font-size: 0.65rem !important;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    margin-bottom: 0;
    margin-left: 9px;
    font-weight: 400;
    text-align: left;
}

.cta-security-icon {
    color: var(--primary-blue);
    margin-right: 6px;
    font-size: 0.7rem;
}

/* Header & Navigation */
header.hero {
    background: linear-gradient(135deg, var(--primary-blue), #3284e1);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

header.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    z-index: 1;
}

header.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        linear-gradient(45deg, transparent 45%, rgba(15, 27, 46, 0.08) 50%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(15, 27, 46, 0.08) 50%, transparent 55%);
    background-size: 120px 120px, 120px 120px;
    background-position: 0 0, 60px 60px;
    opacity: 0.4;
    z-index: 1;
    animation: patternMove 25s linear infinite;
}


@keyframes patternMove {
    0% {
        background-position: 0 0, 60px 60px;
    }
    100% {
        background-position: 120px 120px, 180px 180px;
    }
}

/* Modern Luxury Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1E3A5F 0%, #2C4A6B 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 212, 232, 0.15);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(30, 58, 95, 0.95) 0%, rgba(44, 74, 107, 0.95) 100%);
    z-index: -1;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 45px;
    filter: brightness(1.1);
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--luxury-silver), var(--luxury-platinum));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    color: var(--luxury-pearl);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--luxury-silver), var(--luxury-accent));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--luxury-silver);
    transform: translateY(-1px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-cta {
    background: var(--accent-mint);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 194, 168, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.nav-cta::before {
    display: none;
}

.nav-cta:hover {
    background: #00a894;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 194, 168, 0.4);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--luxury-silver);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 27, 46, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 1px solid rgba(197, 212, 232, 0.2);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        width: 100%;
        display: block;
    }
    
    .nav-cta {
        margin: 1rem 2rem;
        padding: 1rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
        height: 65px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        top: 65px;
        padding: 1.5rem 0;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 0;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18% 0 18%;
    flex: 1;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    flex: 1;
    max-width: 600px;
    padding-top: 0px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hide hero badge on mobile */
@media (max-width: 768px) {
    .hero-badge {
        display: none;
    }
}

/* Benefits Overview Animations */
.benefits-overview h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.benefits-overview h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-overview-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.benefit-overview-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-overview-item:nth-child(1) {
    transition-delay: 0.1s;
}

.benefit-overview-item:nth-child(2) {
    transition-delay: 0.2s;
}

.benefit-overview-item:nth-child(3) {
    transition-delay: 0.3s;
}

.benefit-overview-item:nth-child(4) {
    transition-delay: 0.4s;
}

/* How It Works Animations */
.how-it-works h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.how-it-works h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.how-it-works > p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.how-it-works > p.animate {
    opacity: 1;
    transform: translateY(0);
}

.step {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(1) {
    transition-delay: 0.1s;
}

.step:nth-child(2) {
    transition-delay: 0.2s;
}

.step:nth-child(3) {
    transition-delay: 0.3s;
}

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    animation: fabSlideIn 0.8s ease-out 2s forwards;
}

.fab-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.fab-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(51, 133, 255, 0.4);
    background: linear-gradient(135deg, #3385FF, #0066FF);
}

.fab-text {
    white-space: nowrap;
}

@keyframes fabSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide floating button on mobile to avoid interference */
@media (max-width: 768px) {
    .floating-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-link {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-blue), #3284e1);
    color: var(--white);
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.about-hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-team {
    background-color: var(--white);
    padding: 6rem 0;
}

.about-team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-blue);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-illustration {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.team-illustration i {
    font-size: 4rem;
    color: var(--accent-mint);
    padding: 2rem;
    background: rgba(0, 194, 168, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.team-illustration i:hover {
    transform: scale(1.1);
}

.about-expertise {
    background-color: var(--light-gray);
    padding: 6rem 0;
}

.about-expertise h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-blue);
}

.expertise-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.expertise-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.expertise-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(76, 154, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-icon i {
    font-size: 2rem;
    color: var(--light-blue);
}

.expertise-item h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
    line-height: 1.4;
}

.about-vision {
    background-color: var(--white);
    padding: 6rem 0;
}

.about-vision h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-blue);
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
}

.vision-quote {
    text-align: center;
    margin-bottom: 4rem;
}

.vision-quote blockquote {
    font-size: 2rem;
    font-style: italic;
    color: var(--primary-blue);
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    padding: 2rem;
    background: rgba(76, 154, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent-mint);
}

.vision-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-align: center;
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-blue), #3382dc);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.3;
}

.about-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Active nav link styling */
.nav-link.active {
    color: var(--accent-mint) !important;
    font-weight: 600;
}

.nav-link.active::before {
    width: 100%;
    background: var(--accent-mint);
}

/* About Page Mobile Responsiveness */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .about-team h2,
    .about-expertise h2,
    .about-vision h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    .team-illustration {
        gap: 1rem;
    }
    
    .team-illustration i {
        font-size: 3rem;
        padding: 1.5rem;
    }
    
    .expertise-text p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .expertise-icons {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .vision-quote blockquote {
        font-size: 1.5rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .vision-text p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .about-cta h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .about-cta p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .team-illustration {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .expertise-item {
        padding: 1.5rem;
    }
    
    .vision-quote blockquote {
        font-size: 1.3rem;
    }
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, var(--primary-blue), #3284e1);
    color: var(--white);
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.faq-hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 4rem 0 2rem 0;
}

.faq-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.faq-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-section {
    background-color: var(--white);
    padding: 6rem 0;
}

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

.faq-card {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: rgba(76, 154, 255, 0.02);
}

.faq-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--accent-mint);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(245, 247, 250, 0.5);
}

.faq-card.active .faq-content {
    padding: 0 2rem 2rem 2rem;
}

.faq-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.faq-content p:last-of-type {
    margin-bottom: 1.5rem;
}

.faq-highlight {
    background: rgba(0, 194, 168, 0.1);
    border-left: 4px solid var(--accent-mint);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--primary-blue);
    margin-top: 1rem;
}

.faq-cta {
    background: rgba(76, 154, 255, 0.05);
    padding: 5rem 0;
    text-align: center;
}

.faq-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .faq-hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-header {
        padding: 1.5rem;
    }
    
    .faq-header h3 {
        font-size: 1.1rem;
    }
    
    .faq-card.active .faq-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-content p {
        font-size: 1rem;
    }
    
    .faq-cta h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .faq-cta p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .faq-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .faq-header {
        padding: 1.2rem;
    }
    
    .faq-header h3 {
        font-size: 1rem;
        padding-right: 0.5rem;
    }
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 82, 204, 0.12));
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="10" cy="60" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-blue);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(0, 102, 255, 0.3);
    position: absolute;
    left: -2rem;
    top: -1rem;
    font-family: Georgia, serif;
}

.quote-source {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    font-style: normal;
}

@media (max-width: 768px) {
    .quote-section {
        padding: 3rem 0;
    }
    
    .quote-text {
        font-size: 1.25rem;
    }
    
    .quote-text::before {
        display: none;
    }
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

#hero-tagline {
    font-size: 8px !important;
    color: rgba(105, 134, 195, 0.875);
    margin-top: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.phone-container {
    position: relative;
    max-width: 75%;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 65vh;
    margin-top: 2rem;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
    transform: perspective(1000px) rotateY(-3deg) translateY(-5px) scale(1.02);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 25px;
    animation: phoneFloat 6s ease-in-out infinite;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-20px) scale(1.05);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.35));
    animation: none;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: perspective(1000px) rotateY(-3deg) translateY(-5px) scale(1.02);
    }
    50% {
        transform: perspective(1000px) rotateY(-3deg) translateY(-10px) scale(1.02);
    }
}

/* Floating Notifications */
.floating-notification {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.notification-icon {
    font-size: 1.1rem;
}

.notification-1 {
    top: 20%;
    right: -35%;
    animation: floatNotification 4s ease-in-out infinite;
}

.notification-2 {
    top: 35%;
    left: -40%;
    animation: floatNotification 4s ease-in-out infinite 1.5s;
}

.notification-3 {
    top: 65%;
    left: -45%;
    animation: floatNotification 4s ease-in-out infinite 3s;
}

.notification-4 {
    bottom: 15%;
    right: -30%;
    animation: floatNotification 4s ease-in-out infinite 0.5s;
    background: rgba(0, 194, 168, 0.95);
    color: white;
    font-weight: 600;
}

.notification-5 {
    top: 50%;
    right: -35%;
    animation: floatNotification 4s ease-in-out infinite 2.5s;
}

@keyframes floatNotification {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Tech Decorations */
.tech-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

.tech-circle-1 {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 194, 168, 0.4);
    border-radius: 50%;
    top: 10%;
    left: -10%;
    animation: techPulse 3s ease-in-out infinite;
}

.tech-circle-2 {
    width: 25px;
    height: 25px;
    background: rgba(76, 154, 255, 0.3);
    border-radius: 50%;
    bottom: 15%;
    left: -5%;
    animation: techPulse 3s ease-in-out infinite 1s;
}

.tech-line-1 {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 168, 0.5), transparent);
    top: 30%;
    right: -8%;
    animation: techSlide 4s ease-in-out infinite;
}

.tech-line-2 {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(76, 154, 255, 0.5), transparent);
    bottom: 35%;
    right: -12%;
    animation: techSlide 4s ease-in-out infinite 2s;
}

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

@keyframes techSlide {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-10px);
    }
}

/* Hero Decorative Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    opacity: 0.4;
}

.circle-1 {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(76, 154, 255, 0.3);
    border-radius: 50%;
    top: 15%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 80px;
    height: 80px;
    background: rgba(0, 194, 168, 0.2);
    border-radius: 50%;
    bottom: 20%;
    left: 8%;
    animation: float 8s ease-in-out infinite reverse;
}

.triangle-1 {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(255, 255, 255, 0.1);
    top: 25%;
    left: 15%;
    animation: rotate 12s linear infinite;
}

.square-1 {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    top: 60%;
    right: 20%;
    transform: rotate(45deg);
    animation: pulse 4s ease-in-out infinite;
}

.line-1 {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(76, 154, 255, 0.4), transparent);
    top: 40%;
    right: 5%;
    animation: slideHorizontal 10s ease-in-out infinite;
}

.line-2 {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(0, 194, 168, 0.4), transparent);
    bottom: 30%;
    left: 20%;
    animation: slideVertical 8s ease-in-out infinite;
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(45deg) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: rotate(45deg) scale(1.1);
    }
}

@keyframes slideHorizontal {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-30px);
    }
}

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

/* Benefits Overview Section */
.benefits-overview {
    background-color: var(--white);
    padding: 4rem 0 2rem 0;
}

.benefits-overview h2 {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.benefits-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit-overview-item {
    padding: 1.5rem 1.5rem 1.5rem 0;
    border-right: 1px solid #e5e5e5;
}

.benefit-overview-item:last-child {
    border-right: none;
}

.benefit-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 1rem;
}

.benefit-overview-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: left;
}

.benefit-overview-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    text-align: left;
    margin: 0;
}

/* Benefits Section */
.benefits {
    background-color: var(--white);
    text-align: center;
}

.benefits h2 {
    margin-bottom: 0.5rem;
}

.benefits > p {
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.benefit-card {
    background-color: rgba(170, 177, 215, 0.168);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: rgba(76, 154, 255, 0.1);
    border-radius: 50%;
    color: var(--light-blue);
    font-size: 1.8rem;
}

.benefit-card:nth-child(even) .benefit-icon {
    background-color: rgba(0, 194, 168, 0.1);
    color: var(--accent-mint);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light-gray);
    text-align: center;
}

.how-it-works h2 {
    margin-bottom: 0.5rem;
}

.how-it-works > p {
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--accent-mint);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 194, 168, 0.3);
}

.step h3 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.how-it-works-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.cta-container {
    background-color: rgba(197, 212, 232, 0.15);
    padding: 1.5rem 2.5rem;
    border-radius: 25px;
    max-width: 700px;
    text-align: center;
}

.cta-container p {
    color: var(--luxury-navy);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Guest Experience Section */
.guest-experience {
    background-color: var(--white);
    padding: 5rem 0;
}

.guest-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.guest-text {
    flex: 1;
    max-width: 500px;
}

.guest-text h2 {
    color: var(--luxury-navy);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.guest-text p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
}

.guest-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-carousel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-image {
    max-width: 70%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 1s ease-in-out;
    position: absolute;
    opacity: 0;
}

.carousel-image.active {
    opacity: 1;
    position: relative;
}

.carousel-image:hover {
    transform: translateY(-5px);
}

/* Animation for image carousel */
.carousel-image:nth-child(1) {
    animation: imageCarousel1 15s infinite;
}

.carousel-image:nth-child(2) {
    animation: imageCarousel2 15s infinite;
}

.carousel-image:nth-child(3) {
    animation: imageCarousel3 15s infinite;
}

@keyframes imageCarousel1 {
    0%, 30% {
        opacity: 1;
    }
    33%, 97% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes imageCarousel2 {
    0%, 30% {
        opacity: 0;
    }
    33%, 63% {
        opacity: 1;
    }
    66%, 100% {
        opacity: 0;
    }
}

@keyframes imageCarousel3 {
    0%, 63% {
        opacity: 0;
    }
    66%, 97% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    text-align: center;
    position: relative;
}

.testimonials h2 {
    margin-bottom: 3rem;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    background: linear-gradient(135deg, var(--luxury-ice), var(--white));
    padding: 3rem 2.5rem;
    text-align: left;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--luxury-navy);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

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

.author img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--luxury-navy);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info a {
    color: var(--luxury-accent);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.author-info a:hover {
    color: var(--luxury-steel);
    text-decoration: underline;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 100px);
    left: -50px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    background: var(--luxury-accent);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    pointer-events: all;
}

.carousel-btn:hover {
    background: var(--luxury-steel);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(74, 144, 226, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--luxury-accent);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--luxury-steel);
    transform: scale(1.1);
}

/* Footer Styles */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
}

.footer-links {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--light-blue);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: var(--accent-mint);
}

.footer-link i {
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .footer-content {
        padding: 1.5rem 1rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
        text-align: center;
    }
}

/* Waitlist Section */
.waitlist {
    background: linear-gradient(135deg, var(--primary-blue), #3382dc);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.waitlist::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: 
        linear-gradient(45deg, transparent 45%, rgba(15, 27, 46, 0.08) 50%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(15, 27, 46, 0.08) 50%, transparent 55%);
    background-size: 120px 120px, 120px 120px;
    background-position: 0 0, 60px 60px;
    opacity: 0.4;
    z-index: 1;
    animation: patternMove 25s linear infinite;
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.waitlist h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.waitlist > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.waitlist-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
}

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

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

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(76, 154, 255, 0.1);
}

.waitlist-form .cta-button {
    width: 100%;
    margin-top: 1rem;
}

.success-message {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.success-content {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
}

.success-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Trust Section */
.trust {
    background-color: var(--luxury-ice);
    text-align: center;
    padding:  1px;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
    font-style: italic;
}

.trust-logo {
    height: 50px;
    margin-bottom: 1.5rem;
}

.trust p {
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-mint);
    transform: translateY(-3px);
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-legal {
    font-size: 0.9rem;
    color: var(--white);
}

.footer-text {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-text {
        margin-bottom: 3rem;
    }

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

    .hero-image {
        justify-content: center;
    }

    .hero-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        max-width: 500px;
    }

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

    .testimonial-card {
        padding: 2rem;
    }
}

/* Responsive adjustments for medium screens */
@media (max-width: 1200px) {
    .hero-content {
        padding: 120px 15% 0 15%;
    }
    
    .hero-image img {
        max-height: 60vh;
    }
}

/* Responsive adjustments for smaller laptops and tablets */
@media (max-width: 1024px) {
    .hero-content {
        padding: 120px 12% 0 12%;
    }
    
    .hero-image img {
        max-height: 55vh;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        padding: 5rem 5% 4rem 5%;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero-image img {
        max-height: 45vh;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hero-image img.scrolled {
        transform: perspective(1000px) rotateY(0deg) scale(1.05);
    }
    
    /* Hide decorative elements on mobile for cleaner look */
    .hero-decorations {
        display: none;
    }
    
    /* Hide floating notifications on mobile */
    .floating-notification,
    .tech-decoration {
        display: none;
    }
    
    .phone-container {
        max-width: 70%;
    }
    
    .benefits-overview h2 {
        font-size: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .benefits-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .benefit-overview-item {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 2rem;
        text-align: center;
    }
    
    .benefit-overview-item:nth-child(2n) {
        border-right: none;
    }
    
    .benefit-overview-item:nth-child(3),
    .benefit-overview-item:nth-child(4) {
        border-bottom: none;
    }
    
    .benefit-overview-item h3,
    .benefit-overview-item p {
        text-align: center;
    }
    
    .carousel-navigation {
        width: 100%;
        left: 0;
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .benefits-overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-overview-item {
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 2rem;
    }
    
    .benefit-overview-item:last-child {
        border-bottom: none;
    }

    .waitlist-container {
        padding: 0 8%;
    }

    .waitlist > p {
        padding: 0 1rem;
    }

    .waitlist-form {
        padding: 1.5rem;
    }

    .guest-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .guest-text h2 {
        font-size: 2rem;
    }

    .guest-text p {
        font-size: 1.1rem;
    }

    .guest-image img {
        max-width: 85%;
    }

    .guest-images-row {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .guest-image-item {
        max-width: 100%;
    }
    
    .carousel-navigation {
        padding: 0 0.5rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
