@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    color-scheme: dark;
    --bg: #0b1120;
    --bg-soft: #0f172a;
    --panel: #1e293b;
    --panel-strong: #334155;
    /* Primary accent: sky blue — single source of truth */
    --accent: #38bdf8;
    --accent-deep: #0ea5e9;
    --accent-light: #7dd3fc;
    --line: rgba(56, 189, 248, 0.12);
    --muted: #94a3b8;
    --text: #f8fafc;
    /* Legacy aliases — kept for backward compat with any remaining references */
    --gold: #38bdf8;
    --gold-glow: rgba(56, 189, 248, 0.16);
    --copper: #0ea5e9;
    --sky: #38bdf8;
    --indigo: #0ea5e9;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(circle at 12% 8%,  rgba(56, 189, 248, 0.09), transparent 38rem),
        radial-gradient(circle at 88% 18%, rgba(14, 165, 233, 0.06), transparent 35rem),
        radial-gradient(circle at 50% 80%, rgba(56, 189, 248, 0.04), transparent 30rem),
        var(--bg);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

/* Subtle Film Grain Texture Overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Decorative Gold Mesh Line overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.02) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 75%);
}

a,
button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6, .font-black {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
}

/* Floating Capsule Header Dock */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid rgba(56, 189, 248, 0.06);
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.site-header.scrolled .logo-img {
    width: 52px;
    height: 52px;
}

.site-header.scrolled .container {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.nav-link {
    color: #aeaaa2;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s ease;
    font-family: "Outfit", sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

/* Premium Buttons & Shimmers */
.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    border-radius: 8px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    color: #0b1120;
    background: linear-gradient(135deg, #7dd3fc, #38bdf8 52%, #0ea5e9);
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.45) 50%,
        transparent
    );
    transform: rotate(25deg);
    transition: none;
}

.btn-primary:hover::after {
    left: 140%;
    transition: left 0.8s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(56, 189, 248, 0.32);
}

.btn-secondary {
    color: #f8fafc;
    border: 1px solid rgba(56, 189, 248, 0.25);
    background: rgba(30, 41, 59, 0.65);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.5);
    background: rgba(56, 189, 248, 0.08);
}

.btn-ghost {
    color: #aeaaa2;
    border: 1px solid rgba(56, 189, 248, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.3);
    color: #f8fafc;
}

.btn-ghost.active {
    color: #0b1120;
    border-color: transparent;
    background: linear-gradient(135deg, #7dd3fc, #38bdf8 52%, #0ea5e9);
}

/* Luxury Card Spotlight Cursor Glow System */
.card,
.card-spotlight {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(51, 65, 85, 0.85), rgba(15, 23, 42, 0.9));
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.card-hover {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55), 0 0 24px rgba(56, 189, 248, 0.05);
}

/* spotlight mouse tracker border overlay (for JS cursor tracking) */
.card-spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(56, 189, 248, 0.05),
        transparent 45%
    );
    z-index: 0;
    pointer-events: none;
}

.card-spotlight::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1.2px;
    background: radial-gradient(
        350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(56, 189, 248, 0.32),
        rgba(14, 165, 233, 0.15) 30%,
        transparent 50%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-spotlight:hover::after {
    opacity: 1;
}

.card-spotlight > * {
    position: relative;
    z-index: 2;
}

/* Gradient Fonts and Labels */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-light), var(--accent) 45%, var(--accent-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    color: #bae6fd;
    background: rgba(56, 189, 248, 0.06);
    font-size: 0.76rem;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Structural Styles */
.section {
    padding: 7rem 0;
}

.section-alt {
    background: rgba(15, 23, 42, 0.6);
    border-block: 1px solid rgba(56, 189, 248, 0.06);
}

.section-title {
    color: white;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.section-copy {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.78;
}

.stat-card {
    border-left: 2px solid var(--gold);
    padding: 1.1rem 1.35rem;
    background: rgba(30, 41, 59, 0.55);
    border-radius: 0 8px 8px 0;
}

.service-icon {
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--gold);
    background: rgba(56, 189, 248, 0.07);
    border: 1px solid rgba(56, 189, 248, 0.16);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 9.5rem 0 5rem;
    position: relative;
}

.hero-media {
    position: relative;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 5% -5% -5% 5%;
    z-index: -1;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.11);
    filter: blur(65px);
}

.mockup-frame {
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 14px;
    background: #0b1120;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.mockup-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Interactive Design Sandbox Showcase Widget */
.showcase-widget {
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: 16px;
    background: #0f172a;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.showcase-header {
    background: #1e293b;
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showcase-tabs {
    display: flex;
    gap: 0.5rem;
}

.showcase-tab {
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    color: #aeaaa2;
    cursor: pointer;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.showcase-tab:hover {
    color: white;
    background: rgba(255, 255, 255, 0.03);
}

.showcase-tab.active {
    color: var(--gold);
    background: rgba(56, 189, 248, 0.07);
    border-color: rgba(56, 189, 248, 0.16);
}

.showcase-body {
    position: relative;
    min-height: 380px;
    background: #0b1120;
}

.showcase-pane {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.98) translateY(5px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.showcase-pane.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

/* Service Blueprint Systems */
.services-visual {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 16px;
    padding: clamp(1.2rem, 3vw, 2.2rem);
    background:
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.15), transparent 15rem),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.1), transparent 15rem),
        linear-gradient(145deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.94));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.services-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 90%);
}

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

.services-visual-header,
.services-visual-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.services-visual-kicker,
.services-visual-footer p {
    margin: 0;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.services-visual-header h2 {
    margin-top: 0.35rem;
    max-width: 19rem;
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.05;
    font-weight: 900;
}

.services-visual-status {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    color: #f8fafc;
    background: rgba(56, 189, 248, 0.08);
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
}

.services-visual-status span {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
}

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

.services-visual-tile {
    min-height: 8.8rem;
    display: grid;
    align-content: space-between;
    border: 1px solid rgba(56, 189, 248, 0.12);
    border-radius: 12px;
    padding: 1.1rem;
    color: #bae6fd;
    background: rgba(15, 23, 42, 0.75);
    transition: border-color 0.22s ease, transform 0.22s ease;
}

.services-visual-tile:hover {
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-2px);
}

.services-visual-tile i {
    color: var(--gold);
}

.services-visual-tile span {
    color: white;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
}

.services-pipeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    border: 1px solid rgba(56, 189, 248, 0.12);
    border-radius: 12px;
    padding: 1.1rem;
    background: rgba(11, 17, 32, 0.45);
}

.services-pipeline div {
    display: grid;
    gap: 0.2rem;
}

.services-pipeline span {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 900;
}

.services-pipeline strong,
.services-visual-footer strong {
    color: white;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
}

.services-pipeline i {
    color: rgba(56, 189, 248, 0.6);
}

.services-visual-footer {
    margin-top: 1.1rem;
}

.services-visual-footer > div {
    flex: 1;
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    padding: 1.1rem;
    background: rgba(15, 23, 42, 0.6);
}

/* Portfolio & Case Studies */
.proof-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.project-card img {
    width: 100%;
    height: 15.5rem;
    object-fit: cover;
    border-bottom: 1px solid rgba(56, 189, 248, 0.08);
}

.project-card .project-body {
    padding: 1.45rem;
}

.case-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 9.5rem 0 5rem;
}

.case-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.case-meta-card {
    border: 1px solid rgba(56, 189, 248, 0.12);
    border-radius: 10px;
    padding: 1.1rem;
    background: rgba(30, 41, 59, 0.55);
}

.case-meta-card span {
    display: block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.case-meta-card strong {
    display: block;
    margin-top: 0.35rem;
    color: white;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
}

.case-showcase {
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 16px;
    background:
        radial-gradient(circle at 25% 15%, rgba(56, 189, 248, 0.15), transparent 16rem),
        rgba(15, 23, 42, 0.85);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.case-showcase img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10.5;
    object-fit: cover;
}

.case-study-card img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.case-impact {
    border-left: 2px solid var(--gold);
    padding: 1.1rem 1.35rem;
    background: rgba(30, 41, 59, 0.55);
    border-radius: 0 8px 8px 0;
}

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

.case-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid rgba(56, 189, 248, 0.12);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.75);
}

.case-long-copy {
    color: #cbd5e1;
    font-size: 1.06rem;
    line-height: 1.85;
}

.case-long-copy p + p {
    margin-top: 1.25rem;
}

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

.case-stat {
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 10px;
    padding: 1.15rem;
    background: rgba(15, 23, 42, 0.7);
}

.case-stat span {
    display: block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.case-stat strong {
    display: block;
    margin-top: 0.35rem;
    color: white;
    font-size: 1.12rem;
    font-weight: 900;
    font-family: "Outfit", sans-serif;
}

.case-process {
    counter-reset: process-step;
}

.case-process-card {
    position: relative;
    border: 1px solid rgba(56, 189, 248, 0.12);
    border-radius: 10px;
    padding: 1.35rem;
    background: rgba(15, 23, 42, 0.7);
}

.case-process-card::before {
    counter-increment: process-step;
    content: "0" counter(process-step);
    display: inline-flex;
    margin-bottom: 0.8rem;
    color: var(--gold);
    font-weight: 900;
    font-family: "Outfit", sans-serif;
}

.case-problem-card {
    border: 1px solid rgba(14, 165, 233, 0.22);
    border-radius: 10px;
    padding: 1.35rem;
    background: linear-gradient(145deg, rgba(14, 165, 233, 0.05), rgba(15, 23, 42, 0.75));
}

.case-solution-card {
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-radius: 10px;
    padding: 1.35rem;
    background: linear-gradient(145deg, rgba(56, 189, 248, 0.05), rgba(15, 23, 42, 0.75));
}

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

.case-phone-gallery img,
.case-prototype-gallery img {
    width: 100%;
    border: 1px solid rgba(56, 189, 248, 0.12);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.76);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.case-prototype-gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.case-wide-image {
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.18);
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.75);
}

.case-wide-image img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.case-faq {
    border: 1px solid rgba(56, 189, 248, 0.12);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.72);
}

.case-faq summary {
    cursor: pointer;
    padding: 1.2rem 1.35rem;
    color: white;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
}

.case-faq p {
    padding: 0 1.35rem 1.3rem;
    color: #cbd5e1;
    line-height: 1.72;
}

/* Custom Interactive Planner Styling */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.18);
    outline: none;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7dd3fc, #38bdf8);
    border: 2px solid #0b1120;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
    cursor: pointer;
    transition: transform 0.15s ease;
}
.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.18);
}
.selector-pill {
    cursor: pointer;
    border: 1px solid rgba(56, 189, 248, 0.14);
    border-radius: 8px;
    padding: 0.85rem 1.1rem;
    color: #aeaaa2;
    background: rgba(30, 41, 59, 0.65);
    transition: all 0.22s ease;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 600;
}
.selector-pill:hover {
    border-color: rgba(56, 189, 248, 0.35);
    background: rgba(56, 189, 248, 0.04);
    color: #f8fafc;
}
.selector-pill.active {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    color: white;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.08);
}

/* Standard Tags & Forms */
.tag {
    display: inline-flex;
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-radius: 999px;
    padding: 0.28rem 0.68rem;
    color: #bae6fd;
    background: rgba(56, 189, 248, 0.06);
    font-size: 0.76rem;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    letter-spacing: 0.02em;
}

.feature-list {
    display: grid;
    gap: 0.85rem;
}

.feature-list li {
    display: flex;
    gap: 0.75rem;
    color: #aeaaa2;
    line-height: 1.62;
}

.feature-list i {
    color: var(--gold);
    flex: 0 0 auto;
    margin-top: 0.18rem;
}

.audit-panel {
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(56, 189, 248, 0.06), rgba(14, 165, 233, 0.04)),
        rgba(15, 23, 42, 0.85);
}

.article-content {
    color: #aeaaa2;
    font-size: 1.06rem;
    line-height: 1.85;
}

.article-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.95rem;
    color: white;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    line-height: 1.15;
    font-weight: 900;
}

.article-content h3 {
    margin-top: 1.8rem;
    margin-bottom: 0.65rem;
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
}

.article-content p,
.article-content ul,
.article-content ol {
    margin-top: 1.1rem;
}

.article-content ul,
.article-content ol {
    padding-left: 1.35rem;
}

.article-content li {
    margin-top: 0.6rem;
}

.form-control {
    width: 100%;
    border: 1px solid rgba(56, 189, 248, 0.16);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    color: white;
    background: rgba(15, 23, 42, 0.78);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: rgba(56, 189, 248, 0.65);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.form-label {
    display: block;
    margin-bottom: 0.45rem;
    color: #aeaaa2;
    font-size: 0.88rem;
    font-weight: 700;
}

.footer-link {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Count-up stats */
.stat-number {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1.75rem;
    background: linear-gradient(160deg, rgba(51, 65, 85, 0.7), rgba(15, 23, 42, 0.9));
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    left: 1.25rem;
    font-size: 6rem;
    line-height: 1;
    color: rgba(56, 189, 248, 0.08);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.3);
}

.testimonial-text {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.35rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(56, 189, 248, 0.08);
}

.testimonial-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: #0b1120;
    flex-shrink: 0;
    border: 2px solid rgba(56, 189, 248, 0.3);
}

.testimonial-meta strong {
    display: block;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
}

.testimonial-meta span {
    color: var(--muted);
    font-size: 0.82rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.85rem;
}

.stars span {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Form success state */
.form-success {
    display: none;
    text-align: center;
    padding: 2.5rem 1.5rem;
    animation: fadeSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-success.visible {
    display: block;
}

.form-success-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.12);
    border: 2px solid rgba(56, 189, 248, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Showcase auto-rotate progress bar */
.showcase-progress {
    display: flex;
    gap: 4px;
    padding: 0.6rem 1.25rem;
    background: #111218;
    border-top: 1px solid rgba(56, 189, 248, 0.06);
}

.showcase-progress-dot {
    height: 2px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.15);
    flex: 1;
    overflow: hidden;
}

.showcase-progress-dot.active .showcase-progress-fill {
    width: 100%;
}

.showcase-progress-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s linear;
}

/* Media Queries */
@media (min-width: 768px) {
    .proof-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .site-header .container {
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
    }

    .logo-img {
        width: 54px;
        height: 54px;
    }

    .hero {
        min-height: auto;
        padding-top: 8rem;
    }

    .section {
        padding: 4.8rem 0;
    }

    .project-card img {
        height: 13.5rem;
    }

    .case-hero {
        min-height: auto;
        padding-top: 8rem;
    }

    .case-meta-grid,
    .case-gallery {
        grid-template-columns: 1fr;
    }

    .case-stat-strip,
    .case-phone-gallery,
    .case-prototype-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .services-visual-header,
    .services-visual-footer {
        flex-direction: column;
    }

    .services-pipeline {
        grid-template-columns: 1fr;
    }

    .services-pipeline i {
        justify-self: center;
        transform: rotate(90deg);
    }
    
    .showcase-header {
        flex-direction: column;
        gap: 0.85rem;
        align-items: center;
        text-align: center;
    }
}


/* --- New Footer Styling --- */
.site-footer {
    border-top: 1px solid rgba(56, 189, 248, 0.1);
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(12px);
    color: var(--muted);
}
.site-footer a {
    color: var(--muted);
    transition: color 0.2s ease;
}
.site-footer a:hover {
    color: var(--sky);
}
.site-footer .text-slate-400 {
    color: var(--muted);
}
.site-footer .text-slate-300 {
    color: var(--text);
}
.site-footer .border-slate-800,
.site-footer .border-slate-900 {
    border-color: rgba(56, 189, 248, 0.1);
}
