/* ============================================
   FitArt — Fyzioterapie & Wellness
   CSS Stylesheet
   Colors: Green (#6ab547) + Dark + White
   ============================================ */

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

:root {
    --green: #6ab547;
    --green-dark: #508a36;
    --green-light: #e8f5e1;
    --dark: #1a1a1a;
    --dark-2: #2d2d2d;
    --gray: #6b7280;
    --gray-light: #f5f5f5;
    --gray-border: #e5e7eb;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.938rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn--primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(106, 181, 71, 0.35);
}

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

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

.btn--lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn--full { width: 100%; }

/* --- SECTION HEADERS --- */
.section-label {
    font-family: var(--font-heading);
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 56px;
}

.section-header .section-subtitle {
    margin-top: 4px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
}

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

.header__logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.header__logo-img {
    height: 72px;
    width: auto;
    transition: all var(--transition);
}

.header--scrolled .header__logo-img {
    height: 56px;
}

/* Nav */
.nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width var(--transition);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.header--scrolled .nav__link { color: var(--dark); }
.header--scrolled .nav__link:hover { color: var(--green); }

.nav__link--cta {
    background: var(--green);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.header--scrolled .hamburger span { background: var(--dark); }

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.5) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding-top: 120px;
}

.hero__label {
    font-family: var(--font-heading);
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--green);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
}

.hero__actions .btn--outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.hero__actions .btn--outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

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

/* ============================================
   USP BAR
   ============================================ */
.usp-bar {
    background: var(--dark);
    padding: 40px 0;
}

.usp-bar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.usp-bar__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--white);
}

.usp-bar__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.usp-bar__icon svg {
    width: 28px;
    height: 28px;
}

.usp-bar__item strong {
    font-family: var(--font-heading);
    font-size: 0.938rem;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.usp-bar__item p {
    font-size: 0.813rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: block;
    border: 1px solid var(--gray-border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}

.service-card__img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-card__body {
    padding: 28px;
}

.service-card__number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card__text {
    font-size: 0.938rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card__link {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
    transition: gap var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-card:hover .service-card__link { gap: 8px; }

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--gray-light);
}

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

.about__images {
    position: relative;
}

.about__img--main {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about__img--secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about__content { padding-left: 20px; }

.about__text {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.process {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process__step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.process__num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
}

.process__step strong {
    font-family: var(--font-heading);
    font-size: 0.938rem;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.process__step p {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ============================================
   TEAM
   ============================================ */
.team {
    padding: 100px 0;
    background: var(--white);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 400px;
}

.team__card {
    text-align: center;
    padding: 40px 32px;
    background: var(--gray-light);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.team__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.team__photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 24px;
    overflow: hidden;
    background: var(--gray-border);
}

.team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.team__photo-placeholder svg {
    width: 48px;
    height: 48px;
}

.team__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team__role {
    font-size: 0.875rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 12px;
}

.team__bio {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 100px 0;
    background: var(--gray-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery__item:hover img { transform: scale(1.08); }

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.813rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.gallery__item:hover .gallery__caption { transform: translateY(0); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.cta-banner__content {
    position: relative;
    z-index: 2;
}

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner__text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   PRICING PREVIEW
   ============================================ */
.pricing-preview {
    padding: 100px 0;
    background: var(--white);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pricing__card {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.pricing__card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing__card--highlight {
    background: var(--dark);
    color: var(--white);
}

.pricing__service {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.pricing__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 12px;
}

.pricing__card--highlight .pricing__price { color: var(--green); }

.pricing__note {
    font-size: 0.813rem;
    color: var(--gray);
    line-height: 1.6;
}

.pricing__card--highlight .pricing__note { color: rgba(255,255,255,0.6); }

.pricing__footer { text-align: center; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--gray-light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
}

.contact__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--green);
    margin-top: 2px;
}

.contact__item strong {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.contact__item p {
    font-size: 0.938rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact__item a:hover { color: var(--green); }

/* Form */
.contact__form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact__form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.813rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.938rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--green);
}

.form__group textarea { resize: vertical; }

/* ============================================
   MAP
   ============================================ */
.map {
    line-height: 0;
}

.map iframe {
    filter: grayscale(80%) contrast(1.1);
    transition: filter var(--transition);
}

.map iframe:hover { filter: grayscale(0%); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 64px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
    margin-bottom: 16px;
}

.footer__logo-img {
    height: 64px;
    width: auto;
}

.footer__desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--white);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer__links a:hover { color: var(--green); }

.footer__contact p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer__contact a:hover { color: var(--green); }

.footer__bottom {
    padding: 20px 0;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.footer__bottom a { color: var(--green); }
.footer__bottom a:hover { text-decoration: underline; }

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.page-hero--short { padding: 140px 0 60px; }

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero__back {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.813rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    transition: color var(--transition);
}

.page-hero__back:hover { color: var(--green); }

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 540px;
    line-height: 1.7;
}

/* ============================================
   SERVICE DETAIL (subpages)
   ============================================ */
.service-detail {
    padding: 80px 0;
}

.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}

.service-detail__content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-detail__content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-detail__content p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.service-detail__list li {
    padding-left: 24px;
    position: relative;
    font-size: 0.938rem;
    color: var(--gray);
    line-height: 1.6;
}

.service-detail__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
}

/* Steps */
.service-detail__steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.service-detail__step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.service-detail__step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.813rem;
}

.service-detail__step strong {
    font-family: var(--font-heading);
    font-size: 0.938rem;
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
}

.service-detail__step p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Benefits */
.service-detail__benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
}

.service-detail__benefit {
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
}

.service-detail__benefit strong {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
}

.service-detail__benefit p {
    font-size: 0.813rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Sidebar */
.service-detail__sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.service-detail__price-card {
    background: var(--dark);
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius);
}

.service-detail__price-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 8px;
}

.service-detail__price-row span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.service-detail__price-row strong {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--green);
}

.service-detail__price-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.service-detail__price-card .btn {
    margin-top: 16px;
}

.service-detail__info-card {
    background: var(--green-light);
    padding: 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--green);
}

.service-detail__info-card h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-detail__info-card p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.service-detail__sidebar-img {
    border-radius: var(--radius);
    width: 100%;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 80px 0;
    background: var(--gray-light);
}

.faq .section-title { margin-bottom: 32px; }

.faq__list {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--gray-border);
}

.faq__item summary {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}

.faq__item summary:hover { color: var(--green); }

.faq__item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--green);
    transition: transform var(--transition);
}

.faq__item[open] summary::after {
    content: '−';
}

.faq__item p {
    padding: 0 24px 20px;
    font-size: 0.938rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-page {
    padding: 80px 0;
}

.pricing-page__table {
    max-width: 900px;
}

.pricing-page__category {
    margin-top: 48px;
    margin-bottom: 16px;
}

.pricing-page__category:first-child { margin-top: 0; }

.pricing-page__category h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--green);
}

.pricing-page__row {
    display: grid;
    grid-template-columns: 1fr 100px 120px;
    gap: 16px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-border);
}

.pricing-page__row--highlight {
    background: var(--dark);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    border-bottom: none;
    margin: 8px 0;
}

.pricing-page__service strong {
    font-family: var(--font-heading);
    font-size: 0.938rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.pricing-page__service p {
    font-size: 0.813rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.pricing-page__row--highlight .pricing-page__service p {
    color: rgba(255,255,255,0.6);
}

.pricing-page__duration {
    font-size: 0.813rem;
    color: var(--gray);
    text-align: center;
}

.pricing-page__row--highlight .pricing-page__duration {
    color: rgba(255,255,255,0.6);
}

.pricing-page__price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green);
    text-align: right;
}

.pricing-page__notes {
    margin-top: 48px;
    padding: 32px;
    background: var(--gray-light);
    border-radius: var(--radius);
}

.pricing-page__notes h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-page__notes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-page__notes li {
    font-size: 0.875rem;
    color: var(--gray);
    padding-left: 20px;
    position: relative;
}

.pricing-page__notes li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--green);
}

.pricing-page__cta {
    margin-top: 48px;
    text-align: center;
}

.pricing-page__cta p {
    margin-top: 16px;
    font-size: 0.938rem;
    color: var(--gray);
}

.pricing-page__cta a { color: var(--dark); }
.pricing-page__cta a:hover { color: var(--green); }

/* ============================================
   LOADING SCREEN
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.loader__logo {
    height: 90px;
    width: auto;
    animation: loaderPulse 1.4s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

.loader__bar {
    width: 180px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader__fill {
    width: 0%;
    height: 100%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
    transition: width 1.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.loader.loading .loader__fill {
    width: 100%;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, #9dd876 100%);
    box-shadow: 0 0 10px rgba(106, 181, 71, 0.6);
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ============================================
   HERO — ENHANCED
   ============================================ */
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(106, 181, 71, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(106, 181, 71, 0.12) 0%, transparent 60%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: shapeFloat 12s ease-in-out infinite;
}

.hero__shape--1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #6ab547, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero__shape--2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, #4a8a2d, transparent 70%);
    bottom: -120px;
    right: 10%;
    animation-delay: -4s;
    opacity: 0.35;
}

.hero__shape--3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #9dd876, transparent 70%);
    top: 40%;
    right: -80px;
    animation-delay: -8s;
    opacity: 0.25;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: none;
}

.hero__label-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(106, 181, 71, 0.6);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(106, 181, 71, 0.6); }
    50% { box-shadow: 0 0 0 10px rgba(106, 181, 71, 0); }
}

/* Split text animation */
.split-text {
    display: block;
    overflow: hidden;
    padding-bottom: 0.12em;
    line-height: 1.1;
}

/* Prevent clipping — allow wrap on narrow screens, nowrap on wider */
@media (min-width: 900px) {
    .split-text {
        white-space: nowrap;
    }
}

.split-text .word {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    margin-right: 0.25em;
}

.split-text.visible .word {
    transform: translateY(0);
    opacity: 1;
}

.split-text--accent .word {
    background: linear-gradient(135deg, #9dd876 0%, #6ab547 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero stats */
.hero__stats {
    position: absolute;
    bottom: 110px;
    left: 0;
    right: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    z-index: 2;
    opacity: 0;
}

.hero__stats.visible {
    opacity: 1;
    transition: opacity 0.9s ease;
}

.hero__stat {
    flex: 1;
    max-width: 200px;
}

.hero__stat-num {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #a8e57c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.25), transparent);
}

/* Data-reveal generic */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MAGNETIC BUTTON
   ============================================ */
.btn--magnetic {
    position: relative;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn--magnetic svg {
    width: 18px;
    height: 18px;
    margin-left: 4px;
    transition: transform var(--transition);
}

.btn--magnetic:hover svg {
    transform: translateX(4px);
}

/* ============================================
   TEXT GRADIENT
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, #6ab547 0%, #9dd876 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ============================================
   3D TILT SERVICE CARDS
   ============================================ */
.service-card {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.4s ease;
}

.service-card__body,
.service-card__img {
    transform: translateZ(0);
    transform-style: preserve-3d;
}

.service-card__title,
.service-card__number {
    transform: translateZ(20px);
}

.service-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.18),
                0 0 0 1px var(--green);
}

/* ============================================
   ABOUT INTRO
   ============================================ */
.about-intro {
    padding: 120px 0 80px;
    background: var(--white);
}

.about-intro__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-intro__text {
    padding-top: 28px;
}

.about-intro__lead {
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-intro__body {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   STICKY PROCESS
   ============================================ */
.sticky-process {
    padding: 80px 0 120px;
    background: var(--gray-light);
    position: relative;
}

.sticky-process__header {
    margin-bottom: 60px;
    text-align: center;
}

.sticky-process__header .section-label,
.sticky-process__header .section-title {
    margin-left: auto;
    margin-right: auto;
}

.sticky-process__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.sticky-process__left {
    padding: 20px 0;
}

.sticky-process__steps {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.sticky-step {
    opacity: 0.25;
    transform: scale(0.98);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.sticky-step.active {
    opacity: 1;
    transform: scale(1);
}

.sticky-step__num {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #6ab547 0%, #9dd876 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.sticky-step__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.sticky-step__text {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 440px;
}

.sticky-process__right {
    position: sticky;
    top: 120px;
    height: 560px;
}

.sticky-process__media {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.sticky-process__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.sticky-process__img.active {
    opacity: 1;
    transform: scale(1);
}

.sticky-process__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.sticky-process__badge-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

.sticky-process__badge-num span {
    color: var(--green);
}

.sticky-process__badge-total {
    font-family: var(--font-heading);
    font-size: 0.813rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonials__header .section-label,
.testimonials__header .section-title {
    margin-left: auto;
    margin-right: auto;
}

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

.testimonials__stars {
    display: flex;
    gap: 2px;
}

.testimonials__stars svg {
    width: 22px;
    height: 22px;
    color: #fbbf24;
}

.testimonials__rating-text {
    font-size: 0.938rem;
    color: var(--gray);
}

.testimonials__rating-text strong {
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.testimonials__carousel {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 8px;
}

.testimonials__track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial {
    flex: 0 0 100%;
    padding: 48px 56px;
    background: var(--gray-light);
    border-radius: var(--radius);
    position: relative;
    margin: 0 8px;
}

.testimonial__quote-icon {
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--green);
    opacity: 0.2;
    line-height: 1;
}

.testimonial__text {
    font-size: 1.15rem;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

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

.testimonial__author-initial {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.938rem;
    color: var(--dark);
}

.testimonial__role {
    font-size: 0.813rem;
    color: var(--gray);
}

.testimonials__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.testimonials__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gray-border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--dark);
}

.testimonials__btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.testimonials__btn svg {
    width: 20px;
    height: 20px;
}

.testimonials__dots {
    display: flex;
    gap: 8px;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.testimonials__dot.active {
    background: var(--green);
    width: 28px;
    border-radius: 10px;
}

/* ============================================
   PARALLAX
   ============================================ */
[data-parallax] {
    will-change: transform;
}

/* ============================================
   ENHANCED SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CUSTOM CURSOR (desktop only)
   ============================================ */
.cursor,
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99997;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(106, 181, 71, 0.55);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease,
                width 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                height 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.25s ease,
                background 0.25s ease;
    backdrop-filter: invert(0.1);
    -webkit-backdrop-filter: invert(0.1);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(106, 181, 71, 0.6);
}

body.cursor-ready .cursor,
body.cursor-ready .cursor-dot {
    opacity: 1;
}

.cursor.cursor--hover {
    width: 60px;
    height: 60px;
    border-color: var(--green);
    background: rgba(106, 181, 71, 0.08);
}

.cursor.cursor--click {
    transform: translate(-50%, -50%) scale(0.8);
}

/* Hide default cursor on desktop when custom cursor is active */
@media (hover: hover) and (pointer: fine) {
    body.cursor-ready,
    body.cursor-ready a,
    body.cursor-ready button,
    body.cursor-ready .service-card,
    body.cursor-ready input,
    body.cursor-ready textarea,
    body.cursor-ready select,
    body.cursor-ready .hamburger,
    body.cursor-ready [role="button"] {
        cursor: none;
    }
}

/* ============================================
   GRAIN / NOISE TEXTURE
   ============================================ */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 200px 200px;
}

/* ============================================
   FLOATING MOBILE CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: var(--green);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.938rem;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(106, 181, 71, 0.4),
                0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-cta svg {
    width: 18px;
    height: 18px;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta:active {
    transform: translateY(0) scale(0.96);
    box-shadow: 0 4px 16px rgba(106, 181, 71, 0.3);
}

@media (max-width: 768px) {
    .floating-cta {
        display: inline-flex;
    }
}

/* ============================================
   BUTTON RIPPLE EFFECT
   ============================================ */
.btn {
    position: relative;
    overflow: hidden;
}

.btn__ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.btn--outline .btn__ripple {
    background: rgba(106, 181, 71, 0.25);
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* ============================================
   SERVICE CARD ENHANCED HOVER
   ============================================ */
.service-card__img {
    position: relative;
    overflow: hidden;
}

.service-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(106, 181, 71, 0.0) 60%,
        rgba(106, 181, 71, 0.5) 100%
    );
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.service-card:hover .service-card__img::after {
    opacity: 1;
}

.service-card__link {
    position: relative;
    transition: gap 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                color 0.3s ease;
}

.service-card__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--green);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__link::after {
    width: 100%;
}

/* ============================================
   STICKY PROCESS — connector line
   ============================================ */
.sticky-process__left {
    position: relative;
}

.sticky-process__left::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(
        180deg,
        rgba(106, 181, 71, 0.15) 0%,
        rgba(106, 181, 71, 0.35) 50%,
        rgba(106, 181, 71, 0.15) 100%
    );
    border-radius: 2px;
}

.sticky-step {
    position: relative;
    padding-left: 60px;
}

.sticky-step::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 28px;
    width: 16px;
    height: 16px;
    background: var(--gray-light);
    border: 2px solid rgba(106, 181, 71, 0.4);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-step.active::before {
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 0 0 8px rgba(106, 181, 71, 0.15),
                0 0 20px rgba(106, 181, 71, 0.4);
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .sticky-process__left::before,
    .sticky-step::before { display: none; }
    .sticky-step { padding-left: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing__grid { grid-template-columns: repeat(2, 1fr); }
    .usp-bar__inner { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__inner { grid-template-columns: repeat(2, 1fr); }
    .about-intro__grid { grid-template-columns: 1fr; gap: 32px; }
    .sticky-process__inner { gap: 48px; }
    .hero__stats { gap: 20px; }
    .hero__stat-num { font-size: 2.25rem; }
}

@media (max-width: 1024px) {
    .service-detail__grid { grid-template-columns: 1fr 320px; }
    .service-detail__benefits { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.97);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 1000;
    }

    /* Fix: backdrop-filter na scrolled headeru vytváří containing block pro fixed nav.
       Když je menu otevřené, vypneme backdrop-filter, aby nav bylo přes celou obrazovku. */
    body.nav-open .header,
    body.nav-open .header--scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: transparent;
        box-shadow: none;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        gap: 24px;
    }

    .nav__link {
        font-size: 1.25rem;
        color: var(--white) !important;
    }

    .nav__link--cta {
        margin-top: 16px;
        padding: 14px 36px;
    }

    .hero__content { padding-top: 80px; }

    .usp-bar__inner { grid-template-columns: 1fr; gap: 24px; }

    .services__grid { grid-template-columns: 1fr; }

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

    .about__img--secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 70%;
        margin-top: -60px;
        margin-left: auto;
    }

    .about__content { padding-left: 0; }

    .gallery__grid { grid-template-columns: 1fr 1fr; }
    .gallery__item--wide { grid-column: span 2; }

    .pricing__grid { grid-template-columns: 1fr; }

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

    .contact__form-wrap { padding: 28px; }

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

    .service-detail__sidebar {
        position: static;
    }

    .page-hero { padding: 120px 0 60px; }

    .pricing-page__row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .pricing-page__duration { text-align: left; }
    .pricing-page__price { text-align: left; }

    /* Hero responsive */
    .hero__stats {
        position: relative;
        bottom: auto;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        padding: 24px;
        background: rgba(0,0,0,0.4);
        border-radius: var(--radius);
        backdrop-filter: blur(10px);
    }
    .hero__stat { max-width: none; text-align: center; }
    .hero__stat-divider { width: 60%; height: 1px; margin: 0 auto; }
    .hero__scroll { display: none; }
    .hero__content { padding-top: 100px; padding-bottom: 40px; }

    /* Sticky process responsive */
    .sticky-process__inner { grid-template-columns: 1fr; gap: 40px; }
    .sticky-process__steps { gap: 48px; }
    .sticky-process__right {
        position: relative;
        top: auto;
        height: 320px;
        order: -1;
    }
    .sticky-step { opacity: 1; transform: none; }
    .sticky-step__num { font-size: 3.5rem; }
    .sticky-step__title { font-size: 1.5rem; }

    /* Testimonials responsive */
    .testimonial { padding: 32px 24px; }
    .testimonial__text { font-size: 1rem; }
    .testimonial__quote-icon { font-size: 4rem; }
    .testimonials__controls { gap: 16px; }

    /* About intro */
    .about-intro__grid { gap: 24px; }
    .about-intro { padding: 80px 0 60px; }
    .about-intro__lead { font-size: 1.1rem; }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .section-title { font-size: 1.75rem; }
    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item--wide { grid-column: span 1; }
}
