/* NutriVibe / Kimi homepage theme — Nutrition Planett */

.nutrivibe-home {
    --nv-green: #8bc34a;
    --nv-green-dark: #689f38;
    --nv-green-light: #e8f5e9;
    --nv-cream: #f5f5f0;
    --nv-dark: #2e3338;
    --nv-gray: #666666;
    --nv-gray-light: #999;
    --nv-coral: #e53935;
    --nv-white: #ffffff;
    font-family: "Open Sans", system-ui, sans-serif;
    color: var(--nv-gray);
    -webkit-font-smoothing: antialiased;
}

.nutrivibe-home h1,
.nutrivibe-home h2,
.nutrivibe-home h3,
.nutrivibe-home h4,
.nutrivibe-home .nv-heading {
    font-family: "Fira Sans", system-ui, sans-serif;
    color: var(--nv-dark);
}

.nv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.nv-script {
    font-family: "Dancing Script", cursive;
    font-size: 1.875rem;
    color: var(--nv-green);
    display: block;
}

.nv-gradient-text {
    background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nv-section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.nv-section-head h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0.25rem 0 0;
}

.nv-section-head p {
    max-width: 560px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.nv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-family: "Fira Sans", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nv-btn--coral {
    background: var(--nv-coral);
    color: #fff;
    box-shadow: 0 4px 16px rgba(229, 57, 53, 0.3);
}

.nv-btn--coral:hover {
    background: #c62828;
    transform: translateY(-2px);
}

.nv-btn--green {
    background: var(--nv-green);
    color: #fff;
}

.nv-btn--green:hover {
    background: var(--nv-green-dark);
}

.nv-btn--outline {
    background: transparent;
    color: var(--nv-dark);
    border: 2px solid rgba(46, 51, 56, 0.15);
}

/* Top bar */
.nv-top-bar {
    display: none;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.8125rem;
}

@media (min-width: 768px) {
    .nv-top-bar { display: block; }
}

.nv-top-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nv-top-bar__contacts {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nv-top-bar__contacts span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--nv-gray);
}

.nv-top-bar__dot {
    color: var(--nv-green);
}

/* Navigation */
.nv-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nv-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nv-nav__logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.nv-nav__logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--nv-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

.nv-nav__logo-text {
    display: flex;
    flex-direction: column;
}

.nv-nav__logo-name {
    font-family: "Fira Sans", sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--nv-dark);
    line-height: 1.1;
}

.nv-nav__logo-tag {
    font-size: 0.6875rem;
    color: var(--nv-green);
    margin-top: -2px;
}

.nv-nav__links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nv-nav__links { display: flex; }
}

.nv-nav__links a {
    font-family: "Fira Sans", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--nv-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.nv-nav__links a:hover,
.nv-nav__links a.is-active {
    color: var(--nv-green);
}

.nv-nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nv-nav__cta {
    display: none;
}

@media (min-width: 1024px) {
    .nv-nav__cta { display: inline-flex; }
}

.nv-nav__menu-btn {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--nv-dark);
}

@media (min-width: 1024px) {
    .nv-nav__menu-btn { display: none; }
}

.nv-nav__mobile {
    border-top: 1px solid #f3f4f6;
    padding: 1rem 1.5rem;
}

.nv-nav__mobile a {
    display: block;
    padding: 0.65rem 0;
    font-family: "Fira Sans", sans-serif;
    font-weight: 600;
    color: var(--nv-dark);
    text-decoration: none;
}

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

/* Stats */
.nv-stats {
    padding: 2rem 0 3rem;
    background: #fff;
}

.nv-stats__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .nv-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .nv-stats__grid { grid-template-columns: repeat(4, 1fr); }
}

.nv-stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--nv-green-light);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nv-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nv-stat-box__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.nv-stat-box__value {
    font-family: "Fira Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nv-dark);
    line-height: 1;
}

.nv-stat-box__label {
    font-size: 0.8125rem;
    color: var(--nv-gray-light);
    margin-top: 0.25rem;
}

/* Services grid */
.nv-services {
    padding: 6rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.nv-services__blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.nv-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .nv-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .nv-services__grid { grid-template-columns: repeat(3, 1fr); }
}

.nv-service-card {
    border-radius: 1rem;
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.nv-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.nv-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.55));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.nv-service-card--red { background: linear-gradient(135deg, #fef2f2, #fff7ed); }
.nv-service-card--pink { background: linear-gradient(135deg, #fdf2f8, #ffe4e6); }
.nv-service-card--blue { background: linear-gradient(135deg, #eff6ff, #ecfeff); }
.nv-service-card--green { background: linear-gradient(135deg, #f0fdf4, #ecfdf5); }
.nv-service-card--amber { background: linear-gradient(135deg, #fffbeb, #fef9c3); }
.nv-service-card--purple { background: linear-gradient(135deg, #faf5ff, #f5f3ff); }

.nv-service-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: transform 0.45s ease;
}

.nv-service-card:hover .nv-service-card__icon {
    transform: scale(1.1) rotate(6deg);
}

.nv-service-card__icon--red { background: #fee2e2; }
.nv-service-card__icon--pink { background: #fce7f3; }
.nv-service-card__icon--blue { background: #dbeafe; }
.nv-service-card__icon--green { background: #dcfce7; }
.nv-service-card__icon--amber { background: #fef3c7; }
.nv-service-card__icon--purple { background: #ede9fe; }

.nv-service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.nv-service-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0;
}

.nv-service-card__learn {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-family: "Fira Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #16a34a;
    margin-top: 0.9rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nv-service-card:hover .nv-service-card__learn {
    opacity: 1;
    transform: translateY(0);
}

/* About Iqra */
.nv-about {
    padding: 6rem 0;
    background: var(--nv-cream);
    position: relative;
    overflow: hidden;
}

.nv-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .nv-about__grid { grid-template-columns: 1fr 1fr; }
}

.nv-about__media {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-img,
.about-badge-float,
.about-text > *,
.cred-card {
    opacity: 1;
}

/* Layered photo frame with soft green backdrop panels */
.nv-about__media-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    padding: 1.5rem;
}

.nv-about__media-frame::before,
.nv-about__media-frame::after {
    content: '';
    position: absolute;
    border-radius: 2rem;
    z-index: 0;
}

/* large pale panel offset to the bottom-right */
.nv-about__media-frame::before {
    top: 2.5rem;
    right: -0.75rem;
    bottom: -0.75rem;
    left: 3rem;
    background: rgba(45, 138, 71, 0.10);
}

/* lighter panel offset to the top-left */
.nv-about__media-frame::after {
    top: -0.75rem;
    left: -0.75rem;
    width: 55%;
    height: 55%;
    background: rgba(45, 138, 71, 0.06);
}

.nv-about__media img {
    position: relative;
    z-index: 1;
    display: block;
    border-radius: 1.5rem;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
    aspect-ratio: 4 / 4.4;
    width: 100%;
    object-fit: cover;
}

/* decorative double-quote sitting in the top-left empty area */
.nv-about__quote {
    position: absolute;
    top: -1.75rem;
    left: -1.25rem;
    z-index: 2;
    width: 5rem;
    color: rgba(45, 138, 71, 0.28);
    pointer-events: none;
}

.nv-about__quote svg {
    width: 100%;
    height: auto;
    display: block;
}

.nv-about__badge {
    position: absolute;
    bottom: 0.25rem;
    right: -0.5rem;
    z-index: 2;
    background: #fff;
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(45, 138, 71, 0.12);
}

.nv-about__badge-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nv-green), var(--nv-green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.nv-about__badge-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.nv-about__badge-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--nv-text, #1f2937);
    line-height: 1.2;
}

.nv-about__badge-text span {
    font-size: 0.8rem;
    color: #8a8f98;
}

.nv-about__copy p {
    line-height: 1.75;
    margin-bottom: 1rem;
}

.nv-about__values {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.nv-about__values li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
    font-size: 0.9375rem;
}

.nv-about__check {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--nv-green-light);
    color: var(--nv-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.nv-about__creds {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 1024px) {
    .nv-about__creds { grid-template-columns: repeat(4, 1fr); }
}

.nv-cred-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid #f3f4f6;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nv-cred-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.nv-cred-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.25rem;
}

.nv-cred-card h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0;
}

.nv-cred-card p {
    font-size: 0.75rem;
    color: var(--nv-gray-light);
    margin: 0.25rem 0 0;
}

/* Transformations */
.nv-transform {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.nv-transform__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nv-transform__grid { grid-template-columns: repeat(3, 1fr); }
}

.nv-transform-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nv-transform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

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

.trans-header,
.trans-card {
    opacity: 1;
}

.nv-transform-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.nv-transform-card__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--nv-green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

.nv-transform-card__result {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--nv-coral);
    color: #fff;
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
}

.nv-transform-card__result-wrap {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
}

.nv-transform-card__result-wrap .nv-transform-card__result {
    position: static;
}

.nv-transform-card__result strong {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.nv-transform-card__result span {
    font-size: 0.625rem;
    text-transform: uppercase;
    opacity: 0.85;
}

.nv-transform-card__duration {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.nv-transform-card__body {
    padding: 1.5rem;
}

.nv-transform-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.nv-transform-card__meta h3 {
    font-size: 1.125rem;
    margin: 0;
}

.nv-transform-card__location {
    font-size: 0.75rem;
    color: var(--nv-gray-light);
}

.nv-transform__cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* Process */
.nv-process {
    padding: 6rem 0;
    background: var(--nv-green);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.nv-process .nv-section-head h2,
.nv-process .nv-section-head p {
    color: #fff;
}

.nv-process .nv-script { color: rgba(255, 255, 255, 0.9); }

.nv-process__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
}

@media (min-width: 640px) {
    .nv-process__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .nv-process__grid { grid-template-columns: repeat(4, 1fr); }
}

.nv-process-step {
    text-align: center;
}

.process-header,
.process-step {
    opacity: 1;
}

.process-connector {
    display: none;
}

@media (min-width: 1024px) {
    .process-connector {
        display: block;
        position: absolute;
        top: 2.5rem;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: rgba(255, 255, 255, 0.2);
        transform-origin: left center;
    }
}

.nv-process-step__icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.nv-process-step__icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.nv-process-step__num {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--nv-coral);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nv-process-step h3 {
    color: #fff !important;
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
}

.nv-process-step p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.ig-header,
.ig-post,
.ig-cta,
.faq-header,
.faq-item,
.faq-cta,
.contact-left,
.contact-right {
    opacity: 1;
}

/* Why Iqra */
.nv-why {
    padding: 6rem 0;
    background: var(--nv-cream);
    position: relative;
    overflow: hidden;
}

.nv-why__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
}

.nv-why__blob--green {
    top: 2.5rem;
    right: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(139, 195, 74, 0.15);
}

.nv-why__blob--red {
    bottom: 2.5rem;
    left: 2.5rem;
    width: 14rem;
    height: 14rem;
    background: rgba(254, 226, 226, 0.15);
}

.nv-why .nv-container {
    position: relative;
    z-index: 1;
}

.why-header,
.why-quote,
.why-card {
    opacity: 1;
}

.nv-why__quote {
    max-width: 700px;
    margin: 0 auto 3.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem 2rem 1.75rem;
    border: 1px solid rgba(139, 195, 74, 0.15);
    position: relative;
}

.nv-why__quote-mark {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-family: Georgia, serif;
    color: rgba(139, 195, 74, 0.35);
    line-height: 1;
}

.nv-why__quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin: 0;
    padding-top: 0.75rem;
}

.nv-why__quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--nv-green);
}

.nv-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nv-why__grid { grid-template-columns: repeat(2, 1fr); }
}

.nv-why-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    border: 1px solid #f3f4f6;
    display: flex;
    gap: 1.25rem;
    transition: box-shadow 0.3s ease;
}

.nv-why-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.nv-why-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.nv-why-card:hover .nv-why-card__icon {
    transform: scale(1.1) rotate(3deg);
}

.nv-why-card h3 {
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
}

.nv-why-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0;
    color: var(--nv-gray);
}

/* Wave divider */
.nv-wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.nv-wave-divider svg {
    display: block;
    width: 100%;
    height: 40px;
}

@media (min-width: 768px) {
    .nv-wave-divider svg { height: 60px; }
}

/* Testimonials */
.nv-testimonials-wrap {
    position: relative;
}

.nv-testimonials {
    background: var(--nv-cream);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.nv-testimonial-inner {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.nv-testimonial-deco {
    position: absolute;
    color: rgba(139, 195, 74, 0.3);
    pointer-events: none;
    z-index: 0;
}

.nv-testimonial-deco--tl {
    top: 2.5rem;
    left: 2.5rem;
}

.nv-testimonial-deco--br {
    bottom: 2.5rem;
    right: 2.5rem;
    transform: rotate(180deg);
}

.nv-testimonial-box {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 3.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    position: relative;
    opacity: 1;
}

@media (min-width: 768px) {
    .nv-testimonial-box { padding: 3rem 4.5rem; }
}

.nv-testimonial-card__stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    color: #fbbf24;
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
}

.nv-testimonial-card__content {
    text-align: center;
}

.nv-testimonial-card__text {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.85;
    color: #444;
    margin: 0 auto 2rem;
    max-width: 650px;
}

@media (min-width: 768px) {
    .nv-testimonial-card__text { font-size: 1.25rem; }
}

.nv-testimonial-card__author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nv-testimonial-card__avatar-wrap {
    position: relative;
    margin-bottom: 0.75rem;
}

.nv-testimonial-card__avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 3px solid var(--nv-green);
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

.nv-testimonial-card__verified {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--nv-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nv-testimonial-card__name {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0;
    color: var(--nv-dark);
}

.nv-testimonial-card__location {
    color: var(--nv-green);
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.25rem 0 0;
}

.nv-testimonial-card__program {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--nv-gray-light);
    background: #f9fafb;
    padding: 0.35rem 1rem;
    border-radius: 999px;
}

.nv-testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    color: var(--nv-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    padding: 0;
}

.nv-testimonial-arrow--prev { left: 1rem; }
.nv-testimonial-arrow--next { right: 1rem; }

.nv-testimonial-arrow:hover {
    border-color: var(--nv-green);
    color: var(--nv-green);
    background: #f0fdf4;
}

.nv-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.nv-testimonial-dots button {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 999px;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: width 0.3s, background 0.3s;
}

.nv-testimonial-dots button.is-active {
    width: 2rem;
    background: var(--nv-green);
}

.nv-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    .why-header,
    .why-quote,
    .why-card,
    .nv-testimonial-box {
        opacity: 1;
    }
}

/* FAQ */
.nv-faq {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.nv-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.nv-faq-item {
    background: var(--nv-cream);
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.nv-faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Fira Sans", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--nv-dark);
}

.nv-faq-item__chevron {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--nv-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
    color: var(--nv-green-dark);
}

.nv-faq-item.is-open .nv-faq-item__chevron {
    transform: rotate(180deg);
    background: var(--nv-green);
    color: #fff;
}

.nv-faq-item__answer {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--nv-gray);
}

.nv-faq__cta {
    max-width: 800px;
    margin: 2.5rem auto 0;
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.1), rgba(229, 57, 53, 0.05));
}

/* Instagram */
.nv-instagram {
    padding: 6rem 0;
    background: #fff;
}

.nv-instagram__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1rem;
}

.nv-instagram__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .nv-instagram__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .nv-instagram__grid { grid-template-columns: repeat(6, 1fr); }
}

.nv-instagram__post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 0.75rem;
    overflow: hidden;
    display: block;
}

.nv-instagram__post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.nv-instagram__post:hover img {
    transform: scale(1.1);
}

.nv-instagram__post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 1rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

.nv-instagram__post:hover .nv-instagram__post-overlay {
    opacity: 1;
}

.nv-instagram__cta {
    text-align: center;
    margin-top: 2.5rem;
}

.nv-btn--instagram {
    background: linear-gradient(135deg, #a855f7, #ec4899, #f97316);
    color: #fff;
}

/* Contact */
.nv-contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e8f5e9, #fff, #e8f5e9);
    position: relative;
    overflow: hidden;
}

.nv-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .nv-contact__grid { grid-template-columns: 1fr 1fr; }
}

.nv-contact-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #f3f4f6;
    text-decoration: none;
    color: inherit;
    margin-bottom: 0.75rem;
    transition: box-shadow 0.2s;
}

.nv-contact-channel:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.nv-contact-channel__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.nv-contact-free {
    background: linear-gradient(135deg, var(--nv-green), var(--nv-green-dark));
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    color: #fff;
    margin-top: 1.5rem;
}

.nv-contact-free strong {
    font-size: 2.25rem;
    display: block;
}

.nv-contact-form {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.nv-contact-form label {
    display: block;
    font-family: "Fira Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nv-dark);
    margin-bottom: 0.5rem;
}

.nv-contact-form input,
.nv-contact-form select,
.nv-contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-family: "Open Sans", sans-serif;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.nv-contact-form input:focus,
.nv-contact-form select:focus,
.nv-contact-form textarea:focus {
    outline: none;
    border-color: var(--nv-green);
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.15);
}

.nv-contact-form textarea {
    min-height: 8rem;
    resize: vertical;
}

.nv-form-error {
    color: var(--nv-coral);
    font-size: 0.8125rem;
    margin: -0.75rem 0 1rem;
}

[x-cloak] { display: none !important; }

/* Footer */
.nv-footer {
    background: var(--nv-dark);
    color: #9ca3af;
    padding: 4rem 0 2rem;
}

.nv-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .nv-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .nv-footer__grid { grid-template-columns: repeat(4, 1fr); }
}

.nv-footer h4 {
    color: var(--nv-green) !important;
    font-size: 1.125rem;
    margin: 0 0 1.25rem;
}

.nv-footer a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.nv-footer a:hover { color: #fff; }

.nv-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nv-footer__links li { margin-bottom: 0.75rem; }

.nv-footer__social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.nv-footer__social a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--nv-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.875rem;
}

.nv-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
}

/* Floating CTA */
.nv-float-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 50;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.nv-float-whatsapp:hover { transform: scale(1.1); }

.nv-float-book {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

@media (min-width: 768px) {
    .nv-float-book { display: inline-flex; }
}

/* Scroll reveal — elements stay visible by default; GSAP sets the hidden
   start-state itself via fromTo(), so nothing can get permanently stuck. */
.nv-reveal {
    opacity: 1;
    transform: translateY(0);
}

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

@media (prefers-reduced-motion: reduce) {
    .nv-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .service-header,
    .service-card,
    .about-img,
    .about-badge-float,
    .about-text > *,
    .cred-card,
    .trans-header,
    .trans-card,
    .process-header,
    .process-step,
    .why-header,
    .why-quote,
    .why-card,
    .nv-testimonial-box,
    .ig-header,
    .ig-post,
    .ig-cta,
    .faq-header,
    .faq-item,
    .faq-cta,
    .contact-left,
    .contact-right {
        opacity: 1 !important;
        transform: none !important;
    }
}
