/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    --primary-color: #000000;
    --secondary-color: #666666;
    --bg-color: #ffffff;
    --text-color: #111111;
    --text-primary: #1A1A1A;
    --text-secondary: #6e6e73;
    --text-light: #999999;
    --white: #FFFFFF;
    --black: #000000;
    --border-color: #d2d2d7;
    --hover-bg: #f5f5f7;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-glass: 0 8px 32px rgba(0,0,0,0.05);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 28px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body, html {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
}

.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--hover-bg);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-nav {
    padding: 0.6rem 1.5rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
/* ==========================================================================
   Navigation - PREMIUM
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-vals {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--black);
}

.logo-dijital {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--black);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a, .dropdown-trigger {
    text-decoration: none;
    color: var(--black);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.7;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a:hover,
.nav-links a.active,
.dropdown-trigger:hover {
    opacity: 1;
}

.nav-links a.active {
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--black);
}

/* Dropdown Styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 280px;
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 10px;
}

.dropdown-menu.mega-menu {
    min-width: 900px;
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
}

.mega-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 1024px) {
    .dropdown-menu.mega-menu {
        min-width: 100% !important;
        flex-direction: column !important;
        gap: 0.5rem;
        padding: 1rem;
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        display: none !important;
    }
    .nav-item.dropdown.active .dropdown-menu.mega-menu {
        display: flex !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-decoration: none;
    color: var(--black);
}

.dropdown-item:hover {
    background: var(--hover-bg);
}

.dropdown-item i {
    font-size: 1.25rem;
    color: var(--black);
    opacity: 0.6;
}

.dropdown-item div {
    display: flex;
    flex-direction: column;
}

.dropdown-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

.dropdown-item small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.dropdown-trigger i {
    transition: var(--transition);
    font-size: 0.8rem;
}

.nav-item.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-nav {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.9rem !important;
}

.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition);
}

.menu-btn:hover {
    background-color: var(--hover-bg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: #F0F0F0;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* ==========================================================================
   Dashboard UI (Hero Visual)
   ========================================================================== */
.hero-visual {
    position: relative;
    height: 600px;
    width: 100%;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, rgba(250,250,250,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: absolute;
    overflow: hidden;
}

.main-dash {
    width: 650px;
    height: 450px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 180px 1fr;
    grid-template-rows: 60px 1fr;
    z-index: 1;
}

.dash-header {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.dash-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.dash-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dash-title {
    font-size: 1rem;
    font-weight: 500;
}

.dash-filter {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.dash-sidebar {
    border-right: 1px solid var(--border-color);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dash-sidebar a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.dash-sidebar a:hover {
    background-color: var(--hover-bg);
}

.dash-sidebar a.active {
    background-color: var(--hover-bg);
    color: var(--black);
    font-weight: 500;
}

.dash-sidebar a i {
    font-size: 1.1rem;
}

.dash-spacer {
    flex-grow: 1;
}

.dash-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #F8F9FA;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.metric-box {
    background-color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    position: relative;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 600;
}

.metric-trend {
    font-size: 0.75rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    background-color: rgba(34, 197, 94, 0.1);
    color: #16A34A;
}

.chart-container {
    background-color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-title {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Mobile App Dash */
.mobile-dash {
    width: 220px;
    height: 450px;
    bottom: 20px;
    right: -40px;
    z-index: 2;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-title {
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.circle-progress {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#3B82F6 0% 100%);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-circle {
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circle-val {
    font-size: 1.5rem;
    font-weight: 600;
}

.circle-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.mobile-metric {
    margin-bottom: 1rem;
    position: relative;
}

.mobile-metric .metric-value {
    font-size: 1.25rem;
}

/* ==========================================================================
   Stats Strip
   ========================================================================== */
.stats-strip {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white);
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.logo-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.view-all-link {
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-link:hover {
    gap: 0.75rem;
}

.mobile-view-all {
    display: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: var(--hover-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--hover-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    transition: var(--transition);
}

.service-card:hover .service-link {
    background-color: var(--black);
    color: var(--white);
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.process-wrapper {
    display: flex;
    gap: 4rem;
}

.process-left {
    flex: 1;
    max-width: 400px;
}

.process-right {
    flex: 2;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.process-step {
    flex: 1;
    position: relative;
}

.step-num {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.step-arrow {
    position: absolute;
    top: 1.25rem;
    right: -1.5rem;
    color: var(--border-color);
    font-size: 1.5rem;
}

/* ==========================================================================
   Projects Section - PERFECTED
   ========================================================================== */
/* ==========================================================================
   Projects Section - V3 (EXACT MATCH)
   ========================================================================== */
.projects-section-v3 {
    padding: 10rem 0;
    background-color: var(--white);
}

.p-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 4rem;
}

.p-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    display: block;
}

.p-hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.p-hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.p-hero-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.p-main-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
}

/* Floating Stats Bar */
.p-floating-stats {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 8rem;
    border: 1px solid rgba(0,0,0,0.03);
}

.p-stat-item {
    text-align: center;
    position: relative;
}

.p-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #f0f0f0;
}

.p-stat-value {
    font-size: 2.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.p-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Featured Detail Area */
.featured-detail-area {
    margin-bottom: 10rem;
}

.detail-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.p-label-sm {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: block;
}

.detail-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.detail-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.detail-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.p-tag-v3 {
    font-size: 0.8rem;
    padding: 0.5rem 1.5rem;
    background: #f5f5f7;
    border-radius: 100px;
    font-weight: 500;
}

.detail-link {
    font-size: 1rem;
    font-weight: 700;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Slider */
.slider-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.slider-img {
    width: 100%;
    display: block;
}

.slider-badge {
    position: absolute;
    top: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    z-index: 5;
}

.slider-badge.before { left: 1.5rem; }
.slider-badge.after { right: 1.5rem; }

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 2px;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-handle i {
    background: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    color: var(--black);
    font-size: 1.5rem;
}

/* Slider Stats */
.slider-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background: #fafafa;
    border-radius: var(--radius-lg);
}

.ss-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ss-item i {
    font-size: 1.25rem;
    color: #111;
    margin-bottom: 0.5rem;
}

.ss-val {
    font-size: 1.5rem;
    font-weight: 700;
}

.ss-lbl {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* All Projects Grid */
.ap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.ap-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.ap-nav {
    display: flex;
    gap: 1rem;
}

.ap-nav-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.ap-nav-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.ap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ap-card {
    cursor: pointer;
}

.ap-card-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 1/1;
}

.ap-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ap-card:hover .ap-card-img img {
    transform: scale(1.05);
}

.ap-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ap-card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Process Section Bottom */
.process-v2 {
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.process-v2-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
}

.process-v2-main-title {
    font-size: 2.5rem;
    margin-top: 1rem;
}

.btn-outline-pill {
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

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

.process-v2-step {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-v2-num {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.3;
}

.step-v2-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.step-v2-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .p-hero, .detail-header {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .p-hero-title {
        font-size: 3rem;
    }
    .ap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .p-floating-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem;
    }
    .p-stat-item:nth-child(2)::after {
        display: none;
    }
    .p-stat-value {
        font-size: 2rem;
    }
    .slider-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .ap-grid {
        grid-template-columns: 1fr;
    }
    .ap-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #111;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.2rem;
}

.mobile-dots {
    display: none;
}

.quote {
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-size: 0.9rem;
}

.author-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.dark-card {
    background-color: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.dark-card.has-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

.dark-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dark-card-title {
    font-size: 1.5rem;
    line-height: 1.3;
}

.dark-card-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    color: var(--white);
}

.dark-card-btn:hover {
    background-color: var(--white);
    color: var(--black);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background-color: var(--bg-color);
    padding: 6rem 0;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 1rem;
}

.contact-btn-main {
    align-self: flex-start;
    margin-bottom: 2rem;
}

.contact-hero-image {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2rem;
}

.dark-brand-box {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), var(--shadow-lg);
}

.dark-brand-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: rotateSlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sexy-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    z-index: 2;
    transform: scale(1.2);
}

.sexy-vals {
    font-size: 7.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--white);
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    filter: drop-shadow(0 4px 20px rgba(255,255,255,0.1));
}

.sexy-dijital {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--text-light);
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Ways Grid */
.ways-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.way-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.way-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.way-icon {
    width: 48px;
    height: 48px;
    background-color: var(--black);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.way-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.way-card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.way-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--hover-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    transition: var(--transition);
}

.way-card:hover .way-link {
    background-color: var(--black);
    color: var(--white);
}

/* Contact Stats */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.c-stat-item {
    text-align: center;
    position: relative;
}

.c-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background-color: var(--border-color);
}

.c-stat-num {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.c-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Bottom Grid */
.contact-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.c-brands {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.c-brands-title {
    font-size: 1.5rem;
    line-height: 1.3;
}

.c-testimonial {
    background-color: var(--hover-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
}

.c-testimonial i.ph-quotes {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.c-test-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
    transition: opacity 0.3s ease;
}

.c-test-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.c-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.c-author-info h5 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.c-author-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.c-test-nav {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
}

.c-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.c-nav-btn:hover {
    background: var(--black);
    color: var(--white);
}

.c-office {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.c-office-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.c-office-address {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.c-office-btn {
    margin-top: auto;
}

.c-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 200px;
}

.c-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--black);
    background: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

/* CTA Banner Bottom */
.c-cta-banner {
    background-color: var(--black);
    border-radius: var(--radius-xl);
    padding: 3rem 4rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-cta-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.c-cta-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* Form Card */
.contact-right {
    position: relative;
}

.form-card-sticky {
    position: sticky;
    top: 6rem;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--white);
    position: relative;
    z-index: 2;
}

.step.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.step-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--border-color);
    margin: 0 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--black);
    background-color: var(--white);
}

.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
}

.select-icon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-secondary);
}

textarea.form-input {
    resize: none;
}

.form-submit {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    margin-top: 0.5rem;
}

.form-quick-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.form-quick-contact p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.quick-buttons {
    display: flex;
    gap: 1rem;
}

.quick-btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 0.6rem;
    justify-content: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

.footer-container {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--black);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--hover-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.footer-social a:hover {
    background-color: var(--black);
    color: var(--white);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background-color: var(--white);
    padding-top: 6rem;
    padding-bottom: 2rem;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-title span.light {
    color: #888;
}

.about-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 480px;
}

.about-btn {
    border-radius: 100px;
}

.about-hero-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 500px;
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--black);
}

.about-logo-overlay .logo-vals {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
    margin-bottom: 6rem;
}

.about-stat-item {
    text-align: center;
    position: relative;
}

.about-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background-color: var(--border-color);
}

.our-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.story-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 500;
}

.story-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-visuals {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1rem;
    height: 500px;
}

.story-img-large, .story-img-small-group img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    width: 100%;
}

.monitor-overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    z-index: 2;
}

.monitor-overlay .logo-vals {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

.story-img-large {
    height: 100%;
}

.story-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.story-img-small-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.story-img-small-group img {
    height: calc(50% - 0.5rem);
}

.our-approach {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.approach-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 500;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.approach-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.approach-card-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-cta-container {
    margin-bottom: 6rem;
}

.about-cta-banner {
    background-color: var(--black);
    border-radius: var(--radius-xl);
    padding: 4rem 5rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-cta-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-desc {
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-hero, .our-story, .our-approach {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero-visual {
        height: 350px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .about-stat-item:nth-child(2)::after {
        display: none;
    }
    
    .story-visuals {
        height: 400px;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 2rem;
    }
    
    .services-grid, .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-wrapper {
        flex-direction: column;
    }
    
    .step-arrow {
        display: none;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-card-sticky {
        position: relative;
        top: 0;
    }
    
    .ways-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-bottom-grid {
        grid-template-columns: 1fr;
    }
    
    .c-cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-visual {
        display: block;
        height: auto;
        margin-top: 2rem;
        padding-bottom: 2rem;
    }

    .main-dash {
        display: none;
    }

    .mobile-dash {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 0 auto;
        transform: scale(1.1);
    }
    
    .stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .logo-stat {
        grid-column: span 2;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .c-cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 2rem;
    }
    
    .ways-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .c-stat-item:nth-child(2)::after {
        display: none;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .quick-buttons {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .view-all-link {
        display: none;
    }

    .mobile-view-all {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 2rem;
        background-color: var(--black);
        color: var(--white);
        border-radius: 100px;
    }

    .process-right {
        border-left: 1px solid var(--border-color);
        padding-left: 2rem;
        margin-left: 1rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .process-step {
        position: relative;
    }

    .step-num {
        position: absolute;
        left: -3.5rem;
        top: -0.5rem;
        width: 40px;
        height: 40px;
        background: var(--bg-color);
        border: 1px solid var(--border-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 500;
        border: 1px solid var(--border-color);
    }

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    .testimonials-grid .testimonial-card {
        min-width: 100%;
        scroll-snap-align: center;
    }

    .mobile-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--border-color);
    }

    .dot.active {
        background: var(--black);
    }

    .about-title {
        font-size: 2.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .about-stat-item::after {
        display: none !important;
    }
    
    .story-visuals {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .story-img-large, .story-img-small-group {
        height: 250px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Service Pages Mobile Responsiveness
   ========================================================================== */
@media (max-width: 768px) {
    .service-hero {
        padding: 6rem 1rem 4rem !important;
    }
    .service-title {
        font-size: 2.5rem !important;
    }
    .service-hero-desc {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
    }
    .service-content {
        padding: 4rem 1rem !important;
    }
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .content-text h2 {
        font-size: 2rem !important;
        text-align: center !important;
    }
    .content-text p {
        text-align: center !important;
    }
    .service-features {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }
    .cta-section {
        margin: 2rem 1rem !important;
        padding: 4rem 1.5rem !important;
        border-radius: 20px !important;
    }
    .cta-title {
        font-size: 2rem !important;
    }
    .feature-card {
        padding: 2rem !important;
        text-align: center !important;
    }
}
