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

:root {
    --color-bg: #081B33;
    --color-bg-secondary: #0E2848;
    --color-card: #132F52;
    --color-accent: #18B6FF;
    --color-accent-hover: #37C5FF;
    --color-accent-secondary: #68D7FF;
    --color-heading: #FFFFFF;
    --color-body: #C7D3E0;
    --color-muted: #8FA4BC;
    --color-border: rgba(255, 255, 255, 0.08);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-max: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
}

html {
    scroll-behavior: auto;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-body);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Mobile notice — hidden on desktop */
.mobile-notice {
    display: none;
}

@media (max-width: 768px) {
    .mobile-notice {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
        padding: 8px 16px;
        font-size: 0.7rem;
        color: var(--color-muted);
        background: rgba(8, 27, 51, 0.95);
        border-bottom: 1px solid var(--color-border);
        z-index: 10001;
    }
}

/* Header — smooth flat to pill transition */
.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    width: min(90%, 1200px);
    transition: top 0.4s ease;
}

.header.scrolled {
    top: 16px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px var(--spacing-lg);
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: all 0.4s ease;
}

.header.scrolled .nav {
    background: rgba(14, 40, 72, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 9999px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-border);
    padding: 10px var(--spacing-lg);
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-heading);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-accent {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent);
}

/* Layer Scroll System */
#scroll-container {
    position: relative;
}

.layer::-webkit-scrollbar {
    width: 4px;
}

.layer::-webkit-scrollbar-track {
    background: transparent;
}

.layer::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.layer::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
}

.layer[data-units] {
    overflow-y: auto;
}

.layer > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.layer-content {
    will-change: opacity, transform;
}

.layer[data-bg="dark"] {
    background: #000;
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(24, 182, 255, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(104, 215, 255, 0.02) 0%, transparent 50%);
}

.layer.services-layer {
    background: transparent;
    border-bottom: none;
    overflow: hidden;
}

@media (max-width: 768px) {
    .layer.services-layer {
        overflow: hidden !important;
    }
}

.layer.services-layer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #000;
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(24, 182, 255, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(104, 215, 255, 0.02) 0%, transparent 50%);
    clip-path: polygon(0 0, 61% 0, 50% 100%, 0 100%);
    pointer-events: none;
}

.layer.services-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(8, 27, 51, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    clip-path: polygon(61% 0, 100% 0, 100% 100%, 50% 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.layer.services-layer.is-visible::after {
    opacity: 1;
}

.layer.services-layer > .container {
    position: relative;
    z-index: 1;
}

.layer[data-bg="slate"] {
    background: #11161E;
    background-image:
        radial-gradient(ellipse at 70% 20%, rgba(24, 182, 255, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 80%, rgba(104, 215, 255, 0.02) 0%, transparent 50%);
}

.layer[data-bg="light"] {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        inset 0 0 40px rgba(24, 182, 255, 0.04),
        0 0 40px rgba(24, 182, 255, 0.06);
}

.layer[data-bg="light"] .browse-heading {
    color: #0f1e33;
}

.layer[data-bg="light"] .browse-heading em {
    color: var(--color-accent);
}

.layer[data-bg="light"] .browse-desc {
    color: #4a5568;
}

.layer[data-bg="light"] .browse-card {
    background: #f5f7fa;
    border-color: rgba(0, 0, 0, 0.06);
}

.layer[data-bg="light"] .browse-card:hover {
    border-color: rgba(24, 182, 255, 0.3);
    box-shadow: 0 12px 40px rgba(24, 182, 255, 0.1);
}

.layer[data-bg="light"] .browse-card h3 {
    color: #0f1e33;
}

.layer[data-bg="light"] .browse-card p {
    color: #4a5568;
}

.layer[data-bg="light"] .browse-card:hover .browse-link {
    color: var(--color-accent-hover);
}

.layer[data-bg="light"] .browse-icon {
    background: rgba(24, 182, 255, 0.12);
    color: var(--color-accent);
}

.layer[data-bg="light"] .section-badge {
    background: rgba(24, 182, 255, 0.1);
    border-color: rgba(24, 182, 255, 0.25);
    color: var(--color-accent);
}

.layer[data-bg="light"] .page-heading {
    color: #0f1e33;
}

.layer[data-bg="light"] .page-heading em {
    color: var(--color-accent);
}

.layer[data-bg="light"] .page-text {
    color: #4a5568;
}

.layer[data-bg="light"] .page-stat-num {
    color: #0f1e33;
}

.layer[data-bg="light"] .page-stat-label {
    color: #6b7a8f;
}

.layer[data-bg="light"] .page-stats {
    border-top-color: rgba(0, 0, 0, 0.08);
}

.layer[data-bg="light"] .svc-cat-title {
    color: #0f1e33;
}

.layer[data-bg="light"] .svc-card {
    background: #f5f7fa;
    border-color: rgba(0, 0, 0, 0.06);
}

.layer[data-bg="light"] .svc-card:hover {
    border-color: rgba(24, 182, 255, 0.3);
    box-shadow: 0 8px 30px rgba(24, 182, 255, 0.08);
}

.layer[data-bg="light"] .svc-card-title {
    color: #0f1e33;
}

.layer[data-bg="light"] .svc-card-desc {
    color: #4a5568;
}

.layer[data-bg="light"] .svc-learn {
    color: var(--color-accent);
}

.layer[data-bg="light"] .svc-learn:hover {
    color: var(--color-accent-hover);
}

/* ================================
   Hero Section
   ================================ */
.hero-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    background-color: var(--color-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--color-body);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.hero-fixed .container {
    position: relative;
    z-index: 1;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* Glass card wrapping all content */
.hero-card {
    max-width: 600px;
    width: 100%;
    padding: 48px;
    background: rgba(8, 27, 51, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-top: -40px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-lg);
    padding: 7px 16px;
    background: rgba(24, 182, 255, 0.08);
    border: 1px solid rgba(24, 182, 255, 0.15);
    border-radius: 999px;
}

.hero-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Hero title */
.hero-title {
    margin-bottom: var(--spacing-md);
}

.hero-line {
    display: inline;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.04em;
    font-size: clamp(1.6rem, 3.8vw, 3rem);
}

.hero-line--sm {
    color: var(--color-heading);
}

.hero-line--gradient {
    color: var(--color-accent);
}

.hero-line--md {
    color: var(--color-body);
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* Description */
.hero-desc {
    font-size: 1.05rem;
    color: var(--color-body);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.hero-desc-em {
    color: inherit;
    font-weight: inherit;
}

/* Buttons */
.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 24px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.65s ease;
    pointer-events: none;
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-bg);
    border: 1px solid var(--color-accent);
}

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

.btn--ghost {
    background: transparent;
    color: var(--color-muted);
    border: 1px solid transparent;
    padding: 14px 8px;
    gap: 6px;
}

.btn--ghost:hover {
    color: var(--color-heading);
}

.btn-arrow {
    transition: transform 0.2s ease;
    display: inline-block;
}

.btn--ghost:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: 0;
}

/* Stats bar (no glass — inside the card) */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    padding: 20px 0 0;
    margin-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    width: 100%;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.hero-stat-num {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-heading);
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--color-border);
}



/* Hero fade-in entrance */
.hero-fixed .hero-card {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ================================
   About Section – Diagonal Image
   ================================ */
.about-section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
}

.about-text {
    max-width: 500px;
    padding: 40px 0;
    justify-self: end;
}

.about-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    padding: 5px 12px;
    border: 1px solid rgba(24, 182, 255, 0.25);
    border-radius: 999px;
    background: rgba(24, 182, 255, 0.08);
}

.about-heading {
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #0f1e33;
    margin-bottom: var(--spacing-sm);
}

.about-heading em {
    font-style: normal;
    color: var(--color-accent);
}

.about-desc {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.about-desc strong {
    color: #0f1e33;
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.about-card {
    text-align: left;
    padding: 20px 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    border-color: rgba(24, 182, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(24, 182, 255, 0.06);
}

.about-card-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.5;
    margin-bottom: var(--spacing-sm);
}

.about-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f1e33;
    margin-bottom: 6px;
}

.about-card p {
    font-size: 0.78rem;
    color: #6b7a8f;
    line-height: 1.5;
}

/* About visual — right column with image */
.about-visual {
    position: relative;
    overflow: hidden;
    display: flex;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

/* ================================
   Services Page – Card Grid
   ================================ */
.svc-section {
    max-width: 900px;
    margin: 0 auto;
}

.svc-category {
    margin-bottom: var(--spacing-xl);
}

.svc-cat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--color-border);
}

.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.svc-card {
    text-align: left;
    padding: 24px 22px;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    background: rgba(19, 47, 82, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-card:hover {
    border-color: rgba(24, 182, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(24, 182, 255, 0.08);
}

.svc-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 6px;
}

.svc-card-desc {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.svc-learn {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    cursor: pointer;
    transition: color 0.2s ease;
    font-family: inherit;
}

.svc-learn:hover {
    color: var(--color-accent-hover);
}

.svc-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.svc-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.svc-card-btn--contact {
    background: var(--color-accent);
    color: var(--color-bg);
    border: 1px solid var(--color-accent);
}

.svc-card-btn--contact:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

.svc-card-btn--wa {
    background: transparent;
    color: #25D366;
    border: 1px solid #25D366;
}

.svc-card-btn--wa:hover {
    background: #25D366;
    color: #fff;
}

.layer[data-bg="light"] .svc-card-btn--contact {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.layer[data-bg="light"] .svc-card-btn--contact:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

.layer[data-bg="light"] .svc-card-btn--wa {
    color: #25D366;
    border-color: #25D366;
}

.layer[data-bg="light"] .svc-card-btn--wa:hover {
    background: #25D366;
    color: #fff;
}

/* Modal */
.svc-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 20000;
    align-items: center;
    justify-content: center;
}

.svc-modal.open {
    display: flex;
}

.svc-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.svc-modal-box {
    position: relative;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 36px 32px;
    max-width: 520px;
    width: 90%;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.svc-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--color-muted);
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
    font-family: inherit;
}

.svc-modal-close:hover {
    color: var(--color-heading);
}

.svc-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    padding-right: 24px;
}

.svc-modal-body {
    font-size: 0.9rem;
    color: var(--color-body);
    line-height: 1.7;
}

/* ================================
   Services Section – Two-Column Layout
   ================================ */
.services-alt {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    height: 100%;
}

.services-alt > * {
    position: relative;
    z-index: 1;
}

.services-alt-text {
    max-width: 460px;
    padding: 20px 0;
    justify-self: end;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-alt-heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--color-heading);
    margin-bottom: var(--spacing-sm);
}

.services-alt-heading em {
    font-style: normal;
    color: var(--color-accent);
}

.services-alt-desc {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

/* Service tags / chips */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    font-size: 0.72rem;
    font-weight: 500;
    padding: 5px 13px;
    border-radius: 999px;
    background: rgba(24, 182, 255, 0.08);
    border: 1px solid rgba(24, 182, 255, 0.15);
    color: var(--color-body);
    transition: all 0.2s ease;
}

.service-tag:hover {
    background: rgba(24, 182, 255, 0.15);
    color: var(--color-heading);
}

/* Visual column — gradient diagonal */
.services-alt-visual {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 24px;
}


.services-alt-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-bg);
    background: var(--color-accent);
    border-radius: 24px;
    text-decoration: none;
    border: none;
    transition: background 0.25s ease;
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.services-alt-btn:hover {
    background: var(--color-accent-hover);
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    padding: 5px 14px;
    border: 1px solid rgba(24, 182, 255, 0.25);
    border-radius: 999px;
    background: rgba(24, 182, 255, 0.08);
}

/* ================================
   Subpage Hero
   ================================ */
.hero-sub {
    background: #000;
    background-size: cover;
    background-position: center;
}

/* ================================
   Hero Carousel (Homepage)
   ================================ */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.05);
}

.hero-carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Contact page hero background */
.contact-hero {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: #000;
    background-image: url('contact-bg.webp');
    background-size: cover;
    background-position: center;
}



.hero-card--sm {
    padding: 36px 44px;
}

/* ================================
   Page Body – slides from left
   ================================ */
.page-body {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    height: 100%;
}

.page-body-content {
    max-width: 500px;
    justify-self: end;
}

.page-visual {
    position: relative;
    overflow: hidden;
    display: flex;
}

.page-visual img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 0;
}

.page-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    padding: 5px 14px;
    border: 1px solid rgba(24, 182, 255, 0.25);
    border-radius: 999px;
    background: rgba(24, 182, 255, 0.08);
}

.page-heading {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--color-heading);
    margin-bottom: var(--spacing-md);
}

.page-heading em {
    font-style: normal;
    color: var(--color-accent);
}

.page-text {
    font-size: 1rem;
    color: var(--color-body);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto var(--spacing-lg);
}

.page-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.page-stat {
    text-align: center;
}

.page-stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-heading);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.page-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
}

/* Neon border on the about layer */
.layer[data-custom-bg] {
    border: none;
    justify-content: center;
    padding-top: 60px;
    box-shadow:
        inset 0 0 30px rgba(24, 182, 255, 0.06),
        0 0 30px rgba(24, 182, 255, 0.08);
    background: #f5f7fa;
    background-image:
        radial-gradient(ellipse at 20% 40%, rgba(24, 182, 255, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 60%, rgba(104, 215, 255, 0.04) 0%, transparent 50%);
}

.layer[data-custom-bg]::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(24, 182, 255, 0.15);
    border-radius: 0;
    pointer-events: none;
    z-index: 0;
    animation: neonPulse 3s ease-in-out infinite;
}

.layer[data-custom-bg] .layer-content {
    position: relative;
    z-index: 1;
}

@keyframes neonPulse {
    0%, 100% {
        border-color: rgba(24, 182, 255, 0.15);
        box-shadow: 0 0 8px rgba(24, 182, 255, 0.05);
    }
    50% {
        border-color: rgba(24, 182, 255, 0.35);
        box-shadow:
            0 0 20px rgba(24, 182, 255, 0.12),
            inset 0 0 20px rgba(24, 182, 255, 0.04);
    }
}

/* Non-layered pages fallback */
main {
    position: relative;
}

main > section,
footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-bg);
}

main > section > .container,
footer > .container {
    padding-top: 100px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-heading);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(8, 27, 51, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-heading);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-menu a:hover {
    color: var(--color-accent);
}

/* ================================
   Contact Page
   ================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(24,182,255,0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-heading);
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--color-body);
    text-decoration: none;
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--color-accent);
}

.contact-form-wrap {
    background: rgba(8, 27, 51, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--color-heading);
    background: rgba(255,255,255,0.06);
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255,255,255,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background: var(--color-accent);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease;
}

.contact-form .btn:hover {
    background: var(--color-accent-hover);
}

/* ================================
   Portfolio / Work Grid
   ================================ */
.folio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-bottom: 3rem;
}

.folio-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.75rem;
    border-radius: 16px;
    background: var(--color-card);
    border: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layer[data-bg="light"] .folio-card {
    background: #fff;
    border-color: #e8ecf1;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.layer[data-bg="light"] .folio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: var(--color-accent);
}

.folio-card-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    background: rgba(24,182,255,0.1);
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.layer[data-bg="light"] .folio-card-badge {
    background: rgba(24,182,255,0.1);
    color: var(--color-accent);
}

.folio-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1f2e;
    margin: 0;
    line-height: 1.3;
}

.folio-card-desc {
    font-size: 0.85rem;
    color: #5a6577;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}


/* ================================
   Pricing Grid
   ================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-bottom: 3rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layer[data-bg="light"] .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.pricing-card--featured {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px var(--color-accent);
}

.pricing-card--accent {
    border-color: var(--color-accent);
}

.pricing-header {
    padding: 1.75rem 1.75rem 1rem;
    border-bottom: 1px solid #f0f2f5;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1f2e;
    margin: 0 0 0.3rem;
}

.pricing-range {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 0.6rem;
}

.pricing-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
    background: rgba(24,182,255,0.1);
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.82rem;
    color: #5a6577;
    margin: 0;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 1rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.pricing-features li {
    font-size: 0.85rem;
    color: #3a4455;
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.6;
}

.pricing-card-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.75rem 1.75rem;
}

.pricing-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.2s ease;
    font-family: inherit;
    flex: 1;
}

.pricing-card-btn--cta {
    background: var(--color-accent);
    color: #fff;
    border: 1px solid var(--color-accent);
}

.pricing-card-btn--cta:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

.pricing-card-btn--wa {
    background: transparent;
    color: #25D366;
    border: 1px solid #25D366;
}

.pricing-card-btn--wa:hover {
    background: #25D366;
    color: #fff;
}

.folio-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.folio-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.folio-card-btn--visit {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.folio-card-btn--visit:hover {
    background: var(--color-accent);
    color: #fff;
}

.folio-card-btn--inquire {
    background: transparent;
    color: #0f1e33;
    border: 1px solid #0f1e33;
}

.folio-card-btn--inquire:hover {
    background: #0f1e33;
    color: #fff;
}

.folio-card-btn--wa {
    background: transparent;
    color: #25D366;
    border: 1px solid #25D366;
}

.folio-card-btn--wa:hover {
    background: #25D366;
    color: #fff;
}

/* ================================
   Browse Section – Link Cards
   ================================ */
.browse-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.browse-heading {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--color-heading);
    margin-bottom: calc(var(--spacing-sm) - 4px);
}

.browse-heading em {
    font-style: normal;
    color: var(--color-accent);
}

.browse-desc {
    font-size: 0.9rem;
    color: var(--color-muted);
    max-width: 500px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.6;
}

.browse-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.browse-card {
    text-align: left;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    background: rgba(19, 47, 82, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.browse-card:hover {
    border-color: rgba(24, 182, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(24, 182, 255, 0.1);
}

.browse-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(24, 182, 255, 0.1);
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}


.browse-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.browse-card p {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.browse-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    transition: color 0.2s ease;
}

.browse-card:hover .browse-link {
    color: var(--color-accent-hover);
}

/* ================================
   Footer
   ================================ */
.footer {
    background: rgba(8, 27, 51, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--color-border);
}

.footer .container {
    padding-top: 60px;
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-heading);
    text-decoration: none;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: var(--spacing-sm);
    transition: color 0.2s ease;
}

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

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    color: var(--color-muted);
    transition: all 0.2s ease;
    margin-bottom: 0;
}

.footer-social a:hover {
    color: var(--color-accent);
    border-color: rgba(24, 182, 255, 0.3);
    background: rgba(24, 182, 255, 0.06);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-sm);
    line-height: 1.5;
}

.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: var(--spacing-sm);
}

.footer-wa svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-wa-callout {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    border-radius: 14px;
    background: rgba(24,182,255,0.08);
    border: 1px solid rgba(24,182,255,0.2);
}

.footer-wa-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(24,182,255,0.15);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-wa-text {
    flex: 1;
}

.footer-wa-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 2px;
}

.footer-wa-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.5;
}

.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    border-radius: 100px;
    background: #25D366;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.footer-wa-btn:hover {
    background: #20bd5a;
    color: #fff;
}

/* Responsive — mobile: normal page flow, no scroll effects */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .nav {
        padding: 12px var(--spacing-md);
    }

    .header,
    .header.scrolled {
        top: 36px;
    }

    .header.scrolled .nav {
        padding: 8px var(--spacing-md);
    }

    /* === Disable fixed-position scroll system on mobile === */
    #scroll-container {
        height: auto !important;
    }

    .layer {
        position: relative !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
        transform: none !important;
        padding-top: 0 !important;
    }

    .layer > .container {
        flex: none !important;
        display: block !important;
        padding: 60px var(--spacing-lg);
    }

    .hero-fixed {
        position: relative;
        height: auto;
        min-height: 50vh;
        padding: 80px 0 40px;
    }

    /* === Hero sizing === */
    .hero-fixed .container {
        gap: 0;
    }

    .hero-card {
        max-width: 100%;
        padding: 20px 18px;
        border-radius: 16px;
        margin-top: 0;
    }

    .hero-line {
        font-size: clamp(1.1rem, 4.5vw, 1.6rem);
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
        margin-bottom: var(--spacing-sm);
    }

    .hero-title {
        margin-bottom: var(--spacing-sm);
    }

    .hero-desc {
        font-size: 0.8rem;
        margin-bottom: var(--spacing-sm);
        line-height: 1.5;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        border-radius: 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hero-stats {
        gap: var(--spacing-sm);
        padding: 12px 0 0;
        margin-top: var(--spacing-sm);
    }

    .hero-stat-num {
        font-size: 0.9rem;
    }

    .hero-stat-label {
        font-size: 0.55rem;
    }

    .hero-stat-divider {
        height: 24px;
    }

    /* === About section mobile — no background overlay, light theme === */
    .layer[data-custom-bg] {
        background: #f5f7fa !important;
        background-image: none !important;
        overflow: visible !important;
    }

    .layer[data-custom-bg]::before {
        display: none !important;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-text {
        max-width: 100%;
        padding: 0;
    }

    .about-heading {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        color: #0f1e33;
    }

    .about-heading em {
        color: var(--color-accent);
    }

    .about-desc {
        font-size: 0.9rem;
        color: #4a5568;
    }

    .about-desc strong {
        color: #0f1e33;
    }

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

    .about-card {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.06);
    }

    .about-card h3 {
        color: #0f1e33;
    }

    .about-card p {
        color: #6b7a8f;
    }

    .about-card-icon {
        background: var(--color-accent);
        opacity: 0.5;
    }

    .about-visual {
        display: block;
    }

    .about-visual img {
        clip-path: none;
        height: 240px;
        width: 100%;
        object-fit: cover;
        border-radius: 14px;
    }

    /* === Services section mobile === */
    .services-alt {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .services-alt-text {
        max-width: 100%;
        padding: 0;
        justify-self: auto;
    }

    .services-alt-visual {
        min-height: 180px;
        padding: 16px;
    }

    .services-alt-img {
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    }

    .services-alt-btn {
        font-size: 0.82rem;
        padding: 11px 22px;
    }

    /* === Services page mobile === */
    .svc-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .svc-card {
        padding: 18px 16px;
    }

    .svc-category {
        margin-bottom: var(--spacing-lg);
    }

    .svc-modal-box {
        padding: 28px 22px;
        max-width: 95%;
    }

    /* === Subpage body mobile === */
    .page-body {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .page-body-content {
        max-width: 100%;
        justify-self: auto;
    }

    .page-text {
        font-size: 0.9rem;
    }

    .page-stats {
        gap: var(--spacing-lg);
        flex-wrap: wrap;
    }

    .page-stat-num {
        font-size: 1.2rem;
    }

    .page-visual img {
        height: 220px;
        clip-path: none;
        border-radius: 12px;
    }

    /* === Contact page mobile === */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* === Portfolio / Work grid mobile === */
    .folio-grid {
        grid-template-columns: 1fr;
    }

    /* === Pricing grid mobile === */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* === Browse/Pricing-Work section mobile === */
    .browse-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .browse-card {
        padding: 20px 18px;
    }

    /* === Footer mobile === */
    .footer .container {
        padding-top: 40px;
        padding-bottom: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .footer-brand {
        text-align: center;
    }

    .footer-tagline {
        max-width: 100%;
        margin: 0 auto;
        font-size: 0.82rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4 {
        font-size: 0.8rem;
        margin-bottom: var(--spacing-sm);
    }

    .footer-col a {
        font-size: 0.82rem;
        margin-bottom: 6px;
    }

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

    .footer-copy {
        text-align: center;
        font-size: 0.7rem;
    }

    .footer-wa-callout {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .footer-wa-text p {
        font-size: 0.8rem;
    }

    .footer-wa-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.25rem;
    }

    /* === Contact hero mobile === */
    .contact-hero {
        position: relative;
        height: 40vh;
        z-index: 0;
    }
}
