/* ================================================================
   KDMat Agency — Premium Design System v2.0
   Ultra-modern creative redesign
   ================================================================ */

:root {
    --primary: #4f46e5;
    --primary-rgb: 79, 70, 229;
    --primary-dark: #3730a3;
    --secondary: #7c3aed;
    --secondary-rgb: 124, 58, 237;
    --accent: #f43f5e;
    --accent-rgb: 244, 63, 94;
    --gold: #f59e0b;
    --gold-rgb: 245, 158, 11;
    --wa-green: #25D366;
    --success: #10b981;
    --cyan: #06b6d4;
    --cyan-rgb: 6, 182, 212;

    --grad-1: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
    --grad-2: linear-gradient(135deg, #06b6d4 0%, #4f46e5 50%, #7c3aed 100%);
    --grad-3: linear-gradient(135deg, #f43f5e 0%, #f59e0b 100%);
    --grad-hero: linear-gradient(160deg, #0f0c29 0%, #1a1145 40%, #302b63 70%, #24243e 100%);
    --grad-mesh: radial-gradient(at 20% 80%, rgba(79, 70, 229, 0.3) 0%, transparent 50%),
        radial-gradient(at 80% 20%, rgba(124, 58, 237, 0.25) 0%, transparent 50%),
        radial-gradient(at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 60%);

    --bg: #fafbff;
    --bg-alt: #f0f1f8;
    --surface: rgba(255, 255, 255, 0.75);
    --surface-solid: #fff;
    --surface-hover: rgba(255, 255, 255, 0.95);

    --text: #0f0d23;
    --text-secondary: #5b5675;
    --text-light: #8e89a8;

    --border: rgba(200, 195, 230, 0.35);
    --border-light: rgba(255, 255, 255, 0.45);
    --border-glow: rgba(var(--primary-rgb), 0.25);

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 26px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 12px rgba(79, 70, 229, 0.04);
    --shadow-md: 0 8px 30px rgba(79, 70, 229, 0.08);
    --shadow-lg: 0 20px 60px rgba(79, 70, 229, 0.12);
    --shadow-glow: 0 8px 40px rgba(var(--primary-rgb), 0.18);
    --shadow-glow-accent: 0 8px 40px rgba(var(--accent-rgb), 0.18);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);

    --font: 'Cairo', 'Inter', sans-serif;
    --container: 1280px;
    --header-h: 80px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg);
    background-image:
        radial-gradient(ellipse at 10% 0%, rgba(var(--primary-rgb), 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 100%, rgba(var(--secondary-rgb), 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(var(--cyan-rgb), 0.03) 0%, transparent 60%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.admin-bar .site-header {
    top: 32px;
}

@media (max-width:782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary), var(--accent));
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    background: var(--primary);
    color: #fff;
    padding: .5rem 1rem;
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    top: 1rem;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 800px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.25;
    color: var(--text);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 700;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-2);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    border-radius: inherit;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 0;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(var(--primary-rgb), 0.45);
    color: #fff;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-secondary,
.btn-outline {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(var(--primary-rgb), 0.2);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: var(--text);
    border-color: #fff;
}

.btn-white:hover {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.btn-wa {
    background: var(--wa-green);
    border-color: var(--wa-green);
    color: #fff;
}

.btn-wa:hover {
    background: #1FB855;
    border-color: #1FB855;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, .3);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: .45rem 1.2rem;
    font-size: .82rem;
}

.btn-block {
    width: 100%;
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: var(--surface);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), transparent 40%, rgba(var(--secondary-rgb), 0.1));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: var(--surface-hover);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-glow);
}

.glass-card:hover::before {
    opacity: 1;
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: .3rem .85rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.badge-sm {
    padding: .2rem .6rem;
    font-size: .72rem;
}

.badge-price {
    background: #ECFDF5;
    color: #059669;
}

.badge-time {
    background: #FEF3C7;
    color: #B45309;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(0px);
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 30px rgba(var(--primary-rgb), 0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.desktop-nav .nav-list {
    list-style: none;
    display: flex;
    gap: .5rem;
    align-items: center;
}

.desktop-nav .nav-list li a {
    display: block;
    padding: .5rem .9rem;
    color: var(--text-secondary);
    font-size: .95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.desktop-nav .nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}

.desktop-nav .nav-list li a:hover,
.desktop-nav .nav-list li.current-menu-item a,
.desktop-nav .nav-list li.current_page_item a {
    color: var(--primary);
}

.desktop-nav .nav-list li a:hover::after,
.desktop-nav .nav-list li.current-menu-item a::after,
.desktop-nav .nav-list li.current_page_item a::after {
    width: 100%;
    left: 0;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===== SECTIONS ===== */
.site-main {
    padding-top: var(--header-h);
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header,
.section-title-wrap {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    padding: .5rem 1.6rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--secondary-rgb), 0.08));
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: .75rem;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    letter-spacing: 0.02em;
}

.section-title {
    font-weight: 900;
    color: var(--text);
    margin-bottom: .75rem;
    letter-spacing: -0.03em;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--grad-1);
    margin: .85rem auto 0;
    border-radius: 4px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 2.5rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--grad-hero);
    padding: 4rem 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2), transparent 60%);
    filter: blur(60px);
    animation: floatBlob 15s infinite ease-in-out;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.15), transparent 60%);
    filter: blur(60px);
    animation: floatBlob 12s infinite ease-in-out reverse;
}

.page-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.5);
}

.page-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumbs a:hover {
    color: #fff;
}

.page-hero .breadcrumbs .current {
    color: rgba(255, 255, 255, 0.9);
}

.page-hero .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.15);
}

.page-title {
    font-weight: 900;
    margin-bottom: .75rem;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -0.02em;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
}

.page-hero-count {
    margin-top: 1.25rem;
}

.page-hero-count span {
    display: inline-block;
    padding: .4rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    margin-bottom: 1rem;
    font-size: .85rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs .sep {
    margin: 0 .4rem;
}

/* ===== HOME HERO ===== */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-h) + 5rem);
    padding-bottom: 6rem;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--grad-hero);
    color: #fff;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-mesh);
    pointer-events: none;
    animation: meshMove 15s ease-in-out infinite alternate;
}

@keyframes meshMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
    z-index: 2;
}

.hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.25) 0%, rgba(var(--secondary-rgb), 0.2) 100%);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    animation: floatBlob 15s infinite ease-in-out;
}

.blob-1 {
    top: -150px;
    right: -100px;
}

.blob-2 {
    bottom: -100px;
    left: -150px;
    animation-delay: -7s;
    background: linear-gradient(180deg, rgba(var(--cyan-rgb), 0.2) 0%, rgba(var(--primary-rgb), 0.15) 100%);
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -60px) scale(1.15);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Hero floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    top: 60%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.hero-particles span:nth-child(2) {
    left: 30%;
    top: 80%;
    animation-delay: 1.5s;
    animation-duration: 9s;
    width: 3px;
    height: 3px;
}

.hero-particles span:nth-child(3) {
    left: 50%;
    top: 70%;
    animation-delay: 3s;
    animation-duration: 6s;
    width: 5px;
    height: 5px;
}

.hero-particles span:nth-child(4) {
    left: 70%;
    top: 90%;
    animation-delay: 0.5s;
    animation-duration: 10s;
}

.hero-particles span:nth-child(5) {
    left: 85%;
    top: 50%;
    animation-delay: 2s;
    animation-duration: 8s;
    width: 3px;
    height: 3px;
}

.hero-particles span:nth-child(6) {
    left: 20%;
    top: 40%;
    animation-delay: 4s;
    animation-duration: 7s;
    width: 6px;
    height: 6px;
    background: rgba(var(--cyan-rgb), 0.3);
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-200px) translateX(20px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 3.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 50%, #a5b4fc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    filter: drop-shadow(0 4px 20px rgba(var(--primary-rgb), 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-section .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.hero-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #fff, #a5b4fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .25rem;
    font-weight: 900;
}

.stat-item p {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

.services-grid-full {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.service-card {
    background: var(--surface);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-1);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--surface-hover);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-glow);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card-icon,
.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card-icon svg,
.service-icon-box svg {
    width: 32px;
    height: 32px;
}

.service-card-icon .service-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-icon-default {
    width: 32px;
    height: 32px;
}

.service-card:hover .service-card-icon,
.service-card:hover .service-icon-box {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}

.service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .6rem;
    color: var(--text);
}

.service-card-desc {
    font-size: .92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

.service-card-link,
.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: .88rem;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.service-link svg {
    transition: transform .3s;
}

.service-card:hover .service-link svg {
    transform: translateX(-4px);
}

.service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.service-card-top .service-icon-box {
    margin-bottom: 0;
}

.service-cat-badge {
    display: inline-block;
    padding: .25rem .75rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.08));
    color: var(--primary);
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    white-space: nowrap;
}

.service-card-meta {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .75rem;
}

.service-card-meta .badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.service-card-actions {
    display: flex;
    gap: .5rem;
    margin-top: 1.25rem;
}

.service-card-actions .btn-wa {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

/* Desktop: hide mobile-nav-extras */
.mobile-nav-extras {
    display: none;
}

/* ===== FILTER & SEARCH ===== */
.services-filter-wrap {
    margin-bottom: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.services-filter-wrap::-webkit-scrollbar {
    display: none;
}

.services-filter {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: .55rem 1.3rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: var(--surface-solid);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.04);
}

.filter-btn.active {
    background: var(--grad-1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3);
}

.filter-btn.active svg {
    stroke: #fff;
}

.services-search-wrap {
    margin-bottom: 2.5rem;
}

.services-search {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.services-search .search-icon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: .85rem 3rem .85rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-family: inherit;
    font-size: .95rem;
    background: var(--surface-solid);
    color: var(--text);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1), var(--shadow-md);
}

/* ===== PROCESS / WHY US ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
    counter-reset: step;
}

.process-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.step-number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-1);
    color: #fff;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.25);
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.process-step p {
    font-size: .88rem;
    color: var(--text-secondary);
}

/* ===== STATS ===== */
.stats-section {
    background: var(--grad-1);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: .92rem;
    opacity: .85;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.portfolio-grid-full {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-solid);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.portfolio-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    border-radius: 0;
}

.portfolio-item:hover .portfolio-thumb img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
}

.portfolio-title a {
    color: var(--text);
}

.portfolio-title a:hover {
    color: var(--primary);
}

.portfolio-cats {
    padding: 0 1.5rem 1.25rem;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
}

.cta-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: .75rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===== SINGLE SERVICE ===== */
.service-single-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}

.service-single-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.service-single-icon {
    width: 60px;
    height: 60px;
    color: var(--primary);
    flex-shrink: 0;
}

.service-single-icon svg {
    width: 60px;
    height: 60px;
}

.service-single-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.service-single-cats {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .25rem;
}

.service-single-summary {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-cover {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cover-img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.service-single-body {
    line-height: 1.8;
}

.service-single-body p {
    margin-bottom: 1.25rem;
}

.service-single-body h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.service-single-body h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 .75rem;
}

.service-single-body ul,
.service-single-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-single-body li {
    margin-bottom: .5rem;
}

.sidebar-card {
    background: var(--surface-solid);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.sticky-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-label {
    font-size: .88rem;
    color: var(--text-secondary);
}

.sidebar-value {
    font-weight: 700;
}

.price-value {
    color: var(--primary);
    font-size: 1.1rem;
}

.sidebar-card .btn {
    margin-top: 1.5rem;
}

.sidebar-contact {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.sidebar-contact p {
    font-size: .85rem;
    color: var(--text-secondary);
    margin-bottom: .5rem;
}

.sidebar-link {
    display: block;
    font-size: .88rem;
    color: var(--text-secondary);
    margin-bottom: .25rem;
}

.sidebar-link:hover {
    color: var(--primary);
}

/* ===== REQUEST SERVICE ===== */
.request-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.request-steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 25%;
    right: 25%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.request-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border);
    color: var(--text-light);
    border-radius: 50%;
    font-weight: 700;
    font-size: .9rem;
    transition: var(--transition);
}

.request-step.active .step-num {
    background: var(--grad-1);
    color: #fff;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.request-step.done .step-num {
    background: var(--success);
    color: #fff;
}

.step-text {
    font-size: .82rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.request-panel {
    max-width: 900px;
    margin: 0 auto;
}

.request-panel h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.request-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.request-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    background: var(--surface-solid);
}

.request-service-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    background: rgba(var(--primary-rgb), 0.04);
}

.request-service-card:has(input:checked) {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.06);
}

.request-card-icon {
    width: 36px;
    height: 36px;
    color: var(--text-secondary);
    margin-bottom: .5rem;
}

.request-card-icon svg {
    width: 36px;
    height: 36px;
}

.request-card-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
}

.request-card-check {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
}

.request-service-card:has(input:checked) .request-card-check {
    display: flex;
}

#selected-service-display {
    text-align: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .4rem;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: .75rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: .92rem;
    background: var(--surface-solid);
    color: var(--text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-shape-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-shape {
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    animation: float 6s ease-in-out infinite;
}

.about-shape-1 {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--primary-rgb), 0.05));
    grid-column: 1 / -1;
    aspect-ratio: 2/1;
}

.about-shape-2 {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    animation-delay: -2s;
}

.about-shape-3 {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
}

.value-card {
    background: var(--surface);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 48px;
    height: 48px;
}

.value-card h3 {
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.value-card p {
    font-size: .88rem;
    color: var(--text-secondary);
}

/* ===== CONTACT ===== */
.contact-grid {
    max-width: 960px;
    margin: 0 auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.contact-card {
    background: var(--surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.contact-card-icon {
    margin: 0 auto 1.25rem;
    color: var(--primary);
    width: 48px;
    height: 48px;
}

.contact-card-icon svg {
    width: 48px;
    height: 48px;
}

.contact-card-icon.wa-icon {
    color: var(--wa-green);
}

.contact-card h3 {
    margin-bottom: .5rem;
    font-size: 1.15rem;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: .95rem;
    margin-bottom: 1.25rem;
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: var(--surface-solid);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    text-align: inherit;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-chevron {
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--text-light);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

.blog-card {
    background: var(--surface-solid);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.blog-card-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
    border-radius: 0;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: .82rem;
    color: var(--text-light);
    margin-bottom: .5rem;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.blog-card-title a {
    color: var(--text);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: .88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.read-more {
    display: inline-block;
    margin-top: .75rem;
    font-size: .88rem;
    font-weight: 700;
    color: var(--primary);
}

/* ===== SINGLE POST ===== */
.post-header {
    margin-bottom: 2rem;
}

.post-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .88rem;
    color: var(--text-light);
    align-items: center;
}

.post-cats {
    display: flex;
    gap: .5rem;
}

.post-featured-image {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
}

.entry-content {
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.25rem;
}

.entry-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.entry-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 .75rem;
}

.entry-content ul,
.entry-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.entry-content li {
    margin-bottom: .5rem;
}

.entry-content img {
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.entry-content blockquote {
    border-inline-start: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
    color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(170deg, #0c0a1d 0%, #1a1045 50%, #0f0c29 100%);
    color: #c8c3e0;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(var(--primary-rgb), 0.15), transparent 60%);
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.08), transparent 60%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-title {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}

.footer-about p {
    font-size: .88rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: .5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    color: #a5a0c0;
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-link:hover {
    background: var(--grad-1);
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
    border-color: transparent;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: .6rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: .88rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: .75rem;
    align-items: center;
    margin-bottom: .75rem;
    font-size: .88rem;
}

.footer-contact a {
    color: #94a3b8;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--primary);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: .82rem;
    color: #475569;
}

/* ===== WHATSAPP FAB ===== */
.wa-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: var(--wa-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.wa-fab:hover {
    transform: scale(1.12);
    color: #fff;
    box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .4);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== ANIMATIONS ===== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .9s cubic-bezier(.16, 1, .3, 1) forwards;
}

.delay-1 {
    animation-delay: .2s;
}

.delay-2 {
    animation-delay: .4s;
}

.delay-3 {
    animation-delay: .6s;
}

.delay-4 {
    animation-delay: .8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.15);
    }

    50% {
        box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.3);
    }
}

/* Scroll reveal utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(.16, 1, .3, 1), transform 0.7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s cubic-bezier(.16, 1, .3, 1), transform 0.7s cubic-bezier(.16, 1, .3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ===== PAGINATION ===== */
.nav-links {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.nav-links .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--surface-solid);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
    background: var(--grad-1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
}

/* ===== EMPTY / NO RESULTS ===== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state h2 {
    margin-bottom: .75rem;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
}

.no-results p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ===== PREMIUM SERVICES EXPERIENCE ===== */
.section-tag-soft {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
}

.services-hero-premium,
.service-hero-premium {
    position: relative;
    overflow: hidden;
}

.services-hero-noise {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 100%);
    pointer-events: none;
}

.services-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
    animation: floatOrb 12s ease-in-out infinite;
}

.services-orb.orb-one {
    width: 320px;
    height: 320px;
    top: 8%;
    inset-inline-end: 8%;
    background: radial-gradient(circle, rgba(var(--cyan-rgb), 0.24) 0%, rgba(var(--secondary-rgb), 0.08) 45%, transparent 72%);
}

.services-orb.orb-two {
    width: 260px;
    height: 260px;
    bottom: -4rem;
    inset-inline-start: -3rem;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18) 0%, rgba(var(--gold-rgb), 0.08) 48%, transparent 70%);
    animation-delay: -4s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -18px, 0) scale(1.04);
    }
}

.services-hero-layout,
.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.services-hero-premium .page-title,
.service-hero-premium .service-single-title {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.services-hero-premium .page-subtitle,
.service-hero-summary {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
    line-height: 1.95;
    max-width: 46rem;
}

.services-hero-actions,
.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 2rem;
}

.services-hero-premium .btn-secondary,
.services-hero-premium .btn-outline,
.service-hero-premium .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.services-hero-premium .btn-secondary:hover,
.services-hero-premium .btn-outline:hover,
.service-hero-premium .btn-outline:hover {
    background: #fff;
    color: var(--primary);
}

.services-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.service-hero-stat {
    padding: 1rem 1.15rem;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.service-hero-stat strong {
    display: block;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: .35rem;
}

.service-hero-stat span {
    color: rgba(255, 255, 255, 0.66);
    font-size: .88rem;
}

.services-hero-showcase,
.service-hero-visual {
    position: relative;
}

.service-showcase-card,
.service-visual-card,
.service-benefit-card,
.services-experience-card,
.service-outline-card,
.service-insight-card,
.service-content-card,
.service-process-panel,
.service-sidebar-card {
    overflow: hidden;
    isolation: isolate;
}

.service-showcase-card::after,
.service-visual-card::after,
.service-benefit-card::after,
.services-experience-card::after,
.service-outline-card::after {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(var(--primary-rgb), 0.2) 0%, transparent 38%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
    z-index: 0;
}

.service-showcase-card:hover::after,
.service-visual-card:hover::after,
.service-benefit-card:hover::after,
.services-experience-card:hover::after,
.service-outline-card:hover::after {
    opacity: 1;
}

.service-showcase-card > *,
.service-visual-card > *,
.service-benefit-card > *,
.services-experience-card > *,
.service-outline-card > *,
.service-insight-card > *,
.service-content-card > *,
.service-process-panel > *,
.service-sidebar-card > * {
    position: relative;
    z-index: 1;
}

.service-showcase-card {
    padding: 1.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
        rgba(9, 11, 28, 0.4);
    border-color: rgba(255, 255, 255, 0.12);
}

.service-showcase-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.service-showcase-badge,
.service-showcase-cat {
    display: inline-flex;
    align-items: center;
    padding: .45rem .8rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
}

.service-showcase-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.service-showcase-cat {
    background: rgba(var(--cyan-rgb), 0.15);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-showcase-icon,
.service-visual-icon {
    width: 84px;
    height: 84px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    color: #fff;
    margin-bottom: 1.25rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.service-showcase-icon svg,
.service-visual-icon svg {
    width: 40px;
    height: 40px;
}

.service-showcase-card h2 {
    color: #fff;
    font-size: clamp(1.65rem, 2vw, 2.1rem);
    margin-bottom: .75rem;
}

.service-showcase-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
}

.service-showcase-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
    margin: 1.3rem 0;
}

.showcase-chip {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: .95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-chip strong {
    font-size: .74rem;
    color: rgba(255, 255, 255, 0.56);
}

.showcase-chip em {
    font-style: normal;
    color: #fff;
    font-weight: 700;
}

.service-showcase-points,
.service-card-points,
.service-visual-footer {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.service-showcase-points span,
.service-card-points span,
.service-visual-footer span {
    display: inline-flex;
    align-items: center;
    padding: .55rem .9rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
}

.service-showcase-points span,
.service-visual-footer span {
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.service-showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.4rem;
}

.services-page {
    position: relative;
}

.services-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    margin-top: -6rem;
    position: relative;
    z-index: 4;
}

.services-experience-card {
    padding: 1.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
}

.experience-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--secondary-rgb), 0.08));
    margin-bottom: 1rem;
}

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

.services-experience-card h3 {
    margin-bottom: .55rem;
    font-size: 1.2rem;
}

.services-experience-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: .94rem;
}

.services-discovery-panel {
    padding: 1.5rem;
    margin-top: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8));
}

.services-discovery-head,
.service-outline-head,
.service-content-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.services-panel-title,
.service-outline-head h2,
.service-content-head h2,
.service-process-head h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    margin-top: .4rem;
}

.services-results-count,
.service-outline-head p,
.service-content-head p {
    color: var(--text-secondary);
    font-size: .95rem;
    max-width: 24rem;
    text-align: start;
}

.services-discovery-panel .services-filter-wrap {
    margin: 1.35rem 0 1rem;
}

.services-discovery-panel .services-search-wrap {
    margin-bottom: 0;
}

.premium-services-grid {
    margin-top: 1.75rem;
}

.service-card-premium,
.service-card-preview {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.service-card-premium {
    min-height: 100%;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.84));
}

.service-card-glow {
    position: absolute;
    inset: -28%;
    background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(var(--primary-rgb), 0.22), transparent 38%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card-premium:hover .service-card-glow {
    opacity: 1;
}

.service-card-premium > *,
.service-card-preview > * {
    position: relative;
    z-index: 1;
}

.service-card-premium .service-card-top {
    margin-bottom: 1.25rem;
    align-items: center;
}

.service-card-index {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 800;
    color: var(--text-light);
    background: rgba(15, 13, 35, 0.04);
    border: 1px solid rgba(15, 13, 35, 0.04);
}

.service-card-premium .service-icon-box,
.service-card-preview .service-icon-box {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    margin-bottom: 1.15rem;
}

.service-card-premium .service-card-title,
.service-card-preview .service-card-title {
    font-size: 1.25rem;
    margin-bottom: .75rem;
}

.service-card-premium .service-card-title a,
.service-card-preview .service-card-title a {
    color: inherit;
}

.service-card-premium .service-card-title a:hover,
.service-card-preview .service-card-title a:hover {
    color: var(--primary);
}

.service-card-premium .service-card-desc,
.service-card-preview .service-card-desc {
    margin-bottom: 0;
}

.service-card-points {
    margin-top: 1.2rem;
}

.service-card-points span {
    background: rgba(var(--primary-rgb), 0.07);
    color: var(--text-secondary);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
}

.service-card-premium .service-card-meta {
    margin-top: 1.2rem;
}

.service-card-premium .service-card-actions,
.service-card-compact .service-card-actions {
    margin-top: auto;
    padding-top: 1.4rem;
}

.service-card-premium .service-card-actions .btn,
.service-card-compact .service-card-actions .btn {
    flex: 1;
}

.service-card-preview {
    padding: 2rem;
}

.service-card-preview .service-card-desc {
    flex: 1;
}

.no-results {
    padding: 2.8rem 2rem;
    margin-top: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
}

.no-results h3 {
    margin-bottom: .45rem;
}

.no-results-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 24px;
    margin: 0 auto 1rem;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
}

/* ===== SINGLE SERVICE PREMIUM ===== */
.service-hero-premium {
    background: var(--grad-hero);
    padding: calc(var(--header-h) + 2.5rem) 0 5rem;
}

.service-hero-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(var(--cyan-rgb), 0.18), transparent 32%),
        radial-gradient(circle at 82% 24%, rgba(var(--secondary-rgb), 0.24), transparent 30%),
        radial-gradient(circle at 52% 90%, rgba(var(--accent-rgb), 0.14), transparent 25%);
    pointer-events: none;
}

.service-hero-premium .breadcrumbs,
.service-hero-premium .breadcrumbs a,
.service-hero-premium .section-tag,
.service-hero-premium .badge {
    color: rgba(255, 255, 255, 0.88);
}

.service-hero-premium .badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.service-hero-summary {
    margin-top: 1rem;
}

.service-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.5rem;
}

.service-meta-pill {
    display: flex;
    flex-direction: column;
    gap: .22rem;
    min-width: 178px;
    padding: .95rem 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-meta-pill strong {
    font-size: .76rem;
    color: rgba(255, 255, 255, 0.56);
}

.service-meta-pill em {
    font-style: normal;
    font-weight: 700;
    color: #fff;
}

.service-hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
    margin-top: 1.5rem;
}

.service-point-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    padding: 1rem 1.1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-point-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: .92rem;
}

.service-point-check {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.service-point-check svg {
    width: 16px;
    height: 16px;
}

.service-visual-card {
    padding: 1.35rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
        rgba(10, 12, 28, 0.38);
    border-color: rgba(255, 255, 255, 0.12);
}

.service-floating-pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .65rem 1rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    animation: floatPill 8s ease-in-out infinite;
}

.service-floating-pill.pill-top {
    top: 1rem;
    inset-inline-end: 1rem;
}

.service-floating-pill.pill-bottom {
    bottom: 6.5rem;
    inset-inline-start: 1rem;
    animation-delay: -3s;
}

@keyframes floatPill {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-cover-premium {
    border-radius: calc(var(--radius-lg) - 4px);
    overflow: hidden;
    min-height: 360px;
    background: linear-gradient(160deg, rgba(var(--primary-rgb), 0.26), rgba(var(--secondary-rgb), 0.16), rgba(var(--cyan-rgb), 0.12));
}

.service-cover-premium .cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-visual-fallback {
    min-height: 360px;
    border-radius: calc(var(--radius-lg) - 4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(160deg, rgba(var(--primary-rgb), 0.26), rgba(var(--secondary-rgb), 0.18), rgba(var(--cyan-rgb), 0.12));
    padding: 2rem;
}

.service-visual-fallback-icon {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-bottom: 1.25rem;
}

.service-visual-fallback h2 {
    color: #fff;
    margin-bottom: .85rem;
}

.service-visual-fallback p {
    color: rgba(255, 255, 255, 0.76);
    margin: 0;
}

.service-visual-footer {
    margin-top: 1rem;
}

.single-service-premium {
    padding-top: 0;
}

.service-insight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: -3rem;
    position: relative;
    z-index: 4;
}

.service-insight-card {
    padding: 1.6rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86));
}

.service-insight-card span {
    color: var(--text-light);
    font-size: .78rem;
    font-weight: 700;
}

.service-insight-card strong {
    display: block;
    font-size: 1.45rem;
    margin: .55rem 0 .65rem;
}

.service-insight-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: .92rem;
}

.premium-service-layout {
    gap: 2rem;
    margin-top: 2rem;
}

.service-outline-card,
.service-content-card,
.service-process-panel,
.service-sidebar-card {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88));
}

.service-outline-links {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.4rem;
}

.service-outline-links a {
    display: inline-flex;
    align-items: center;
    padding: .8rem 1rem;
    border-radius: 999px;
    background: rgba(var(--primary-rgb), 0.07);
    color: var(--text);
    font-weight: 700;
    border: 1px solid rgba(var(--primary-rgb), 0.08);
}

.service-outline-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-benefit-card {
    padding: 1.45rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 247, 255, 0.88));
}

.service-benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--grad-1);
    color: #fff;
    font-weight: 800;
    margin-bottom: .9rem;
    box-shadow: 0 14px 30px rgba(var(--primary-rgb), 0.22);
}

.service-benefit-card p {
    margin: 0;
    color: var(--text);
    line-height: 1.8;
}

.service-content-head {
    margin-bottom: 1.45rem;
}

.service-single-body {
    font-size: 1.02rem;
    line-height: 1.95;
}

.service-single-body > *:first-child {
    margin-top: 0;
}

.service-single-body p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.service-single-body h2 {
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    margin: 2.2rem 0 1rem;
    color: var(--text);
}

.service-single-body h3 {
    font-size: 1.18rem;
    margin: 1.6rem 0 .75rem;
    color: var(--text);
}

.service-single-body ul,
.service-single-body ol {
    margin: 1rem 0 1.5rem;
    padding-inline-start: 1.2rem;
}

.service-single-body li {
    margin-bottom: .65rem;
    color: var(--text-secondary);
}

.service-single-body li::marker {
    color: var(--primary);
}

.service-single-body blockquote {
    margin: 1.5rem 0;
    padding: 1.2rem 1.35rem;
    border-radius: 22px;
    background: rgba(var(--primary-rgb), 0.05);
    border-inline-start: 4px solid var(--primary);
    color: var(--text);
}

.service-single-body a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.service-process-head {
    margin-bottom: 1.3rem;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-process-step {
    height: 100%;
    text-align: start;
    background: rgba(var(--primary-rgb), 0.03);
}

.service-sidebar-top {
    margin-bottom: 1rem;
}

.service-sidebar-top p,
.sidebar-contact p {
    color: var(--text-secondary);
    margin: 0;
}

.service-sidebar-card .sidebar-item {
    gap: 1rem;
}

.service-sidebar-list {
    display: grid;
    gap: .8rem;
    margin: 1.4rem 0;
}

.service-sidebar-list-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
}

.service-sidebar-list-item span {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-radius: 50%;
    margin-top: .45rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.service-sidebar-list-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: .9rem;
}

.service-sidebar-card .btn {
    margin-top: 0;
}

.service-sidebar-card .btn + .btn {
    margin-top: .75rem;
}

.service-card-compact {
    padding: 1.35rem;
}

.service-card-compact .service-card-top {
    margin-bottom: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-hero-layout,
    .service-hero-grid,
    .service-process-grid,
    .services-experience-grid,
    .service-insight-grid {
        grid-template-columns: 1fr;
    }

    .service-single-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-card {
        position: static;
    }

    .services-experience-grid {
        margin-top: -4rem;
    }

    .service-hero-points,
    .service-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile nav - hidden by default, shown on mobile */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(170deg, #0c0a1d 0%, #1a1045 50%, #0f0c29 100%);
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(.16, 1, .3, 1);
    z-index: 1050;
    display: none;
    flex-direction: column;
    padding: calc(var(--header-h) + 1.5rem) 2rem 2rem;
    overflow-y: auto;
    box-sizing: border-box;
}

.mobile-nav.open {
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-list li a {
    display: block;
    padding: 1.1rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li.current-menu-item a {
    color: #fff;
}

.mobile-nav .mobile-nav-extras {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav .mobile-nav-extras .btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-align: center;
}

.mobile-nav .mobile-nav-extras .btn-wa {
    background: var(--wa-green);
    color: #fff;
    border: none;
}

.mobile-nav .mobile-nav-contact {
    text-align: center;
    margin-top: .25rem;
}

.mobile-nav .mobile-nav-contact a {
    color: rgba(255, 255, 255, 0.45);
    font-size: .82rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

.mobile-nav .mobile-nav-contact a:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    .section {
        padding: 3.5rem 0;
    }

    .desktop-nav {
        display: none !important;
    }

    .mobile-nav {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1060;
    }

    .mobile-toggle.active span {
        background: #fff;
    }

    .header-cta {
        display: none;
    }

    .hero-section {
        padding-top: calc(var(--header-h) + 2rem);
        padding-bottom: 3rem;
        min-height: auto;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .services-hero-actions,
    .service-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .services-hero-stats,
    .service-hero-points,
    .service-benefits-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .services-experience-grid {
        margin-top: -3rem;
    }

    .services-discovery-head,
    .service-outline-head,
    .service-content-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-showcase-meta {
        grid-template-columns: 1fr;
    }

    .service-card-premium .service-card-actions,
    .service-card-compact .service-card-actions {
        flex-direction: column;
    }

    .service-floating-pill {
        position: static;
        margin-bottom: .8rem;
    }

    .service-cover-premium,
    .service-visual-fallback {
        min-height: 280px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .request-steps {
        gap: 1rem;
    }

    .request-steps::before {
        left: 15%;
        right: 15%;
    }

    .step-text {
        font-size: .72rem;
    }

    .request-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .services-grid,
    .services-grid-full {
        grid-template-columns: 1fr;
    }

    .service-meta-pill,
    .service-hero-stat {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid,
    .portfolio-grid-full {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .wa-fab {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .services-discovery-panel,
    .service-outline-card,
    .service-content-card,
    .service-process-panel,
    .service-sidebar-card,
    .service-insight-card,
    .services-experience-card {
        padding: 1.35rem;
    }

    .service-card-premium,
    .service-card-preview {
        padding: 1.25rem;
    }

    .service-hero-premium {
        padding-bottom: 4rem;
    }

    .service-hero-premium .service-single-title,
    .services-hero-premium .page-title {
        font-size: 2.2rem;
    }

    .service-single-cats,
    .service-outline-links {
        gap: .55rem;
    }
}
