.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}
.aft-top-bar {
    min-height: var(--top-bar-h);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--clr-border);
    font-size: 12px;
    letter-spacing: -0.01em;
}
.aft-top-bar-inner {
    max-width: 1068px;
    margin: 0 auto;
    padding: 8px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.aft-phone-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 0;
    text-align: center;
}
.aft-top-bar .hatt-text {
    color: var(--clr-text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}
.aft-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-link);
    font-weight: 800;
    font-size: clamp(15px, 2.1vw, 18px);
    letter-spacing: -0.025em;
    line-height: 1.15;
    text-decoration: none;
    border-radius: 8px;
    margin: 0 -4px;
    padding: 4px 4px;
    transition: opacity 0.2s ease, background 0.2s ease;
}
.aft-phone-link:hover {
    opacity: 0.92;
    background: rgba(0, 102, 204, 0.06);
}
.aft-bar-svg {
    flex-shrink: 0;
    opacity: 0.95;
}
.aft-phone-num {
    font-variant-numeric: tabular-nums;
}
.aft-top-bar a {
    color: var(--clr-link);
    font-weight: 500;
}
.aft-top-bar .aft-phone-link {
    font-weight: 800;
}
.site-navbar {
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.site-navbar .nav-container {
    max-width: 1068px;
    margin: 0 auto;
    padding: 0 22px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.site-navbar .nav-links {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(8px, 1.2vw, 18px);
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-navbar .nav-links li {
    margin: 0;
}
.site-navbar .nav-links a {
    font-size: 11px;
    white-space: nowrap;
    color: var(--clr-text);
    opacity: 0.85;
    font-weight: 400;
}
.site-navbar .nav-links a:hover {
    opacity: 0.5;
}
.site-navbar .nav-links a.active {
    opacity: 1;
    font-weight: 600;
}
.nav-actions-desktop {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--clr-text);
}
#menuBtn {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--clr-text);
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}
#menuBtn .menu-icon-svg {
    display: block;
    color: var(--clr-text);
}
@media (max-width: 420px) {
    .mobile-bottom-nav .nav-item:not(.nav-action) span {
        font-size: 8px;
        letter-spacing: -0.05em;
    }
    .mobile-bottom-nav .nav-item:not(.nav-action) svg {
        width: 21px;
        height: 21px;
    }
}
.nav-menu-backdrop {
    position: fixed;
    inset: 0;
    top: var(--header-total);
    z-index: 10015;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}
body.menu-open {
    overflow: hidden;
    touch-action: none;
}
body.menu-open .site-header {
    z-index: 10030;
    overflow: visible;
}
body.menu-open .site-navbar,
body.menu-open .site-navbar .nav-container {
    overflow: visible;
}
body.menu-open .nav-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
body.menu-open .mobile-bottom-nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}
@media (max-width: 1100px) {
    .site-navbar {
        overflow: visible;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.94);
    }
    .site-navbar .nav-container {
        overflow: visible;
    }
    .site-navbar .nav-container .logo {
        margin: 0;
        flex: 1 1 auto;
        min-width: 0;
    }
    #menuBtn {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        z-index: 10040;
        position: relative;
    }
    .site-navbar .nav-links {
        position: fixed;
        top: var(--header-total);
        left: auto;
        right: 0;
        bottom: 0;
        width: min(100%, 400px);
        max-width: 100vw;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: saturate(180%) blur(24px);
        -webkit-backdrop-filter: saturate(180%) blur(24px);
        flex-direction: column;
        padding: 12px 8px calc(24px + env(safe-area-inset-bottom, 0px));
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        align-items: stretch;
        justify-content: flex-start;
        z-index: 10050;
        flex-wrap: nowrap;
        border-radius: 18px 0 0 0;
        box-shadow: -12px 0 48px rgba(0, 0, 0, 0.1);
        border-left: 1px solid rgba(0, 0, 0, 0.06);
        isolation: isolate;
    }
    .site-navbar .nav-links.active {
        transform: translateX(0);
    }
    .site-navbar .nav-links li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .site-navbar .nav-links li:last-child {
        border-bottom: none;
    }
    .site-navbar .nav-links a {
        display: block;
        padding: 15px 16px;
        font-size: 17px;
        font-weight: 500;
        letter-spacing: -0.022em;
        white-space: normal;
        border-radius: 12px;
        color: var(--clr-text);
        opacity: 1;
    }
    .site-navbar .nav-links a:hover,
    .site-navbar .nav-links a:focus-visible {
        background: rgba(0, 0, 0, 0.04);
        opacity: 1;
    }
    .site-navbar .nav-links a.active {
        background: rgba(0, 102, 204, 0.08);
        color: var(--clr-link);
        font-weight: 600;
    }
    .nav-actions-desktop {
        display: none;
    }
}
.navbar:not(.site-navbar) {
    position: relative;
    height: auto;
    background: transparent;
    border: none;
    backdrop-filter: none;
}
.container.container-wide {
    max-width: 1200px;
}
.text-gradient {
    background: linear-gradient(135deg, #1d1d1f 0%, #424245 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--clr-primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-premium:hover {
    background-color: var(--clr-primary-hover);
    color: #fff;
}
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--clr-link);
    z-index: 10001;
    transition: width 0.08s linear;
}
#cursor,
#cursor-follower,
.bg-gradient-orb {
    display: none !important;
}
.home-hero.hero:not(.home-hero--preset) {
    position: relative;
    width: 100%;
    margin: 0;
    min-height: calc(100svh - var(--header-total));
    min-height: calc(100vh - var(--header-total));
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    text-align: center;
    overflow: hidden;
}
.home-hero.home-hero--visual-only.hero {
    justify-content: stretch;
}
.home-hero.home-hero--preset.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: calc(100svh - var(--header-total));
    min-height: calc(100dvh - var(--header-total));
    text-align: left;
    overflow: hidden;
}
@media (max-width: 768px) {
    .home-hero.home-hero--preset.hero {
        min-height: calc(100svh - var(--header-total) - var(--bottom-nav-height));
        min-height: calc(100dvh - var(--header-total) - var(--bottom-nav-height));
    }
}
.home-hero-preset-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.home-hero-preset-bg picture,
.home-hero-preset-bg img {
    display: block;
    width: 100%;
    height: 100%;
}
.home-hero-preset-img {
    object-fit: cover;
    object-position: center center;
}
.home-hero-preset-layout {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    display: grid;
    min-height: 0;
    width: 100%;
    box-sizing: border-box;
    padding: clamp(16px, 3.5dvh, 40px) max(16px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}
@media (max-width: 768px) {
    .home-hero-preset-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        justify-items: stretch;
    }
    .home-hero-preset-panel {
        grid-column: 1;
        grid-row: 1;
    }
    .home-hero-preset-cta {
        grid-column: 1;
        grid-row: 3;
        justify-self: center;
        align-self: end;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .home-hero-preset-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr;
        max-width: min(32rem, calc(100% - clamp(28px, 6vw, 56px)));
        margin: 0 auto;
    }
    .home-hero-preset-panel {
        grid-row: 1;
        max-width: 100%;
    }
    .home-hero-preset-cta {
        grid-row: 2;
        justify-self: start;
        margin-top: clamp(12px, 2vw, 20px);
    }
}
@media (min-width: 1025px) {
    .home-hero-preset-layout {
        display: block;
        flex: 1 1 auto;
        padding-top: clamp(24px, 5dvh, 56px);
        padding-left: max(24px, env(safe-area-inset-left));
        padding-right: max(24px, env(safe-area-inset-right));
    }
    .home-hero-preset-panel {
        width: fit-content;
        max-width: min(26rem, 36vw);
    }
    .home-hero-preset-cta {
        position: absolute;
        left: 72%;
        right: auto;
        top: clamp(12px, 8dvh, 88px);
        bottom: auto;
        margin: 0;
        transform: translateX(-50%);
        z-index: 2;
    }
}
.home-hero-preset-panel {
    text-align: center;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
@media (min-width: 1025px) {
    .home-hero-preset-panel {
        text-align: left;
    }
}
.home-hero-preset-title {
    font-family: var(--font-apple);
    font-size: clamp(1.45rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.038em;
    line-height: 1.12;
    color: #0f172a;
    margin: 0 0 clamp(12px, 2vw, 18px);
    text-wrap: balance;
}
.home-hero-preset-lead {
    font-family: var(--font-apple);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.52;
    color: #0a0a0a;
    margin: 0;
    max-width: 36em;
    margin-left: auto;
    margin-right: auto;
    text-wrap: pretty;
}
@media (min-width: 1025px) {
    .home-hero-preset-lead {
        margin-left: 0;
        margin-right: 0;
    }
}
.home-hero-preset-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-family: var(--font-apple);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: #fff;
    background: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    isolation: isolate;
    transition: box-shadow 0.2s ease, filter 0.2s ease;
    animation: home-preset-cta-attn 2s ease-in-out infinite;
}
.home-hero-preset-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 40%,
        rgba(255, 255, 255, 0.42) 50%,
        rgba(255, 255, 255, 0.08) 60%,
        transparent 100%
    );
    transform: skewX(-14deg) translateX(-220%);
    animation: home-preset-cta-shine 2.2s linear infinite;
    pointer-events: none;
    z-index: 0;
}
.home-hero-preset-cta-icon,
.home-hero-preset-cta-label {
    position: relative;
    z-index: 1;
}
.home-hero-preset-cta:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
    filter: brightness(1.08);
}
.home-hero-preset-cta-icon {
    display: flex;
    flex-shrink: 0;
}
.home-hero-preset-cta-icon svg {
    display: block;
    animation: home-preset-cta-icon 2.2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
    .home-hero-preset-cta {
        animation: none;
    }
    .home-hero-preset-cta::before {
        animation: none;
        opacity: 0;
    }
    .home-hero-preset-cta-icon svg {
        animation: none;
    }
}
.home-hero-preset-cta:focus-visible {
    outline: 2px solid var(--clr-link, #0066cc);
    outline-offset: 3px;
}
@keyframes home-preset-cta-shine {
    0% {
        transform: skewX(-14deg) translateX(-220%);
    }
    100% {
        transform: skewX(-14deg) translateX(280%);
    }
}
@keyframes home-preset-cta-icon {
    0%,
    75%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    80% {
        transform: translateY(-2px) rotate(-7deg);
    }
    86% {
        transform: translateY(-1px) rotate(7deg);
    }
}
@keyframes home-preset-cta-attn {
    0%,
    100% {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow:
            0 6px 26px rgba(0, 0, 0, 0.26),
            0 0 0 3px rgba(0, 102, 204, 0.25);
    }
}
.home-hero.home-hero--preset + .home-intro-copy {
    margin-top: 0;
    padding-top: clamp(40px, 5.5vw, 72px);
}
.home-hero.home-hero--visual-only .hero-picture-bg,
.home-hero.home-hero--visual-only .hero-slideshow,
.home-hero.home-hero--visual-only .hero-video-bg {
    z-index: 0;
}
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 1;
    filter: none;
}
.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-slide picture,
.hero-slide-picture,
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-slide-dots {
    position: absolute;
    bottom: max(100px, calc(18% + env(safe-area-inset-bottom)));
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
    padding: 0 16px;
}
.home-hero.home-hero--visual-only .hero-slide-dots {
    bottom: max(18px, calc(12px + env(safe-area-inset-bottom)));
}
.hero-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.hero-slide-dot.active {
    width: 22px;
    background: #fff;
}
.hero-picture-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}
.hero-picture-bg img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.home-hero.home-hero--visual-only {
    --home-hero-object-position: center 38%;
    --home-hero-object-position-mobile: center 34%;
}
.home-hero.home-hero--visual-only .hero-picture-bg img,
.home-hero.home-hero--visual-only .hero-slide-picture img {
    object-fit: cover;
    object-position: var(--home-hero-object-position);
}
@media (max-width: 768px) {
    .home-hero.hero:not(.home-hero--preset) {
        min-height: calc(100dvh - var(--header-total));
    }
    .hero-slide-dots {
        bottom: max(88px, calc(22% + env(safe-area-inset-bottom)));
    }
    .home-hero.home-hero--visual-only .hero-slide-dots {
        bottom: max(16px, calc(10px + env(safe-area-inset-bottom)));
    }
    .home-hero.home-hero--visual-only .hero-picture-bg img,
    .home-hero.home-hero--visual-only .hero-slide-picture img {
        object-position: var(--home-hero-object-position-mobile);
    }
}
.home-intro-copy {
    position: relative;
    z-index: 0;
    background: var(--clr-bg);
    padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 88px);
}
.home-intro-copy-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.home-intro-lead {
    font-family: var(--font-apple);
    font-size: clamp(1.2rem, 2.8vw, 1.65rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: var(--clr-text);
    text-wrap: balance;
    margin: 0 0 1.1em;
}
.home-intro-body {
    font-family: var(--font-apple);
    font-size: clamp(0.95rem, 1.9vw, 1.08rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.6;
    color: var(--clr-text-muted);
    text-wrap: pretty;
    margin: 0 auto;
    max-width: 48em;
}
@media (max-width: 600px) {
    .home-intro-copy {
        padding-left: max(0px, env(safe-area-inset-left, 0px));
        padding-right: max(0px, env(safe-area-inset-right, 0px));
    }
}
.stats-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}
.home-hero.home-hero--preset + .stats-section {
    padding-top: clamp(20px, 4vw, 40px);
}
.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stats-section .stat-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--clr-bg);
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
    transition: var(--transition);
}
.stats-section .stat-card:hover {
    border-color: var(--clr-border);
    transform: translateY(-4px);
}
.stats-section .stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: rgba(0, 102, 204, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--clr-link);
}
.stats-section .stat-number {
    font-size: 48px;
    font-weight: 600;
    color: var(--clr-text);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}
.stats-section .stat-number .suffix {
    font-size: 0.55em;
    color: var(--clr-link);
}
.stats-section .stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.section-padding {
    padding: 100px 0;
}
#services .bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 20px;
}
.services-section-intro {
    margin-bottom: 48px;
}
.services-interactive-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0 0;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--clr-link);
    background: rgba(0, 102, 204, 0.08);
    border: 1px solid rgba(0, 102, 204, 0.22);
}
.services-interactive-pill i {
    font-size: 14px;
    opacity: 0.95;
}
.services-tap-hint {
    margin-top: 14px;
    font-size: 15px;
    color: var(--clr-text-muted);
    max-width: 38em;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    letter-spacing: -0.01em;
}
.services-tap-hint strong {
    color: var(--clr-text);
    font-weight: 600;
}
#services .bento-card:focus-visible {
    outline: 2px solid var(--clr-link);
    outline-offset: 3px;
}
#services .bento-card {
    position: relative;
    grid-column: span 4;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: var(--clr-bg-alt);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    min-height: 280px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
#services .bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 102, 204, 0.35);
}
#services .bento-card:active {
    transform: translateY(-2px);
}
#services .bento-card-cta {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px 7px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--clr-link);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}
#services .bento-card-cta i {
    font-size: 10px;
    opacity: 0.85;
}
#services .bento-card:hover .bento-card-cta {
    background: #fff;
    border-color: rgba(0, 102, 204, 0.25);
}
#services .bento-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    transition: opacity 0.5s ease, transform 0.6s ease;
}
#services .bento-card:hover img {
    opacity: 0.38;
    transform: scale(1.04);
}
#services .bento-body {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
}
#services .bento-body h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--clr-text);
}
#services .bento-body p {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 1024px) {
    #services .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}
@media (max-width: 768px) {
    .stats-section .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    #services .bento-grid {
        grid-template-columns: 1fr;
    }
    #services .bento-card {
        grid-column: span 1 !important;
    }
    .section-padding {
        padding: 72px 0;
    }
}
.about-preview .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}
.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-accent {
    display: none;
}
.about-text .lead {
    font-size: 17px;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}
.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-text);
}
.about-badge i {
    color: var(--clr-link);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 1px solid var(--clr-border);
    border-radius: 980px;
    color: var(--clr-text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--clr-text);
    background: var(--clr-bg-alt);
}
@media (max-width: 900px) {
    .about-preview .about-grid {
        grid-template-columns: 1fr;
    }
}
.roadmap {
    position: relative;
    padding-bottom: 40px;
}
.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--clr-border), transparent);
    transform: translateX(-50%);
}
.roadmap-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}
.roadmap-step:nth-child(even) {
    flex-direction: row-reverse;
}
.step-content {
    width: 42%;
    padding: 28px;
    border-radius: 20px;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.step-content h3 {
    font-size: 21px;
    margin-bottom: 10px;
}
.step-content p {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.55;
}
.roadmap-step .step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-text);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
    .roadmap-line {
        left: 24px;
    }
    .roadmap-step,
    .roadmap-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 56px;
    }
    .step-content {
        width: 100%;
    }
    .roadmap-step .step-number {
        left: 24px;
        transform: translateX(-50%);
    }
}
.faq-section .faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    overflow: hidden;
}
.faq-question {
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}
.faq-question h4 {
    font-size: 17px;
    font-weight: 500;
    margin: 0;
}
.faq-question i {
    color: var(--clr-text-muted);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-answer-inner {
    padding: 0 22px 22px;
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}
.testimonials {
    background: #fff;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    padding: 100px 0;
}
.tester-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.tester-track-wrap {
    overflow: hidden;
}
.tester-wrap {
    display: flex;
    gap: 20px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.tester-card {
    min-width: 340px;
    flex-shrink: 0;
    padding: 32px;
    background: var(--clr-bg);
    border-radius: 20px;
    border: 1px solid var(--clr-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.tester-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}
.tester-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}
.tester-info h5 {
    font-size: 15px;
    margin: 0 0 2px;
    color: var(--clr-text);
}
.tester-info span {
    font-size: 13px;
    color: var(--clr-link);
    font-weight: 500;
}
.tester-stars {
    color: #ffb400;
    font-size: 13px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.tester-card > p {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin: 0;
}
.tester-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    background: var(--clr-bg-alt);
    color: var(--clr-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.tester-arrow:hover {
    border-color: var(--clr-text);
}
.tester-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 28px;
}
.tester-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--clr-border);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.tester-dot.active {
    width: 22px;
    background: var(--clr-text);
}
@media (max-width: 768px) {
    .tester-card {
        min-width: calc(100vw - 80px);
    }
}
.glass-card {
    padding: 72px 40px;
    border-radius: 28px;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}
.map-section {
    position: relative;
    height: 480px;
    background: var(--clr-bg);
    overflow: hidden;
    border-top: 1px solid var(--clr-border);
}
.map-container {
    width: 100%;
    height: 100%;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.2) contrast(1.02);
}
.map-overlay {
    display: none;
}
.map-pin {
    display: none;
}
.map-link-btn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background: var(--clr-text);
    color: #fff;
    padding: 12px 24px;
    border-radius: 980px;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.map-link-btn:hover {
    color: #fff;
    opacity: 0.9;
}
.service-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}
.service-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
}
.service-modal-content {
    position: relative;
    z-index: 2;
    background: var(--clr-bg-alt);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(16px);
    transition: transform 0.3s ease;
}
.service-modal.active .service-modal-content {
    transform: translateY(0);
}
.service-modal-content img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.service-modal-body {
    padding: 28px;
}
.service-modal-body h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--clr-text);
}
.service-modal-body p {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.65;
}
.service-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    color: var(--clr-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.service-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}
.footer-main,
.footer.site-footer {
    background-color: var(--clr-bg-alt);
    padding: 72px 0 100px;
    border-top: 1px solid var(--clr-border);
}
.footer-main ul.footer-links,
.footer.site-footer ul.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-main .footer-grid,
.footer.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 36px;
    margin-bottom: 48px;
}
.footer-main h4,
.footer.site-footer h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--clr-text);
}
.footer-main .footer-desc,
.footer.site-footer .footer-desc {
    margin-top: 12px;
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 320px;
}
.footer-main .footer-links a,
.footer.site-footer .footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}
.footer-main .footer-links a:hover,
.footer.site-footer .footer-links a:hover {
    color: var(--clr-link);
}
.footer-main .footer-contact a,
.footer-main .footer-contact p,
.footer.site-footer .footer-contact a,
.footer.site-footer .footer-contact p {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
    display: block;
}
.footer-main .footer-social a,
.footer.site-footer .footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--clr-bg);
    color: var(--clr-text);
    margin-right: 8px;
    border: 1px solid var(--clr-border);
}
.footer-main .footer-social a:hover,
.footer.site-footer .footer-social a:hover {
    color: var(--clr-link);
    border-color: var(--clr-link);
}
.footer-main .footer-hours li,
.footer.site-footer .footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--clr-text-muted);
    padding: 6px 0;
    border-bottom: 1px solid var(--clr-border);
    list-style: none;
}
.footer-main .footer-bottom,
.footer.site-footer .footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--clr-border);
    font-size: 13px;
    color: var(--clr-text-muted);
}
.footer-main .footer-bottom a,
.footer.site-footer .footer-bottom a {
    color: var(--clr-link);
}
@media (max-width: 1024px) {
    .footer-main .footer-grid,
    .footer.site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .footer-main .footer-grid,
    .footer.site-footer .footer-grid {
        grid-template-columns: 1fr;
    }
    .wa-wrapper {
        display: none;
    }
}
.wa-wrapper {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
}
.wa-btn {
    width: 56px;
    height: 56px;
    background: var(--clr-whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    transition: transform 0.2s ease;
}
.wa-btn:hover {
    transform: scale(1.06);
    color: #fff;
}
.wa-tooltip {
    position: absolute;
    bottom: 72px;
    right: 0;
    background: var(--clr-text);
    color: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: 0.3s ease;
    pointer-events: none;
}
.wa-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.page-header {
    padding: 48px 0 64px;
    background: var(--clr-bg);
    text-align: center;
}
.page-title {
    font-size: clamp(36px, 6vw, 56px);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.08;
}
.page-hero-desc {
    font-size: 19px;
    color: var(--clr-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 20px;
}
.breadcrumb a {
    color: var(--clr-text-muted);
}
.breadcrumb a:hover {
    color: var(--clr-link);
}
.breadcrumb .breadcrumb-sep {
    font-size: 10px;
    opacity: 0.45;
    color: var(--clr-text-muted);
    flex-shrink: 0;
    line-height: 1;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 24px;
}
.b-card {
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.b-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}
.b-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-bottom: 1px solid var(--clr-border);
}
.b-content {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.b-meta {
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}
.b-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--clr-text);
    line-height: 1.35;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.b-title:hover {
    color: var(--clr-link);
}
.b-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-link);
    font-weight: 500;
    font-size: 14px;
}
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--clr-border);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    font-size: 14px;
    font-weight: 500;
    background: var(--clr-bg-alt);
}
.page-btn:hover,
.page-btn.active {
    border-color: var(--clr-text);
    color: var(--clr-text);
}
.page-btn.active {
    pointer-events: none;
}
.article-hero {
    padding: 32px 0 40px;
    text-align: center;
    background: var(--clr-bg);
}
.article-hero .article-breadcrumb {
    margin-bottom: 16px;
}
.article-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    margin: 16px 0;
    color: var(--clr-text);
    line-height: 1.15;
    word-wrap: break-word;
}
.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--clr-text-muted);
    font-size: 14px;
}
.article-meta i {
    color: var(--clr-link);
    margin-right: 6px;
}
.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 22px 80px;
}
.article-featured-img {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--clr-border);
    aspect-ratio: 16/9;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.article-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-content {
    font-size: 17px;
    line-height: 1.7;
    color: var(--clr-text);
}
.article-content h2,
.article-content h3 {
    margin: 36px 0 16px;
    color: var(--clr-text);
}
.article-content p {
    margin-bottom: 20px;
}
.article-content img {
    max-width: 100%;
    border-radius: 12px;
}
.youtube-wrapper {
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--clr-border);
}
.youtube-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
    display: block;
}
.article-share {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 48px 0;
    padding: 28px 0;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}
.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.share-btn:hover {
    transform: translateY(-2px);
}
.share-wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}
.share-tw:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}
.share-fb:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}
.comments-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 22px 80px;
}
.comments-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
}
.comment-box {
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 14px;
}
.c-name {
    font-weight: 600;
    color: var(--clr-text);
}
.c-date {
    font-size: 13px;
    color: var(--clr-text-muted);
}
.c-text {
    color: var(--clr-text-muted);
    line-height: 1.55;
    margin-top: 10px;
}
.comment-form-box {
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    padding: 32px;
    border-radius: 20px;
    margin-top: 32px;
}
.comment-form-box h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--clr-text);
}
.comment-form-box > p {
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    font-size: 15px;
}
.comment-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}
.c-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}
.c-stars {
    color: #ffb400;
    font-size: 14px;
}
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}
.star-rating input {
    display: none;
}
.star-rating label {
    color: var(--clr-border);
    font-size: 1.35rem;
    cursor: pointer;
    transition: 0.2s;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffb400;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
.c-alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 14px;
}
.form-control {
    background: #fff;
    border: 1px solid var(--clr-border);
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--clr-text);
    font-family: var(--font-apple);
    font-size: 15px;
    width: 100%;
    outline: none;
}
.form-control:focus {
    border-color: var(--clr-link);
}
.btn-submit-c {
    background: var(--clr-text);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 980px;
    cursor: pointer;
    margin-top: 12px;
}
.btn-submit-c:hover {
    opacity: 0.88;
}
.c-alert-success {
    background: rgba(52, 199, 89, 0.12);
    border: 1px solid rgba(52, 199, 89, 0.35);
    color: #1d7c3a;
}
.c-alert-error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #c41e16;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 900px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}
.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    margin-bottom: 14px;
}
.contact-info-card i {
    color: var(--clr-link);
    font-size: 1.25rem;
    margin-top: 2px;
}
.contact-form-panel {
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 32px;
}
.contact-submit {
    background: var(--clr-text);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}
.contact-submit:hover {
    opacity: 0.9;
}
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}
@media (max-width: 768px) {
    .about-page-grid {
        grid-template-columns: 1fr;
    }
}
.values-grid-apple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 768px) {
    .values-grid-apple {
        grid-template-columns: 1fr;
    }
}
.value-card-apple {
    padding: 32px 24px;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.value-card-apple i {
    color: var(--clr-link);
    font-size: 1.5rem;
    margin-bottom: 14px;
}
.value-card-apple h3 {
    font-size: 1.15rem;
    margin: 4px 0 10px;
}
.comment-form-box .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.cta-banner-apple {
    text-align: center;
    padding: 64px 32px;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 24px;
    margin-top: 48px;
}
.experience-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--clr-border);
    padding: 16px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.experience-badge .badge-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-link);
    line-height: 1;
}
.experience-badge .badge-text {
    font-size: 12px;
    color: var(--clr-text-muted);
    line-height: 1.35;
    font-weight: 500;
}
.about-story-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 20px;
}
.about-story-text p {
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 17px;
}
.services-check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}
.service-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-text);
    transition: var(--transition);
}
.service-check-item:hover {
    border-color: var(--clr-link);
}
.service-check-item i {
    color: var(--clr-link);
    flex-shrink: 0;
}
.values-section-light {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 24px;
    padding: 72px 6%;
    margin: 0 auto;
    max-width: 1068px;
}
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    transition: var(--transition);
}
.info-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.info-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(0, 102, 204, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--clr-link);
}
.info-card-text h4 {
    font-size: 15px;
    margin-bottom: 6px;
}
.info-card-text p,
.info-card-text a {
    color: var(--clr-text-muted);
    font-size: 14px;
    line-height: 1.55;
    text-decoration: none;
}
.info-card-text a:hover {
    color: var(--clr-link);
}
.hours-card {
    padding: 22px;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
}
.hours-card h4 {
    font-size: 15px;
    margin-bottom: 16px;
    color: var(--clr-text);
}
.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--clr-border);
    font-size: 14px;
    color: var(--clr-text-muted);
}
.hours-list li:last-child {
    border-bottom: none;
}
.hours-list li span:last-child {
    color: var(--clr-text);
    font-weight: 600;
}
.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.social-btn {
    flex: 1;
    min-width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}
.social-btn.whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #128c7e;
    border: 1px solid rgba(37, 211, 102, 0.35);
}
.social-btn.whatsapp:hover {
    background: #25d366;
    color: #fff;
}
.social-btn.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #c13584;
    border: 1px solid rgba(225, 48, 108, 0.25);
}
.social-btn.instagram:hover {
    background: #e1306c;
    color: #fff;
}
.social-btn.phone {
    background: var(--clr-bg);
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
}
.social-btn.phone:hover {
    border-color: var(--clr-text);
}
.contact-form-wrapper {
    padding: 36px;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
}
.contact-form-wrapper h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}
.contact-form-wrapper .form-desc {
    color: var(--clr-text-muted);
    margin-bottom: 24px;
    font-size: 15px;
}
.contact-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form-wrapper .form-group {
    margin-bottom: 16px;
}
.contact-form-wrapper .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 13px;
    color: var(--clr-text-muted);
}
.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group select,
.contact-form-wrapper .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    color: var(--clr-text);
    font-family: var(--font-apple);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}
.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group select:focus,
.contact-form-wrapper .form-group textarea:focus {
    border-color: var(--clr-link);
}
.contact-form-wrapper .form-group textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-form-wrapper .btn-submit {
    background: var(--clr-text);
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}
.contact-form-wrapper .btn-submit:hover {
    opacity: 0.9;
}
.iletisim-map .map-container iframe {
    filter: none;
}
@media (max-width: 900px) {
    .contact-form-wrapper .form-row {
        grid-template-columns: 1fr;
    }
}
.page-hero {
    padding: 40px 0 56px;
    background: var(--clr-bg);
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 16px 0;
}
.page-hero > .container > p {
    color: var(--clr-text-muted);
    font-size: 19px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.45;
}
@media (max-width: 768px) {
    .page-hero {
        padding: 28px 0 44px;
    }
    .page-hero > .container > p {
        font-size: 17px;
    }
    .article-hero {
        padding: 20px 0 32px;
    }
}
.container-narrow-ads {
    max-width: 760px;
}
.ads-intake-edu {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--clr-border);
    border-radius: 18px;
    padding: clamp(20px, 4vw, 28px);
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    text-align: left;
}
.ads-intake-edu-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ads-intake-edu p {
    font-size: 0.95rem;
    line-height: 1.62;
    color: var(--clr-text);
    margin: 0 0 12px;
}
.ads-intake-note {
    font-size: 0.88rem !important;
    color: var(--clr-text-muted) !important;
    margin-bottom: 0 !important;
    padding-top: 8px;
    border-top: 1px solid var(--clr-border);
}
.ads-intake-edu--muted {
    background: rgba(248, 250, 252, 0.95);
    border-style: dashed;
}
.ads-intake-subhd {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.ads-intake-steps {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--clr-text);
}
.ads-intake-steps li {
    margin-bottom: 8px;
}
.ads-dk-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 4px;
}
.ads-dk-btn {
    font-family: var(--font-apple, system-ui, sans-serif);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 102, 204, 0.35);
    background: rgba(0, 102, 204, 0.08);
    color: var(--clr-link, #06c);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.ads-dk-btn:hover {
    background: rgba(0, 102, 204, 0.14);
    border-color: rgba(0, 102, 204, 0.55);
}
.ads-dk-btn--secondary {
    border-color: var(--clr-border);
    background: rgba(255, 255, 255, 0.9);
    color: var(--clr-text-muted);
}
.ads-dk-btn--secondary:hover {
    border-color: #cbd5e1;
    color: var(--clr-text);
}
.ads-intake-alert {
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.ads-intake-alert--ok {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}
.ads-intake-alert--err {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}
.ads-intake-form-wrap {
    margin-top: 0;
}
.ads-intake-form {
    position: relative;
}
.ads-fieldset {
    border: 1px solid var(--clr-border);
    border-radius: 14px;
    padding: 18px 18px 8px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.65);
}
.ads-fieldset legend {
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0 8px;
    letter-spacing: -0.02em;
}
.ads-help {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
    margin: 0 0 14px;
}
.ads-radio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}
.ads-radio-grid--stack {
    flex-direction: column;
    gap: 8px;
}
.ads-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
}
.ads-radio input {
    width: auto;
    margin: 0;
}
.ads-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.ads-submit-hint {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin: 16px 0 12px;
    line-height: 1.5;
}
.ads-field-hint {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin: -6px 0 10px;
}
.ads-intake-form .form-group > label + .ads-field-hint + textarea,
.ads-intake-form .form-group > label + .ads-field-hint + input {
    margin-top: 0;
}
