/* ============================================
   JR FIBRA PLASMAR - LANDING PAGE
   Conversion-focused, trust-driven design
============================================ */

:root {
    /* Brand */
    --navy: #061B4F;
    --navy-dark: #04123A;
    --navy-darker: #020B26;
    --navy-light: #0D2B7A;
    --navy-medium: #1A3D9E;

    /* Accents */
    --silver: #B8C2D1;
    --silver-light: #DDE3ED;

    /* Surfaces */
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --gray-50: #F4F6F9;
    --gray-100: #E8ECF2;
    --gray-200: #D1D8E2;
    --gray-400: #8893A8;
    --gray-600: #4A5568;
    --gray-800: #1F2937;
    --ink: #0F172A;

    /* WhatsApp */
    --wa-green: #25D366;
    --wa-dark: #128C7E;

    /* Type */
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --container: 1240px;
    --pad-x: clamp(1.25rem, 4vw, 2.5rem);
    --section-y: clamp(4rem, 8vw, 6.5rem);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.10);
    --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.14);

    /* Easing */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul { list-style: none; }

::selection {
    background: var(--navy);
    color: var(--white);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

/* ============================================
   TYPOGRAPHY
============================================ */

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(6, 27, 79, 0.06);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--silver-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, 2.875rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--gray-600);
    max-width: 580px;
}

.accent {
    color: var(--navy-medium);
}

.accent-light {
    color: var(--silver-light);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header-center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BUTTONS
============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    border-radius: 10px;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.btn-primary {
    background: var(--wa-green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-primary:hover {
    background: var(--wa-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--navy);
    transform: translateY(-1px);
}

.btn-large {
    padding: 1.125rem 1.75rem;
    font-size: 1rem;
    border-radius: 12px;
}

.btn-xlarge {
    padding: 1.25rem 2rem;
    font-size: 1.0625rem;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-xlarge:hover {
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}

/* ============================================
   TOP BAR
============================================ */

.topbar {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4375rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.topbar-item svg {
    color: var(--silver);
    flex-shrink: 0;
}

.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
}

.topbar-cta-wrap {
    margin-left: auto;
}

.topbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4375rem;
    color: var(--wa-green);
    font-weight: 600;
    transition: color 0.2s var(--ease);
}

.topbar-cta:hover {
    color: var(--white);
}

/* ============================================
   NAVIGATION
============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s var(--ease);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: transparent;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--navy);
    transition: opacity 0.2s var(--ease);
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(6, 27, 79, 0.2), 0 0 0 1px rgba(6, 27, 79, 0.08);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-logo-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    color: var(--navy);
}

.nav-logo-sub {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--gray-600);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s var(--ease);
    position: relative;
    padding: 0.25rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--navy);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6875rem 1.25rem;
    background: var(--wa-green);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    transition: all 0.25s var(--ease);
}

.nav-cta:hover {
    background: var(--wa-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
============================================ */

.hero {
    position: relative;
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(3rem, 7vw, 4.5rem);
    color: var(--white);
    overflow: hidden;
    background:
        radial-gradient(ellipse at top right, rgba(45, 77, 160, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(10, 36, 102, 0.4) 0%, transparent 60%),
        linear-gradient(180deg, var(--navy-darker) 0%, var(--navy) 60%, var(--navy-dark) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 194, 209, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 194, 209, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-yacht-bg {
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

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

.hero-content {
    max-width: 760px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 1.75rem;
}

.hero-pill-dot {
    width: 6px;
    height: 6px;
    background: var(--wa-green);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.7);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 1.25rem;
    max-width: 800px;
}

.hero-title-highlight {
    color: var(--silver-light);
    position: relative;
    display: inline-block;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--wa-green), rgba(37, 211, 102, 0.3));
    border-radius: 2px;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 620px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-microcopy {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.hero-microcopy svg {
    color: var(--silver);
}

.hero-microcopy strong {
    color: var(--white);
    font-weight: 600;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 720px;
}

.hero-trust-item {
    padding: 1.125rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-trust-item strong {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-trust-direct strong {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--wa-green);
}

.hero-trust-item span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
    font-weight: 500;
}

/* ============================================
   ABOUT
============================================ */

.about {
    padding: var(--section-y) 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}

.about-lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.about-text strong,
.about-lead strong {
    color: var(--navy);
    font-weight: 700;
}

.about-checks {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin: 2rem 0;
}

.about-checks li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--gray-800);
    line-height: 1.5;
    font-weight: 500;
}

.about-checks li svg {
    color: var(--wa-green);
    flex-shrink: 0;
    margin-top: 1px;
    background: rgba(37, 211, 102, 0.12);
    padding: 3px;
    border-radius: 50%;
    width: 22px;
    height: 22px;
}

/* About Card */
.about-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--navy-medium), var(--navy));
}

.about-card-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(6, 27, 79, 0.25), 0 0 0 4px rgba(6, 27, 79, 0.06);
}

.about-card-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 1rem 0 1.5rem;
}

.about-card-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-card-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
}

.about-card-row strong {
    font-size: 0.9375rem;
    color: var(--navy);
    font-weight: 600;
}

.about-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: var(--wa-green);
    color: var(--white);
    border-radius: 12px;
    transition: all 0.25s var(--ease);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.about-card-cta:hover {
    background: var(--wa-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.about-card-cta-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 2px;
}

.about-card-cta strong {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.005em;
}

/* ============================================
   SERVICES
============================================ */

.services {
    padding: var(--section-y) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-card {
    position: relative;
    padding: 1.875rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--navy);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s var(--ease);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card:hover .service-icon {
    background: var(--navy-medium);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.015em;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wa-green);
    transition: gap 0.2s var(--ease);
}

.service-link:hover {
    gap: 0.625rem;
    color: var(--wa-dark);
}

.service-card-featured {
    background: var(--navy);
    border-color: var(--navy);
}

.service-card-featured h3 {
    color: var(--white);
}

.service-card-featured p {
    color: rgba(255, 255, 255, 0.75);
}

.service-card-featured .service-icon {
    background: rgba(255, 255, 255, 0.1);
}

.service-card-featured:hover {
    border-color: var(--navy-medium);
}

.service-card-featured:hover .service-icon {
    background: rgba(255, 255, 255, 0.15);
}

.service-card-featured .service-link {
    color: var(--silver-light);
}

.service-card-featured .service-link:hover {
    color: var(--white);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.625rem;
    background: var(--wa-green);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
}

.services-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.services-cta p {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy);
}

/* ============================================
   DIFFERENTIALS
============================================ */

.differentials {
    padding: var(--section-y) 0;
    background:
        radial-gradient(ellipse at top, rgba(45, 77, 160, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.differentials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 194, 209, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 194, 209, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

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

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.differential {
    padding: 1.875rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s var(--ease);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.differential:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.differential-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--silver-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s var(--ease);
}

.differential:hover .differential-icon {
    background: var(--wa-green);
    border-color: var(--wa-green);
    color: var(--white);
}

.differential h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.015em;
    margin-bottom: 0.5rem;
}

.differential p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   GALLERY
============================================ */

.gallery {
    padding: var(--section-y) 0;
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-md);
}

.gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s var(--ease);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 194, 209, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 194, 209, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    opacity: 0.3;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(2, 11, 38, 0.85) 100%);
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.gallery-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.gallery-placeholder svg {
    width: 70px;
    height: 70px;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    z-index: 2;
    color: var(--white);
}

.gallery-tag {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 0.5rem;
}

.gallery-info h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

/* Gallery CTA Card */
.gallery-cta-card {
    background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.gallery-cta-card::before,
.gallery-cta-card::after {
    display: none;
}

.gallery-cta-card svg {
    margin-bottom: 1rem;
    opacity: 0.95;
}

.gallery-cta-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-cta-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    max-width: 240px;
}

.gallery-cta-card .btn-primary {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.gallery-cta-card .btn-primary:hover {
    background: var(--off-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FINAL CTA
============================================ */

.cta-final {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0;
    color: var(--white);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(45, 77, 160, 0.5) 0%, transparent 70%),
        linear-gradient(180deg, var(--navy) 0%, var(--navy-darker) 100%);
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 194, 209, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 194, 209, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

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

.cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-eyebrow {
    display: inline-block;
    padding: 0.4375rem 1rem;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: var(--wa-green);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.cta-text {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text strong {
    color: var(--white);
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.25s var(--ease);
    text-align: left;
}

.cta-phone:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-phone svg {
    color: var(--wa-green);
    flex-shrink: 0;
}

.cta-phone span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1px;
}

.cta-phone strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    font-variant-numeric: tabular-nums;
}

/* ============================================
   FOOTER
============================================ */

.footer {
    background: var(--navy-darker);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-top: 1.25rem;
    max-width: 360px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.footer-logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.footer-logo strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.015em;
}

.footer-logo span {
    display: block;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 3px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.125rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col li,
.footer-col a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s var(--ease);
}

.footer-col li strong {
    color: var(--white);
    font-weight: 600;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   FLOATING WHATSAPP
============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 99;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.125rem 0.875rem 1rem;
    background: var(--wa-green);
    color: var(--white);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.25s var(--ease);
    font-size: 0.9375rem;
    font-weight: 600;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: var(--wa-green);
    opacity: 0.5;
    z-index: -1;
    animation: wa-pulse 2.5s ease-out infinite;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.15); opacity: 0; }
}

.whatsapp-float:hover {
    background: var(--wa-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-label {
    white-space: nowrap;
}

/* ============================================
   AOS ANIMATIONS
============================================ */

[data-aos] {
    opacity: 0;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-aos="fade-up"] { transform: translateY(24px); }
[data-aos="fade-down"] { transform: translateY(-20px); }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-right"] { transform: translateX(-24px); }

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.875rem;
    }

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

    .about-card {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .services-grid,
    .differentials-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .topbar {
        font-size: 0.75rem;
    }

    .topbar-inner {
        flex-wrap: wrap;
        gap: 0.5rem 0.875rem;
        justify-content: center;
    }

    .topbar-divider {
        display: none;
    }

    .topbar-cta-wrap {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        transition: right 0.35s var(--ease);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.25rem;
        font-family: var(--font-display);
        font-weight: 600;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-cta span {
        display: none;
    }

    .nav-cta {
        padding: 0.5rem;
        width: 38px;
        height: 38px;
    }

    .nav-logo-img {
        width: 48px;
        height: 48px;
    }

    .nav-logo-name {
        font-size: 1rem;
    }

    .nav-logo-sub {
        font-size: 0.625rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-microcopy {
        margin-bottom: 2rem;
    }

    .services-grid,
    .differentials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .services-cta {
        flex-direction: column;
        text-align: center;
    }

    .services-cta .btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .cta-buttons .btn-xlarge,
    .cta-phone {
        width: 100%;
        justify-content: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float-label {
        display: none;
    }

    .whatsapp-float {
        padding: 0.875rem;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }
}

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

    .service-card,
    .differential {
        padding: 1.5rem;
    }
}
