:root {
    --blue-dark: #1a3ca6;
    --blue-mid: #2f63b6;
    --blue-soft: #468db4;
    --teal: #58b0a8;
    --teal-light: #75bfcd;
    --bg-gray: #d2e4ec;
    --bg-light: #eef5f9;
    --white: #ffffff;
    --text-dark: #0f2040;
    --text-mid: #3a5070;
    --text-light: #6a8aa8;
    --grad: linear-gradient(135deg, var(--blue-dark) 0%, var(--teal) 100%);
    --grad-soft: linear-gradient(135deg, var(--blue-mid) 0%, var(--teal-light) 100%);
    --shadow: 0 8px 32px rgba(26, 60, 166, 0.1);
    --shadow-sm: 0 2px 12px rgba(26, 60, 166, 0.07);
    --radius: 18px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.75;
}

h1,
h2,
h3,
h4 {
    font-family: "DM Serif Display", serif;
    line-height: 1.25;
}

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

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--teal-light);
    border-radius: 3px;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(88, 176, 168, 0.15);
    padding: 0 2rem;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "DM Serif Display", serif;
    font-size: 1.5rem;
    color: var(--blue-dark);
    flex-shrink: 0;
}

.logo-img {
    height: 68px;
    width: auto;
    display: block;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
    list-style: none;
}

.nav-links a {
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-mid);
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue-dark);
    background: var(--bg-light);
}

.btn-nav {
    background: var(--grad);
    color: #fff !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    box-shadow: 0 3px 12px rgba(88, 176, 168, 0.3);
    transition: opacity 0.2s, transform 0.2s !important;
}

.btn-nav:hover {
    opacity: 0.9;
    transform: translateY(-1px) !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--blue-dark);
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--bg-gray);
    padding: 1rem;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 0.2rem;
    cursor: pointer;
}

.mobile-menu a:hover {
    background: var(--bg-light);
    color: var(--blue-dark);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 4px 16px rgba(88, 176, 168, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 176, 168, 0.45);
}

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

.btn-outline:hover {
    background: var(--blue-dark);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--blue-dark);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-1px);
}

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

.btn-teal:hover {
    background: var(--teal-light);
    transform: translateY(-1px);
}

/* ── SECTION LAYOUT ── */
section {
    padding: 5rem 2rem;
}

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

.section-tag {
    display: inline-block;
    background: rgba(88, 176, 168, 0.12);
    color: var(--teal);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.text-center .section-sub {
    margin: 0 auto;
}

/* ── HERO ── */
.hero {
    min-height: 90vh;
    background: var(--grad);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 2rem 6rem;
}

.hero-bg-shape {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.hero-bg-shape2 {
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.hero-paw {
    position: absolute;
    font-size: 8rem;
    opacity: 0.06;
    right: 8%;
    bottom: 5%;
    transform: rotate(-15deg);
    user-select: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text h1 em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.hero-text p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 25px;
    padding: 0.4rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-cards-group {
    display: grid;
    grid-template-columns: 115px 1fr 115px;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.hero-cards-group .hero-card {
    grid-column: 2;
    grid-row: 1 / 4;
}

.hero-img-card {
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px;
    overflow: hidden;
    will-change: transform;
    box-shadow: 0 8px 32px rgba(15, 32, 64, 0.28);
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img-card--tl img {
    object-position: 45% center;
}

.hero-img-card--br img {
    object-position: 70% center;
}

.hero-img-card--tl {
    grid-column: 1;
    grid-row: 1 / 3;
}

.hero-img-card--br {
    grid-column: 3;
    grid-row: 2 / 4;
}

.hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 1.5rem;
    max-width: 360px;
}

.hero-card-title {
    color: #fff;
    font-size: 1.2rem;
    font-family: "DM Serif Display", serif;
    margin-bottom: 1rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    margin-bottom: 0.7rem;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.hero-stat-val {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
}

.hero-wave svg {
    display: block;
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    margin: -50px 2rem 0;
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--teal);
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    background: var(--bg-gray);
    align-self: stretch;
    justify-self: end;
}

/* ── ABOUT SNIPPET ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    background: var(--grad-soft);
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.about-img-icon {
    font-size: 8rem;
    opacity: 0.3;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.about-float-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 1rem 1.4rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-float-card .icon {
    width: 42px;
    height: 42px;
    background: var(--grad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.about-check {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1rem;
    color: var(--text-mid);
    font-size: 0.97rem;
}

.about-check i {
    color: var(--teal);
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* ── SERVICES ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1.5px solid rgba(88, 176, 168, 0.15);
    transition: all 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transition: 0.3s;
    transform-origin: left;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(88, 176, 168, 0.1), rgba(26, 60, 166, 0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--teal);
}

.service-card h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-gray);
    font-size: 0.87rem;
}

.service-price {
    font-weight: 800;
    color: var(--teal);
    font-size: 1rem;
}

.service-duration {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ── VISUALLY HIDDEN (SEO only) ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ── SERVICES PAGE — ALTERNATING LAYOUT ── */
.svc-alt-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.svc-row {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 32, 64, 0.07);
    border: 1.5px solid rgba(88, 176, 168, 0.1);
    background: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.svc-row:hover {
    box-shadow: 0 12px 40px rgba(88, 176, 168, 0.16);
    transform: translateY(-3px);
}

.svc-row--reverse {
    flex-direction: row-reverse;
}

.svc-img {
    flex: 0 0 42%;
    overflow: hidden;
    position: relative;
    min-height: 260px;
}

.svc-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.svc-row:hover .svc-img img {
    transform: scale(1.04);
}

.svc-content {
    flex: 1;
    padding: 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.svc-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    color: rgba(88, 176, 168, 0.12);
    line-height: 1;
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    user-select: none;
}

.svc-icon-sm {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(88, 176, 168, 0.12), rgba(26, 60, 166, 0.08));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.svc-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.svc-content p {
    font-size: 0.97rem;
    color: var(--text-light);
    line-height: 1.72;
    margin-bottom: 0.85rem;
}

.svc-duration-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(88, 176, 168, 0.1), rgba(26, 60, 166, 0.06));
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.28rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(88, 176, 168, 0.2);
    margin-bottom: 0.9rem;
    width: fit-content;
}

.svc-popular-badge {
    display: inline-block;
    background: var(--grad);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.18rem 0.65rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
    width: fit-content;
}

.svc-content .btn-primary {
    transition: filter 0.22s ease, box-shadow 0.22s ease;
    width: fit-content;
}

.svc-content .btn-primary:hover {
    transform: none;
    filter: brightness(1.12);
    box-shadow: 0 4px 20px rgba(88, 176, 168, 0.4);
}

.svc-content .btn-primary::after {
    display: none;
}

@media (max-width: 768px) {
    .svc-row,
    .svc-row--reverse {
        flex-direction: column;
    }

    .svc-img {
        flex: 0 0 auto;
        height: 220px;
    }

    .svc-content {
        padding: 2rem;
    }

    .svc-num {
        font-size: 2.5rem;
        top: 1.2rem;
        right: 1.5rem;
    }
}

/* ── SERVICES PAGE V2 ── */
.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(88, 176, 168, 0.12);
    box-shadow: 0 4px 24px rgba(15, 32, 64, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(88, 176, 168, 0.18);
}

.svc-banner {
    background: linear-gradient(135deg, var(--blue-dark), var(--teal));
    padding: 2.2rem 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    position: relative;
    overflow: hidden;
}

.svc-banner::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -60px;
    right: -40px;
}

.svc-banner::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    bottom: -30px;
    left: -20px;
}

.svc-icon-lg {
    width: 68px;
    height: 68px;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.svc-badge {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.28rem 0.9rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    position: relative;
    z-index: 1;
}

.svc-popular-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fff;
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.22rem 0.75rem;
    border-radius: 20px;
    z-index: 3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.svc-body {
    padding: 1.8rem;
}

.svc-body h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.svc-body p {
    font-size: 0.91rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1.3rem;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
}

.svc-tags span {
    background: linear-gradient(135deg, rgba(88, 176, 168, 0.1), rgba(26, 60, 166, 0.06));
    color: var(--teal);
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(88, 176, 168, 0.2);
}

.svc-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--blue-dark);
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    border-bottom: 2px solid rgba(26, 60, 166, 0.15);
    padding-bottom: 0.15rem;
    transition: gap 0.25s ease, color 0.2s ease, border-color 0.2s ease;
}

.svc-cta:hover {
    gap: 0.7rem;
    color: var(--teal);
    border-color: var(--teal);
}

/* ── HOW IT WORKS ── */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
}

.how-grid::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-light), var(--blue-soft));
}

.how-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.how-num {
    width: 72px;
    height: 72px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 1.2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(88, 176, 168, 0.35);
}

.how-step h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.how-step p {
    font-size: 0.92rem;
    color: var(--text-light);
}

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--grad);
    border-radius: var(--radius);
    padding: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: "🐾";
    position: absolute;
    right: 2rem;
    bottom: -10px;
    font-size: 9rem;
    opacity: 0.07;
    transform: rotate(-10deg);
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 0.5rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

/* ── PRICING ── */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
}

.pricing-table thead tr {
    background: var(--grad);
    color: #fff;
}

.pricing-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 800;
    font-size: 1rem;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--bg-gray);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: var(--bg-light);
}

.pricing-table td {
    padding: 1.1rem 1.5rem;
    font-size: 0.97rem;
    color: var(--text-mid);
}

.pricing-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-table td.price {
    font-weight: 800;
    color: var(--teal);
    font-size: 1.05rem;
}

.pricing-table td.duration {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.price-card {
    background: #fff;
    border-radius: var(--radius);
    border: 2px solid var(--bg-gray);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.price-card.featured {
    border-color: var(--teal);
    box-shadow: var(--shadow);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: #fff;
    padding: 0.25rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
}

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

.price-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #e8f4f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
}

.price-card-icon i {
    font-size: 1.7rem;
    color: #3a8f84;
}

.price-card h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.price-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.price-amt {
    font-size: 2rem;
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
}

.price-amt sub {
    font-size: 0.6em;
    font-weight: 700;
    vertical-align: super;
    color: var(--text-light);
}

.price-dur {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.3rem;
    margin-bottom: 1.2rem;
}

/* ── TESTIMONIALS ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testi-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-gray);
    position: relative;
}

.testi-quote {
    font-size: 3rem;
    line-height: 0.8;
    color: var(--teal-light);
    font-family: "DM Serif Display", serif;
    margin-bottom: 0.5rem;
}

.testi-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
}

.testi-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.testi-role {
    font-size: 0.82rem;
    color: var(--text-light);
}

.stars {
    color: #f59e0b;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

/* ── BLOG ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-gray);
    transition: all 0.3s;
    cursor: pointer;
    display: block;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-thumb {
    height: 190px;
    background: var(--grad-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.blog-thumb-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #fff;
    border-radius: 20px;
    padding: 0.25rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teal);
}

.blog-body {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
}

.blog-card h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.88rem;
    margin-top: 1rem;
}

/* ── FAQ ── */
.faq-list {
    max-width: 780px;
    margin: 2.5rem auto 0;
}

.faq-item {
    border: 1.5px solid var(--bg-gray);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: var(--teal-light);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #fff;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    gap: 1rem;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    background: var(--teal);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s;
    background: #fff;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: var(--grad);
    border-radius: var(--radius);
    padding: 2.5rem;
    color: #fff;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 0.97rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.82rem;
    opacity: 0.75;
    margin-bottom: 0.1rem;
}

.contact-detail-val {
    font-weight: 700;
    font-size: 0.97rem;
}

.contact-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--bg-gray);
    border-radius: var(--radius-sm);
    font-family: "Nunito", sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border 0.2s, box-shadow 0.2s;
    background: #fff;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(88, 176, 168, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.83rem;
    color: var(--text-light);
    margin-top: 0.4rem;
}

/* ── PAGE HERO ── */
.page-hero {
    background: var(--grad);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: #fff;
}

.page-hero::before {
    width: 400px;
    height: 400px;
    left: -100px;
    top: -100px;
}

.page-hero::after {
    width: 300px;
    height: 300px;
    right: -80px;
    bottom: -80px;
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ── VALUES ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.8rem;
    border: 1.5px solid var(--bg-gray);
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--teal-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 1.02rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── EBOOKS ── */
.ebook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.ebook-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-gray);
    transition: all 0.3s;
}

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

.ebook-cover {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
}

.ebook-cover-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    background: #0f1e3d;
    aspect-ratio: 2 / 3;
}

.ebook-cover-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    left: 0;
    width: 12px;
    background: linear-gradient(to right, rgba(0,0,0,0.28), transparent);
    pointer-events: none;
}

.ebook-cover-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

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

.ebook-cover-1 {
    background: linear-gradient(135deg, #1a3ca6, #58b0a8);
}

.ebook-cover-2 {
    background: linear-gradient(135deg, #0f2040, #2f63b6);
}

.ebook-info {
    padding: 1.4rem;
}

.ebook-info h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 0.97rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.ebook-info p {
    font-size: 0.83rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.ebook-price {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--teal);
}

/* ── SINGLE BLOG POST ── */
.post-layout {
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.post-category-tag {
    display: inline-block;
    background: rgba(88, 176, 168, 0.1);
    color: var(--teal);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.post-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.88rem;
    color: var(--text-light);
    padding: 1rem 0;
    border-top: 1px solid var(--bg-gray);
    border-bottom: 1px solid var(--bg-gray);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.post-content h2 {
    font-family: "DM Serif Display", serif;
    font-size: 1.6rem;
    margin: 2rem 0 0.8rem;
    color: var(--blue-dark);
}

.post-content h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    margin: 1.5rem 0 0.6rem;
    color: var(--text-dark);
}

.post-content p {
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1.2rem;
    font-size: 1.02rem;
}

.post-content ul {
    margin: 0 0 1.2rem 1.5rem;
    color: var(--text-mid);
    line-height: 1.9;
}

.post-content ul li {
    margin-bottom: 0.3rem;
}

.post-callout {
    background: var(--bg-light);
    border-left: 4px solid var(--teal);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-mid);
    font-size: 0.97rem;
    line-height: 1.8;
}

.post-callout strong {
    color: var(--blue-dark);
}

.post-author-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 1.8rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.post-author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.post-author-bio h4 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.post-author-bio p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── FOOTER ── */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    color: #fff;
    font-family: "DM Serif Display", serif;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.footer-logo-img {
    height: 110px;
    width: auto;
    display: block;
    border-radius: var(--radius-sm);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.2rem;
}

.footer-social {
    display: flex;
    gap: 0.7rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: 0.2s;
}

.social-btn:hover {
    background: var(--teal);
    color: #fff;
}

.footer-col h4 {
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(88, 176, 168, 0.15);
    color: var(--teal-light);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .hero-cards-group {
        grid-template-columns: 90px 1fr 90px;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-img-wrap {
        display: none;
    }

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

    .how-grid::before {
        display: none;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    section {
        padding: 3.5rem 1.25rem;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        margin-left: auto;
    }

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

/* ── NOTICE BADGE ── */
.notice {
    background: rgba(88, 176, 168, 0.1);
    border: 1px solid var(--teal-light);
    border-radius: var(--radius-sm);
    padding: 1rem 1.4rem;
    font-size: 0.92rem;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.notice i {
    color: var(--teal);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeUp 0.5s ease both;
}

/* ══════════════════════════════════════════════════════
   VISUAL EFFECTS — GPU-composited, warm & professional
   ══════════════════════════════════════════════════════ */

/* --- Keyframes --- */
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

@keyframes floatPaw {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50%       { transform: rotate(-15deg) translateY(-16px); }
}

@keyframes breatheShape {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.07); }
}

@keyframes pulseRing {
    0%   { box-shadow: 0 4px 16px rgba(88,176,168,.35), 0 0 0 0    rgba(88,176,168,.4); }
    70%  { box-shadow: 0 4px 16px rgba(88,176,168,.35), 0 0 0 14px rgba(88,176,168,0); }
    100% { box-shadow: 0 4px 16px rgba(88,176,168,.35), 0 0 0 0    rgba(88,176,168,0); }
}

@keyframes shimmerSlide {
    0%   { left: -80%; }
    100% { left: 200%; }
}

/* --- Hero card gently floats --- */
.hero-card {
    animation: floatCard 5s ease-in-out infinite;
    will-change: transform;
}

/* --- Hero decorative shapes breathe --- */
.hero-bg-shape  { animation: breatheShape 9s  ease-in-out infinite; }
.hero-bg-shape2 { animation: breatheShape 11s ease-in-out infinite reverse; }

/* --- Hero paw floats in sync --- */
.hero-paw { animation: floatPaw 7s ease-in-out infinite; }

/* --- About float card gentle bob --- */
.about-float-card {
    animation: floatCard 4.5s ease-in-out infinite 0.6s;
    will-change: transform;
}

/* --- Step numbers pulse ring --- */
.how-num { animation: pulseRing 2.8s ease-out infinite; }

/* --- Button shimmer on hover (premium feel) --- */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-nav {
    position: relative !important;
    overflow: hidden !important;
}

.btn-primary::after,
.btn-nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    transform: skewX(-20deg);
    transition: left .55s ease;
    pointer-events: none;
}

.btn-primary:hover::after,
.btn-nav:hover::after {
    left: 200%;
}

/* --- Service icon subtly lifts on card hover --- */
.service-icon {
    transition: transform .3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.12) rotate(-6deg);
}

.service-card:hover {
    box-shadow: 0 16px 48px rgba(88,176,168,.18);
}

/* --- Testimonial cards lift on hover --- */
.testi-card {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(26,60,166,.1);
    border-color: var(--teal-light);
}

/* --- Blog thumbnail icon scales on card hover --- */
.blog-thumb > i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.92);
    display: inline-block;
    transition: transform .35s ease;
}

.blog-card:hover .blog-thumb > i {
    transform: scale(1.15);
}

/* --- Social buttons lift on hover --- */
.social-btn {
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.social-btn:hover {
    transform: scale(1.15) translateY(-2px);
}

/* --- Stat items nudge up on hover --- */
.stat-item { transition: transform .25s ease; }
.stat-item:hover { transform: translateY(-3px); }

/* --- Ebook cards enhanced hover --- */
.ebook-card:hover {
    box-shadow: 0 16px 44px rgba(26,60,166,.12);
}

/* --- FAQ icon smooth spring --- */
.faq-icon {
    transition: background .3s ease, color .3s ease,
                transform .4s cubic-bezier(.34,1.56,.64,1);
}

/* ── Reduced motion: respect user preference ── */
@media (prefers-reduced-motion: reduce) {
    .hero-card,
    .hero-bg-shape,
    .hero-bg-shape2,
    .hero-paw,
    .about-float-card,
    .how-num {
        animation: none !important;
        will-change: auto;
    }

    .btn-primary::after,
    .btn-nav::after {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════
   PRO VISUAL EFFECTS
   ══════════════════════════════════════════════════════ */

/* Scroll progress bar */
.fx-progress {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--grad);
    transform-origin: 0 0;
    transform: scaleX(0);
    z-index: 999;
    pointer-events: none;
    will-change: transform;
}

/* Hero canvas — floats behind all hero content */
.fx-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* Animated soft glow orb injected into hero by JS */
.fx-hero-glow {
    position: absolute;
    width: 580px; height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(117,191,205,.18) 0%, transparent 70%);
    top: -160px; right: -120px;
    animation: fxGlowDrift 9s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

@keyframes fxGlowDrift {
    from { transform: scale(1) translate(0, 0); opacity: .65; }
    to   { transform: scale(1.28) translate(-5%, 5%); opacity: 1; }
}

/* Keep all hero content above canvas + glow */
.hero-badge,
.hero-inner { position: relative; z-index: 2; }

/* Hero wave keeps its original position:absolute — only elevate z-index */
.hero-wave { z-index: 2; }

/* ── Hero heading word-reveal ── */
.fx-word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.3;
}

.fx-word {
    display: inline-block;
    animation: fxWordUp .7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fxWordUp {
    from { opacity: 0; transform: translateY(110%); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Button ripple ── */
.fx-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.28);
    transform: scale(0);
    animation: fxRippleAnim .75s ease-out forwards;
    pointer-events: none;
}

@keyframes fxRippleAnim {
    to { transform: scale(1); opacity: 0; }
}

/* ── Mouse-tracking spotlight on cards ──
   CSS custom props --mx / --my are set by JS mousemove            */
.service-card::after,
.service-card-v2::after,
.testi-card::after,
.price-card::after,
.ebook-card::after,
.value-card::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: var(--radius);
    background: radial-gradient(
        circle at var(--mx, 50%) var(--my, 50%),
        rgba(88,176,168,.14) 0%,
        transparent 58%
    );
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
    z-index: 2;
}

.service-card:hover::after,
.service-card-v2:hover::after,
.testi-card:hover::after,
.price-card:hover::after,
.ebook-card:hover::after,
.value-card:hover::after { opacity: 1; }

/* Cards that were missing position: relative */
.price-card,
.ebook-card,
.value-card { position: relative; }

/* ── Nav shadow on scroll ── */
nav.fx-scrolled {
    box-shadow: 0 4px 32px rgba(26,60,166,.12);
    border-bottom-color: rgba(88,176,168,.35);
    transition: box-shadow .35s ease, border-bottom-color .35s ease;
}

/* ── Section title animated accent line ──
   A 3 px gradient bar injected after each .section-title by JS   */
.section-title { margin-bottom: 0.4rem; }

.fx-title-line {
    height: 3px;
    width: 0;
    background: var(--grad);
    border-radius: 2px;
    margin: 6px 0 1rem;
    transition: width .95s cubic-bezier(0.16, 1, 0.3, 1) .12s;
}

.fx-title-line.visible { width: 72px; }

.text-center .fx-title-line {
    margin-left: auto;
    margin-right: auto;
}

/* ── Stats glow after count ── */
.stat-item.fx-counted h3 {
    filter: drop-shadow(0 0 10px rgba(88,176,168,.48));
    transition: filter .5s ease;
}

/* ── Testi card quote colour pop on hover ── */
.testi-card:hover .testi-quote {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all .3s ease;
}

/* ── How-step hover: card lifts and lights up ── */
.how-step {
    transition: transform .3s ease;
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
}

.how-step:hover {
    transform: translateY(-6px);
    background: var(--bg-light);
}

/* ── CTA banner extra glow orb ── */
.cta-banner::before {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    animation: fxGlowDrift 7s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

/* ── Blog card: label slides up on hover ── */
.blog-thumb-label {
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
}

.blog-card:hover .blog-thumb-label {
    transform: translateY(-3px);
}

/* ── Reduced motion overrides ── */
@media (prefers-reduced-motion: reduce) {
    .fx-progress,
    .fx-canvas,
    .fx-hero-glow,
    .cta-banner::before { display: none !important; }

    .fx-word {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .fx-word-wrap { overflow: visible !important; }
}
