/* ==========================================================================
   Sınırsız Medya – Main Stylesheet
   ========================================================================== */

/* ----- Geomanist Font ----- */
@font-face {
    font-family: 'Geomanist';
    src: url('/fonts/geomanist/geomanist-book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geomanist';
    src: url('/fonts/geomanist/geomanist-regular.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geomanist';
    src: url('/fonts/geomanist/geomanist-medium.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geomanist';
    src: url('/fonts/geomanist/geomanist-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #2D2D2D;
    --primary-light: #505050;
    --primary-dark: #1A1A1A;
    --accent: #F59E0B;
    --accent-hover: #D97706;
    --gradient: linear-gradient(135deg, #2D2D2D 0%, #4A4A4A 100%);
    --gradient-hero: linear-gradient(160deg, #F5F5F5 0%, #ffffff 50%, #FAFAFA 100%);
    --text-dark: #1A1A1A;
    --text-body: #4B5563;
    --text-muted: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-card: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(45,45,45,0.10);
    --shadow-lg: 0 10px 40px rgba(45,45,45,0.15);
    --shadow-card: 0 8px 30px rgba(0,0,0,0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-base: 'Plus Jakarta Sans', 'Geomanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
    position: relative;
    min-height: 100%;
}

body {
    font-family: var(--font-base);
    color: var(--text-body);
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* T?m ?gelerin (Bootstrap bilesenleri dahil) Geomanist kullanmasini garanti et */
h1, h2, h3, h4, h5, h6,
p, a, span, div, li, label,
button, input, select, textarea,
.btn, .navbar, .nav-link, .dropdown-menu, .form-control, .form-select {
    font-family: var(--font-base);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

.section-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: #F0F0F0;
color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-badge i {
    font-size: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-title .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 48px;
}

/* ----- Navbar ----- */
.navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar-main.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 10px 0;
}

.navbar-main .navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-main .navbar-brand .brand-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
}

.brand-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-brand .brand-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.navbar-main .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
    color: var(--primary) !important;
}

.btn-cta {
    background: var(--gradient);
    color: #fff !important;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(45,45,45,0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45,45,45,0.4);
    color: #fff;
}

.btn-accent {
    background: linear-gradient(135deg, #765dce 0%, #9d7ce8 100%);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(118,93,206,0.22);
}

.btn-accent i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    font-size: 0.9rem;
    transition: transform .25s ease, background .25s ease;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #6b50c7 0%, #8f70df 100%);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(118,93,206,0.30);
    color: #fff !important;
}

.btn-accent:hover i {
    transform: translateX(3px);
    background: rgba(255,255,255,0.24);
}

.btn-accent:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(118,93,206,0.18), 0 12px 28px rgba(118,93,206,0.22);
}

.navbar-main .btn-accent {
    padding: 11px 22px;
    font-size: 0.9rem;
    box-shadow: 0 10px 24px rgba(118,93,206,0.20);
}

.navbar-main .btn-accent i {
    width: 22px;
    height: 22px;
    font-size: 0.82rem;
}

.btn-navbar-contact {
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 22px;
    border-radius: 999px;
    background: #111827;
    color: #fff !important;
    border: 1px solid rgba(17,24,39,0.08);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 12px 28px rgba(15,23,42,0.16);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-navbar-contact i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    font-size: 0.82rem;
    transition: transform .25s ease, background .25s ease;
}

.btn-navbar-contact:hover {
    background: #1F2937;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15,23,42,0.22);
}

.btn-navbar-contact:hover i {
    transform: translateX(3px);
    background: rgba(255,255,255,0.22);
}

.btn-navbar-contact-mobile {
    margin-left: auto;
    margin-right: 8px;
    padding: 8px 13px;
    font-size: 0.78rem;
    box-shadow: 0 10px 22px rgba(15,23,42,0.12);
}

@media (max-width: 991px) {
    .navbar-main {
        background: rgba(255,255,255,0.96);
        backdrop-filter: blur(12px);
        padding: 10px 0;
    }

    .navbar-main .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        border: 1px solid rgba(15,23,42,0.07);
        border-radius: 18px;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 18px 42px rgba(15,23,42,0.10);
    }

    .navbar-main .navbar-nav {
        gap: 4px;
    }

    .navbar-main .nav-link {
        text-align: center;
    }
}

/* ----- Hero Section ----- */
.hero-section {
    position: relative;
    min-height: auto;
    background: var(--gradient-hero);
    padding: 140px 0 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45,45,45,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .hero-welcome {
display: inline-flex;
align-items: center;
gap: 8px;
background: #F0F0F0;
color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    min-height: 80px;
}

.hero-content h1 .typed-text {
    color: var(--text-dark);
}

.hero-content h1 .cursor {
    display: inline-block;
    width: 3px;
    height: 3.5rem;
    background: #765dce;
    margin-left: 4px;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-content .hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
    margin: 0 auto 16px;
}

.hero-infinity-signature {
    width: min(100%, 310px);
    margin: 0 auto 26px;
    padding: 10px 16px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(15,23,42,0.055);
    box-shadow: 0 12px 28px rgba(15,23,42,0.045);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.hero-infinity-svg {
    width: 74px;
    height: 38px;
    overflow: visible;
    flex-shrink: 0;
}

.hero-infinity-path,
.hero-infinity-flow {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-infinity-path {
    stroke: url(#heroInfinityGradient);
    stroke-width: 18;
    stroke-dasharray: 960;
    stroke-dashoffset: 960;
    animation: heroDrawInfinity 2s cubic-bezier(.65,0,.35,1) .25s forwards, heroPulseInfinity 4.5s ease-in-out 2.25s infinite;
}

.hero-infinity-flow {
    stroke: rgba(118,93,206,0.13);
    stroke-width: 30;
    stroke-dasharray: 48 42;
    animation: heroFlowInfinity 4s linear infinite;
}

.hero-infinity-signature span {
    color: var(--text-dark);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

@keyframes heroDrawInfinity {
    to { stroke-dashoffset: 0; }
}

@keyframes heroFlowInfinity {
    to { stroke-dashoffset: -180; }
}

@keyframes heroPulseInfinity {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.035); }
}

/* Centered hero visual area */
.hero-visual-center {
    position: relative;
    margin: 40px auto 0;
    max-width: 720px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8B7FD9 0%, #9D8CE8 50%, #765dce 100%);
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    width: 850px;
    height: 850px;
    background: url('/sinirsiz-medya-background.png') no-repeat center center / contain;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.25;
}

.hero-main-visual {
    width: 100%;
    max-width: 620px;
    height: auto;
    margin: 0 auto;
    border-radius: 0;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 2;
    box-shadow: none;
    background: transparent;
}

.hero-main-visual-overlay {
    display: none;
}

.hero-main-img {
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
}

/* Floating cards around hero */
.floating-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 16px 20px;
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card.card-insights {
    top: 10%;
    left: -22%;
    min-width: 200px;
}

.floating-card.card-post-insight {
    top: 10%;
    right: -22%;
    min-width: 220px;
}

.floating-card.card-followers {
    bottom: 2%;
    left: -16%;
    min-width: 180px;
}

.floating-card.card-social {
    bottom: 2%;
    right: -16%;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.floating-card:nth-child(2) { animation-delay: -1.5s; }
.floating-card:nth-child(3) { animation-delay: -3s; }
.floating-card:nth-child(4) { animation-delay: -4.5s; }

.floating-card .fc-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.floating-card .fc-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.floating-card.card-followers .fc-value {
    font-size: 1.05rem;
    line-height: 1.1;
    white-space: nowrap;
}

.floating-card .fc-change {
    font-size: 0.75rem;
    color: #10B981;
    font-weight: 600;
}

.floating-card .fc-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-card .fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.fc-icon.purple { background: #F0F0F0; color: var(--primary); }
.fc-icon.blue { background: #EFF6FF; color: #3B82F6; }
.fc-icon.orange { background: #FFF7ED; color: #F59E0B; }

.hero-capability-grid {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.capability-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(118,93,206,0.08);
    color: #5F4BB8;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
}

.mini-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
    margin-top: 8px;
}

.mini-bar-chart .bar {
    width: 12px;
    background: #B0B0B0;
    border-radius: 3px 3px 0 0;
}

.mini-bar-chart .bar:nth-child(odd) { opacity: 0.95; }

.social-icons-row {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.service-icons-row {
    display: flex;
    gap: 8px;
    margin-top: 0;
}

.social-icons-row .si,
.service-icons-row .si {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.si.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.si.facebook { background: #1877F2; }
.si.tiktok { background: #010101; }
.si.twitter { background: #1DA1F2; }
.si.behance { background: #1769FF; }
.si.strategy { background: linear-gradient(135deg, #765dce, #9d7ce8); }
.si.design { background: linear-gradient(135deg, #F97316, #F59E0B); }
.si.web { background: linear-gradient(135deg, #0EA5E9, #2563EB); }
.si.code { background: linear-gradient(135deg, #111827, #4B5563); }
.si.content { background: linear-gradient(135deg, #10B981, #059669); }

/* Arrow decoration */
.hero-arrow {
    position: absolute;
    top: 8%;
    right: 30%;
    z-index: 3;
    width: 60px;
    opacity: 0.6;
}

/* Curved arrows between floating cards */
.hero-curved-arrow {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    width: 100px;
    height: auto;
    opacity: 0.7;
}

.hero-curved-arrow.arrow-left {
    left: 18%;
    top: 48%;
    transform: rotate(-15deg);
    animation: floatArrow 4s ease-in-out infinite;
}

.hero-curved-arrow.arrow-right {
    right: 16%;
    top: 28%;
    transform: rotate(20deg) scaleX(-1);
    animation: floatArrow 4s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes floatArrow {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--arrow-rotate, 0deg));
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-10px) rotate(var(--arrow-rotate, 0deg));
        opacity: 0.85;
    }
}

.hero-curved-arrow.arrow-left {
    --arrow-rotate: -15deg;
}

.hero-curved-arrow.arrow-right {
    --arrow-rotate: 20deg;
}

/* ----- Trusted Brands Section ----- */
.brands-strip {
    padding: 0 0 40px;
    background: #fff;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}

.brands-strip p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.brands-strip p .highlight {
    font-weight: 700;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: nowrap;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
}

.brand-logos:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brands-strip .container {
    overflow: hidden;
    position: relative;
}

.brand-logos-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.brand-logos .brand-logo {
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
    height: 64px;
    width: auto;
    cursor: pointer;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-logos .brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    animation-play-state: paused;
}

.brand-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    filter: grayscale(100%);
    opacity: 0.4;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    white-space: nowrap;
}

.brand-logo-text:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--primary);
}

/* ----- Services Section ----- */
.services-section {
    padding: clamp(80px, 8vw, 110px) 0;
    background: #F7F8FA;
    position: relative;
    overflow: hidden;
}

.services-section .container {
    max-width: 1080px;
    position: relative;
    z-index: 2;
}

.services-section::before,
.services-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.services-section::before {
    top: 40px;
    left: 50%;
    width: 520px;
    height: 220px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(118,93,206,0.08) 0%, transparent 68%);
}

.services-section::after {
    top: 105px;
    right: -160px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
}

.services-intro {
    position: relative;
    max-width: 760px;
    margin: 0 auto 46px;
    padding: 10px 20px 0;
}

.services-intro__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(15,23,42,0.055);
    box-shadow: 0 12px 28px rgba(15,23,42,0.045);
    color: var(--text-dark);
    font-size: 0.84rem;
    font-weight: 800;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
}

.services-intro__badge i {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #111827, #334155);
    color: #fff;
    font-size: 0.9rem;
}

.services-intro__title {
    font-size: clamp(2.3rem, 5vw, 4rem);
    letter-spacing: -0.06em;
    margin-bottom: 14px;
}

.services-intro__logo {
    height: clamp(34px, 4vw, 52px);
    width: auto;
    vertical-align: middle;
    margin: -5px 3px 0;
    filter: drop-shadow(0 8px 12px rgba(15,23,42,0.10));
}

.services-intro .section-subtitle {
    margin-bottom: 0;
    max-width: 650px;
    font-size: clamp(0.98rem, 1.4vw, 1.12rem);
}

.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15,23,42,0.035);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    height: 100%;
    min-height: 178px;
    position: relative;
    border: 1px solid rgba(15,23,42,0.055);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15,23,42,0.08);
    border-color: rgba(118,93,206,0.16);
}

.service-card:hover .sc-icon {
    transform: translateY(-3px);
}

.service-card:hover h3 {
    color: #765dce;
}

.service-card-body {
    padding: 32px 26px 30px;
    text-align: center;
}

.service-card .sc-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.service-card .sc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 22px;
    transition: transform .28s ease;
    box-shadow: 0 12px 26px rgba(15,23,42,0.08);
}

.service-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition);
}

.service-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* ----- Detail Sidebar CTA ----- */
.detail-sidebar-card {
    position: sticky;
    top: 100px;
    overflow: hidden;
    padding: 34px 30px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 85% 0%, rgba(118,93,206,0.16) 0%, transparent 36%),
        radial-gradient(circle at 0% 100%, rgba(14,165,233,0.10) 0%, transparent 34%),
        #fff;
    border: 1px solid rgba(15,23,42,0.07);
    box-shadow: 0 24px 60px rgba(15,23,42,0.09);
    text-align: left;
}

.detail-sidebar-card__glow {
    position: absolute;
    top: -110px;
    right: -110px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(118,93,206,0.12);
    filter: blur(2px);
    pointer-events: none;
}

.detail-sidebar-card__icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #765dce, #0EA5E9);
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 16px 34px rgba(118,93,206,0.24);
}

.detail-sidebar-card__eyebrow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(118,93,206,0.08);
    color: #765dce;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-sidebar-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.detail-sidebar-card p {
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 22px;
}

.detail-sidebar-card__features {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.detail-sidebar-card__features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.86rem;
    font-weight: 700;
}

.detail-sidebar-card__features i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16,185,129,0.10);
    color: #059669;
    font-size: 0.8rem;
}

.detail-sidebar-card__button {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ----- Home Selected Works Preview ----- */
.home-work-preview {
    margin-top: clamp(48px, 7vw, 80px);
}

.home-work-preview__head {
    max-width: 680px;
    margin: 0 auto 30px;
}

.home-work-preview__head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #765dce;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.home-work-preview__head span::before,
.home-work-preview__head span::after {
    content: '';
    width: 24px;
    height: 1px;
    background: rgba(118,93,206,0.35);
}

.home-work-preview__head p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.7;
    margin: 0;
}

.home-work-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2vw, 26px);
}

.home-work-card {
    display: block;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.055);
    border-radius: 18px;
    overflow: hidden;
    text-align: left;
    color: var(--text-dark);
    box-shadow: 0 14px 34px rgba(15,23,42,0.06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.home-work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 54px rgba(15,23,42,0.13);
    border-color: rgba(118,93,206,0.26);
    color: var(--text-dark);
}

.home-work-card__media {
    position: relative;
    aspect-ratio: 16 / 8.4;
    overflow: hidden;
    background: #F3F4F6;
}

.home-work-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 34%, rgba(0,0,0,0.34) 100%);
    pointer-events: none;
}

.home-work-card__media video,
.home-work-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}

.home-work-card:hover .home-work-card__media video,
.home-work-card:hover .home-work-card__media img {
    transform: scale(1.04);
}

.home-work-card__logo {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 3;
    min-width: 74px;
    height: 48px;
    padding: 8px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.home-work-card__logo img {
    max-width: 82px;
    max-height: 30px;
    object-fit: contain;
}

.home-work-card__body {
    padding: 20px 20px 22px;
}

.home-work-card__type {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(118,93,206,0.08);
    color: #765dce;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.home-work-card__title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.home-work-card h3 {
    font-size: 1.08rem;
    margin: 0;
}

.home-work-card__arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F3F0FF;
    color: #765dce;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.home-work-card:hover .home-work-card__arrow {
    transform: translate(3px, -3px);
    background: #765dce;
    color: #fff;
}

.home-work-card p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.8rem;
    margin: 0;
}

.home-work-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.home-work-card__tags span {
    display: inline-flex;
    align-items: center;
    padding: 6px 9px;
    border-radius: 999px;
    background: #F7F8FA;
    color: #6B7280;
    font-size: 0.68rem;
    font-weight: 700;
}

.home-work-preview__cta {
    margin-top: 30px;
}

/* ----- Home Blog Dropdown ----- */
.home-blog-section {
    padding: clamp(48px, 6vw, 76px) 0;
}

.home-blog-section .services-intro {
    margin-bottom: 24px;
}

.home-blog-dropdown {
    max-width: 860px;
    margin: 0 auto;
}

.home-blog-dropdown summary {
    width: fit-content;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(15,23,42,0.07);
    color: #6B7280;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    box-shadow: 0 10px 24px rgba(15,23,42,0.04);
    transition: color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-blog-dropdown summary::-webkit-details-marker {
    display: none;
}

.home-blog-dropdown summary:hover {
    color: #765dce;
    border-color: rgba(118,93,206,0.18);
    box-shadow: 0 14px 30px rgba(15,23,42,0.06);
}

.home-blog-dropdown summary i {
    font-size: 0.8rem;
    transition: transform .25s ease;
}

.home-blog-dropdown[open] summary i {
    transform: rotate(180deg);
}

.home-blog-dropdown__content {
    margin-top: 22px;
}

.home-blog-card {
    display: block;
    color: inherit;
    text-decoration: none;
    min-height: 140px;
    box-shadow: 0 8px 22px rgba(15,23,42,0.03);
}

.home-blog-card .service-card-body {
    padding: 24px 22px;
}

.home-blog-dropdown__cta {
    margin-top: 20px;
}

.home-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #765dce;
    font-size: 0.86rem;
    font-weight: 800;
}

.home-blog-link:hover {
    color: #5F4BB8;
}

/* ----- Work / Portfolio Section ----- */
.work-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.filter-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btns .filter-btn {
    background: #F3F4F6;
    border: none;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btns .filter-btn.active,
.filter-btns .filter-btn:hover {
    background: var(--gradient);
    color: #fff;
}

.work-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.work-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.work-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.work-card:hover img {
    transform: scale(1.08);
}

.work-card .work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(30,30,30,0.90) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-overlay h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.work-overlay p {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.work-overlay .btn-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.work-overlay .btn-view:hover {
    background: var(--accent);
    color: #fff;
}

/* Gallery Modal */
.modal-content {
    border-radius: var(--radius);
    border: none;
}

.modal-header {
    padding: 24px 32px;
}

.modal-body {
    padding: 20px 32px 32px;
    max-height: 70vh;
    overflow-y: auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.gallery-item img {
    transition: var(--transition);
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Image Preview Modal */
#imagePreviewModal .modal-dialog {
    max-width: 90vw;
}

#imagePreviewModal .modal-content {
    background: rgba(0, 0, 0, 0.95) !important;
}

#imagePreviewModal .modal-body {
    padding: 40px;
    max-height: none;
}

#imagePreviewModal .btn-close {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    padding: 12px;
    border-radius: 50%;
    filter: none;
}

#imagePreviewModal .btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.z-index-3 {
    z-index: 1060 !important;
}

/* ----- About Section ----- */
.about-section {
    padding: 100px 0;
    background: var(--bg-light);
}

/* ----- About Page Modern ----- */
.about-hero {
    position: relative;
    padding: 150px 0 72px;
    background: #F7F8FA;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -150px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118,93,206,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -220px;
    left: -150px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1080px;
}

.about-hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero__content h1 {
    font-size: clamp(2.15rem, 5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    margin-bottom: 18px;
}

.about-hero__content p {
    color: var(--text-muted);
    font-size: clamp(0.98rem, 1.4vw, 1.15rem);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.about-hero__summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 760px;
    margin: 42px auto 0;
}

.about-hero__summary > div {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.055);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(15,23,42,0.045);
}

.about-hero__summary strong {
    display: block;
    color: var(--text-dark);
    font-size: clamp(1.25rem, 2.5vw, 1.9rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.about-hero__summary span {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.about-story-modern,
.about-mv-section,
.about-stats-section,
.about-capabilities-section {
    padding: clamp(72px, 7vw, 100px) 0;
}

.about-story-modern,
.about-capabilities-section {
    background: #fff;
}

.about-mv-section,
.about-stats-section {
    background: #F7F8FA;
}

.about-story-modern .container,
.about-mv-section .container,
.about-stats-section .container,
.about-capabilities-section .container {
    max-width: 1080px;
}

.about-visual-card {
    position: relative;
    min-height: 420px;
    padding: clamp(28px, 4vw, 42px);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 45%, rgba(118,93,206,0.10) 0%, transparent 34%),
        radial-gradient(circle at 78% 30%, rgba(14,165,233,0.08) 0%, transparent 30%),
        #F7F8FA;
    border: 1px solid rgba(15,23,42,0.055);
    box-shadow: 0 14px 36px rgba(15,23,42,0.055);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-visual-card__orb {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118,93,206,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about-infinity-wrap {
    position: relative;
    z-index: 2;
    width: min(100%, 430px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.about-infinity-wrap::before,
.about-infinity-wrap::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-infinity-wrap::before {
    width: 210px;
    height: 210px;
    background: rgba(255,255,255,0.72);
    box-shadow: 0 24px 60px rgba(15,23,42,0.08);
    z-index: -1;
}

.about-infinity-wrap::after {
    width: 320px;
    height: 320px;
    border: 1px solid rgba(118,93,206,0.10);
    z-index: -2;
}

.about-infinity-svg {
    width: min(100%, 380px);
    height: auto;
    overflow: visible;
}

.about-infinity-path,
.about-infinity-glow {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-infinity-path {
    stroke: url(#aboutInfinityGradient);
    stroke-width: 14;
    stroke-dasharray: 960;
    stroke-dashoffset: 960;
    filter: drop-shadow(0 12px 22px rgba(118,93,206,0.18));
    animation: drawInfinity 2.1s cubic-bezier(.65,0,.35,1) forwards, pulseInfinity 4.2s ease-in-out 2.1s infinite;
}

.about-infinity-glow {
    stroke: rgba(118,93,206,0.14);
    stroke-width: 26;
    stroke-dasharray: 52 38;
    animation: flowInfinity 3.8s linear infinite;
}

.about-infinity-caption {
    text-align: center;
    padding: 16px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(15,23,42,0.055);
    box-shadow: 0 14px 32px rgba(15,23,42,0.06);
    backdrop-filter: blur(10px);
}

.about-infinity-caption strong,
.about-infinity-caption span {
    display: block;
}

.about-infinity-caption strong {
    color: var(--text-dark);
    font-size: 0.94rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.about-infinity-caption span {
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 600;
}

@keyframes drawInfinity {
    to { stroke-dashoffset: 0; }
}

@keyframes flowInfinity {
    to { stroke-dashoffset: -180; }
}

@keyframes pulseInfinity {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 12px 22px rgba(118,93,206,0.18)); }
    50% { transform: scale(1.018); filter: drop-shadow(0 16px 28px rgba(14,165,233,0.20)); }
}

.about-visual-card__logo {
    position: relative;
    z-index: 2;
    width: 170px;
    height: 108px;
    margin: 0 auto;
    border-radius: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 34px rgba(15,23,42,0.08);
}

.about-visual-card__logo img {
    max-width: 110px;
    max-height: 58px;
    object-fit: contain;
}

.about-visual-card__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.about-visual-card__grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.055);
    color: var(--text-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.about-section-head {
    max-width: 680px;
    margin: 0 auto 34px;
    text-align: center;
}

.about-section-head--left {
    text-align: left;
    margin-left: 0;
}

.about-section-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    margin-bottom: 12px;
}

.about-section-head p {
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

.about-timeline {
    position: relative;
    display: grid;
    gap: 18px;
    padding-left: 34px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 13px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(118,93,206,0.12), rgba(14,165,233,0.28), rgba(16,185,129,0.12));
}

.about-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 18px;
    align-items: start;
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.055);
    box-shadow: 0 12px 30px rgba(15,23,42,0.045);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.about-timeline__item::before {
    content: '';
    position: absolute;
    top: 27px;
    left: -29px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #765dce;
    box-shadow: 0 0 0 7px rgba(118,93,206,0.10);
}

.about-timeline__item::after {
    content: '';
    position: absolute;
    top: 33px;
    left: -15px;
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: rgba(118,93,206,0.20);
}

.about-timeline__item:hover {
    transform: translateX(5px);
    box-shadow: 0 18px 42px rgba(15,23,42,0.09);
    border-color: rgba(118,93,206,0.16);
}

.about-timeline__item:nth-child(2)::before {
    border-color: #0EA5E9;
    box-shadow: 0 0 0 7px rgba(14,165,233,0.10);
}

.about-timeline__item:nth-child(2)::after {
    background: rgba(14,165,233,0.22);
}

.about-timeline__item:nth-child(3)::before {
    border-color: #10B981;
    box-shadow: 0 0 0 7px rgba(16,185,129,0.10);
}

.about-timeline__item:nth-child(3)::after {
    background: rgba(16,185,129,0.22);
}

.about-timeline__item:nth-child(4)::before {
    border-color: #64748B;
    box-shadow: 0 0 0 7px rgba(100,116,139,0.10);
}

.about-timeline__item:nth-child(4)::after {
    background: rgba(100,116,139,0.22);
}

.about-timeline__item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 999px;
    background: rgba(118,93,206,0.08);
    color: #765dce;
    font-size: 0.76rem;
    font-weight: 800;
    align-self: start;
}

.about-timeline__item:nth-child(2) span {
    background: rgba(14,165,233,0.10);
    color: #0284C7;
}

.about-timeline__item:nth-child(3) span {
    background: rgba(16,185,129,0.10);
    color: #059669;
}

.about-timeline__item:nth-child(4) span {
    background: rgba(100,116,139,0.10);
    color: #475569;
}

.about-timeline__item h3 {
    font-size: 1rem;
    margin: 0 0 6px;
}

.about-timeline__item p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.88rem;
    margin: 0;
}

.about-info-card,
.about-capability-card,
.about-stat-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.055);
    box-shadow: 0 10px 28px rgba(15,23,42,0.035);
}

.about-info-card {
    height: 100%;
    padding: 36px;
    border-radius: 18px;
}

.about-info-card__icon,
.about-capability-card i {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #765dce;
    background: rgba(118,93,206,0.08);
    font-size: 1.3rem;
}

.about-info-card__icon--alt {
    color: #0EA5E9;
    background: rgba(14,165,233,0.10);
}

.about-info-card h3,
.about-capability-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.about-info-card p,
.about-capability-card p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.9rem;
    margin: 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-stat-card {
    border-radius: 16px;
    padding: 28px 18px;
    text-align: center;
}

.about-stat-card .stat-number {
    display: block;
    color: var(--text-dark);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1;
    margin-bottom: 9px;
    letter-spacing: -0.04em;
}

.about-stat-card .stat-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.about-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-capability-card {
    border-radius: 16px;
    padding: 28px 24px;
    text-align: left;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.about-capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15,23,42,0.08);
    border-color: rgba(118,93,206,0.16);
}

.about-capability-card i {
    margin-bottom: 18px;
}

.about-section .about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-section .stat-box {
    text-align: center;
    padding: 24px;
}

.story-section {
    position: relative;
    padding: clamp(80px, 8vw, 120px) 0;
    background: #FFFFFF;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 50%;
    width: min(92vw, 1180px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(15,23,42,0.08), transparent);
    pointer-events: none;
}

.story-section .section-badge {
    background: rgba(255,255,255,0.82);
    color: #111827;
    border: 1px solid rgba(15,23,42,0.065);
    box-shadow: 0 10px 24px rgba(15,23,42,0.045);
    backdrop-filter: blur(10px);
    padding: 8px 16px 8px 10px;
    gap: 10px;
}

.story-section .section-badge i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(118,93,206,0.08);
    color: #765dce;
    font-size: 0.9rem;
}

.story-section .section-title {
    max-width: 560px;
}

.story-section .section-title .highlight {
    background: linear-gradient(135deg, #765dce 0%, #111827 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-stats {
    margin-top: 10px;
}

.story-stats .stat-box {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(17,24,39,0.08);
    border-radius: 22px;
    padding: 26px 16px 22px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.05);
    backdrop-filter: blur(10px);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.story-stats .stat-box::before {
    content: '';
    position: absolute;
    top: 14px;
    right: 14px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0EA5E9;
    box-shadow: 0 0 0 6px rgba(14,165,233,0.12);
}

.story-stats .col-4:nth-child(2) .stat-box::before {
    background: #10B981;
    box-shadow: 0 0 0 6px rgba(16,185,129,0.12);
}

.story-stats .col-4:nth-child(3) .stat-box::before {
    background: #64748B;
    box-shadow: 0 0 0 6px rgba(100,116,139,0.12);
}

.story-stats .stat-box:hover {
    transform: translateY(-6px);
    border-color: rgba(17,24,39,0.16);
    box-shadow: 0 20px 42px rgba(15,23,42,0.10);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.story-stats .stat-number {
    color: #111827;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1;
    margin-bottom: 9px;
    letter-spacing: -0.04em;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.story-stats .stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #6B7280;
}

.story-capability-panel {
    position: relative;
    min-height: 420px;
    padding: clamp(24px, 4vw, 38px);
    border-radius: 20px;
    background: #F7F8FA;
    border: 1px solid rgba(15,23,42,0.055);
    box-shadow: 0 14px 36px rgba(15,23,42,0.055);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
}

.story-capability-panel::before {
    content: 'Dijital \00FC retim sistemi';
    position: relative;
    z-index: 2;
    width: fit-content;
    margin-bottom: 6px;
    padding: 7px 12px;
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 999px;
    color: #6B7280;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.story-capability-panel__glow {
    position: absolute;
    top: -130px;
    right: -130px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(118,93,206,0.10) 0%, transparent 66%);
    border-radius: 50%;
    pointer-events: none;
}

.story-capability-panel__glow::after {
    content: '';
    position: absolute;
    left: -260px;
    bottom: -260px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.story-capability-item {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.055);
    box-shadow: 0 10px 26px rgba(15,23,42,0.045);
    backdrop-filter: blur(10px);
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.story-capability-item:hover {
    transform: translateY(-4px);
    background: #fff;
    border-color: rgba(118,93,206,0.16);
}

.story-capability-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0EA5E9, #2563EB);
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 14px 26px rgba(37,99,235,0.24);
}

.story-capability-item:nth-of-type(3) .story-capability-icon {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 14px 26px rgba(16,185,129,0.24);
}

.story-capability-item:nth-of-type(4) .story-capability-icon {
    background: linear-gradient(135deg, #64748B, #334155);
    box-shadow: 0 14px 26px rgba(51,65,85,0.24);
}

.story-capability-item h3 {
    color: var(--text-dark);
    font-size: 1.02rem;
    margin: 0 0 6px;
}

.story-capability-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.team-card {
    text-align: center;
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-card .team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid #E8E8E8;
}

.team-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ----- Brands Page ----- */
.brands-hero {
    position: relative;
    padding: 150px 0 70px;
    background: #F7F8FA;
    overflow: hidden;
}

.brands-hero::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118,93,206,0.09) 0%, transparent 70%);
    pointer-events: none;
}

.brands-hero::after {
    content: '';
    position: absolute;
    bottom: -220px;
    left: -160px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.brands-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1080px;
}

.brands-hero__content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.brands-hero__content h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    margin-bottom: 18px;
}

.brands-hero__content p {
    color: var(--text-muted);
    font-size: clamp(0.98rem, 1.4vw, 1.15rem);
    line-height: 1.8;
    max-width: 660px;
    margin: 0 auto;
}

.brands-hero__summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 520px;
    margin: 42px auto 0;
}

.brands-hero__summary > div {
    background: #fff;
    border: 1px solid rgba(15,23,42,0.055);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(15,23,42,0.045);
}

.brands-hero__summary strong {
    display: block;
    color: var(--text-dark);
    font-size: clamp(1.25rem, 2.5vw, 1.9rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.brands-hero__summary span {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.brands-section {
    padding: 100px 0;
    background: #fff;
}

.brands-section--modern {
    padding: clamp(64px, 7vw, 96px) 0 clamp(90px, 8vw, 120px);
    background: #fff;
}

.brands-section--modern .container {
    max-width: 1120px;
}

.brands-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.brand-logo-card {
    position: relative;
    min-height: 150px;
    padding: 34px 28px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.055);
    box-shadow: 0 10px 28px rgba(15,23,42,0.035);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.brand-logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(118,93,206,0.07), transparent 55%);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.brand-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(15,23,42,0.09);
    border-color: rgba(118,93,206,0.18);
    background: #FCFCFF;
}

.brand-logo-card:hover::before {
    opacity: 1;
}

.brand-logo-card .brand-card-logo {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.62;
    transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

.brand-logo-card:hover .brand-card-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

.brands-empty-state {
    background: #F7F8FA;
    border: 1px solid rgba(15,23,42,0.055);
    border-radius: 20px;
    color: var(--text-muted);
}

.brands-empty-state i {
    font-size: 3.5rem;
    opacity: 0.45;
}

.brands-empty-state p {
    margin: 14px 0 0;
    color: var(--text-muted);
}

.brand-grid-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.brand-grid-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.brand-grid-card .brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    opacity: 0.5;
    transition: var(--transition);
}

.brand-grid-card:hover .brand-name {
    opacity: 1;
    color: var(--primary);
}

.brand-card-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-grid-card:hover .brand-card-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.other-brand-logo {
    display: block;
    max-width: min(72%, 190px);
    max-height: 96px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.72;
    transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

a:hover .other-brand-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

/* ----- Contact Section ----- */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-form .form-control {
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fff;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45,45,45,0.08);
}

.contact-form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-info-card .ci-icon {
width: 48px;
height: 48px;
flex-shrink: 0;
background: #F0F0F0;
border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-info-card .ci-text h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-info-card .ci-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 24px;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

/* ----- Footer ----- */
.footer-section {
    position: relative;
    background:
        radial-gradient(circle at 15% 0%, rgba(14,165,233,0.16) 0%, transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(16,185,129,0.12) 0%, transparent 26%),
        linear-gradient(180deg, #0F172A 0%, #090E18 100%);
    color: rgba(255,255,255,0.7);
    padding: 92px 0 30px;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1120px, 92vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.footer-section h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
}

.footer-section h5::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #38BDF8, #10B981);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.62);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand .brand-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand .brand-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 360px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(56,189,248,0.16);
    border-color: rgba(56,189,248,0.34);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.09);
    padding-top: 24px;
    margin-top: 56px;
    text-align: center;
    font-size: 0.82rem;
}

.footer-design {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

/* ----- Scroll Animations ----- */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Page Header ----- */
.page-header {
    background: var(--gradient-hero);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ----- Alert ----- */
.alert-success-custom {
    background: #ECFDF5;
    border: 1px solid #6EE7B7;
    color: #065F46;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 0.92rem;
}

/* ----- CTA Section ----- */
.cta-section {
    padding: clamp(72px, 8vw, 110px) 0;
    background: #F7F8FA;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 18%;
    right: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(118,93,206,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 4%;
    left: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    max-width: 980px;
    padding: clamp(46px, 7vw, 72px) clamp(24px, 6vw, 72px);
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.055);
    box-shadow: 0 14px 36px rgba(15,23,42,0.055);
    overflow: hidden;
}

.cta-section .container::before {
    content: 'Yeni proje, kampanya veya web sitesi i\00E7 in';
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(118,93,206,0.06);
    border: 1px solid rgba(118,93,206,0.10);
    color: #765dce;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta-section h2 {
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 34px;
    line-height: 1.75;
}

.btn-cta-white {
    background: linear-gradient(135deg, #765dce 0%, #9d7ce8 100%);
    color: #fff !important;
    border: 1px solid rgba(118,93,206,0.08);
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.98rem;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(118,93,206,0.22);
}

.btn-cta-white i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-size: 0.9rem;
    transition: transform .25s ease, background .25s ease;
}

.btn-cta-white:hover {
    background: linear-gradient(135deg, #6b50c7 0%, #8f70df 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(118,93,206,0.30);
    color: #fff !important;
}

.btn-cta-white:hover i {
    background: rgba(255,255,255,0.24);
    transform: translateX(3px);
}

/* ----- Misc Utilities ----- */

@media (max-width: 991px) {
.hero-content h1 { font-size: 2.5rem; min-height: 70px; }
.hero-content h1 .cursor { height: 2.5rem; }
.section-title { font-size: 2rem; }

.about-stats-grid,
.about-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
}

.about-visual-card {
    min-height: 360px;
}

.brands-grid-modern {
    grid-template-columns: repeat(3, 1fr);
}

.home-work-preview__grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
}

.story-capability-panel {
    margin-top: 40px;
    min-height: auto;
}

.hero-curved-arrow { display: none; }

.floating-card.card-insights,
.floating-card.card-post-insight {
    display: none;
}

    .floating-card.card-followers {
        left: 2%;
        bottom: -20px;
    }

    .floating-card.card-social {
        right: 2%;
        bottom: -20px;
    }

    .hero-visual-center {
        margin-bottom: 40px;
    }

    .hero-image-wrapper::before {
        width: 400px;
        height: 400px;
    }

    .hero-image-wrapper::after {
        width: 620px;
        height: 620px;
        opacity: 0.22;
    }

    .brand-logos {
        gap: 40px;
        animation-duration: 20s;
    }

    .brand-logos .brand-logo {
        height: 50px;
    }

    .service-card .sc-icon {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
    }

    .service-card-body {
        padding: 32px 24px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-section { padding: 120px 0 60px; }
    .hero-content h1 { font-size: 2rem; min-height: 55px; }
    .hero-content h1 .cursor { height: 2rem; }
    .section-title { font-size: 1.7rem; }
    .page-header h1 { font-size: 2rem; }
    .page-header { padding: 120px 0 40px; }

    section[style*="padding:80px"] {
        padding: 56px 0 !important;
    }

    .row.g-5 {
        --bs-gutter-y: 2rem;
    }

    .detail-sidebar-card {
        position: relative;
        top: auto;
        margin-top: 24px;
    }

    .btn-accent,
    .btn-cta-white,
    .btn-navbar-contact {
        white-space: normal;
        text-align: center;
    }

    .floating-card { display: none; }
    .hero-visual-center { margin-bottom: 20px; }
    .hero-main-visual { max-width: 100%; }

    .hero-image-wrapper::before {
        width: 320px;
        height: 320px;
    }

    .hero-image-wrapper::after {
        width: 470px;
        height: 470px;
        opacity: 0.24;
    }

    .brand-logos { 
        gap: 30px;
        animation-duration: 15s;
    }
    
    .brand-logos .brand-logo {
        height: 42px;
    }
    
    .filter-btns { gap: 6px; }

    .services-intro {
        margin-bottom: 34px;
        padding-left: 0;
        padding-right: 0;
    }

    .services-intro__badge {
        margin-bottom: 18px;
    }

    .services-intro__title {
        font-size: 2.15rem;
        letter-spacing: -0.045em;
    }

    .services-intro__logo {
        height: 30px;
        margin-top: -4px;
    }

    .about-hero {
        padding: 128px 0 54px;
    }

    .about-hero__summary {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-top: 30px;
    }

    .about-section-head--left {
        text-align: center;
        margin-left: auto;
    }

    .about-timeline__item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px;
    }

    .about-timeline__item span {
        width: fit-content;
        padding: 0 14px;
    }

    .about-timeline {
        padding-left: 28px;
    }

    .about-timeline::before {
        left: 10px;
    }

    .about-timeline__item::before {
        left: -25px;
    }

    .about-timeline__item::after {
        left: -12px;
        width: 12px;
    }

    .about-info-card {
        padding: 28px;
    }

    .about-infinity-svg {
        width: min(100%, 320px);
    }

    .about-infinity-caption {
        border-radius: 18px;
    }

    .about-capability-card {
        text-align: center;
    }

    .about-capability-card i,
    .about-info-card__icon {
        margin-left: auto;
        margin-right: auto;
    }

    .brands-hero {
        padding: 128px 0 54px;
    }

    .brands-hero__summary {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-top: 30px;
    }

    .brands-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .brand-logo-card {
        min-height: 128px;
        padding: 28px 20px;
        border-radius: 14px;
    }

    .home-work-card__body {
        padding: 18px 18px 20px;
    }

    .story-stats .stat-box {
        padding: 20px 10px 16px;
        border-radius: 16px;
    }

    .story-stats .stat-number {
        font-size: 1.45rem;
    }

    .story-capability-item {
        padding: 16px;
    }

    .story-capability-panel {
        border-radius: 24px;
    }

    .service-card .sc-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-card-body {
        padding: 28px 20px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 1.9rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .btn-cta-white {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .footer-section {
        padding-top: 72px;
    }
}

@media (max-width: 575px) {
    .hero-content h1 { font-size: 1.6rem; min-height: 45px; }
    .hero-content h1 .cursor { height: 1.6rem; }
    .btn-accent { padding: 12px 24px; font-size: 0.9rem; }
    .hero-main-visual { max-width: 100%; }

    .navbar-main .brand-logo {
        height: 30px;
    }

    .btn-navbar-contact-mobile {
        padding: 7px 10px;
        font-size: 0.72rem;
    }

    [class$="-other-card"] {
        height: 170px;
        min-height: 170px;
    }

    .other-brand-logo {
        max-width: min(76%, 160px);
        max-height: 74px;
    }
    
    .hero-image-wrapper::before {
        width: 280px;
        height: 280px;
        opacity: 0.12;
    }

    .hero-image-wrapper::after {
        width: 390px;
        height: 390px;
        opacity: 0.24;
    }
    
    .brand-logos {
        gap: 25px;
        animation-duration: 12s;
    }
    
    .brand-logos .brand-logo {
        height: 38px;
    }
    
    .brands-strip p {
        font-size: 0.88rem;
    }

    .services-intro__title {
        font-size: 1.85rem;
    }

    .services-intro__logo {
        height: 30px;
    }

    .about-stats-grid,
    .about-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .about-visual-card__grid {
        grid-template-columns: 1fr;
    }

    .about-infinity-caption {
        padding: 14px 18px;
    }

    .brands-grid-modern {
        grid-template-columns: 1fr;
    }

    .brand-logo-card {
        min-height: 118px;
    }

    .service-card .sc-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 1.65rem;
        margin-bottom: 12px;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .btn-cta-white {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .cta-section .container {
        border-radius: 26px;
    }
}