:root {
    --primary: #08d8c3;
    --secondary: #007f5f;
    --light: #f2fffc;
    --dark: #063d32;
    --accent: #00f0d2;
    --ink: #183c35;
    --coral: #ff7a59;
    --gold: #f6b84b;
    --paper: #ffffff;
    --line: #d8eee9;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    color: #4e625d;
    background: #f7fffd;
}

.bg-primary {
    background-color: var(--secondary) !important;
}

.text-primary {
    color: var(--secondary) !important;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: #00654b;
    border-color: #00654b;
}

.btn-secondary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark) !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--dark) !important;
}

.btn-outline-primary {
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.hero-header,
.footer {
    background-color: var(--secondary) !important;
}

.navbar {
    background: #fff;
    min-height: 74px;
    box-shadow: 0 8px 28px rgba(0, 56, 44, .08);
    backdrop-filter: blur(10px);
}

.navbar-light,
.sticky-top.navbar-light {
    background: #fff;
    border-bottom: 1px solid rgba(0, 127, 95, .12);
}

.navbar-light .navbar-brand h1,
.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--dark);
}

.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-link {
    color: var(--ink) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 26px 0;
    }

    .navbar-light .navbar-brand img,
    .sticky-top.navbar-light .navbar-brand img {
        max-height: 54px;
    }
}

.navbar-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-right: 10px;
}

.brand-name {
    font-size: 28px;
    line-height: 1;
    white-space: nowrap;
}

.brand-name span {
    font-size: 18px;
}

.hero-header {
    min-height: 640px;
    display: flex;
    align-items: center;
}

.hero-header:not(.home-hero) {
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 42px 42px;
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 125px 0 64px;
    margin-bottom: 0 !important;
    background: #042f27 !important;
}

.home-hero::before {
    position: absolute;
    content: "";
    inset: 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(8, 216, 195, .22), transparent 34%),
        radial-gradient(circle at 90% 82%, rgba(246, 184, 75, .14), transparent 38%),
        linear-gradient(120deg, rgba(2, 43, 35, .85), rgba(2, 65, 52, .7));
    z-index: 1;
}

.home-hero::after {
    position: absolute;
    content: "";
    inset: auto 0 0;
    height: 86px;
    background: linear-gradient(180deg, rgba(247, 255, 253, 0), #f7fffd);
    pointer-events: none;
}

.home-hero .container,
.home-hero .site-wide-container {
    position: relative;
    z-index: 2;
}

.home-hero h1 {
    max-width: 720px;
    font-size: clamp(46px, 4.7vw, 76px);
    line-height: 1.04;
    text-wrap: balance;
    text-shadow: 0 18px 44px rgba(0, 28, 22, .34);
}

.home-hero h1::after {
    display: block;
    content: "";
    width: 96px;
    height: 5px;
    margin-top: 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--coral));
    box-shadow: 0 0 28px rgba(8, 216, 195, .38);
}

.hero-copy {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.text-white-75 {
    color: rgba(255, 255, 255, .82) !important;
}

.hero-actions .btn,
.about-growth-band .btn {
    border-radius: 8px;
    font-weight: 700;
}

.hero-actions .btn {
    min-width: 210px;
    border-width: 1px;
}

.hero-actions .btn-light {
    color: #082f28;
    background: #fff;
    border-color: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 38px rgba(0, 31, 25, .18);
}

.hero-actions .btn-outline-light {
    background: rgba(255, 255, 255, .08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-proof span {
    color: rgba(255, 255, 255, .86);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: 9px 12px;
    background: rgba(0, 0, 0, .16);
    font-size: 15px;
}

.hero-proof strong {
    color: #fff;
}

.hero-cta-copy {
    max-width: 760px;
}

.hero-cta-copy h1 {
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(36px, 4vw, 60px);
    line-height: 1.08;
    text-wrap: balance;
}

.hero-cta-copy h1::after {
    display: block;
    content: "";
    width: 88px;
    height: 5px;
    margin-top: 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--coral));
}

.hero-cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px 14px 6px 10px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    border: 1px solid rgba(8, 216, 195, .3);
    border-radius: 999px;
    background: rgba(8, 216, 195, .08);
}

.hero-cta-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(246, 184, 75, .14);
}

.home-hero .hero-copy {
    max-width: 640px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .84);
}

.home-hero .hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
}

.home-hero .hero-proof {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual .social-float-stage {
    width: 610px;
    flex-shrink: 0;
}

.growth-dashboard {
    position: relative;
    min-height: 560px;
    max-width: 560px;
    margin-left: auto;
}

.brand-orbit {
    position: absolute;
    inset: 76px 78px 118px 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 44, 35, .32);
    z-index: 2;
}

.brand-orbit::before,
.brand-orbit::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    border: 1px solid rgba(8, 216, 195, .22);
}

.brand-orbit::before {
    width: 86%;
    height: 86%;
}

.brand-orbit::after {
    width: 64%;
    height: 64%;
}

.brand-orbit img {
    position: relative;
    z-index: 1;
    width: min(72%, 330px);
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    padding: 22px;
    background: radial-gradient(circle at 35% 28%, #ffffff 0%, #f8fffd 42%, #dff7f2 100%);
    box-shadow:
        inset -22px -18px 34px rgba(0, 86, 68, .14),
        inset 18px 16px 28px rgba(255, 255, 255, .88),
        0 22px 42px rgba(0, 91, 70, .22);
    animation: logoBallSpin 7s linear infinite;
    transform-style: preserve-3d;
    will-change: transform;
}

@keyframes logoBallSpin {
    0% {
        transform: rotateY(0deg) rotateZ(0deg);
    }

    50% {
        transform: rotateY(180deg) rotateZ(8deg);
    }

    100% {
        transform: rotateY(360deg) rotateZ(0deg);
    }
}

.social-float-stage {
    position: relative;
    min-height: 610px;
    max-width: 610px;
    margin-right: auto;
    margin-left: auto;
    isolation: isolate;
    transform: translateY(-42px);
}

.social-float-stage::before,
.social-float-stage::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    pointer-events: none;
}

.social-float-stage::before {
    inset: 68px 72px 82px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: radial-gradient(circle, rgba(255, 255, 255, .13), rgba(255, 255, 255, .03) 62%, transparent 63%);
    animation: softPulse 5s ease-in-out infinite;
}

.social-float-stage::after {
    inset: 118px 122px 132px;
    border: 1px dashed rgba(255, 255, 255, .22);
    animation: slowRotate 24s linear infinite;
}

.social-logo-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 210px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .93);
    box-shadow:
        0 34px 90px rgba(0, 44, 35, .3),
        inset -18px -14px 32px rgba(0, 127, 95, .12),
        inset 14px 14px 28px rgba(255, 255, 255, .9);
    transform: translate(-50%, -50%);
    z-index: 3;
}

.social-logo-core img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    animation: logoBallSpin 7s linear infinite;
}

.social-bubble {
    position: absolute;
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bubble-a), var(--bubble-b));
    box-shadow: 0 24px 55px rgba(0, 36, 29, .22);
    z-index: 4;
    animation: floatBubble 6s ease-in-out infinite;
}

.social-bubble i {
    font-size: 32px;
}

.bubble-facebook {
    --bubble-a: #1877f2;
    --bubble-b: #08d8c3;
    top: 58px;
    left: 74px;
    animation-delay: 0s;
}

.bubble-instagram {
    --bubble-a: #f58529;
    --bubble-b: #dd2a7b;
    top: 84px;
    right: 88px;
    animation-delay: -.8s;
}

.bubble-youtube {
    --bubble-a: #ff0033;
    --bubble-b: #ff7a59;
    top: 238px;
    right: 28px;
    animation-delay: -1.6s;
}

.bubble-linkedin {
    --bubble-a: #0a66c2;
    --bubble-b: #00d4ff;
    bottom: 82px;
    right: 126px;
    animation-delay: -2.4s;
}

.bubble-twitter {
    --bubble-a: #111827;
    --bubble-b: #1da1f2;
    bottom: 72px;
    left: 118px;
    animation-delay: -3.2s;
}

.bubble-whatsapp {
    --bubble-a: #25d366;
    --bubble-b: #00a884;
    top: 230px;
    left: 22px;
    animation-delay: -4s;
}

.bubble-google {
    --bubble-a: #fbbc05;
    --bubble-b: #34a853;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -4.8s;
}

.social-copy-chip {
    position: absolute;
    left: 50%;
    bottom: -34px;
    width: min(360px, 92%);
    padding: 18px 22px;
    color: #fff;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(3, 58, 48, .78);
    box-shadow: 0 22px 58px rgba(0, 36, 29, .28);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
    z-index: 5;
}

.social-copy-chip strong,
.social-copy-chip span {
    display: block;
}

.social-copy-chip span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
}

@keyframes floatBubble {
    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -18px;
    }
}

@keyframes softPulse {
    0%, 100% {
        transform: scale(.96);
        opacity: .72;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.metric-tile,
.performance-panel,
.process-board,
.result-stat,
.result-feature {
    border-radius: 8px;
}

.metric-tile {
    position: absolute;
    min-width: 168px;
    padding: 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .78);
    box-shadow: 0 18px 45px rgba(0, 54, 43, .18);
    z-index: 4;
}

.metric-tile i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: var(--light);
    border-radius: 8px;
}

.metric-tile span,
.performance-panel span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #5f7771;
}

.metric-tile strong,
.performance-panel strong {
    display: block;
    margin-top: 2px;
    color: var(--dark);
}

.metric-tile-a {
    top: 18px;
    left: -14px;
}

.metric-tile-b {
    top: 70px;
    right: -18px;
}

.metric-tile-c {
    bottom: 86px;
    left: 6px;
}

.performance-panel {
    position: absolute;
    right: 8px;
    bottom: -18px;
    width: 310px;
    padding: 18px;
    background: #073c32;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 18px 48px rgba(0, 36, 29, .32);
    z-index: 4;
}

.performance-panel strong {
    color: #fff;
}

.performance-panel span {
    color: rgba(255, 255, 255, .68);
}

.panel-bars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 8px;
    height: 72px;
    margin-top: 18px;
}

.panel-bars i {
    display: block;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, var(--accent), var(--gold));
}

.panel-bars i:nth-child(1) { height: 40%; }
.panel-bars i:nth-child(2) { height: 66%; }
.panel-bars i:nth-child(3) { height: 54%; }
.panel-bars i:nth-child(4) { height: 88%; }

.site-wide-container {
    width: 100%;
    max-width: none;
    padding-right: clamp(22px, 4vw, 72px);
    padding-left: clamp(22px, 4vw, 72px);
}

.content-band {
    position: relative;
    overflow: hidden;
    padding: 88px 0;
}

.content-band::before {
    position: absolute;
    content: "";
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 127, 95, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 127, 95, .07) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.content-band::before {
    opacity: .95;
    mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.content-band > .container,
.content-band > .container-fluid {
    position: relative;
    z-index: 1;
}

.focus-slider-arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border: 1px solid rgba(8, 216, 195, .26);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 16px 36px rgba(0, 72, 58, .14);
    transform: translateY(-50%);
    transition: transform .25s ease, background .25s ease, color .25s ease;
    z-index: 4;
}

.focus-slider-arrow:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: translateY(-50%) scale(1.06);
}

.founder-slider-prev {
    left: 0;
}

.founder-slider-next {
    right: 0;
}

.founders-band {
    padding-top: 24px;
    padding-bottom: 46px;
}

.founder-slider {
    position: relative;
    padding: 0 64px;
}

.founder-track {
    position: relative;
}

.founder-card {
    display: none;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 44px;
    align-items: center;
    padding: 48px 52px;
    color: #fff;
    border-radius: 16px;
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 255, 255, .14), transparent 40%),
        linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: 0 30px 80px rgba(0, 71, 57, .18);
}

.founder-card.is-active {
    display: grid;
}

.founder-quote-mark {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .5);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 64px;
    line-height: 1;
}

.founder-quote-text {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.75;
}

.founder-name {
    display: block;
    font-size: 18px;
}

.founder-title {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.founder-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 30, 24, .25);
}

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

.founder-photo-fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #fff;
    font-size: 64px;
    background: rgba(255, 255, 255, .16);
}

.founder-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.founder-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 127, 95, .28);
    transition: background .25s ease, transform .25s ease;
}

.founder-dot.active {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: scale(1.25);
}

.team-band {
    padding-top: 24px;
    padding-bottom: 46px;
    background:
        linear-gradient(180deg, rgba(8, 216, 195, .08), rgba(255, 255, 255, .96) 45%),
        #fff;
}

.team-slider {
    position: relative;
    padding: 4px 64px 8px;
}

.team-viewport {
    overflow: hidden;
}

.team-track {
    display: flex;
    gap: 24px;
}

.team-card {
    position: relative;
    flex: 0 0 264px;
    width: 264px;
    height: auto;
    padding: 30px 20px 26px;
    text-align: center;
    border: 1px solid rgba(8, 216, 195, .24);
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 54px rgba(0, 71, 57, .1);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.team-card:hover {
    border-color: rgba(8, 216, 195, .48);
    box-shadow: 0 30px 70px rgba(0, 71, 57, .16);
    transform: translateY(-7px);
}

.team-photo {
    width: 128px;
    height: 128px;
    margin: 0 auto 18px;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid rgba(8, 216, 195, .16);
    box-shadow: 0 14px 30px rgba(0, 71, 57, .14);
}

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

.team-photo-fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #fff;
    font-size: 44px;
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .24), transparent 30%),
        linear-gradient(135deg, var(--secondary), var(--primary));
}

.team-info h5 {
    margin-bottom: 6px;
    color: #071425;
    font-size: 18px;
    font-weight: 800;
}

.team-role {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.team-exp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    color: #071425;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    background: rgba(8, 216, 195, .12);
}

.about-growth-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(8, 216, 195, .14), transparent 28%),
        radial-gradient(circle at 88% 70%, rgba(255, 122, 89, .1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f3fffc 100%);
}

.about-growth-band::before {
    opacity: 1;
}

.about-growth-band .container,
.about-growth-band .site-wide-container {
    position: relative;
    z-index: 1;
}

.growth-panel {
    max-width: 650px;
}

.growth-panel .section-title h2 {
    color: #061b25;
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.12;
    text-wrap: balance;
}

.growth-panel > p {
    color: #49645d;
    font-size: 17px;
    line-height: 1.78;
}

.growth-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 26px 0;
}

.growth-metrics div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 14px 38px rgba(0, 82, 64, .06);
}

.growth-metrics strong {
    display: block;
    color: var(--secondary);
    font-size: 28px;
    line-height: 1;
}

.growth-metrics span {
    display: block;
    margin-top: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}

.process-board {
    position: relative;
    display: grid;
    gap: 20px;
    padding: 28px;
    background:
        radial-gradient(circle at 85% 15%, rgba(8, 216, 195, .2), transparent 28%),
        linear-gradient(135deg, rgba(8, 216, 195, .12), rgba(255, 122, 89, .08)),
        rgba(255, 255, 255, .86);
    border: 1px solid var(--line);
    box-shadow: 0 32px 95px rgba(0, 80, 64, .13);
    backdrop-filter: blur(10px);
}

.process-board::before {
    position: absolute;
    content: "";
    left: 60px;
    top: 62px;
    bottom: 62px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--gold), var(--coral));
    opacity: .35;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 5px 22px;
    align-items: start;
    min-height: 118px;
    padding: 24px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(8, 216, 195, .22);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(0, 74, 58, .07);
    transform-origin: 50% -34px;
    animation: processFloat 5.8s ease-in-out infinite;
    transition: box-shadow .3s ease;
    will-change: transform;
}

.process-step:nth-child(2) {
    animation-delay: -1.4s;
}

.process-step:nth-child(3) {
    animation-delay: -2.8s;
}

.process-step:hover {
    animation-play-state: paused;
    transform: translateY(-8px) rotate(.5deg);
    box-shadow: 0 24px 62px rgba(0, 74, 58, .12);
}

.process-step span {
    grid-row: span 2;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    box-shadow: 0 16px 34px rgba(255, 122, 89, .25);
}

.process-step strong {
    color: var(--dark);
    font-size: 22px;
    line-height: 1.25;
}

.process-step p {
    margin: 0;
    color: #4d665f;
    line-height: 1.62;
}

@keyframes processFloat {
    0%, 100% {
        transform: translateY(0) rotate(-.45deg);
    }

    50% {
        transform: translateY(-12px) rotate(.55deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-step,
    .contact-float-bubble,
    .contact-snowfall span,
    .result-feature,
    .result-feature::before,
    .result-feature i,
    .footer-orb {
        animation: none;
    }
}

.results-band {
    background:
        linear-gradient(135deg, #f1fbf8 0%, #ffffff 100%);
}

.result-feature {
    position: relative;
    min-height: 190px;
    height: 100%;
    padding: 26px 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 8%, rgba(8, 216, 195, .16), transparent 34%),
        #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 48px rgba(0, 70, 55, .07);
    animation: resultCardFloat 6.5s ease-in-out infinite;
    transition: transform .3s ease, box-shadow .3s ease;
}

.result-feature::before {
    content: "";
    position: absolute;
    inset: -70% auto auto -45%;
    width: 70%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
    transform: rotate(22deg);
    animation: resultCardShine 5.6s ease-in-out infinite;
}

.result-feature-a {
    animation-delay: -.4s;
}

.result-feature-b {
    animation-delay: -1.7s;
}

.result-feature-c {
    animation-delay: -3s;
}

.result-feature:hover {
    animation-play-state: paused;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 28px 70px rgba(0, 70, 55, .13);
}

.result-feature i {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: 0 16px 34px rgba(0, 127, 95, .18);
    animation: resultIconPulse 3.8s ease-in-out infinite;
}

.result-feature strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 18px;
    color: var(--dark);
    font-size: 20px;
    line-height: 1.25;
}

.result-feature span {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 10px;
    color: #536d66;
    line-height: 1.58;
}

@keyframes resultCardFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes resultCardShine {
    0%, 58% {
        left: -55%;
        opacity: 0;
    }

    72% {
        opacity: 1;
    }

    100% {
        left: 130%;
        opacity: 0;
    }
}

@keyframes resultIconPulse {
    0%, 100% {
        box-shadow: 0 16px 34px rgba(0, 127, 95, .18);
    }

    50% {
        box-shadow: 0 22px 42px rgba(8, 216, 195, .34);
    }
}

.service-item,
.admin-panel,
.message-card {
    border-radius: 8px !important;
}

.services-showcase {
    background:
        linear-gradient(180deg, #ffffff 0%, #f5fffc 100%);
}

.services-showcase .section-title h2 {
    color: var(--dark);
}

.services-slider {
    position: relative;
    overflow: hidden;
    padding: 10px 0 34px;
}

.services-slider::before,
.services-slider::after {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    content: "";
    pointer-events: none;
    z-index: 2;
}

.services-slider::before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.services-slider::after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.services-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: servicesMarquee 34s linear infinite;
}

.services-slider:hover .services-track {
    animation-play-state: paused;
}

.service-item {
    position: relative;
    overflow: hidden;
    width: 306px;
    min-height: 280px;
    height: auto;
    flex: 0 0 306px;
    padding: 26px;
    justify-content: flex-start !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .86)),
        var(--service-soft, #f2fffc);
    border: 1px solid var(--line);
    box-shadow: 0 22px 62px rgba(0, 80, 64, .08);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-item::before {
    position: absolute;
    content: "";
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, var(--service-glow, rgba(8, 216, 195, .18)), transparent 34%),
        radial-gradient(circle at 86% 12%, rgba(255, 255, 255, .75), transparent 20%);
    opacity: .9;
    pointer-events: none;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 118px;
    height: 118px;
    right: -40px;
    bottom: -48px;
    border-radius: 50%;
    background: var(--service-accent, var(--primary));
    opacity: .13;
}

.service-item > * {
    position: relative;
    z-index: 1;
}

.service-item .service-icon {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--service-accent, var(--secondary));
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: transform .35s ease, border-radius .35s ease;
}

.service-item .service-icon::before,
.service-item .service-icon::after {
    display: none;
}

.service-icon i {
    font-size: 42px;
    line-height: 1;
    filter: drop-shadow(0 14px 18px rgba(0, 55, 44, .14));
}

.service-icon .fa-facebook-f {
    color: #1877f2;
}

.service-icon .fa-instagram {
    color: transparent;
    background: linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 55%, #962fbf 78%, #4f5bd5 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.service-icon .fa-google {
    color: transparent;
    background: linear-gradient(90deg, #4285f4 0 25%, #ea4335 25% 50%, #fbbc05 50% 75%, #34a853 75% 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.service-icon .fa-youtube {
    color: #ff0000;
}

.service-icon .fa-linkedin-in {
    color: #0a66c2;
}

.service-icon .fa-twitter {
    color: #1da1f2;
}

.service-icon .fa-whatsapp {
    color: #25d366;
}

.service-icon .fa-map-marker-alt,
.service-icon .fa-list-alt,
.service-icon .fa-search-location {
    color: transparent;
    background: linear-gradient(135deg, #4285f4, #34a853 45%, #fbbc05 72%, #ea4335);
    -webkit-background-clip: text;
    background-clip: text;
}

.service-icon .fa-laptop-code,
.service-icon .fa-mobile-alt,
.service-icon .fa-code {
    color: var(--secondary);
}

.service-icon .fa-file-alt,
.service-icon .fa-link,
.service-icon .fa-chart-line {
    color: #f6b84b;
}

.service-item h3 {
    color: #071d28;
    font-size: 22px;
    line-height: 1.25;
}

.service-item p {
    color: #45625b;
    line-height: 1.65;
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 216, 195, .42);
    box-shadow: 0 32px 84px rgba(0, 80, 64, .15);
}

.service-item:hover h3,
.service-item:hover p {
    color: inherit;
}

.service-item .btn {
    min-width: 132px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--service-accent, var(--secondary));
    background: #fff;
    border: 1px solid var(--service-ring, rgba(8, 216, 195, .24));
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 72, 58, .08);
}

.service-item:hover .btn {
    color: #fff;
    background: linear-gradient(135deg, var(--service-accent, var(--secondary)), var(--service-accent-2, var(--primary)));
    border-color: transparent;
}

.service-item .btn::before {
    display: none;
}

.service-lead-modal .modal-content {
    overflow: hidden;
    border: 1px solid rgba(8, 216, 195, .28);
    border-radius: 8px;
    background:
        radial-gradient(circle at top right, rgba(8, 216, 195, .18), transparent 34%),
        #ffffff;
    box-shadow: 0 34px 110px rgba(0, 54, 43, .28);
}

.service-lead-modal .modal-header {
    align-items: flex-start;
    padding: 26px 28px 18px;
    border-bottom: 1px solid var(--line);
}

.lead-modal-kicker {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.service-lead-modal .modal-title {
    color: var(--dark);
    font-weight: 800;
}

.service-lead-modal .btn-close {
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 50%;
    background-color: var(--light);
    opacity: 1;
}

.service-lead-modal .modal-body {
    padding: 24px 28px;
}

.service-lead-modal .modal-footer {
    padding: 0 28px 28px;
    border-top: 0;
}

.service-lead-modal .form-label {
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
}

.service-lead-modal .form-label span {
    color: var(--coral);
}

.service-lead-modal .form-label small {
    color: #7a908a;
    font-weight: 600;
}

.service-lead-modal .form-control,
.service-lead-modal .form-select {
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background-color: rgba(255, 255, 255, .88);
}

.service-lead-modal textarea.form-control {
    min-height: 96px;
}

.service-lead-modal .form-control:focus,
.service-lead-modal .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(8, 216, 195, .16);
}

.service-lead-modal .modal-footer .btn {
    min-height: 52px;
    border-radius: 8px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border: 0;
    box-shadow: 0 18px 42px rgba(0, 127, 95, .2);
}

.service-item:hover .service-icon {
    transform: translateY(-4px) scale(1.08);
    border-radius: 0;
}

.service-card-1 {
    --service-soft: #effffd;
    --service-accent: #007f5f;
    --service-accent-2: #08d8c3;
    --service-glow: rgba(8, 216, 195, .22);
    --service-ring: rgba(8, 216, 195, .35);
    --service-shadow: rgba(0, 127, 95, .24);
}

.service-card-2 {
    --service-soft: #f3f6ff;
    --service-accent: #246bfe;
    --service-accent-2: #00d4ff;
    --service-glow: rgba(36, 107, 254, .18);
    --service-ring: rgba(36, 107, 254, .24);
    --service-shadow: rgba(36, 107, 254, .22);
}

.service-card-3 {
    --service-soft: #fff7f3;
    --service-accent: #ff6b4a;
    --service-accent-2: #f6b84b;
    --service-glow: rgba(255, 122, 89, .2);
    --service-ring: rgba(255, 122, 89, .24);
    --service-shadow: rgba(255, 122, 89, .22);
}

.service-card-4 {
    --service-soft: #f6f2ff;
    --service-accent: #7755ff;
    --service-accent-2: #d856ff;
    --service-glow: rgba(119, 85, 255, .18);
    --service-ring: rgba(119, 85, 255, .24);
    --service-shadow: rgba(119, 85, 255, .2);
}

.service-card-5 {
    --service-soft: #fffbee;
    --service-accent: #d99000;
    --service-accent-2: #f6b84b;
    --service-glow: rgba(246, 184, 75, .22);
    --service-ring: rgba(246, 184, 75, .28);
    --service-shadow: rgba(217, 144, 0, .18);
}

.service-card-6 {
    --service-soft: #f1fff8;
    --service-accent: #008c72;
    --service-accent-2: #1ee6a8;
    --service-glow: rgba(30, 230, 168, .2);
    --service-ring: rgba(30, 230, 168, .3);
    --service-shadow: rgba(0, 140, 114, .2);
}

@keyframes servicesMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.portfolio-item > article {
    border: 2px solid rgba(8, 216, 195, .82);
    background: #fff;
    box-shadow: 0 16px 40px rgba(0, 127, 95, .12);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.portfolio-item > article:hover {
    border-color: var(--primary);
    box-shadow: 0 22px 54px rgba(8, 216, 195, .24);
    transform: translateY(-3px);
}

.portfolio-item img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.project-live-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4fffc;
}

.project-live-preview iframe {
    width: 320%;
    height: 320%;
    border: 0;
    pointer-events: none;
    transform: scale(.3125);
    transform-origin: top left;
}

.project-preview-fallback {
    position: absolute;
    inset: auto 14px 14px;
    display: none;
    padding: 10px 12px;
    color: var(--dark);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 12px 30px rgba(0, 65, 52, .12);
}

.project-preview-fallback span,
.project-preview-fallback small {
    display: block;
}

.project-preview-fallback span {
    font-weight: 800;
}

.project-preview-fallback small {
    margin-top: 3px;
    color: #5d746d;
}

.project-live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    padding: 0;
    color: #fff;
    line-height: 1;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 999px;
    background: #ff3b30;
    box-shadow: 0 8px 20px rgba(255, 59, 48, .34);
    backdrop-filter: blur(10px);
    transition: transform .25s ease, background .25s ease;
}

.project-live-badge:hover {
    color: #fff;
    background: #e62922;
    transform: translateY(-2px);
}

.project-live-badge i {
    color: #fff;
    font-size: 6px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, .68));
    animation: livePulse 1.5s ease-in-out infinite;
}

.portfolio-overlay {
    background: rgba(0, 77, 59, .88);
}

.project-live-url {
    display: inline-block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.contact-showcase {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 216, 195, .08) 0 1px, transparent 1px 56px),
        linear-gradient(0deg, rgba(0, 127, 95, .07) 0 1px, transparent 1px 56px),
        radial-gradient(circle at 16% 18%, rgba(8, 216, 195, .2), transparent 30%),
        radial-gradient(circle at 86% 72%, rgba(255, 122, 89, .12), transparent 28%),
        #f8fffd;
}

.contact-showcase::before {
    content: "";
    position: absolute;
    top: 82px;
    right: -100px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(8, 216, 195, .32);
    border-radius: 50%;
}

.contact-showcase::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 127, 95, .15), transparent 68%);
}

.contact-showcase .container,
.contact-showcase .site-wide-container {
    position: relative;
    z-index: 1;
}

.contact-floating-icons {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.contact-float-bubble {
    position: absolute;
    display: block;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 26%, rgba(255, 255, 255, .88), rgba(255, 255, 255, .12) 28%, transparent 58%),
        linear-gradient(135deg, rgba(8, 216, 195, .22), rgba(0, 127, 95, .1));
    box-shadow:
        inset 0 0 34px rgba(255, 255, 255, .38),
        0 30px 80px rgba(0, 73, 60, .12);
    opacity: .58;
    pointer-events: none;
    filter: blur(.1px);
    animation: contactBubbleFloat 12s ease-in-out infinite;
}

.contact-bubble-1 { top: 4%; left: 3%; width: 190px; height: 190px; }
.contact-bubble-2 { top: 13%; left: 24%; width: 118px; height: 118px; animation-delay: -1.1s; opacity: .42; }
.contact-bubble-3 { top: 5%; right: 17%; width: 172px; height: 172px; animation-delay: -2.2s; }
.contact-bubble-4 { top: 28%; right: -38px; width: 230px; height: 230px; animation-delay: -3.1s; opacity: .5; }
.contact-bubble-5 { top: 42%; left: -58px; width: 210px; height: 210px; animation-delay: -4s; }
.contact-bubble-6 { top: 55%; right: 12%; width: 132px; height: 132px; animation-delay: -5.2s; opacity: .38; }
.contact-bubble-7 { bottom: 7%; left: 9%; width: 160px; height: 160px; animation-delay: -6s; }
.contact-bubble-8 { bottom: -54px; right: 24%; width: 250px; height: 250px; animation-delay: -6.8s; opacity: .44; }
.contact-bubble-9 { bottom: 31%; left: 31%; width: 96px; height: 96px; animation-delay: -7.4s; opacity: .34; }
.contact-bubble-10 { top: 33%; right: 36%; width: 140px; height: 140px; animation-delay: -8s; }
.contact-bubble-11 { bottom: 33%; right: 1%; width: 116px; height: 116px; animation-delay: -8.7s; opacity: .36; }
.contact-bubble-12 { top: 66%; left: 18%; width: 110px; height: 110px; animation-delay: -9.3s; }
.contact-bubble-13 { top: -44px; right: 5%; width: 128px; height: 128px; animation-delay: -10s; opacity: .34; }
.contact-bubble-14 { bottom: 4%; left: 43%; width: 178px; height: 178px; animation-delay: -10.8s; opacity: .45; }

.contact-snowfall {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-snowfall span {
    position: absolute;
    inset: -220px 0 0;
    background-repeat: repeat;
    background-size: 260px 260px;
    opacity: .36;
    animation: contactSnowFall 16s linear infinite;
}

.contact-snowfall span:nth-child(1) {
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .95) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(8, 216, 195, .55) 0 1.5px, transparent 2.5px);
    background-position: 22px 18px, 142px 96px;
}

.contact-snowfall span:nth-child(2) {
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .82) 0 1.5px, transparent 2.5px),
        radial-gradient(circle, rgba(246, 184, 75, .45) 0 1.5px, transparent 2.5px);
    background-size: 190px 190px;
    background-position: 80px 36px, 18px 116px;
    opacity: .28;
    animation-duration: 22s;
    animation-delay: -8s;
}

.contact-snowfall span:nth-child(3) {
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .92) 0 1px, transparent 2px),
        radial-gradient(circle, rgba(8, 216, 195, .38) 0 1px, transparent 2px);
    background-size: 320px 320px;
    background-position: 128px 54px, 42px 214px;
    opacity: .22;
    animation-duration: 30s;
    animation-delay: -14s;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
}

.section-kicker::before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 3px;
    background: linear-gradient(135deg, #6b7be8, var(--primary));
    box-shadow: 4px 4px 0 rgba(0, 127, 95, .14);
}

.contact-story h2 {
    max-width: 520px;
    margin-bottom: 18px;
    color: #071425;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
}

.contact-story p {
    max-width: 540px;
    margin-bottom: 26px;
    color: #4e625d;
    font-size: 17px;
    line-height: 1.8;
}

.contact-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 26px;
}

.contact-proof-grid div,
.contact-methods a,
.contact-methods div {
    border: 1px solid rgba(0, 127, 95, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 42px rgba(0, 82, 66, .08);
}

.contact-proof-grid div {
    padding: 16px;
}

.contact-proof-grid strong,
.contact-proof-grid span {
    display: block;
}

.contact-proof-grid strong {
    color: var(--secondary);
    font-size: 28px;
    line-height: 1;
}

.contact-proof-grid span {
    margin-top: 7px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
}

.contact-methods {
    display: grid;
    gap: 12px;
}

.contact-methods a,
.contact-methods div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: var(--dark);
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.contact-methods a:hover {
    color: var(--dark);
    border-color: rgba(8, 216, 195, .48);
    box-shadow: 0 22px 48px rgba(0, 82, 66, .13);
    transform: translateY(-2px);
}

.contact-methods i {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.contact-methods span,
.contact-methods small {
    display: block;
}

.contact-methods small {
    color: #70857f;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-form-card {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(8, 216, 195, .28);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(239, 255, 251, .9)),
        #fff;
    box-shadow: 0 28px 80px rgba(0, 73, 60, .16);
}

.contact-form-card::before {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: -1;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(8, 216, 195, .28), rgba(255, 122, 89, .12));
    filter: blur(22px);
}

.contact-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-form-head span {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-form-head h3 {
    margin: 5px 0 0;
    color: #071425;
    font-size: 28px;
}

.contact-form-head > i {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #fff;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: 0 18px 36px rgba(0, 127, 95, .2);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    min-height: 58px;
    color: var(--dark);
    border: 1px solid rgba(0, 127, 95, .2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, .9);
    box-shadow: none;
}

.contact-form-card textarea.form-control {
    min-height: 150px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .22rem rgba(8, 216, 195, .16);
}

.contact-form-card .form-floating > label {
    color: #5b706a;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--secondary), #00aa88);
    box-shadow: 0 18px 36px rgba(0, 127, 95, .2);
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}

.contact-submit-btn i {
    transition: transform .25s ease;
}

@keyframes livePulse {
    0%, 100% {
        opacity: .55;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.18);
    }
}

@keyframes contactBubbleFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    35% {
        transform: translate3d(10px, -18px, 0) rotate(7deg);
    }

    70% {
        transform: translate3d(-8px, 12px, 0) rotate(-5deg);
    }
}

@keyframes contactSnowFall {
    from {
        transform: translate3d(0, -80px, 0);
    }

    to {
        transform: translate3d(90px, 260px, 0);
    }
}

.footer-gallery img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.brand-footer {
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
    padding: 72px 0 4px;
    background:
        radial-gradient(circle at 10% 20%, #005a44 0%, #003629 60%, #002219 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.brand-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.footer-orb {
    position: absolute;
    top: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0, 184, 148, .15) 0%, rgba(0, 0, 0, 0) 70%);
}

.footer-orb-b {
    display: none;
}

.brand-footer .container {
    position: relative;
    z-index: 1;
}

.brand-footer .site-wide-container {
    position: relative;
    z-index: 1;
    padding-bottom: 0 !important;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(270px, 1.25fr) minmax(230px, 1fr) minmax(180px, .8fr) minmax(230px, 1fr) minmax(280px, 1.1fr);
    width: 100%;
    max-width: none;
    margin: 0;
    gap: 28px;
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
    color: #fff;
    text-decoration: none;
}

.footer-logo:hover {
    color: #fff;
}

.footer-logo-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #004d3a;
    font-size: 23px;
    font-weight: 700;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
}

.footer-logo-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-logo span {
    max-width: 280px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.12;
}

.footer-brand p,
.footer-newsletter p {
    max-width: 360px;
    color: #a3c2b8;
    font-size: 16px;
    line-height: 1.6;
}

.footer-visitor-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    margin: 0;
    padding: 5px 10px;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
}

.footer-visitor-count i {
    color: var(--gold);
}

.footer-panel,
.footer-newsletter {
    min-height: 100%;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.brand-footer h5 {
    position: relative;
    display: inline-block;
    margin-bottom: 18px !important;
    color: #fff;
    font-size: 18px;
}

.brand-footer h5::after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    margin-top: 8px;
    border-radius: 2px;
    background: #00b894;
}

.footer-contact-item,
.footer-links-panel a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c0ded5;
    font-size: 15px;
    text-decoration: none;
}

.footer-contact-item {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.4;
}

.footer-contact-item span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.footer-contact-item:hover,
.footer-links-panel a:hover,
.footer-menu a:hover {
    color: #00b894;
}

.footer-contact-item i {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--dark);
    font-size: 16px;
    border-radius: 6px;
    background: #fff;
    box-shadow: none;
}

.footer-links-panel {
    display: grid;
    gap: 10px;
}

.footer-links-panel h5 {
    margin-bottom: 7px !important;
}

.footer-links-panel a::before {
    content: "›";
    color: #c0ded5;
    font-family: inherit;
    font-weight: 700;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    background: #fff;
    text-decoration: none;
    transition: transform .25s ease, background .25s ease;
}

.footer-social a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-social-x {
    color: #1da1f2;
}

.footer-social-x:hover {
    border-color: #1da1f2;
    background: #1da1f2;
}

.footer-social-facebook {
    color: #1877f2;
}

.footer-social-facebook:hover {
    border-color: #1877f2;
    background: #1877f2;
}

.footer-social-instagram {
    color: #e4405f;
}

.footer-social-instagram:hover {
    border-color: #e4405f;
    background: #e4405f;
}

.footer-social-linkedin {
    color: #0a66c2;
}

.footer-social-linkedin:hover {
    border-color: #0a66c2;
    background: #0a66c2;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.footer-gallery a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 70px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    box-shadow: none;
    transition: all .3s ease;
}

.footer-gallery a:hover {
    border-color: #00b894;
    background: rgba(0, 184, 148, .2);
}

.footer-gallery a::after {
    display: none;
}

.footer-project-fallback {
    display: grid;
    place-items: center;
    min-height: 70px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.footer-project-caption {
    display: none;
}

.footer-project-caption small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-newsletter form {
    display: flex;
    min-height: 52px;
    padding: 4px;
    overflow: hidden;
    border: 0;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(0, 34, 28, .16);
}

.footer-newsletter input {
    min-width: 0;
    width: 100%;
    padding: 8px 16px;
    color: var(--dark);
    border: 0;
    outline: 0;
}

.footer-newsletter button {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    border: 0;
    border-radius: 50%;
    background: #00b894;
    transition: filter .25s ease, transform .25s ease;
}

.footer-newsletter button:hover {
    filter: brightness(1.08);
    transform: scale(1.04);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    width: 100%;
    max-width: none;
    margin: 8px 0 0 !important;
    padding: 6px 44px 0 0 !important;
    min-height: 0;
    color: #83a89c;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-menu a {
    color: #83a89c;
    text-decoration: none;
}

.floating-scroll-actions {
    position: fixed;
    right: 18px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1050;
}

.floating-scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(0, 88, 68, .86);
    box-shadow: 0 10px 26px rgba(0, 28, 22, .2);
    backdrop-filter: blur(10px);
    transition: all .3s ease;
}

.floating-scroll-btn:hover {
    color: #fff;
    border-color: #00b894;
    background: #00b894;
    transform: translateY(-2px);
}

.floating-side-actions {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 1050;
}

.floating-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 10px 26px rgba(0, 28, 22, .28);
    transition: transform .3s ease, box-shadow .3s ease;
    animation: whatsappPulse 2.4s ease-in-out infinite;
}

.floating-whatsapp-btn:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 32px rgba(0, 28, 22, .34);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 10px 26px rgba(0, 28, 22, .28), 0 0 0 0 rgba(37, 211, 102, .55);
    }

    50% {
        box-shadow: 0 10px 26px rgba(0, 28, 22, .28), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.floating-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    border-radius: 50%;
    background: #2196f3;
    box-shadow: 0 10px 26px rgba(0, 28, 22, .28);
    transition: transform .3s ease, box-shadow .3s ease;
}

.floating-call-btn:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 32px rgba(0, 28, 22, .34);
}

@media (max-width: 575.98px) {
    .floating-side-actions {
        right: 14px;
        gap: 10px;
    }

    .floating-call-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .floating-contact-btn {
        width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .floating-contact-btn span {
        display: none;
    }
}

@keyframes footerOrbFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(18px, -20px, 0);
    }
}

/* ==========================================================================
   Admin panel
   ========================================================================== */

.admin-shell {
    background: #f1fbf8;
    min-height: 100vh;
}

.admin-layout {
    display: flex;
    align-items: flex-start;
    min-height: 100vh;
}

/* ---- Sidebar ---- */

.admin-sidebar {
    background: linear-gradient(180deg, var(--dark) 0%, #05261f 100%);
    color: #fff;
    width: 264px;
    flex: 0 0 264px;
    min-height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    padding: 28px 20px;
}

.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.admin-sidebar-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    padding: 4px;
}

.admin-sidebar-brand .admin-brand-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0;
}

.admin-sidebar-brand .admin-brand-tag {
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.admin-nav {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
}

.admin-nav-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .38);
    padding: 16px 12px 6px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background-color .15s ease, color .15s ease;
}

.admin-nav a .admin-nav-icon {
    width: 18px;
    text-align: center;
    flex: 0 0 18px;
    font-size: 15px;
    opacity: .85;
}

.admin-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.admin-nav a.active {
    color: #fff;
    background: rgba(8, 216, 195, .16);
    box-shadow: inset 3px 0 0 var(--primary);
}

.admin-nav a.admin-nav-external {
    color: var(--primary);
}

.admin-sidebar-footer {
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.admin-sidebar-footer .btn {
    width: 100%;
}

/* ---- Main content ---- */

.admin-main {
    flex: 1 1 auto;
    min-width: 0;
    padding: 36px 40px 64px;
}

.admin-topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 28px;
}

.admin-topbar h2 {
    font-weight: 700;
    color: var(--dark);
}

/* ---- Panels ---- */

.admin-panel {
    background: #fff;
    border: 1px solid #e1f1ec;
    border-radius: 14px !important;
    padding: 28px;
    box-shadow: 0 1px 2px rgba(6, 61, 50, .04);
    scroll-margin-top: 24px;
}

.admin-panel + .admin-panel {
    margin-top: 24px;
}

.admin-panel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eef7f4;
}

.admin-panel-head h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.admin-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(8, 216, 195, .12);
    color: var(--secondary);
    font-size: 16px;
    margin-right: 10px;
}

/* ---- Visitor stats ---- */

.visitor-stat-row {
    min-width: min(100%, 420px);
}

.visitor-stat {
    height: 100%;
    padding: 14px 18px;
    border: 1px solid #e1f1ec;
    border-radius: 10px;
    background: linear-gradient(180deg, #f7fffd 0%, #eefdfa 100%);
}

.visitor-stat span {
    display: block;
    color: #6a807a;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.visitor-stat strong {
    display: block;
    color: var(--dark);
    font-size: 26px;
    line-height: 1.3;
}

.visitor-table thead th {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #6a807a;
    border-bottom-width: 1px;
    padding-bottom: 10px;
}

.visitor-table {
    min-width: 760px;
}

.visitor-table td {
    white-space: nowrap;
    color: #3b524c;
}

.visitor-truncate {
    display: inline-block;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}

.visitor-url {
    max-width: 420px;
}

.visitor-row {
    cursor: pointer;
    transition: background-color .15s ease;
}

.visitor-row:hover {
    background-color: rgba(0, 127, 95, .06);
}

.visitor-detail-list {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 10px 16px;
}

.visitor-detail-list dt {
    color: var(--ink);
    font-weight: 600;
}

.visitor-detail-list dd {
    margin: 0;
    color: #4e625d;
    word-break: break-word;
}

.admin-panel .pagination {
    gap: 4px;
}

.admin-panel .page-link {
    color: var(--dark);
    border-color: #e1f1ec;
    border-radius: 8px !important;
    font-weight: 600;
}

.admin-panel .page-link:hover {
    color: var(--dark);
    background: rgba(8, 216, 195, .12);
    border-color: #c7e9e0;
}

.admin-panel .page-link:focus {
    box-shadow: 0 0 0 .2rem rgba(8, 216, 195, .15);
}

.admin-panel .page-item.active .page-link {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.admin-panel .page-item.disabled .page-link {
    color: #a9bdb7;
    background: #fbfffe;
    border-color: #e1f1ec;
}

/* ---- Forms & cards inside panels ---- */

.form-label {
    font-weight: 600;
    color: var(--ink);
    font-size: 13.5px;
}

.form-control,
.form-select {
    border-color: #dcece7;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(8, 216, 195, .15);
}

textarea.form-control {
    min-height: 120px;
}

.admin-item-card {
    border: 1px solid #e1f1ec !important;
    border-radius: 12px !important;
    background: #fbfffe;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.admin-item-card:hover {
    border-color: #c7e9e0 !important;
    box-shadow: 0 2px 10px rgba(6, 61, 50, .05);
}

.message-card {
    border: 1px solid #e1f1ec !important;
    border-radius: 12px !important;
    background: #fbfffe;
}

.admin-accordion .accordion-item {
    border: 1px solid #e1f1ec;
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 10px;
}

.admin-accordion .accordion-button {
    font-weight: 600;
    color: var(--ink);
    background: #f7fffd;
}

.admin-accordion .accordion-button:not(.collapsed) {
    background: rgba(8, 216, 195, .1);
    color: var(--dark);
    box-shadow: none;
}

.admin-accordion .accordion-button:focus {
    box-shadow: none;
}

.btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--dark);
    border-color: var(--dark);
}

/* ---- Login ---- */

.admin-login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 15% 15%, rgba(8, 216, 195, .16), transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(0, 127, 95, .18), transparent 45%),
        var(--dark);
    padding: 24px;
}

.admin-login-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 24px 60px rgba(2, 26, 21, .35);
}

.admin-login-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .admin-layout {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        flex: 0 0 auto;
        min-height: auto;
        position: relative;
        padding: 20px;
    }

    .admin-main {
        padding: 24px 20px 48px;
    }
}

@media (max-width: 991.98px) {
    .hero-header {
        min-height: auto;
    }

    .founder-card {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        text-align: center;
    }

    .founder-photo {
        max-width: 220px;
        margin: 0 auto;
    }

    .founder-slider {
        padding: 0 48px;
    }

    .home-hero {
        padding: 104px 0 56px;
    }

    .brand-name {
        color: var(--primary);
        font-size: 22px;
    }

    .growth-dashboard {
        min-height: 520px;
        margin: 12px auto 0;
    }

    .brand-orbit {
        inset: 90px 48px 132px;
    }

    .metric-tile-a {
        left: 0;
    }

    .metric-tile-b {
        right: 0;
    }

    .metric-tile-c {
        bottom: 94px;
        left: 0;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand,
    .footer-newsletter {
        grid-column: span 2;
    }

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

    .contact-story h2,
    .contact-story p {
        margin-right: auto;
        margin-left: auto;
    }

    .contact-methods {
        max-width: 640px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-float-bubble {
        opacity: .42;
    }

    .contact-floating-icons .contact-float-bubble {
        inset: auto;
    }
}

@media (max-width: 575.98px) {
    .home-hero {
        min-height: 560px;
        padding-right: 0;
        padding-left: 0;
    }

    .home-hero .container {
        padding-right: 22px;
        padding-left: 22px;
    }

    .home-hero h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .home-hero h1::after {
        width: 74px;
        height: 4px;
        margin-top: 18px;
    }

    .hero-copy {
        font-size: 16px;
        line-height: 1.65;
    }

    .site-wide-container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .hero-actions,
    .home-hero .hero-actions {
        display: grid;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 0;
        margin-right: 0 !important;
    }

    .hero-proof {
        justify-content: center;
    }

    .contact-showcase {
        padding: 64px 0;
    }

    .contact-story h2 {
        font-size: 32px;
    }

    .contact-story p {
        font-size: 16px;
    }

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

    .contact-form-card {
        padding: 22px 18px;
    }

    .contact-form-head {
        align-items: flex-start;
    }

    .contact-form-head h3 {
        font-size: 22px;
    }

    .contact-form-head > i {
        width: 46px;
        height: 46px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-brand,
    .footer-newsletter {
        grid-column: auto;
    }

    .brand-footer {
        padding-top: 44px;
        padding-bottom: 18px;
    }

    .brand-footer .site-wide-container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .footer-panel,
    .footer-newsletter {
        padding: 22px 18px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 20px;
        padding-top: 12px;
        text-align: center;
    }

    .footer-menu {
        justify-content: center;
    }

    .floating-scroll-actions {
        right: 14px;
        bottom: 72px;
    }

    .floating-scroll-btn {
        width: 34px;
        height: 34px;
    }

    .footer-logo span {
        font-size: 21px;
    }

    .footer-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-floating-icons {
        opacity: .64;
    }

    .contact-float-bubble {
        opacity: .38;
    }

    .contact-floating-icons .contact-float-bubble {
        inset: auto;
    }

    .contact-float-bubble:nth-child(n+9) {
        display: none;
    }

    .contact-bubble-1 { top: 14px; left: -38px; width: 150px; height: 150px; }
    .contact-bubble-2 { top: 92px; right: 12px; width: 98px; height: 98px; }
    .contact-bubble-3 { top: 25%; left: -34px; width: 116px; height: 116px; }
    .contact-bubble-4 { top: 38%; right: -62px; width: 170px; height: 170px; }
    .contact-bubble-5 { top: 58%; left: 14px; width: 90px; height: 90px; }
    .contact-bubble-6 { bottom: 25%; right: 18px; width: 112px; height: 112px; }
    .contact-bubble-7 { bottom: 80px; left: -32px; width: 142px; height: 142px; }
    .contact-bubble-8 { bottom: 38px; right: 32px; width: 94px; height: 94px; }

    .focus-slider-arrow {
        width: 38px;
        height: 38px;
    }

    .team-photo {
        width: 108px;
        height: 108px;
    }

    .growth-dashboard {
        min-height: 500px;
    }

    .brand-orbit {
        inset: 122px 18px 146px;
    }

    .metric-tile {
        min-width: 142px;
        padding: 13px;
    }

    .metric-tile-a {
        top: 22px;
    }

    .metric-tile-b {
        top: 74px;
    }

    .metric-tile-c {
        bottom: 126px;
        left: 0;
    }

    .performance-panel {
        right: 0;
        bottom: -10px;
        width: 100%;
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .process-step span {
        grid-row: auto;
    }

    .growth-metrics {
        grid-template-columns: 1fr;
    }

    .process-board {
        padding: 18px;
    }

    .process-board::before {
        display: none;
    }

    .team-card {
        padding: 24px 16px 20px;
    }
}
