/* ==========================================================================
   DİJİTAL REKLAM AJANSI - ANIMATED DESIGN SYSTEM & STYLESHEET
   100% Mobile Responsive across All Devices & Screens
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Color Palette */
    --bg-dark: #000000;
    --bg-surface: #07060c;
    --bg-header-glass: rgba(6, 5, 10, 0.88);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    /* Brand Accents */
    --brand-purple: #6236ff;
    --brand-purple-hover: #5025ea;
    --brand-purple-glow: rgba(98, 54, 255, 0.5);
    
    --brand-orange: #ff7700;
    --brand-orange-hover: #e66b00;
    --brand-orange-glow: rgba(255, 119, 0, 0.4);

    --brand-magenta: #881337;
    --brand-magenta-grad: linear-gradient(135deg, #9d174d 0%, #701a75 100%);
    --brand-magenta-glow: rgba(157, 23, 77, 0.45);

    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --accent-blue-neon: #3b82f6;

    /* Typography Colors */
    --text-pure: #ffffff;
    --text-sub: #cbd5e1;
    --text-muted: #94a3b8;
    --text-body: #a1a1aa;

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing & Sizes */
    --header-height: 110px;
    --header-height-scrolled: 82px;
    --container-width: 1260px;

    /* Transitions & Curves */
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-agency: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-pure);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

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

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: height 0.35s var(--ease-agency), background 0.35s var(--ease-agency), border 0.35s var(--ease-agency), box-shadow 0.35s var(--ease-agency);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
}

.site-header.scrolled {
    height: var(--header-height-scrolled);
    background: var(--bg-header-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    z-index: 10;
    flex-shrink: 0;
}

.logo-image {
    height: 82px;
    max-height: 92px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 14px rgba(98, 54, 255, 0.35));
    transition: height 0.35s var(--ease-agency), transform 0.3s var(--ease-agency);
}

.site-header.scrolled .logo-image {
    height: 64px;
}

.brand-logo:hover .logo-image {
    transform: scale(1.04);
}

/* Desktop Nav Links */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-sub);
    border-radius: 99px;
    transition: var(--transition);
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #a78bfa;
    font-weight: 600;
}

.nav-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Mega Menu */
.has-megamenu {
    position: static;
}

.has-megamenu .mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(12px) scale(0.96);
    width: 660px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(12, 11, 20, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(98, 54, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-agency);
    z-index: 100;
    pointer-events: none;
}

.has-megamenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mega-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid transparent;
    transition: var(--transition);
}

.mega-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(98, 54, 255, 0.4);
    transform: translateY(-3px);
}

.mega-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.mega-icon.purple { background: rgba(98, 54, 255, 0.15); color: #a78bfa; }
.mega-icon.orange { background: rgba(255, 119, 0, 0.15); color: #fbbf24; }
.mega-icon.pink   { background: rgba(236, 72, 153, 0.15); color: #f472b6; }
.mega-icon.cyan   { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }

.mega-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.mega-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Header Right Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.btn-proposal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 119, 0, 0.6);
    border-radius: 99px;
    transition: var(--transition);
}

.btn-proposal i {
    color: var(--brand-orange);
    font-size: 0.95rem;
}

.btn-proposal:hover {
    background: rgba(255, 119, 0, 0.15);
    border-color: var(--brand-orange);
    box-shadow: 0 0 20px var(--brand-orange-glow);
    transform: translateY(-2px);
}

/* Language Switcher */
.lang-switch-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-pill {
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #cbd5e1;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.lang-pill.active {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #ffffff;
    box-shadow: 0 0 15px var(--brand-orange-glow);
}

.lang-pill:not(.active):hover {
    border-color: #ffffff;
    color: #ffffff;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    flex-shrink: 0;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1050;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 86vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(8, 7, 14, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid var(--border-glass);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transition: right 0.35s var(--ease-agency);
    overflow-y: auto;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-glass);
}

.logo-image-drawer {
    height: 52px;
    width: auto;
}

.drawer-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.drawer-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-sub);
    border-radius: 10px;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: #ffffff;
    background: rgba(98, 54, 255, 0.15);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-sub);
    border-radius: 10px;
    text-align: left;
}

.accordion-trigger i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-accordion.open .accordion-trigger i {
    transform: rotate(180deg);
}

.accordion-panel {
    display: none;
    padding: 6px 0 6px 14px;
}

.mobile-accordion.open .accordion-panel {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.accordion-panel a {
    display: block;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-radius: 8px;
}

.accordion-panel a.active {
    color: #a78bfa;
    font-weight: 700;
    background: rgba(98, 54, 255, 0.1);
}

.drawer-actions {
    margin-top: auto;
    padding-top: 15px;
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 70px;
    overflow: hidden;
}

.hero-anim-item {
    opacity: 0;
    transform: translateY(30px);
    animation: heroItemFadeIn 0.9s var(--ease-agency) forwards;
    animation-delay: calc(var(--anim-order, 1) * 0.15s + 0.1s);
}

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

.hero-bg-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.0);
    transition: opacity 1.8s ease-in-out, transform 7s ease-out;
}

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

.hero-dark-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.84) 70%, rgba(0, 0, 0, 0.98) 100%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 40%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

.slide-dots-container {
    position: absolute;
    bottom: 28px;
    right: 32px;
    display: flex;
    gap: 8px;
    z-index: 20;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.slide-dot.active {
    width: 22px;
    border-radius: 99px;
    background: var(--brand-orange);
    box-shadow: 0 0 10px var(--brand-orange-glow);
}

.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 7px 22px;
    background: var(--brand-orange);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 99px;
    margin-bottom: 22px;
    box-shadow: 0 4px 20px var(--brand-orange-glow);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.purple-text {
    color: #6366f1;
    text-shadow: 0 0 35px rgba(99, 102, 241, 0.6);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.22rem);
    font-weight: 400;
    color: var(--text-sub);
    margin-bottom: 34px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}

.btn-primary-purple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--brand-purple);
    border-radius: 99px;
    box-shadow: 0 8px 30px var(--brand-purple-glow);
    transition: var(--transition);
}

.btn-primary-purple:hover {
    background: var(--brand-purple-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 38px rgba(98, 54, 255, 0.7);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 99px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.w-full {
    width: 100%;
}

.scroll-down-block {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 20;
    opacity: 0.85;
    transition: var(--transition);
}

.scroll-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--text-sub);
    text-transform: uppercase;
}

.scroll-line-bar {
    width: 2px;
    height: 28px;
    background: var(--brand-orange);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--brand-orange-glow);
    animation: barPulse 2s infinite ease-in-out;
}

@keyframes barPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-agency), transform 0.9s var(--ease-agency);
    will-change: transform, opacity;
}

.reveal-on-scroll.reveal-left { transform: translateX(-40px); }
.reveal-on-scroll.reveal-right { transform: translateX(40px); }
.reveal-on-scroll.reveal-scale { transform: scale(0.85) translateY(20px); }

.reveal-on-scroll.stagger-1 { transition-delay: 0.1s; }
.reveal-on-scroll.stagger-2 { transition-delay: 0.2s; }
.reveal-on-scroll.stagger-3 { transition-delay: 0.3s; }

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* ==========================================================================
   PHILOSOPHY & VALUES (3D CIRCULAR PODS)
   ========================================================================== */

.features-section {
    position: relative;
    background-color: var(--bg-dark);
    padding: 110px 0 130px;
    z-index: 5;
}

.features-intro {
    max-width: 820px;
    margin: 0 auto 100px;
    text-align: center;
}

.intro-statement {
    font-size: clamp(1rem, 1.8vw, 1.22rem);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-sub);
}

.feature-rows-wrapper {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 65px;
    perspective: 1200px;
}

.feature-row.row-reverse {
    flex-direction: row-reverse;
}

.feature-pod-col {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-pod {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.06) 0%, rgba(12, 10, 20, 0.95) 75%, rgba(0, 0, 0, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s var(--ease-agency), box-shadow 0.4s var(--ease-agency);
    transform-style: preserve-3d;
    cursor: pointer;
    overflow: hidden;
}

.pod-inner {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(30px);
    transition: transform 0.4s var(--ease-agency);
    overflow: hidden;
}

.pod-3d-asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.pod-glow-cyan { box-shadow: 0 0 45px rgba(6, 182, 212, 0.18); }
.pod-glow-purple { box-shadow: 0 0 45px rgba(98, 54, 255, 0.22); }
.pod-glow-pink { box-shadow: 0 0 45px rgba(236, 72, 153, 0.18); }

.float-anim-1 { animation: floatingShape1 6s ease-in-out infinite alternate; }
.float-anim-2 { animation: floatingShape2 7s ease-in-out infinite alternate; }
.float-anim-3 { animation: floatingShape3 8s ease-in-out infinite alternate; }

@keyframes floatingShape1 { 0% { transform: translateY(0); } 100% { transform: translateY(-12px); } }
@keyframes floatingShape2 { 0% { transform: translateY(0); } 100% { transform: translateY(14px); } }
@keyframes floatingShape3 { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }

.feature-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
}

.feature-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-col-text {
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--text-body);
}

/* ==========================================================================
   SOLUTIONS & SHOWCASE
   ========================================================================== */

.solutions-section {
    position: relative;
    background: radial-gradient(circle at 50% 10%, rgba(12, 10, 22, 0.9) 0%, rgba(0, 0, 0, 1) 80%);
    padding: 110px 0 130px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 5;
}

.solutions-main-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr;
    gap: 55px;
    align-items: center;
    margin-bottom: 90px;
}

.solutions-info-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.solutions-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

.solutions-desc-text {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.solutions-action {
    margin-top: 10px;
}

.btn-magenta-proposal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--brand-magenta-grad);
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--brand-magenta-glow);
    transition: var(--transition);
}

.btn-magenta-proposal:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(157, 23, 77, 0.7);
    color: #ffffff;
}

.device-mockup-frame {
    position: relative;
    width: 100%;
    max-width: 620px;
    height: 360px;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
}

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

.solutions-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 30px 26px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.pillar-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.pillar-icon-box.icon-purple { background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%); color: #ffffff; }
.pillar-icon-box.icon-pink   { background: linear-gradient(135deg, #db2777 0%, #831843 100%); color: #ffffff; }
.pillar-icon-box.icon-orange { background: linear-gradient(135deg, #ea580c 0%, #7c2d12 100%); color: #ffffff; }

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
}

.pillar-text {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* ==========================================================================
   WHAT WE DO (3x3 FLIP CARDS)
   ========================================================================== */

.services-grid-section {
    position: relative;
    background-color: var(--bg-dark);
    padding: 110px 0 140px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 5;
}

.section-header-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-badge {
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.22;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-flip-card {
    position: relative;
    height: 230px;
    perspective: 1200px;
    cursor: pointer;
    display: block;
    -webkit-tap-highlight-color: transparent;
}

.card-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-flip-card:hover .card-flipper,
.service-flip-card:focus .card-flipper,
.service-flip-card.flipped .card-flipper {
    transform: rotateY(180deg) translateY(-5px);
}

.card-face {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}

.card-front {
    background: #04050a;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
    transform: rotateY(0deg);
}

.blueprint-watermark {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 4.6rem;
    color: #3b82f6;
    opacity: 0.2;
    pointer-events: none;
}

.service-card-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
}

.card-back {
    background: radial-gradient(circle at 50% 0%, rgba(26, 23, 64, 0.96) 0%, rgba(8, 7, 18, 0.98) 100%);
    border: 1px solid rgba(139, 92, 246, 0.55);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: rotateY(180deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95);
}

.card-back-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-mini-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    text-transform: uppercase;
}

.card-mini-badge.purple { background: rgba(124, 58, 237, 0.25); color: #c084fc; border: 1px solid rgba(124, 58, 237, 0.6); }
.card-mini-badge.cyan   { background: rgba(6, 182, 212, 0.25); color: #67e8f9; border: 1px solid rgba(6, 182, 212, 0.6); }
.card-mini-badge.orange { background: rgba(245, 158, 11, 0.25); color: #fcd34d; border: 1px solid rgba(245, 158, 11, 0.6); }
.card-mini-badge.pink   { background: rgba(236, 72, 153, 0.25); color: #f472b6; border: 1px solid rgba(236, 72, 153, 0.6); }

.card-back-desc {
    font-size: 0.86rem;
    line-height: 1.5;
    color: #e2e8f0;
    margin: 6px 0;
}

.card-back-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.card-back-tags span {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
}

/* ==========================================================================
   BLOG & INSIGHTS
   ========================================================================== */

.blog-section {
    position: relative;
    background: #000000;
    padding: 110px 0 130px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 5;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #05060c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
}

.blog-img-box {
    position: relative;
    width: 100%;
    height: 220px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0d0c18;
    display: block;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.blog-card:hover .blog-img {
    transform: scale(1.06);
}

.blog-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 99px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
    z-index: 2;
}

.blog-category-badge.cyan { background: rgba(6, 182, 212, 0.9); color: #ffffff; }
.blog-category-badge.purple { background: rgba(124, 58, 237, 0.9); color: #ffffff; }
.blog-category-badge.pink { background: rgba(236, 72, 153, 0.9); color: #ffffff; }

.blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    gap: 12px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    color: #94a3b8;
}

.blog-meta i {
    color: #a78bfa;
    margin-right: 4px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.65;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #a78bfa;
    margin-top: 4px;
}

/* ==========================================================================
   INTERACTIVE CONTACT & PROPOSAL SECTION
   ========================================================================== */

.contact-section {
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(18, 14, 32, 0.95) 0%, rgba(0, 0, 0, 1) 85%);
    padding: 110px 0 140px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 55px;
    align-items: flex-start;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.2vw, 2.9rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-channels-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 8px 0;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: var(--transition);
}

.channel-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(98, 54, 255, 0.45);
    transform: translateX(4px);
}

.channel-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.channel-icon-box.cyan   { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.channel-icon-box.purple { background: rgba(98, 54, 255, 0.15); color: #a78bfa; }
.channel-icon-box.orange { background: rgba(255, 119, 0, 0.15); color: #fbbf24; }

.channel-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.channel-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    font-weight: 600;
}

.channel-value {
    font-size: 0.98rem;
    color: #ffffff;
    font-weight: 600;
    word-break: break-word;
}

.working-hours-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(98, 54, 255, 0.08);
    border: 1px solid rgba(98, 54, 255, 0.3);
    border-radius: 12px;
    font-size: 0.82rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.contact-form-glass {
    padding: 34px 30px;
    background: rgba(10, 9, 18, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
}

.form-header {
    margin-bottom: 22px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.form-subtitle {
    font-size: 0.85rem;
    color: #94a3b8;
}

.smart-proposal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.service-pills-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.form-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    transition: var(--transition);
}

.form-pill-btn.active {
    background: var(--brand-purple);
    border-color: var(--brand-purple);
    color: #ffffff;
    box-shadow: 0 0 12px var(--brand-purple-glow);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.input-field-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 16px;
    color: #64748b;
    font-size: 0.92rem;
    pointer-events: none;
}

.textarea-icon {
    top: 16px;
}

.form-input {
    width: 100%;
    padding: 13px 16px 13px 44px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.92rem;
    color: #ffffff;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--brand-purple);
    box-shadow: 0 0 15px rgba(98, 54, 255, 0.3);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 16px;
    color: #64748b;
    font-size: 0.75rem;
    pointer-events: none;
}

.btn-submit-proposal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 24px;
    background: var(--brand-purple);
    border-radius: 12px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 8px 25px var(--brand-purple-glow);
    transition: var(--transition);
}

.form-feedback-message {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}

.form-feedback-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
}

/* ==========================================================================
   SERVICE & ARTICLE DETAIL LAYOUTS
   ========================================================================== */

.page-service-detail .site-header {
    background: rgba(6, 5, 10, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-glass);
}

.detail-hero-section,
.article-hero-section {
    position: relative;
    padding: 170px 0 60px;
    background: radial-gradient(circle at 50% 0%, rgba(24, 18, 48, 0.96) 0%, rgba(0, 0, 0, 1) 85%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.detail-hero-wrapper,
.article-hero-wrapper {
    position: relative;
    z-index: 10;
    max-width: 960px;
}

.detail-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb-sep { font-size: 0.62rem; color: #64748b; }
.breadcrumb-current { color: #a78bfa; font-weight: 600; }

.detail-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 18px;
}

.detail-hero-lead {
    font-size: clamp(0.98rem, 1.8vw, 1.2rem);
    color: var(--text-sub);
    line-height: 1.7;
}

.detail-body-section {
    padding: 70px 0 110px;
    position: relative;
    z-index: 5;
}

.detail-layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 48px;
    align-items: flex-start;
}

/* Strict Uniform Banner Photo */
.detail-media-banner {
    position: relative;
    width: 100%;
    height: 380px;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
    background: #080712;
}

.detail-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.media-overlay-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(10, 9, 18, 0.92);
    backdrop-filter: blur(16px);
    padding: 7px 16px;
    border-radius: 99px;
    border: 1px solid rgba(98, 54, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
}

.media-overlay-badge i { color: #38bdf8; }

.detail-text-block { margin-bottom: 48px; }

.detail-section-h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.3vw, 1.95rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.detail-paragraph {
    font-size: 0.98rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 16px;
}

.detail-deliverables-block,
.detail-workflow-block,
.detail-tech-stack-block,
.detail-faq-block {
    margin-bottom: 50px;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.deliverable-card {
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    transition: var(--transition);
}

.deliverable-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(98, 54, 255, 0.45);
    transform: translateY(-3px);
}

.deliv-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.deliv-icon.purple { background: rgba(98, 54, 255, 0.15); color: #a78bfa; }
.deliv-icon.cyan   { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.deliv-icon.orange { background: rgba(255, 119, 0, 0.15); color: #fbbf24; }
.deliv-icon.pink   { background: rgba(236, 72, 153, 0.15); color: #f472b6; }

.deliv-title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.deliv-text {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
}

.workflow-steps-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 119, 0, 0.4);
    transform: translateX(4px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-orange);
    line-height: 1;
    flex-shrink: 0;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.step-text {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
}

.tech-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
}

.tech-pill i { color: #a78bfa; }

.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: rgba(98, 54, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
}

.faq-arrow {
    font-size: 0.8rem;
    color: #a78bfa;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.65;
}

.faq-item.open .faq-answer { display: block; }

/* Sticky Sidebars */
.detail-sidebar-col {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sidebar-widget {
    background: #06050b;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    padding: 24px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

.sidebar-services-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #94a3b8;
    transition: var(--transition);
}

.sidebar-service-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(3px);
}

.sidebar-service-link.active {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(98, 54, 255, 0.22) 0%, rgba(98, 54, 255, 0.03) 100%);
    border-left: 3px solid var(--brand-purple);
    font-weight: 700;
}

.quote-cta-widget {
    background: radial-gradient(circle at 50% 0%, rgba(28, 22, 58, 0.95) 0%, rgba(8, 7, 16, 0.98) 100%);
    border: 1px solid rgba(139, 92, 246, 0.45);
}

.widget-icon-pill {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(98, 54, 255, 0.2);
    color: #a78bfa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 14px;
}

.widget-cta-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.widget-cta-text {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 18px;
}

.widget-direct-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.widget-direct-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
}

.widget-direct-item i { color: var(--brand-orange); }

.detail-bottom-cta {
    padding: 30px 0 90px;
}

.bottom-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 42px;
    background: radial-gradient(circle at 30% 50%, rgba(30, 24, 66, 0.9) 0%, rgba(10, 9, 18, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
}

.bottom-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.3vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    margin: 10px 0 6px;
    line-height: 1.25;
}

.bottom-cta-sub {
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* ==========================================================================
   ARTICLE SPECIFIC STYLES
   ========================================================================== */

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 18px 0 8px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta-item i { color: var(--brand-orange); }

.article-author-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
}

.article-content-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.8;
}

.article-content-body h2 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 6px;
}

.article-quote-box {
    margin: 20px 0;
    padding: 22px 26px;
    background: radial-gradient(circle at 10% 50%, rgba(98, 54, 255, 0.18) 0%, rgba(10, 9, 18, 0.95) 100%);
    border-left: 4px solid var(--brand-purple);
    border-radius: 0 16px 16px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    font-style: italic;
    line-height: 1.6;
}

.article-keypoints-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0 20px;
}

.article-keypoint-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.article-keypoint-item i {
    color: var(--brand-orange);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.article-author-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    margin-top: 30px;
}

.author-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff;
    flex-shrink: 0;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
}

.sidebar-articles-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-article-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.sidebar-article-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.sidebar-article-thumb {
    width: 70px;
    height: 54px;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #0d0c18;
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sidebar-article-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sidebar-article-date {
    font-size: 0.72rem;
    color: #94a3b8;
}

.sidebar-article-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.site-footer {
    background: #030306;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 85px 0 35px;
    position: relative;
    z-index: 5;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.logo-image-footer {
    height: 68px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: var(--brand-purple);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: var(--transition);
}

.footer-nav-list a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-text {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 18px;
}

.footer-cta-btn {
    padding: 11px 24px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-legal-links {
    display: flex;
    gap: 18px;
}

.footer-legal-links a {
    color: #64748b;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS (ALL DEVICES)
   ========================================================================== */

/* Tablet Landscape & Small Desktop (<= 1024px) */
@media (max-width: 1024px) {
    :root {
        --header-height: 95px;
        --header-height-scrolled: 76px;
    }

    .feature-row,
    .feature-row.row-reverse {
        flex-direction: column;
        text-align: center;
        gap: 36px;
    }

    .feature-pod-col {
        flex: 0 0 auto;
    }

    .feature-two-columns {
        text-align: left;
    }

    .solutions-main-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .device-mockup-frame {
        max-width: 100%;
        height: 320px;
    }

    .solutions-pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .detail-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .detail-media-banner {
        height: 300px;
    }

    .detail-sidebar-col {
        position: static;
    }

    .bottom-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 22px;
        padding: 34px 26px;
    }

    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

/* Tablet Portrait & Mobile (<= 992px) */
@media (max-width: 992px) {
    .main-navigation,
    .btn-proposal {
        display: none;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .lang-switch-group {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .lang-pill {
        padding: 5px 12px;
        font-size: 0.78rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-section {
        padding: 110px 0 65px;
    }

    .detail-hero-section,
    .article-hero-section {
        padding: 135px 0 50px;
    }

    .slide-dots-container {
        display: none;
    }

    .features-intro {
        margin-bottom: 60px;
    }

    .feature-rows-wrapper {
        gap: 80px;
    }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .feature-two-columns {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .circular-pod {
        width: 250px;
        height: 250px;
    }

    .pod-inner {
        width: 180px;
        height: 180px;
    }

    .solutions-section {
        padding: 80px 0 100px;
    }

    .device-mockup-frame {
        height: 230px;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-flip-card {
        height: 200px;
    }

    .blueprint-watermark {
        font-size: 4rem;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-img-box {
        height: 200px;
    }

    .detail-media-banner {
        height: 230px;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-card {
        padding: 18px;
        gap: 16px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .contact-form-glass {
        padding: 26px 18px;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

/* Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
    :root {
        --header-height: 85px;
        --header-height-scrolled: 72px;
    }

    .logo-image {
        height: 52px;
    }

    .site-header.scrolled .logo-image {
        height: 44px;
    }

    .header-actions {
        gap: 6px;
    }

    .lang-pill {
        padding: 4px 8px;
        font-size: 0.72rem;
    }

    .mobile-toggle {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .hero-title {
        font-size: 1.95rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-buttons .btn-primary-purple,
    .hero-buttons .btn-outline-white {
        width: 100%;
        padding: 13px 20px;
        font-size: 0.95rem;
    }

    .circular-pod {
        width: 210px;
        height: 210px;
    }

    .pod-inner {
        width: 150px;
        height: 150px;
    }

    .feature-title {
        font-size: 1.35rem;
    }

    .detail-main-title {
        font-size: 1.7rem;
    }

    .detail-media-banner {
        height: 190px;
        border-radius: 16px;
    }

    .media-overlay-badge {
        font-size: 0.72rem;
        padding: 5px 12px;
        bottom: 10px;
        left: 10px;
    }

    .article-author-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .bottom-cta-box {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .bottom-cta-title {
        font-size: 1.35rem;
    }

    .btn-submit-proposal {
        padding: 13px 18px;
        font-size: 0.92rem;
    }
}

/* Extra Small Phones (<= 360px) */
@media (max-width: 360px) {
    .logo-image {
        height: 44px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .circular-pod {
        width: 180px;
        height: 180px;
    }

    .pod-inner {
        width: 130px;
        height: 130px;
    }
}
