/* ============================================
   Kim's Idee - High Converting Landing Page
   Brand Colors:
     Olive Green: #606840
     Dusty Pink:  #D4C5C7
     Cream/Off-white: #F7F5F2
     Dark Text:   #4A4A4A
   ============================================ */

:root {
    --olive: #606840;
    --olive-dark: #4a5130;
    --olive-light: #7a8356;
    --olive-bg: #606840;
    --pink: #D4C5C7;
    --pink-light: #e8dfe0;
    --pink-dark: #bba9ac;
    --cream: #F7F5F2;
    --cream-dark: #ece8e3;
    --white: #ffffff;
    --text: #4A4A4A;
    --text-light: #6e6e6e;
    --text-dark: #333333;
    --shadow-sm: 0 2px 8px rgba(96, 104, 64, 0.06);
    --shadow-md: 0 4px 24px rgba(96, 104, 64, 0.1);
    --shadow-lg: 0 8px 40px rgba(96, 104, 64, 0.13);
    --shadow-xl: 0 20px 60px rgba(96, 104, 64, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--olive);
    line-height: 1.3;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 245, 242, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
    padding: 14px 0;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(247, 245, 242, 0.98);
    padding: 10px 0;
    border-bottom: 1px solid rgba(96, 104, 64, 0.08);
}

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

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

.btn-nav {
    font-size: 13px;
    padding: 10px 22px;
}

.btn-nav-short {
    display: none;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn svg {
    flex-shrink: 0;
    transition: var(--transition);
}

.btn:hover svg {
    transform: translateX(2px);
}

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

.btn-primary:hover {
    background: var(--olive-dark);
    border-color: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 104, 64, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--olive);
    border-color: var(--olive);
}

.btn-outline:hover {
    background: var(--olive);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 104, 64, 0.25);
}

.btn-lg {
    font-size: 15px;
    padding: 14px 30px;
}

.btn-xl {
    font-size: 16px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 150px 0 80px;
    background: var(--cream);
    overflow: hidden;
}

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

.hero-tag {
    display: inline-block;
    background: var(--pink-light);
    color: var(--olive);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--olive);
}

.hero h1 em {
    font-style: italic;
    color: var(--olive-light);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.hero-image {
    position: relative;
}

.hero-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hero-img-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 10px 16px 10px 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-img-portrait {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pink-light);
}

.hero-img-caption {
    display: flex;
    flex-direction: column;
}

.hero-img-caption strong {
    font-size: 14px;
    color: var(--olive);
    font-family: 'Playfair Display', serif;
}

.hero-img-caption span {
    font-size: 11px;
    color: var(--text-light);
}

/* ============================================
   Problems Section
   ============================================ */
.problems {
    padding: 90px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--olive);
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 48px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.problem-card {
    background: var(--cream);
    padding: 40px 28px 36px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(96, 104, 64, 0.06);
    position: relative;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--olive);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(96, 104, 64, 0.1);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--olive);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.problem-card:hover .problem-icon {
    background: var(--olive);
    color: var(--white);
    transform: scale(1.1);
}

.problem-card:hover .problem-icon svg {
    stroke: var(--white);
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--olive);
}

.problem-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 90px 0;
    background: var(--cream);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    border: 1px solid rgba(96, 104, 64, 0.04);
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: rgba(96, 104, 64, 0.08);
}

.service-card.reverse {
    direction: rtl;
}

.service-card.reverse>* {
    direction: ltr;
}

.service-img-wrap {
    min-height: 340px;
    overflow: hidden;
    position: relative;
}

.service-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(96, 104, 64, 0.05), transparent);
    pointer-events: none;
    z-index: 1;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.service-card:hover .service-img {
    transform: scale(1.06);
}

.service-content {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--olive);
    position: relative;
    padding-bottom: 16px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--pink);
    transition: var(--transition);
}

.service-card:hover .service-content h3::after {
    width: 60px;
    background: var(--olive);
}

.service-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.service-features li svg {
    flex-shrink: 0;
}

.service-card:hover .service-features li {
    transform: translateX(4px);
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 90px 0;
    background: var(--pink-light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(96, 104, 64, 0.03);
    border-radius: 50%;
}

.testimonials .section-title {
    margin-bottom: 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px 28px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(96, 104, 64, 0.06);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    background: var(--olive);
    color: var(--white);
    border: none;
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card.featured .quote-icon {
    color: rgba(255, 255, 255, 0.3);
}

.testimonial-card.featured strong {
    color: var(--white);
}

.quote-icon {
    color: var(--pink);
    margin-bottom: 4px;
    display: block;
    line-height: 1;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(96, 104, 64, 0.08);
}

.testimonial-card.featured .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.author-stars {
    display: flex;
    gap: 2px;
}

.testimonial-author strong {
    font-size: 14px;
    color: var(--olive);
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 90px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--pink);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: var(--transition);
}

.about-image:hover::after {
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-slow);
}

.about-image:hover .about-img {
    transform: scale(1.01);
    box-shadow: var(--shadow-xl);
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 2px solid var(--pink-light);
}

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

.stat-value {
    display: flex;
    align-items: baseline;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--olive);
    line-height: 1;
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--olive);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-top: 6px;
}

/* ============================================
   Process Section
   ============================================ */
.process {
    padding: 90px 0;
    background: var(--olive);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.process::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.process .section-title {
    color: var(--white);
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    flex: 1;
    max-width: 320px;
    padding: 0 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 20px;
    color: var(--white);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.process-step h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin-top: 30px;
    flex-shrink: 0;
    position: relative;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
}

/* ============================================
   Final CTA Section
   ============================================ */
.final-cta {
    padding: 90px 0;
    background: var(--cream);
}

.cta-card {
    display: grid;
    grid-template-columns: 3fr 2fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(96, 104, 64, 0.04);
}

.cta-content {
    padding: 56px 48px;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--olive);
}

.cta-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.cta-guarantee {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-guarantee span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--olive);
    font-weight: 500;
}

.cta-image {
    overflow: hidden;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.cta-card:hover .cta-img {
    transform: scale(1.04);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--olive);
    color: var(--white);
    padding: 44px 0;
}

.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 1;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    opacity: 0.6;
}

.footer-contact {
    display: flex;
    gap: 32px;
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: var(--transition);
    cursor: pointer;
}

.footer-link:hover {
    opacity: 1;
}

.footer-copy {
    font-size: 12px;
    opacity: 0.4;
    margin-top: 8px;
}

/* ============================================
   Scroll Animations
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0, 0.25, 1),
        transform 0.8s cubic-bezier(0.25, 0, 0.25, 1);
}

.animate-on-scroll.slide-in-right {
    transform: translateX(40px);
}

.animate-on-scroll.slide-in-left {
    transform: translateX(-40px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Staggered delays */
.animate-on-scroll.delay-1 {
    transition-delay: 0.12s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.24s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.36s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.48s;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 130px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-image {
        max-width: 600px;
    }

    .hero-img-main {
        height: 360px;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card.reverse {
        direction: ltr;
    }

    .service-img-wrap {
        min-height: 220px;
        max-height: 300px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image::after {
        display: none;
    }

    .about-img {
        height: 380px;
    }

    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-img {
        min-height: 250px;
    }
}

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

    .demo-banner {
        font-size: 11px;
        padding: 8px 16px;
    }

    .navbar {
        top: 33px;
    }

    .logo-img,
    .navbar.scrolled .logo-img {
        height: 38px;
    }

    .btn-nav {
        font-size: 12px;
        padding: 8px 14px;
    }

    .btn-nav-label {
        display: none;
    }

    .btn-nav-short {
        display: inline !important;
    }

    .hero {
        padding: 115px 0 48px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .hero-img-main {
        height: 220px;
        object-position: center center;
    }

    .hero-img-accent {
        bottom: -16px;
        left: -8px;
        padding: 8px 12px 8px 8px;
    }

    .hero-img-portrait {
        width: 44px;
        height: 44px;
    }

    .hero-img-caption strong {
        font-size: 13px;
    }

    .hero-img-caption span {
        font-size: 10px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 32px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .problems,
    .services,
    .testimonials,
    .about,
    .process,
    .final-cta {
        padding: 52px 0;
    }

    .problems-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .problem-card {
        padding: 24px 20px;
    }

    .problem-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }

    .problem-icon svg {
        width: 24px;
        height: 24px;
    }

    .problem-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .problem-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .testimonial-card {
        padding: 28px 22px 22px;
    }

    .testimonial-card.featured {
        transform: none;
    }

    .testimonial-card.featured:hover {
        transform: translateY(-4px);
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .service-img-wrap {
        min-height: 0;
        height: 200px;
    }

    .service-img {
        height: 200px;
    }

    .service-content {
        padding: 24px 20px;
    }

    .service-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-content p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .services-cta {
        margin-top: 32px;
    }

    .about-image {
        max-width: 320px;
        margin: 0 auto;
    }

    .about-img {
        height: 300px;
        object-position: center top;
    }

    .about-content h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .about-content p {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .about-stats {
        gap: 20px;
        margin-top: 28px;
        padding-top: 20px;
    }

    .stat-number,
    .stat-plus {
        font-size: 30px;
    }

    .stat-label {
        font-size: 12px;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .process-step {
        padding: 0 16px;
    }

    .process-step h3 {
        font-size: 19px;
    }

    .process-step p {
        font-size: 14px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 14px;
    }

    .process-connector {
        width: 2px;
        height: 24px;
        margin: 0;
    }

    .process-connector::after {
        right: -3px;
        top: auto;
        bottom: -4px;
        transform: rotate(135deg);
    }

    .cta-content {
        padding: 32px 22px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-xl {
        font-size: 15px;
        padding: 14px 24px;
    }

    .cta-img {
        min-height: 200px;
        max-height: 240px;
    }

    .cta-guarantee {
        flex-direction: column;
        gap: 8px;
    }

    .footer {
        padding: 36px 0;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 105px 0 40px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-img-main {
        height: 200px;
    }

    .hero-img-accent {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 12px;
        width: fit-content;
    }

    .hero-img-portrait {
        width: 40px;
        height: 40px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .problems,
    .services,
    .testimonials,
    .about,
    .process,
    .final-cta {
        padding: 40px 0;
    }

    .problem-card {
        padding: 20px 16px;
    }

    .problem-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 12px;
    }

    .problem-card h3 {
        font-size: 17px;
    }

    .service-img-wrap {
        min-height: 0;
        height: 160px;
    }

    .service-img {
        height: 160px;
    }

    .service-content {
        padding: 20px 16px;
    }

    .about-image {
        max-width: 260px;
    }

    .about-img {
        height: 260px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-stats {
        gap: 16px;
    }

    .stat-number,
    .stat-plus {
        font-size: 26px;
    }

    .stat-label {
        font-size: 11px;
    }

    .cta-content {
        padding: 28px 18px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-img {
        min-height: 160px;
        max-height: 200px;
    }

    .btn-lg {
        font-size: 14px;
        padding: 12px 20px;
    }

    .btn-xl {
        font-size: 14px;
        padding: 13px 20px;
    }
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20BA5A;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}