/* ==========================================================================
   TASKLY - PREMIUM VIRTUAL ASSISTANT AGENCY WEBSITE
   Design System & Master Stylesheet
   Color Palette:
   - Primary: #D67B95 (Warm Rose/Mauve)
   - Secondary: #F8D7DA (Blush)
   - Accent: #FFF5F7 (Soft Cream Accent)
   - Dark Text: #2D2D2D (Charcoal)
   - Light Grey: #F8F8F8
   - White: #FFFFFF
   Typography:
   - Headings & Buttons: League Spartan
   - Body: DM Sans
   - Logo Accent: Playfair Display (Tan Nimbus Style)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GOOGLE FONTS & CSS VARIABLES
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=League+Spartan:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    /* Brand Colors */
    --primary: #D67B95;
    --primary-hover: #c46882;
    --primary-light: rgba(214, 123, 149, 0.12);
    --primary-gradient: linear-gradient(135deg, #E28C9E 0%, #D67B95 100%);
    --secondary: #F8D7DA;
    --secondary-hover: #f3c2c7;
    --accent: #FFF5F7;
    --dark-text: #2D2D2D;
    --body-text: #4A4A4A;
    --muted-text: #717171;
    --light-grey: #F8F8F8;
    --border-color: rgba(214, 123, 149, 0.18);
    --white: #FFFFFF;
    --dark-bg: #1F1F1F;
    --dark-card: #282828;

    /* Typography */
    --font-heading: 'League Spartan', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-logo: 'Playfair Display', Georgia, serif;

    /* Elevation & Shadows */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(214, 123, 149, 0.08);
    --shadow-lg: 0 20px 45px rgba(214, 123, 149, 0.14);
    --shadow-hover: 0 25px 50px rgba(214, 123, 149, 0.22);
    --glass-shadow: 0 8px 32px 0 rgba(214, 123, 149, 0.1);

    /* Radius & Spacing */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 999px;
    --container-max: 1240px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & GLOBAL BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--body-text);
    background-color: #FAFAFA;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Common Styling */
section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--accent);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--muted-text);
    max-width: 640px;
    margin: 0 auto;
    font-weight: 400;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   3. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(214, 123, 149, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(214, 123, 149, 0.45);
    background: linear-gradient(135deg, #D67B95 0%, #c46882 100%);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark-text);
    border: 1px solid rgba(214, 123, 149, 0.2);
}

.btn-secondary:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--dark-text);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--accent);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-icon-arrow i {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon-arrow i {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   4. NAVIGATION (STICKY & GLASSMORPHISM)
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(214, 123, 149, 0.12);
}

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

/* Logo Styling - Tan Nimbus Luxury Serif vibe */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-logo);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: -0.03em;
}

.logo-accent {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    margin-left: -4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

/* Mobile Drawer Navigation */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    padding-top: 170px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 10% 20%, #FFF5F7 0%, #FAFAFA 90%);
    overflow: hidden;
}

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

.hero-content {
    max-width: 620px;
}

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.hero-headline span.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-headline span.highlight::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.7;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--muted-text);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img, .avatar-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.avatar-circle {
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--muted-text);
}

.trust-stars {
    color: #FFC107;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

/* Hero Visual Showcase */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Floating Glass Cards on Hero Visual */
.glass-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.card-top-left {
    top: -20px;
    left: -20px;
}

.card-bottom-right {
    bottom: -20px;
    right: -20px;
    animation-delay: 2s;
}

.badge-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.badge-text-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-text);
}

.badge-text-sub {
    font-size: 0.8rem;
    color: var(--muted-text);
}

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

/* --------------------------------------------------------------------------
   6. CLIENT LOGOS & GLOBAL HUBS TICKER
   -------------------------------------------------------------------------- */
.logos-section {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
}

.logos-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-text);
    margin-bottom: 24px;
}

.logos-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
    opacity: 0.7;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #888;
}

.logo-item i {
    font-size: 1.4rem;
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   7. WHY TASKLY / FEATURES SECTION
   -------------------------------------------------------------------------- */
.why-section {
    background: var(--white);
}

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

.feature-card {
    background: var(--light-grey);
    padding: 36px 30px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: var(--white);
    border-color: var(--border-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.98rem;
    color: var(--muted-text);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. SERVICES PREVIEW SECTION
   -------------------------------------------------------------------------- */
.services-section {
    background: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.service-header {
    margin-bottom: 20px;
}

.service-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-list {
    margin-top: 16px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--muted-text);
    margin-bottom: 8px;
}

.service-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   9. HOW IT WORKS TIMELINE SECTION
   -------------------------------------------------------------------------- */
.how-it-works-section {
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--secondary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 40px;
    margin-left: 50%;
}

.timeline-number {
    position: absolute;
    top: 0;
    right: -22px;
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 0 6px var(--white), var(--shadow-sm);
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-number {
    right: auto;
    left: -22px;
}

.timeline-content {
    background: var(--light-grey);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(214, 123, 149, 0.1);
    transition: var(--transition);
}

.timeline-content:hover {
    background: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   10. PRICING PREVIEW SECTION
   -------------------------------------------------------------------------- */
.pricing-section {
    background: radial-gradient(circle at 50% 50%, #FFF5F7 0%, #FAFAFA 100%);
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 50px;
}

.pricing-toggle-btn {
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pricing-toggle-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(214, 123, 149, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 20px 0;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
}

.price-unit {
    font-size: 1rem;
    color: var(--muted-text);
}

.pricing-features {
    margin: 24px 0 36px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--body-text);
}

.pricing-features li i {
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   11. TESTIMONIALS SLIDER SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
    background: var(--white);
    overflow: hidden;
}

.testimonial-carousel {
    max-width: 860px;
    margin: 50px auto 0;
    position: relative;
}

.testimonial-track-container {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--accent);
    border: 1px solid var(--border-color);
    padding: 60px 48px;
    box-shadow: var(--shadow-md);
}

.testimonial-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.quote-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    font-family: var(--font-logo);
    line-height: 1;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--dark-text);
    font-style: italic;
    margin-bottom: 30px;
    font-family: var(--font-body);
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.client-details h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.client-details p {
    font-size: 0.88rem;
    color: var(--muted-text);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 24px;
    border-radius: var(--radius-pill);
    background: var(--primary);
}

/* --------------------------------------------------------------------------
   12. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
    background: var(--light-grey);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid rgba(214, 123, 149, 0.12);
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: var(--white);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 28px;
}

.faq-item.open .faq-body {
    padding: 0 28px 24px 28px;
}

.faq-body p {
    color: var(--muted-text);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   13. CONVERSION BANNER & FOOTER
   -------------------------------------------------------------------------- */
.cta-banner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #D67B95 0%, #B85B75 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 16px;
}

.cta-banner-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

.footer {
    background: var(--dark-bg);
    color: #A0A0A0;
    padding-top: 80px;
    padding-bottom: 40px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    margin-bottom: 24px;
    max-width: 300px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-card);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* --------------------------------------------------------------------------
   14. ANIMATIONS & SCROLL REVEAL UTILITIES
   -------------------------------------------------------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translate(0);
}

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

/* --------------------------------------------------------------------------
   15. RESPONSIVE DESIGN (MEDIA QUERIES)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-headline { font-size: 2.8rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
    section { padding: 70px 0; }
    .nav-links, .nav-actions .btn { display: none; }
    .mobile-toggle { display: block; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero-ctas { justify-content: center; }
    .hero-trust { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 0; margin-left: 0 !important; }
    .timeline-item:nth-child(even) .timeline-number, .timeline-number { left: 0; right: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
