@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Manrope:wght@200;300;400;500;600;700&display=swap');

/* 
   Theme: 'Brutal' Premium Medical Aesthetic (Deep Luxury)
   Author: Antigravity
   For: Dra. Andrea Vargas
*/

:root {
    --primary-dark: #0a0a0a;
    --primary-charcoal: #141414;
    --secondary-gold: #c6a87c;
    --secondary-gold-light: #e5cfa6;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --blur: blur(20px);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Luxury often uses lighter weights for headings */
    color: var(--white);
    letter-spacing: -0.02em;
}

.gold-text {
    background: linear-gradient(135deg, var(--secondary-gold-light) 0%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.container {
    width: 90%;
    max-width: 1400px;
    /* Wider for modern feel */
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 120px 0;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, #aa8b5a 100%);
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-radius: 0;
    /* Sharp edges for 'brutal' feel */
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transform: translateX(-100%) skewX(-15deg);
    transition: var(--transition-smooth);
}

.btn-primary:hover::before {
    transform: translateX(0) skewX(0);
}

.btn-primary:hover {
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(198, 168, 124, 0.3);
}

/* --- Navbar (Floating Glass) --- */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background: rgba(20, 20, 20, 0.8);
    -webkit-backdrop-filter: var(--blur);
    backdrop-filter: var(--blur);
    padding: 20px 40px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: top 0.3s ease;
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
}

.logo span {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--secondary-gold);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(10, 10, 10, 1)), url('assets/consultorio doc.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-left: 5%;
}

.hero-subtitle {
    display: block;
    color: var(--secondary-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.2s;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.4s;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.6s;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 0.8s forwards 0.8s;
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-proof-small {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.avatars {
    display: flex;
    margin-right: 10px;
}

.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--primary-dark);
    background-color: #333;
    margin-left: -10px;
    background-size: cover;
}

.avatar-circle:first-child {
    margin-left: 0;
}

/* --- Problem / Agitation (Dark Mode) --- */
.problem-section {
    background-color: var(--primary-charcoal);
    position: relative;
}

.section-head {
    margin-bottom: 80px;
    text-align: center;
}

.section-head h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-head p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pain-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 50px 30px;
    border-radius: 8px;
    /* Slightly softer */
    text-align: center;
    transition: var(--transition-smooth);
    cursor: default;
}

.pain-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: var(--secondary-gold);
}

.pain-icon {
    font-size: 2.5rem;
    color: var(--secondary-gold);
    margin-bottom: 30px;
}

.pain-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 500;
}

.pain-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Authority (Asymmetrical Layout) --- */
.authority-section {
    background: var(--primary-dark);
    overflow: hidden;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.authority-image-wrapper {
    position: relative;
}

.authority-img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    border-radius: 4px;
}

.authority-image-wrapper:hover .authority-img {
    filter: grayscale(0%);
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary-gold);
    color: #000;
    padding: 30px;
    border-radius: 0;
    max-width: 200px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.floating-badge strong {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    font-family: var(--font-heading);
}

.authority-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.authority-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-gold);
    margin-bottom: 30px;
    display: block;
    font-weight: 300;
}

.authority-bio {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.check-list {
    list-style: none;
    margin-bottom: 40px;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-main);
}

.check-list li i {
    color: var(--secondary-gold);
    margin-right: 15px;
    font-size: 0.8rem;
}

/* --- Services (Horizontal Scroll / Modern) --- */
.services-section {
    background-color: var(--primary-charcoal);
    border-top: 1px solid var(--glass-border);
}

.service-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    margin-bottom: 100px;
    align-items: center;
}

.service-card.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.service-card.reverse .service-content {
    order: 2;
    padding-left: 50px;
    padding-right: 0;
}

.service-card.reverse .service-img {
    order: 1;
}

.service-content {
    padding-right: 50px;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -20px;
    display: block;
}

.service-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--secondary-gold);
    border: 1px solid rgba(198, 168, 124, 0.2);
}

.service-img {
    height: 500px;
    background-size: cover;
    background-position: center;
    filter: contrast(1.1) saturate(0.8);
    position: relative;
}

.item-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Process --- */
/* --- Process (Cards Redesign) --- */
.process-section {
    background: var(--primary-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-step-card {
    background: var(--primary-charcoal);
    padding: 40px 30px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    /* Brutal edge */
    transition: var(--transition-smooth);
    z-index: 1;
}

.process-step-card:hover {
    transform: translateY(-15px);
    border-color: var(--secondary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-bg-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    line-height: 1;
    z-index: -1;
    transition: var(--transition-smooth);
}

.process-step-card:hover .step-bg-number {
    color: rgba(198, 168, 124, 0.1);
    transform: scale(1.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(198, 168, 124, 0.1);
    border: 1px solid rgba(198, 168, 124, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 1.8rem;
    color: var(--secondary-gold);
    transition: var(--transition-smooth);
}

.process-step-card:hover .step-icon {
    background: var(--secondary-gold);
    color: #000;
    box-shadow: 0 0 30px rgba(198, 168, 124, 0.6);
}

.process-step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.process-step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Testimonials --- */
/* --- Testimonials (Carousel Marquee) --- */
.reviews-section {
    padding: 100px 0;
    background-color: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 0;
    /* Fade effect on sides */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track-container {
    width: 100%;
}

.carousel-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: scroll 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move half way (assuming 2 sets) */
}

.carousel-slide {
    width: 450px;
    /* Fixed width for better control */
    flex-shrink: 0;
    transition: var(--transition-smooth);
    opacity: 0.8;
    transform: scale(0.95);
}

.carousel-slide:hover {
    opacity: 1;
    transform: scale(1.05);
    z-index: 10;
}

.carousel-slide.active-slide {
    opacity: 1;
    transform: scale(1.05);
    /* Highlight active */
    z-index: 10;
}

.review-card {
    background: var(--primary-charcoal);
    padding: 40px 30px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    height: 100%;
    min-height: 480px;
    /* Taller */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 10rem;
    color: rgba(198, 168, 124, 0.05);
    line-height: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.review-stars {
    color: var(--secondary-gold);
    font-size: 0.9rem;
}

.verified-badge {
    font-size: 0.75rem;
    color: var(--secondary-gold);
    border: 1px solid rgba(198, 168, 124, 0.3);
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-text {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-gold);
}

.reviewer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 3px;
}

.reviewer small {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

/* Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--secondary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--secondary-gold);
    color: #000;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    gap: 10px;
}

.carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-indicator.current-slide {
    background: var(--secondary-gold);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .review-card {
        padding: 30px;
    }

    .review-text {
        font-size: 1.1rem;
    }

    .carousel-wrapper {
        padding: 0;
    }

    .carousel-btn {
        display: none;
    }

    /* Hide arrows on mobile, keep dots/swipe */
}

/* --- CTA Footer --- */
.cta-footer {
    padding: 150px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1516069677943-3586a6828985?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.cta-footer h2 {
    font-size: 4rem;
    margin-bottom: 30px;
}

.cta-footer p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #ccc;
}

/* --- Footer --- */
footer {
    background: #000;
    padding: 60px 0;
    border-top: 1px solid #222;
    color: #555;
    text-align: center;
    font-size: 0.9rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {

    .pain-cards,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .authority-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-card.reverse .service-content {
        order: unset;
        padding-left: 0;
    }

    .service-img {
        order: unset !important;
        margin-top: 30px;
    }

    .service-content {
        padding-right: 0;
    }

    .process-timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 50px;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 30px;
        border-bottom: 1px solid var(--secondary-gold);
        gap: 20px;
        text-align: center;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav {
        width: 90%;
        padding: 15px 20px;
    }

    .review-card {
        min-width: 300px;
    }
}

/* --- Pricing Section --- */
.pricing-section {
    background-color: #0a0a0a;
    /* Slightly darker than main bg for contrast */
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.pricing-column.featured {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--secondary-gold);
    position: relative;
}

/* Optional "Best Value" tag style if needed later */

.pricing-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-list {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-list li {
    margin-bottom: 25px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.item-name {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
}

.item-price {
    color: var(--secondary-gold);
    font-weight: 700;
    white-space: nowrap;
}

.item-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.btn-primary.full-width,
.btn-secondary.full-width {
    width: 100%;
    text-align: center;
    display: block;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 40px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--secondary-gold);
    color: var(--secondary-gold);
}

/* --- Brutal Testimonial Card Styles --- */
.review-card.brutal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    height: auto;
    min-height: 550px;
}

.brutal-card .reviewer-photo {
    width: 100%;
    height: 300px;
    position: relative;
    border-bottom: 2px solid var(--secondary-gold);
    margin-bottom: 25px;
    overflow: hidden;
}

.brutal-card .reviewer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.brutal-card:hover .reviewer-photo img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Badge overlay "Verificado" inside the photo */
.brutal-card .reviewer-photo::after {
    content: '✓ CASO REAL';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--secondary-gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brutal-card .reviewer-info {
    padding: 0 25px;
}

.brutal-card .reviewer-info h4 {
    font-family: var(--font-heading);
    color: var(--secondary-gold);
    font-size: 1.4rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brutal-card .review-text {
    padding: 0 25px 30px 25px;
    font-size: 1rem;
    color: #ccc;
    font-style: italic;
    font-weight: 300;
    margin-top: 15px;
    line-height: 1.6;
}

/* Hide original quote if present */
/* --- Detailed Mobile Polish (Spectacular & Balanced) --- */
@media (max-width: 768px) {

    /* Global Spacing & Typography */
    .section-padding {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.8rem !important;
        line-height: 1.1;
    }

    .section-head h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section-head p {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 10px;
    }

    /* Hero Section Polish */
    .hero-content {
        text-align: center;
        padding-top: 100px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    /* Pain Points Cards */
    .pain-cards {
        gap: 20px;
        margin-top: 40px;
    }

    .pain-card {
        padding: 30px 20px;
    }

    /* Authority Section */
    .authority-content {
        text-align: center;
        padding-left: 0;
    }

    .authority-content h2 {
        font-size: 2rem;
    }

    .check-list {
        display: inline-block;
        text-align: left;
        margin: 20px auto;
    }

    /* Services Section */
    .service-card {
        margin-bottom: 60px;
        text-align: center;
    }

    .service-features {
        justify-content: center;
    }

    /* Process Section */
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        margin-left: 0;
        align-items: center;
        text-align: center;
    }

    .timeline-dot {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-content {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.03);
        padding: 20px;
        border-radius: 8px;
    }

    /* Pricing Polish */
    .pricing-grid {
        gap: 30px;
    }

    .pricing-column {
        padding: 30px 20px;
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .price-item {
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }

    .item-desc {
        text-align: center;
        margin-bottom: 15px;
    }

    /* Brutal Testimonials on Mobile */
    .review-card.brutal-card {
        min-height: auto;
        /* Allow auto height on mobile */
        margin: 0 10px;
    }

    .brutal-card .reviewer-photo {
        height: 220px;
        /* Slightly smaller for balance */
    }

    .brutal-card .reviewer-info h4 {
        font-size: 1.2rem;
    }

    .brutal-card .review-text {
        font-size: 1rem;
        padding-bottom: 20px;
    }

    /* CTA Footer */
    .cta-footer h2 {
        font-size: 2.5rem;
    }

    /* Buttons */
    .btn-secondary {
        width: 100%;
        /* Full width for easy tapping */
        padding: 18px 20px;
    }
}

/* --- AI Assistant "Karen" Styles --- */
.chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: var(--font-body);
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-gold);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
}

.chat-toggle-btn i {
    font-size: 1.5rem;
    color: #000;
}

.chat-notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background: #ff4757;
    border-radius: 50%;
    border: 2px solid #000;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--secondary-gold);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.chat-window.open {
    transform: scale(1);
    opacity: 1;
}

.chat-header {
    padding: 15px 20px;
    background: linear-gradient(90deg, #111, #222);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.assistant-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-gold);
}

.chat-header-info h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--white);
    font-family: var(--font-heading);
}

.chat-header-info span {
    font-size: 0.75rem;
    color: var(--secondary-gold);
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ed573;
    border-radius: 50%;
    display: inline-block;
}

.close-chat-btn {
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: fadeInUp 0.3s ease;
}

.message.bot {
    align-self: flex-start;
    background: #1a1a1a;
    color: #e0e0e0;
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.chat-vip-btn {
    display: inline-block;
    margin-top: 12px;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, #b8860b 100%);
    color: #000;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.chat-vip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: #000;
}

.message.user {
    align-self: flex-end;
    background: var(--secondary-gold);
    color: #000;
    font-weight: 500;
    border-bottom-right-radius: 2px;
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 10px;
    background: #0a0a0a;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px 15px;
    color: #fff;
    outline: none;
    font-family: var(--font-body);
}

.chat-input::placeholder {
    color: #666;
}

.send-btn {
    background: transparent;
    border: none;
    color: var(--secondary-gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.send-btn:hover {
    transform: scale(1.2);
}

.upload-btn {
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0 5px;
}

.upload-btn:hover {
    color: var(--secondary-gold);
    transform: scale(1.1);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    align-self: flex-start;
    width: fit-content;
    display: none;
    /* Hidden by default */
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #aaa;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .chat-widget-container {
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        /* Ensure it's on top of everything */
    }

    .chat-toggle-btn {
        width: 65px;
        height: 65px;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.6);
    }

    .chat-window {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        /* Full screen experience */
        border-radius: 0;
        border: none;
        background: #000;
        /* Solid background for performance/readability */
        padding-bottom: env(safe-area-inset-bottom);
        /* iOS safe area */
    }

    .chat-header {
        padding: 20px;
        padding-top: max(20px, env(safe-area-inset-top));
    }

    .chat-messages {
        padding-bottom: 80px;
        /* Space for input area */
    }

    .chat-input-area {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 15px;
        padding-bottom: max(15px, env(safe-area-inset-bottom));
        background: #111;
        border-top: 1px solid var(--secondary-gold);
    }

    .chat-input {
        font-size: 16px;
        /* Prevent IOS zoom */
        padding: 12px 15px;
    }

    .close-chat-btn {
        font-size: 1.5rem;
        padding: 10px;
    }
}