/* ============================================================
   FisioPrime – Mobile-First Design System
   Primary: #3fbbc0 | Dark: #1a2332 | Accent: #f0a500
   Base: 320px | Breakpoints: 768px, 1024px, 1200px
   NO opacity property — uses RGBA / hex-alpha for transparency
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
    /* Brand + Neutral Color System */
    --fp-primary: #0ea5a7;
    --fp-primary-dark: #0b8f90;
    --fp-primary-deeper: #0a6f76;
    --fp-primary-light: #d9f5f5;
    --fp-primary-glass: #0ea5a719;
    --fp-accent: #f59e0b;
    --fp-accent-soft: #fff3dc;
    --fp-dark: #0f172a;
    --fp-dark-soft: #1e293b;
    --fp-slate-700: #334155;
    --fp-slate-600: #475569;
    --fp-slate-500: #64748b;
    --fp-slate-300: #cbd5e1;
    --fp-slate-200: #e2e8f0;
    --fp-slate-100: #f1f5f9;
    --fp-text: #1e293b;
    --fp-text-muted: #475569;
    --fp-text-light: #64748b;
    --fp-bg: #ffffff;
    --fp-bg-soft: #f8fafc;
    --fp-bg-section: #f3f8fa;
    --fp-border: #d7e4ea;
    --fp-card: #ffffff;

    /* Shadows */
    --fp-shadow-sm: 0 2px 8px #0f172a14;
    --fp-shadow-md: 0 10px 28px #0f172a1f;
    --fp-shadow-lg: 0 16px 42px #0f172a2b;
    --fp-shadow-primary: 0 8px 20px #0ea5a742;

    /* Radius */
    --fp-radius-sm: 12px;
    --fp-radius-md: 16px;
    --fp-radius-lg: 24px;
    --fp-radius-full: 9999px;

    /* Spacing */
    --fp-space-1: 4px;
    --fp-space-2: 8px;
    --fp-space-3: 12px;
    --fp-space-4: 16px;
    --fp-space-5: 20px;
    --fp-space-6: 24px;
    --fp-space-8: 32px;
    --fp-space-10: 40px;
    --fp-space-12: 48px;
    --fp-space-16: 64px;
    --fp-space-20: 80px;

    /* Backward-compatible aliases */
    --fp-space-2xs: var(--fp-space-1);
    --fp-space-xs: var(--fp-space-2);
    --fp-space-sm: var(--fp-space-3);
    --fp-space-md: var(--fp-space-4);
    --fp-space-lg: var(--fp-space-6);
    --fp-space-xl: var(--fp-space-8);
    --fp-space-2xl: var(--fp-space-12);
    --fp-space-3xl: var(--fp-space-16);
    --fp-space-4xl: var(--fp-space-20);

    /* Layout — mobile defaults */
    --fp-topbar-height: 0px;
    --fp-navbar-height: 56px;
    --fp-bottomnav-height: 96px;
    --fp-container-padding-inline: 1.5rem;

    /* Transition */
    --fp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Fluid Typography */
    --fp-fs-h1: clamp(2rem, 8vw, 3.5rem);
    --fp-fs-h2: clamp(1.5rem, 5vw, 2.375rem);
    --fp-fs-h3: clamp(1.125rem, 3vw, 1.5rem);
    --fp-fs-p: 1rem;
    --fp-fs-body: var(--fp-fs-p);
    --fp-fs-small: 0.875rem;
    --fp-fs-xs: 0.75rem;
}

/* ---------- Reset & Foundation ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.fp-landing {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--fp-text);
    background: var(--fp-bg);
    font-size: var(--fp-fs-p);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: var(--fp-navbar-height);
    padding-bottom: var(--fp-bottomnav-height);
}

h1,
h2,
h3 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--fp-dark);
    letter-spacing: -0.2px;
}

h1 {
    font-size: var(--fp-fs-h1);
    line-height: 1.2;
    font-weight: 800;
}

h2 {
    font-size: var(--fp-fs-h2);
    line-height: 1.28;
    font-weight: 800;
}

h3 {
    font-size: var(--fp-fs-h3);
    line-height: 1.36;
    font-weight: 700;
}

p {
    font-size: var(--fp-fs-p);
    line-height: 1.72;
}

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

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ---------- Utility ---------- */
.fp-container {
    width: 100%;
    padding: 0 var(--fp-container-padding-inline);
    margin: 0 auto;
}

.fp-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: var(--fp-radius-full);
    font-size: var(--fp-fs-xs);
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.fp-badge--primary {
    background: var(--fp-primary-glass);
    color: var(--fp-primary-dark);
}

.fp-badge--accent {
    background: var(--fp-accent-soft);
    color: #b07800;
}

.fp-section {
    padding: var(--fp-space-2xl) 0;
    position: relative;
}

.fp-section--alt {
    background: var(--fp-bg-section);
}

.fp-section--dark {
    background: linear-gradient(135deg, var(--fp-dark), var(--fp-dark-soft));
    color: #fff;
}

.fp-section__header {
    text-align: center;
    max-width: 42.5rem;
    margin: 0 auto var(--fp-space-xl);
}

.fp-section__header .fp-badge {
    margin-bottom: var(--fp-space-md);
}

.fp-section__header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fp-fs-h2);
    font-weight: 800;
    color: var(--fp-dark);
    line-height: 1.25;
    margin: 0 0 var(--fp-space-md);
    letter-spacing: -0.3px;
}

.fp-section--dark .fp-section__header h2 {
    color: #fff;
}

.fp-section__header p {
    font-size: var(--fp-fs-small);
    color: var(--fp-text-muted);
    margin: 0;
    line-height: 1.8;
}

.fp-section--dark .fp-section__header p {
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- Buttons ---------- */
.fp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--fp-space-2);
    padding: 0 20px;
    min-height: 48px;
    border-radius: var(--fp-radius-full);
    font-size: var(--fp-fs-small);
    font-weight: 700;
    text-decoration: none;
    transition: var(--fp-transition);
    border: 1px solid transparent;
    cursor: pointer;
    letter-spacing: 0.2px;
    font-family: inherit;
    line-height: 1.4;
    -webkit-tap-highlight-color: transparent;
}

.fp-btn--primary {
    background: linear-gradient(180deg, #10b8bb 0%, var(--fp-primary) 100%);
    color: #fff;
    box-shadow: 0 6px 16px #0ea5a740;
}

.fp-btn--primary:hover {
    background: var(--fp-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px #0ea5a74f;
    color: #fff;
}

.fp-btn--secondary {
    background: #ffffff10;
    color: #f8fafc;
    border-color: #e2e8f073;
    box-shadow: inset 0 0 0 1px #ffffff1a;
}

.fp-btn--secondary:hover {
    background: #ffffff1f;
    border-color: #ffffff8a;
    color: #ffffff;
}

.fp-btn--outline {
    background: transparent;
    color: var(--fp-primary);
    border-color: var(--fp-primary);
}

.fp-btn--outline:hover {
    background: var(--fp-primary);
    color: #fff;
    transform: translateY(-2px);
}

.fp-btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: #ffffff73;
}

.fp-btn--outline-white:hover {
    background: #ffffff26;
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.fp-btn--white {
    background: #fff;
    color: var(--fp-primary-dark);
    box-shadow: var(--fp-shadow-sm);
}

.fp-btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--fp-shadow-lg);
    color: var(--fp-primary-dark);
}

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

.fp-btn--dark:hover {
    background: var(--fp-dark-soft);
    transform: translateY(-2px);
    color: #fff;
}

.fp-btn--sm {
    padding: 0 16px;
    min-height: 44px;
    font-size: var(--fp-fs-xs);
}

.fp-btn--lg {
    padding: 0 24px;
    min-height: 52px;
    font-size: 1rem;
}

.fp-btn--hero {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
}

/* ---------- Topbar (hidden on mobile) ---------- */
.fp-topbar {
    display: none;
}

/* ---------- Navbar ---------- */
.fp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1090;
    background: #fffffff0;
    backdrop-filter: saturate(180%) blur(12px);
    box-shadow: 0 4px 20px #0f172a14;
    transition: box-shadow 0.2s ease;
    height: var(--fp-navbar-height);
    display: flex;
    align-items: center;
}

.fp-navbar.scrolled {
    box-shadow: 0 8px 24px #0f172a21;
}

.fp-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 var(--fp-container-padding-inline);
    margin: 0 auto;
}

.fp-navbar__logo {
    display: inline-flex;
    align-items: center;
    gap: var(--fp-space-2);
    text-decoration: none;
}

.fp-navbar__logo img {
    height: 2.25rem;
}

.fp-navbar__brand {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #128ea0;
}

/* Nav links — hidden on mobile */
.fp-navbar__menu {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fp-navbar__menu a {
    color: var(--fp-text);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--fp-fs-small);
    letter-spacing: 0.2px;
    transition: var(--fp-transition);
    position: relative;
    padding: 0.5rem 0;
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
}

.fp-navbar__menu a:hover {
    color: var(--fp-primary);
}

.fp-navbar__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fp-primary);
    transition: width 0.25s ease;
}

.fp-navbar__menu a:hover::after {
    width: 100%;
}

/* Nav actions — hidden on mobile */
.fp-navbar__actions {
    display: none;
    align-items: center;
    gap: 0.625rem;
}

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

.fp-navbar__actions .fp-btn--outline:hover {
    background: var(--fp-primary);
    border-color: var(--fp-primary);
    color: #fff;
}

/* Hamburger toggle */
.fp-navbar__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--fp-border);
    border-radius: 12px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    position: relative;
    z-index: 100;
    color: var(--fp-dark);
    font-size: 1.25rem;
    transition: var(--fp-transition);
    -webkit-tap-highlight-color: transparent;
}

.fp-navbar__toggle:hover {
    border-color: var(--fp-primary);
    color: var(--fp-primary);
    background: var(--fp-primary-glass);
}

.fp-navbar__toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: var(--fp-transition);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.fp-navbar__toggle span:nth-child(1) {
    top: 0.75rem;
}

.fp-navbar__toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.fp-navbar__toggle span:nth-child(3) {
    bottom: 0.75rem;
}

/* Animated hamburger → X */
.fp-navbar__toggle.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.fp-navbar__toggle.is-active span:nth-child(2) {
    transform: translate(-50%, -50%) scaleX(0);
}

.fp-navbar__toggle.is-active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* ---------- Off-Canvas Drawer (Mobile) ---------- */
.fp-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: #0f172ab3;
    visibility: hidden;
    will-change: visibility;
    transition: visibility 0s linear 0.35s;
    -webkit-tap-highlight-color: transparent;
}

.fp-drawer-backdrop.is-visible {
    visibility: visible;
    transition-delay: 0s;
}

.fp-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(85vw, 360px);
    z-index: 1250;
    background: #ffffff;
    box-shadow: -8px 0 32px #0f172a3d;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    will-change: transform;
    transition:
        transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
        visibility 0s linear 0.35s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.fp-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s, 0s;
}

.fp-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--fp-space-4) var(--fp-space-6);
    min-height: 56px;
    border-bottom: 1px solid var(--fp-border);
    flex-shrink: 0;
}

.fp-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border: none;
    border-radius: var(--fp-radius-sm);
    background: transparent;
    color: var(--fp-slate-500);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--fp-transition);
    -webkit-tap-highlight-color: transparent;
}

.fp-drawer__close:hover {
    background: var(--fp-slate-100);
    color: var(--fp-dark);
}

.fp-drawer__nav {
    flex: 1;
    padding: var(--fp-space-4) 0;
    overflow-y: auto;
}

.fp-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fp-drawer__link {
    display: flex;
    align-items: center;
    padding: var(--fp-space-3) var(--fp-space-6);
    min-height: 52px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--fp-text);
    text-decoration: none;
    letter-spacing: 0.1px;
    line-height: 1.4;
    transition:
        background 0.15s ease,
        color 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.fp-drawer__link:hover,
.fp-drawer__link:active {
    background: var(--fp-primary-glass);
    color: var(--fp-primary);
}

.fp-drawer__link--parent {
    color: var(--fp-slate-500);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    min-height: 40px;
    padding-top: var(--fp-space-6);
    padding-bottom: var(--fp-space-1);
    cursor: default;
}

.fp-drawer__link--parent:hover {
    background: transparent;
    color: var(--fp-slate-500);
}

.fp-drawer__sublist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fp-drawer__link--child {
    padding-left: calc(var(--fp-space-6) + var(--fp-space-4));
    font-size: 1rem;
    font-weight: 500;
    color: var(--fp-text-muted);
}

.fp-drawer__link--child:hover,
.fp-drawer__link--child:active {
    color: var(--fp-primary);
}

.fp-drawer__footer {
    display: flex;
    flex-direction: column;
    gap: var(--fp-space-3);
    padding: var(--fp-space-6);
    border-top: 1px solid var(--fp-border);
    flex-shrink: 0;
}

.fp-btn--block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

/* Body scroll lock when drawer is open */
body.fp-drawer-open {
    overflow: hidden;
    touch-action: none;
}

/* ---------- Bottom Navigation (Mobile-Only) ---------- */
.fp-bottomnav {
    position: fixed;
    left: var(--fp-container-padding-inline);
    right: var(--fp-container-padding-inline);
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    z-index: 1100;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    height: 72px;
    background: #f8fcfed6;
    backdrop-filter: blur(10px);
    border: 1px solid #dbe8ee;
    border-radius: 24px;
    box-shadow: 0 8px 28px #0f172a24;
    padding: 8px;
}

.fp-bottomnav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px;
    min-height: 56px;
    color: var(--fp-slate-500);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    letter-spacing: 0.1px;
}

.fp-bottomnav__icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fp-bottomnav__icon i {
    font-size: 24px;
    line-height: 1;
}

.fp-bottomnav__label {
    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
}

.fp-bottomnav__item.is-active,
.fp-bottomnav__item:active {
    color: var(--fp-primary);
}

.fp-bottomnav__item--booking {
    color: var(--fp-primary-deeper);
    gap: 2px;
}

.fp-bottomnav__icon--booking {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background: linear-gradient(180deg, #14c3c5 0%, var(--fp-primary) 100%);
    color: #ffffff;
    box-shadow: 0 10px 20px #0ea5a759;
    margin-top: -28px;
}

.fp-bottomnav__icon--booking i {
    font-size: 24px;
}

.fp-bottomnav__item--booking:active .fp-bottomnav__icon--booking,
.fp-bottomnav__item--booking.is-active .fp-bottomnav__icon--booking {
    background: var(--fp-primary-dark);
}

.fp-bottomnav__item--booking .fp-bottomnav__label {
    color: var(--fp-primary-deeper);
    font-weight: 700;
}

/* ---------- Hero ---------- */
.fp-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0b1f2c 0%, #0f3440 60%, #13495a 100%);
}

.fp-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.1) contrast(1.05) brightness(0.55);
}

.fp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #081621f2 0%, #0d2a3ec7 36%, #12384b8c 66%, #12384b2e 100%);
    z-index: 1;
}

.fp-hero::after {
    content: '';
    position: absolute;
    width: 37.5rem;
    height: 37.5rem;
    border-radius: 50%;
    background: radial-gradient(circle, #2dc6ca1f 0%, #2dc6ca00 72%);
    top: -12.5rem;
    right: -10rem;
    pointer-events: none;
    z-index: 1;
}

.fp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 72px 0 120px;
}

.fp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 9999px;
    background: #fff5d4;
    color: #a56600;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.fp-hero__title {
    color: #f8fafc;
    font-size: clamp(2rem, 9vw, 3.75rem);
    line-height: 1.2;
    margin: 0 0 16px;
    max-width: 16ch;
}

.fp-hero__lead {
    color: #e2ecf2;
    font-size: clamp(1rem, 4.2vw, 1.25rem);
    line-height: 1.72;
    margin: 0 0 24px;
    max-width: 46ch;
}

.fp-hero__cta {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

/* ---------- Trust Strip ---------- */
.fp-trust {
    padding: var(--fp-space-2xl) 0;
    background: #fff;
    border-bottom: 1px solid var(--fp-border);
}

.fp-trust__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--fp-space-lg);
    text-align: center;
}

.fp-trust__item {
    min-width: 0;
}

.fp-trust__number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--fp-primary-dark);
    line-height: 1.1;
}

.fp-trust__label {
    display: block;
    font-size: var(--fp-fs-xs);
    font-weight: 600;
    color: var(--fp-text-muted);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* ---------- About ---------- */
.fp-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fp-space-xl);
    align-items: center;
}

.fp-about__image {
    position: relative;
}

.fp-about__image img {
    border-radius: var(--fp-radius-lg);
    box-shadow: var(--fp-shadow-lg);
    width: 100%;
    object-fit: cover;
}

.fp-about__badge {
    position: absolute;
    bottom: -0.625rem;
    right: 0.625rem;
    background: var(--fp-primary);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: var(--fp-radius-md);
    box-shadow: var(--fp-shadow-primary);
    text-align: center;
    z-index: 2;
}

.fp-about__badge-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.fp-about__badge-text {
    font-size: 0.6875rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.fp-about__text .fp-badge {
    margin-bottom: var(--fp-space-md);
}

.fp-about__text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fp-fs-h2);
    font-weight: 800;
    color: var(--fp-dark);
    line-height: 1.25;
    margin: 0 0 1.25rem;
}

.fp-about__text>p {
    color: var(--fp-text-muted);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.fp-about__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fp-space-md);
    margin: 1.75rem 0 2rem;
}

.fp-about__highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--fp-primary-light);
    border-radius: var(--fp-radius-sm);
}

.fp-about__highlight i {
    color: var(--fp-primary);
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.fp-about__highlight strong {
    display: block;
    font-size: var(--fp-fs-small);
    font-weight: 700;
    color: var(--fp-dark);
    margin-bottom: 0.125rem;
}

.fp-about__highlight span {
    font-size: var(--fp-fs-xs);
    color: var(--fp-text-muted);
}

/* ---------- Services / Keunggulan ---------- */
.fp-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fp-space-lg);
}

.fp-service-card {
    background: var(--fp-card);
    border-radius: var(--fp-radius-lg);
    padding: 2rem 1.5rem;
    border: 1px solid var(--fp-border);
    transition: var(--fp-transition);
    position: relative;
    overflow: hidden;
}

.fp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--fp-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.fp-service-card:hover {
    transform: translateY(-0.375rem);
    box-shadow: var(--fp-shadow-lg);
    border-color: transparent;
}

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

.fp-service-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--fp-radius-md);
    background: var(--fp-primary-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--fp-space-lg);
    transition: var(--fp-transition);
}

.fp-service-card:hover .fp-service-card__icon {
    background: var(--fp-primary);
}

.fp-service-card__icon i {
    font-size: 1.5rem;
    color: var(--fp-primary);
    transition: var(--fp-transition);
}

.fp-service-card:hover .fp-service-card__icon i {
    color: #fff;
}

.fp-service-card h3 {
    font-size: var(--fp-fs-h3);
    font-weight: 700;
    color: var(--fp-dark);
    margin: 0 0 0.75rem;
}

.fp-service-card p {
    color: var(--fp-text-muted);
    font-size: var(--fp-fs-small);
    line-height: 1.7;
    margin: 0;
}

.fp-service-card__number {
    position: absolute;
    bottom: 0.875rem;
    right: 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--fp-primary-glass);
    line-height: 1;
    pointer-events: none;
}

/* ---------- CTA Banner ---------- */
.fp-cta {
    padding: var(--fp-space-2xl) 0;
    background: linear-gradient(135deg, var(--fp-primary-deeper) 0%, var(--fp-primary) 50%, var(--fp-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.fp-cta::before {
    content: '';
    position: absolute;
    width: 31.25rem;
    height: 31.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: -12.5rem;
    right: -7.5rem;
    pointer-events: none;
}

.fp-cta::after {
    content: '';
    position: absolute;
    width: 18.75rem;
    height: 18.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    bottom: -6.25rem;
    left: -5rem;
    pointer-events: none;
}

.fp-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--fp-space-xl);
}

.fp-cta__text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.fp-cta__text p {
    font-size: var(--fp-fs-body);
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.7;
    max-width: 33.75rem;
}

.fp-cta__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---------- Appointment Form ---------- */
.fp-appointment__form {
    max-width: 53.75rem;
    margin: 0 auto;
    background: var(--fp-card);
    border-radius: var(--fp-radius-lg);
    padding: 1.75rem 1.25rem;
    box-shadow: var(--fp-shadow-lg);
    border: 1px solid var(--fp-border);
}

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

.fp-form-group {
    display: flex;
    flex-direction: column;
}

.fp-form-group--full {
    grid-column: 1 / -1;
}

.fp-form-group label {
    font-size: var(--fp-fs-xs);
    font-weight: 700;
    color: var(--fp-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.fp-form-group input,
.fp-form-group textarea {
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--fp-border);
    border-radius: var(--fp-radius-sm);
    font-size: 1rem;
    color: var(--fp-text);
    transition: var(--fp-transition);
    font-family: inherit;
    background: var(--fp-bg-soft);
    width: 100%;
    min-height: 3rem;
}

.fp-form-group input:focus,
.fp-form-group textarea:focus {
    outline: none;
    border-color: var(--fp-primary);
    box-shadow: 0 0 0 0.25rem var(--fp-primary-glass);
    background: #fff;
}

.fp-form-group textarea {
    resize: vertical;
    min-height: 6.25rem;
}

.fp-form-submit {
    text-align: center;
    margin-top: 1.75rem;
}

/* ---------- Testimonials ---------- */
.fp-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fp-space-lg);
}

.fp-testimonial-card {
    background: var(--fp-card);
    border-radius: var(--fp-radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--fp-border);
    transition: var(--fp-transition);
    position: relative;
}

.fp-testimonial-card:hover {
    box-shadow: var(--fp-shadow-md);
    transform: translateY(-0.25rem);
}

.fp-testimonial-card__stars {
    color: var(--fp-accent);
    font-size: var(--fp-fs-small);
    letter-spacing: 2px;
    margin-bottom: var(--fp-space-md);
}

.fp-testimonial-card blockquote {
    font-size: var(--fp-fs-small);
    color: var(--fp-text);
    line-height: 1.8;
    margin: 0 0 var(--fp-space-lg);
    font-style: italic;
    padding-left: 0;
    border: none;
}

.fp-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border-top: 1px solid var(--fp-border);
    padding-top: 1.25rem;
}

.fp-testimonial-card__author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--fp-primary-light);
}

.fp-testimonial-card__author strong {
    display: block;
    font-weight: 700;
    color: var(--fp-dark);
    font-size: var(--fp-fs-small);
    line-height: 1.3;
}

.fp-testimonial-card__author span {
    font-size: var(--fp-fs-xs);
    color: var(--fp-text-muted);
}

/* ---------- Sponsors ---------- */
.fp-sponsors__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.fp-sponsor-item {
    width: 7.5rem;
    height: 5.5rem;
    background: var(--fp-card);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    transition: var(--fp-transition);
}

.fp-sponsor-item:hover {
    box-shadow: var(--fp-shadow-md);
    transform: translateY(-0.1875rem);
    border-color: var(--fp-primary);
}

.fp-sponsor-item img {
    max-width: 100%;
    max-height: 4rem;
    object-fit: contain;
    filter: grayscale(80%) brightness(0.85);
    transition: var(--fp-transition);
}

.fp-sponsor-item:hover img {
    filter: none;
}

/* ---------- FAQ ---------- */
.fp-faq__list {
    max-width: 48.75rem;
    margin: 0 auto;
}

.fp-faq__item {
    background: var(--fp-card);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-md);
    margin-bottom: 0.875rem;
    overflow: hidden;
    transition: var(--fp-transition);
}

.fp-faq__item:hover {
    border-color: var(--fp-primary);
}

.fp-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--fp-dark);
    font-size: var(--fp-fs-body);
    transition: var(--fp-transition);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    line-height: 1.5;
    min-height: 3rem;
}

.fp-faq__question:hover {
    color: var(--fp-primary);
}

.fp-faq__question i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
    color: var(--fp-primary);
    flex-shrink: 0;
}

.fp-faq__question[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.fp-faq__answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    color: var(--fp-text-muted);
    line-height: 1.8;
    font-size: var(--fp-fs-small);
}

/* ---------- Contact ---------- */
.fp-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--fp-space-lg);
    margin-bottom: var(--fp-space-xl);
}

.fp-contact-card {
    background: var(--fp-card);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--fp-transition);
}

.fp-contact-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--fp-shadow-md);
}

.fp-contact-card__icon {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background: var(--fp-primary-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.125rem;
    font-size: 1.5rem;
    color: var(--fp-primary);
}

.fp-contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fp-dark);
    margin: 0 0 0.5rem;
}

.fp-contact-card p {
    color: var(--fp-text-muted);
    font-size: var(--fp-fs-small);
    margin: 0;
    line-height: 1.6;
}

.fp-contact-card a {
    color: var(--fp-primary-dark);
    text-decoration: none;
    transition: var(--fp-transition);
}

.fp-contact-card a:hover {
    color: var(--fp-primary);
}

.fp-map {
    border-radius: var(--fp-radius-lg);
    overflow: hidden;
    box-shadow: var(--fp-shadow-md);
}

.fp-map iframe {
    display: block;
    width: 100%;
    height: 15rem;
    border: 0;
}

/* ---------- Footer ---------- */
.fp-footer {
    background: var(--fp-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: var(--fp-space-2xl) 0 0;
    margin-bottom: var(--fp-bottomnav-height);
}

.fp-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fp-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.fp-footer__logo img {
    height: 2.25rem;
    filter: brightness(0) invert(1);
}

.fp-footer__logo-text {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.2px;
}

.fp-footer__col p {
    font-size: var(--fp-fs-small);
    line-height: 1.8;
    margin: 0 0 1.25rem;
}

.fp-footer__social {
    display: flex;
    gap: 0.75rem;
}

.fp-footer__social a {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: var(--fp-transition);
    text-decoration: none;
}

.fp-footer__social a:hover {
    background: var(--fp-primary);
    transform: translateY(-2px);
}

.fp-footer__col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
}

.fp-footer__col ul li {
    margin-bottom: 0.625rem;
}

.fp-footer__col ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: var(--fp-fs-small);
    transition: var(--fp-transition);
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
}

.fp-footer__col ul a:hover {
    color: var(--fp-primary);
    padding-left: 0.25rem;
}

.fp-footer__bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.fp-footer__bottom p {
    font-size: var(--fp-fs-xs);
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* ---------- WhatsApp Float ---------- */
.fp-float-wa {
    position: fixed;
    bottom: calc(var(--fp-bottomnav-height) + 1rem);
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    min-height: 3.5rem;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 0.5rem 1.5625rem rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--fp-transition);
}

.fp-float-wa:hover {
    transform: scale(1.08);
    box-shadow: 0 0.75rem 2rem rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* ---------- Alerts ---------- */
.fp-alert {
    padding: 1rem 1.5rem;
    border-radius: var(--fp-radius-sm);
    font-size: var(--fp-fs-small);
    font-weight: 600;
    margin-bottom: 1.5rem;
    max-width: 53.75rem;
    margin-left: auto;
    margin-right: auto;
}

.fp-alert--success {
    background: #e6ffed;
    color: #1a7a3a;
    border: 1px solid #b4e6c4;
}

.fp-alert--error {
    background: #fff0f0;
    color: #a83232;
    border: 1px solid #f0c4c4;
}

/* ---------- Reveal Animation ---------- */
[data-fp-animate] {
    transform: translateY(1.875rem);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-fp-animate]:not(.fp-visible) {
    visibility: hidden;
}

[data-fp-animate].fp-visible {
    visibility: visible;
    transform: translateY(0);
}

/* ============================================================
   TABLET BREAKPOINT (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {
    :root {
        --fp-topbar-height: 2.625rem;
        --fp-navbar-height: 4.875rem;
        --fp-bottomnav-height: 0px;
    }

    body.fp-landing {
        padding-top: calc(var(--fp-topbar-height) + var(--fp-navbar-height));
        padding-bottom: 0;
    }

    .fp-container {
        padding: 0 1.5rem;
    }

    .fp-section {
        padding: var(--fp-space-3xl) 0;
    }

    .fp-section__header {
        margin-bottom: var(--fp-space-2xl);
    }

    .fp-section__header p {
        font-size: 1.0625rem;
    }

    /* Topbar — visible at tablet+ */
    .fp-topbar {
        display: flex;
        background: var(--fp-dark);
        color: rgba(255, 255, 255, 0.85);
        font-size: var(--fp-fs-xs);
        height: var(--fp-topbar-height);
        letter-spacing: 0.2px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1100;
        align-items: center;
    }

    .fp-topbar__inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3.5rem;
    }

    .fp-topbar__inner span {
        display: inline-flex;
        align-items: center;
        gap: 0.625rem;
        padding: 0 0.25rem;
    }

    .fp-topbar__inner span i {
        color: var(--fp-primary);
    }

    /* Navbar — full expansion */
    .fp-navbar {
        top: var(--fp-topbar-height);
        padding: 0.75rem 0;
        height: var(--fp-navbar-height);
    }

    .fp-navbar__inner {
        max-width: 75rem;
    }

    .fp-navbar__logo img {
        height: 2.75rem;
    }

    .fp-navbar__brand {
        font-size: 1.5rem;
    }

    .fp-navbar__toggle {
        display: none;
    }

    .fp-navbar__menu {
        display: flex;
    }

    .fp-navbar__actions {
        display: flex;
    }

    /* Drawer + backdrop — hidden at tablet+ */
    .fp-drawer,
    .fp-drawer-backdrop {
        display: none;
    }

    /* Bottom nav — hidden at tablet+ */
    .fp-bottomnav {
        display: none;
    }

    /* Hero */
    .fp-hero__content {
        padding: 10rem 0 6.25rem;
    }

    .fp-hero__cta {
        flex-direction: row;
    }

    .fp-btn--hero {
        width: auto;
        min-width: 224px;
    }

    /* Trust */
    .fp-trust__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3.5rem;
    }

    /* About */
    .fp-about__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .fp-about__badge {
        bottom: -1.25rem;
        right: -1.25rem;
        padding: 1.375rem 1.625rem;
    }

    .fp-about__badge-number {
        font-size: 1.875rem;
    }

    .fp-about__highlights {
        grid-template-columns: 1fr 1fr;
    }

    /* Services */
    .fp-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .fp-service-card {
        padding: 2.5rem 1.875rem;
    }

    .fp-service-card__icon {
        width: 4rem;
        height: 4rem;
    }

    .fp-service-card__icon i {
        font-size: 1.625rem;
    }

    /* CTA */
    .fp-cta {
        padding: 5rem 0;
    }

    .fp-cta__inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .fp-cta__actions {
        flex-shrink: 0;
        justify-content: flex-end;
    }

    /* Appointment Form */
    .fp-appointment__form {
        padding: 3rem;
    }

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

    /* Testimonials */
    .fp-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Sponsors */
    .fp-sponsors__grid {
        gap: 2.25rem;
    }

    .fp-sponsor-item {
        width: 9.375rem;
        height: 6.875rem;
        padding: 1rem;
    }

    /* FAQ */
    .fp-faq__question {
        padding: 1.375rem 1.75rem;
    }

    .fp-faq__answer {
        padding: 0 1.75rem 1.375rem;
    }

    /* Contact */
    .fp-contact__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fp-map iframe {
        height: 23.75rem;
    }

    /* Footer */
    .fp-footer {
        margin-bottom: 0;
    }

    .fp-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.25rem;
    }

    /* WhatsApp float */
    .fp-float-wa {
        bottom: 1.75rem;
        right: 1.75rem;
        width: 3.75rem;
        height: 3.75rem;
        font-size: 1.75rem;
    }
}

/* ============================================================
   DESKTOP BREAKPOINT (min-width: 1024px)
   ============================================================ */
@media (min-width: 1024px) {
    .fp-container {
        max-width: 75rem;
    }

    .fp-section {
        padding: var(--fp-space-4xl) 0;
    }

    .fp-section__header {
        margin-bottom: 3.75rem;
    }

    .fp-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fp-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fp-testimonial-card {
        padding: 2.25rem;
    }

    .fp-footer {
        padding: 5rem 0 0;
    }

    .fp-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
        padding-bottom: 3.75rem;
    }

    .fp-footer__logo-text {
        font-size: 2.25rem;
    }

    .fp-about__grid {
        gap: 5rem;
    }
}

/* ============================================================
   WIDE BREAKPOINT (min-width: 1200px)
   ============================================================ */
@media (min-width: 1200px) {
    .fp-hero__content p {
        font-size: 1.125rem;
    }

    .fp-cta__text h2 {
        font-size: 2rem;
    }

    .fp-appointment__form {
        padding: 3rem;
    }
}