/* =============================================================
   Sparkle & Shine — Combined Stylesheet
   Covers: index.html + about.html
   Bootstrap 5.3.3 is loaded separately via CDN
   ============================================================= */

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
    --cream:     #faf7f2;
    --sage:      #7aab8a;
    --sage-dk:   #4e7d60;
    --sage-lt:   #d4ead9;
    --teal:      #3a7d8c;
    --charcoal:  #2b2d2f;
    --warm-gray: #8a8784;
    --gold:      #c9a84c;
}

/* ── GLOBAL RESET & BASE ──────────────────────────────────── */
* { box-sizing: border-box; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
}

h1, h2, h3, h4, .display-font {
    font-family: 'Playfair Display', serif;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible  { opacity: 1; transform: translateY(0); }
.fade-delay-1     { transition-delay: .1s; }
.fade-delay-2     { transition-delay: .2s; }
.fade-delay-3     { transition-delay: .3s; }
.fade-delay-4     { transition-delay: .4s; }

@keyframes blobFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.04); }
}

@keyframes pillFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
    background: rgba(250,247,242,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(122,171,138,.2);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sage-dk) !important;
    letter-spacing: -.5px;
}
.navbar-brand span { color: var(--teal); }

.nav-link {
    color: var(--charcoal) !important;
    font-weight: 500;
    font-size: .92rem;
    letter-spacing: .02em;
    padding: .4rem 1rem !important;
    transition: color .2s;
}
.nav-link:hover,
.nav-link.active { color: var(--sage-dk) !important; }

.btn-nav {
    background: var(--sage-dk);
    color: #fff !important;
    border-radius: 50px;
    padding: .45rem 1.4rem !important;
    font-size: .88rem;
    font-weight: 600;
    transition: background .25s, transform .2s;
}
.btn-nav:hover { background: var(--teal); transform: translateY(-1px); }

/* ── SHARED SECTION TYPOGRAPHY ────────────────────────────── */
.section-eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--sage-dk);
    margin-bottom: .8rem;
}
.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--charcoal);
}
.section-sub {
    color: var(--warm-gray);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
}

/* ── SHARED BUTTONS ───────────────────────────────────────── */
.btn-primary-main {
    background: var(--sage-dk);
    color: #fff;
    border: none;
    padding: .85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 6px 24px rgba(78,125,96,.28);
}
.btn-primary-main:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(58,125,140,.3);
    color: #fff;
}

.btn-outline-main {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid rgba(43,45,47,.2);
    padding: .82rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: border-color .25s, color .25s;
}
.btn-outline-main:hover { border-color: var(--sage-dk); color: var(--sage-dk); }

/* ── CTA BAND (shared across both pages) ─────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--sage-dk) 0%, var(--teal) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .8rem; }
.cta-band p  { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2rem; }

.btn-cta-white {
    background: #fff;
    color: var(--sage-dk);
    border: none;
    padding: .9rem 2.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,.22);
    color: var(--teal);
}

/* ── FOOTER (shared) ──────────────────────────────────────── */
.footer { background: #1e2022; padding: 4rem 0 2rem; }

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sage-lt);
}
.footer-brand span { color: var(--teal); }

.footer p {
    color: rgba(255,255,255,.45);
    font-size: .88rem;
    line-height: 1.7;
    max-width: 280px;
    margin-top: .8rem;
}
.footer h6 {
    color: rgba(255,255,255,.6);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .55rem; }
.footer ul li a {
    color: rgba(255,255,255,.45);
    font-size: .88rem;
    text-decoration: none;
    transition: color .2s;
}
.footer ul li a:hover { color: var(--sage-lt); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom span { color: rgba(255,255,255,.3); font-size: .8rem; }

.social-links { display: flex; gap: .75rem; }
.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: .9rem;
    transition: background .2s, color .2s;
    text-decoration: none;
}
.social-link:hover { background: var(--sage-dk); color: #fff; }


/* =============================================================
   INDEX.HTML — Page-specific styles
   ============================================================= */

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse 70% 60% at 80% 40%, rgba(122,171,138,.18) 0%, transparent 65%),
            radial-gradient(ellipse 50% 50% at 15% 70%, rgba(58,125,140,.12) 0%, transparent 60%),
            var(--cream);
}
.hero-blob {
    position: absolute;
    right: -120px;
    top: -80px;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, var(--sage-lt) 0%, transparent 70%);
    border-radius: 50%;
    opacity: .55;
    animation: blobFloat 8s ease-in-out infinite;
}
.hero-badge {
    display: inline-block;
    background: var(--sage-lt);
    color: var(--sage-dk);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
}
.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.5px;
    color: var(--charcoal);
}
.hero-title .accent  { color: var(--sage-dk); }
.hero-title .accent2 { color: var(--teal); }

.hero-sub {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.7;
    max-width: 480px;
    margin-top: 1.2rem;
}
.hero-actions {
    margin-top: 2.2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.hero-trust {
    margin-top: 2.8rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .88rem;
    color: var(--warm-gray);
}
.trust-stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }

.hero-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img-card {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(43,45,47,.12);
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-img-placeholder {
    background: linear-gradient(135deg, var(--sage-lt) 0%, #c2e0ca 100%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.hero-img-placeholder i { font-size: 5rem; color: var(--sage-dk); opacity: .5; }
.hero-img-placeholder p { color: var(--sage-dk); font-weight: 500; opacity: .7; }

.floating-pill {
    position: absolute;
    background: #fff;
    border-radius: 50px;
    padding: .6rem 1.2rem;
    box-shadow: 0 8px 30px rgba(43,45,47,.12);
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--charcoal);
    animation: pillFloat 5s ease-in-out infinite;
}
.floating-pill.pill-1 { left: -40px; top: 20%; animation-delay: 0s; }
.floating-pill.pill-2 { right: -30px; bottom: 28%; animation-delay: 2.5s; }
.pill-dot { width: 10px; height: 10px; border-radius: 50%; }
.pill-dot.green { background: var(--sage); }
.pill-dot.teal  { background: var(--teal); }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar { background: var(--charcoal); padding: 2rem 0; }

.stat-item { text-align: center; padding: .5rem 1rem; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--sage-lt);
    line-height: 1;
}
.stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: .3rem;
}
.stat-divider { width: 1px; background: rgba(255,255,255,.12); align-self: stretch; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services { padding: 6rem 0; }

.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.2rem;
    height: 100%;
    border: 1px solid rgba(122,171,138,.15);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--teal));
    opacity: 0;
    transition: opacity .3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(43,45,47,.1);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--sage-lt);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
    color: var(--sage-dk);
    transition: background .3s, color .3s;
}
.service-card:hover .service-icon { background: var(--sage-dk); color: #fff; }

.service-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: .6rem; color: var(--charcoal); }
.service-card p  { font-size: .9rem; color: var(--warm-gray); line-height: 1.65; margin: 0; }
.service-price   { margin-top: 1.2rem; font-size: .85rem; color: var(--sage-dk); font-weight: 600; }

/* ── WHY US ───────────────────────────────────────────────── */
.why-us { padding: 6rem 0; background: var(--charcoal); }
.why-us .section-title { color: #fff; }
.why-us .section-sub   { color: rgba(255,255,255,.5); }

.why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: background .3s;
}
.why-card:hover { background: rgba(255,255,255,.1); }
.why-card i  { font-size: 1.8rem; color: var(--sage); margin-bottom: 1rem; display: block; }
.why-card h5 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.why-card p  { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.6; margin: 0; }

/* ── PROCESS ──────────────────────────────────────────────── */
.process { padding: 6rem 0; }

.process-step { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; align-items: flex-start; }
.step-num {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--sage-lt);
    color: var(--sage-dk);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 900;
}
.step-content h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; }
.step-content p  { font-size: .9rem; color: var(--warm-gray); margin: 0; line-height: 1.6; }

.process-visual {
    background: linear-gradient(135deg, var(--sage-lt) 0%, #b9d9c2 100%);
    border-radius: 28px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    position: relative;
    overflow: hidden;
}
.process-visual i { font-size: 6rem; color: var(--sage-dk); opacity: .3; position: relative; z-index: 1; }
.process-visual::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(78,125,96,.18);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials { padding: 6rem 0; background: #f0f5f1; }

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem 2.2rem;
    height: 100%;
    box-shadow: 0 4px 24px rgba(43,45,47,.06);
}
.testimonial-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .9rem; }
.testimonial-card blockquote {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0 0 1.4rem;
    font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: .9rem; }
.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sage-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--sage-dk);
    font-weight: 700;
}
.reviewer-name { font-weight: 700; font-size: .9rem; }
.reviewer-loc  { font-size: .78rem; color: var(--warm-gray); }


/* =============================================================
   ABOUT.HTML — Page-specific styles
   ============================================================= */

/* ── PAGE HEADER ──────────────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--charcoal) 0%, #3a3d40 100%);
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(122,171,138,.18) 0%, transparent 60%);
}
.page-header-label {
    display: inline-block;
    background: rgba(212,234,217,.15);
    border: 1px solid rgba(212,234,217,.3);
    color: var(--sage-lt);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}
.page-header h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; color: #fff; line-height: 1.15; }
.page-header h1 span { color: var(--sage); }
.page-header p  { color: rgba(255,255,255,.6); font-size: 1.05rem; line-height: 1.7; max-width: 520px; margin-top: 1.1rem; }

.breadcrumb-item a { color: var(--sage); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,.5); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

.header-stat-row { margin-top: 3rem; display: flex; gap: 2.5rem; flex-wrap: wrap; }
.h-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--sage-lt);
    line-height: 1;
}
.h-stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: .25rem;
}

/* ── STORY ────────────────────────────────────────────────── */
.story { padding: 6rem 0; }
.story-img-wrap { position: relative; }

.story-main-img {
    background: linear-gradient(135deg, var(--sage-lt) 0%, #b9d9c2 100%);
    border-radius: 28px;
    aspect-ratio: 4/5;
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.story-main-img i { font-size: 6rem; color: var(--sage-dk); opacity: .3; }

.story-accent-card {
    position: absolute;
    bottom: -24px; right: -24px;
    background: var(--charcoal);
    color: #fff;
    border-radius: 20px;
    padding: 1.4rem 1.8rem;
    box-shadow: 0 16px 48px rgba(43,45,47,.2);
    min-width: 180px;
}
.story-accent-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--sage-lt);
    line-height: 1;
}
.story-accent-card .label {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: .3rem;
}
.story-content p        { font-size: 1rem; color: var(--warm-gray); line-height: 1.75; margin-bottom: 1.2rem; }
.story-content p strong { color: var(--charcoal); }

.story-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.story-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .95rem;
    color: var(--charcoal);
    margin-bottom: .75rem;
}
.story-list li i { color: var(--sage); font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }

/* ── VALUES ───────────────────────────────────────────────── */
.values { padding: 6rem 0; background: var(--charcoal); }
.values .section-title { color: #fff; }
.values .section-sub   { color: rgba(255,255,255,.5); }

.value-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 2.2rem 2rem;
    height: 100%;
    transition: background .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}
.value-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--teal));
    opacity: 0;
    transition: opacity .3s;
}
.value-card:hover { background: rgba(255,255,255,.09); border-color: rgba(122,171,138,.3); }
.value-card:hover::after { opacity: 1; }
.value-icon { font-size: 2rem; color: var(--sage); margin-bottom: 1.1rem; display: block; }
.value-card h4 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.value-card p  { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.65; margin: 0; }

/* ── TEAM ─────────────────────────────────────────────────── */
.team { padding: 6rem 0; }

.team-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(122,171,138,.15);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(43,45,47,.1); }

.team-avatar {
    background: linear-gradient(135deg, var(--sage-lt) 0%, #b9d9c2 100%);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.team-avatar i { font-size: 5rem; color: var(--sage-dk); opacity: .35; }
.team-avatar .tag {
    position: absolute;
    bottom: 14px; left: 14px;
    background: var(--sage-dk);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 50px;
}
.team-info { padding: 1.5rem; }
.team-info h5   { font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.team-info .role { font-size: .82rem; color: var(--sage-dk); font-weight: 600; margin-bottom: .7rem; }
.team-info p    { font-size: .88rem; color: var(--warm-gray); line-height: 1.6; margin: 0; }

/* ── TIMELINE ─────────────────────────────────────────────── */
.timeline-section { padding: 6rem 0; background: #f0f5f1; }

.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
    content: '';
    position: absolute;
    left: .75rem; top: 0; bottom: 0;
    width: 2px;
    background: var(--sage-lt);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot {
    position: absolute;
    left: -2.5rem; top: .3rem;
    width: 22px; height: 22px;
    background: var(--sage-dk);
    border-radius: 50%;
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 3px var(--sage-lt);
}
.timeline-year {
    font-size: .75rem;
    font-weight: 700;
    color: var(--sage-dk);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .3rem;
}
.timeline-item h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; }
.timeline-item p  { font-size: .9rem; color: var(--warm-gray); line-height: 1.6; margin: 0; max-width: 420px; }

/* ── CERTIFICATIONS ───────────────────────────────────────── */
.certs { padding: 5rem 0; }

.cert-card {
    background: #fff;
    border: 1px solid rgba(122,171,138,.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: transform .3s, box-shadow .3s;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(43,45,47,.08); }
.cert-card i  { font-size: 2.2rem; color: var(--sage-dk); margin-bottom: 1rem; display: block; }
.cert-card h6 { font-size: .92rem; font-weight: 700; margin-bottom: .4rem; }
.cert-card p  { font-size: .82rem; color: var(--warm-gray); margin: 0; }