/*
    Elektromek Bilgi Teknolojileri
    Apple-inspired Premium Design System
    ─────────────────────────────────────
*/

/* ═══ 1. DESIGN TOKENS ═══════════════════════════════════════════ */
:root {
    /* Color */
    --bg: #000000;
    --bg-alt: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-h: rgba(255, 255, 255, 0.06);
    --glass: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --border-h: rgba(255, 255, 255, 0.16);

    --text-1: #f5f5f7;
    --text-2: #a1a1a6;
    --text-3: #86868b;
    /* Slightly lighter gray for readability */

    /* Brand accent - electric blue */
    --accent: #2997ff;
    --accent-2: #5ac8fa;
    --accent-glow: rgba(41, 151, 255, 0.25);

    /* Gradients */
    --grad-main: linear-gradient(135deg, #2997ff 0%, #5e5ce6 100%);
    --grad-text: linear-gradient(90deg, #2997ff 0%, #30d158 60%, #5e5ce6 100%);
    --grad-dark: linear-gradient(180deg, #000 0%, #0a0a0a 100%);

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-alt: 'Manrope', sans-serif;

    /* Layout */
    --max-w: 1240px;
    --side-pad: clamp(1.5rem, 8vw, 6rem);
    /* Increased side padding */

    /* Radius */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 32px;
    --r-pill: 999px;

    /* Shadows */
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.7);

    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 0.2s ease;
    --t-med: 0.4s var(--ease);
    --t-slow: 0.8s var(--ease);
}

/* ═══ 2. RESET ════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-1);
    line-height: 1.5;
    /* Slightly tighter leading */
    overflow-x: hidden;
    letter-spacing: -0.015em;
    /* Premium letter-spacing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
}

h1,
h2,
h3,
h4,
h5 {
    letter-spacing: -0.022em;
    /* Heading tracking */
    line-height: 1.15;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    font-weight: 500;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ═══ 3. SCROLLBAR ════════════════════════════════════════════════ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ═══ 4. TYPOGRAPHY HELPERS ══════════════════════════════════════ */
.gradient-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* ═══ 5. SECTION LAYOUT ══════════════════════════════════════════ */
.section {
    padding: 7rem var(--side-pad);
}

.section-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-container.col {
    grid-template-columns: 1fr;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 5rem;
}

.section-title {
    font-family: var(--font-alt);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--text-1);
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
}

.section-body {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

/* ═══ 6. ANIMATIONS ══════════════════════════════════════════════ */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: var(--d, 0s);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-up.in,
.reveal-right.in {
    opacity: 1;
    transform: translate(0);
}

/* ═══ 7. NAVBAR ══════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2 * var(--side-pad));
    max-width: var(--max-w);
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    top: 0.75rem;
    height: 64px;
    background: rgba(0, 0, 0, 0.75);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 42px;
    /* Logo ikonunu bir tık daha büyüttük */
    width: auto;
    object-fit: contain;
    transition: all 0.3s var(--ease);
    image-rendering: -webkit-optimize-contrast;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
    line-height: 1;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-1);
    font-family: var(--font-alt);
}

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--accent);
    margin-top: 2px;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo:hover .brand-name {
    color: var(--accent);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-2);
    padding: 0.5rem 0.85rem;
    border-radius: var(--r-sm);
    transition: color var(--t-fast), background var(--t-fast);
}

.nav-link:hover {
    color: var(--text-1);
    background: rgba(255, 255, 255, 0.06);
}

/* Nav CTA */
.nav-cta {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-1);
    background: var(--accent);
    padding: 0.45rem 1rem;
    border-radius: var(--r-pill);
    transition: opacity var(--t-fast), transform var(--t-fast);
    margin-left: 0.5rem;
}

.nav-cta:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    padding: 0.25rem;
    border-radius: var(--r-sm);
    transition: background var(--t-fast);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.06);
}

.hamburger .bar {
    height: 1.5px;
    width: 22px;
    background: var(--text-1);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open .bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open .bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══ 8. HERO ════════════════════════════════════════════════════ */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px var(--side-pad) 80px;
    gap: 4rem;
}

/* Noise texture */
.hero-noise {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
}

/* Ambient orbs */
.ambient {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    pointer-events: none;
    mix-blend-mode: screen;
}

.ambient-1 {
    width: 700px;
    height: 700px;
    background: #2997ff;
    top: -200px;
    left: -200px;
    animation: drift1 18s ease-in-out infinite alternate;
}

.ambient-2 {
    width: 500px;
    height: 500px;
    background: #5e5ce6;
    bottom: -150px;
    right: -100px;
    animation: drift2 22s ease-in-out infinite alternate-reverse;
}

.ambient-3 {
    width: 350px;
    height: 350px;
    background: #30d158;
    top: 40%;
    right: 25%;
    animation: drift1 15s ease-in-out infinite alternate;
    opacity: 0.08;
}

@keyframes drift1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 40px) scale(1.1);
    }
}

@keyframes drift2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, -30px) scale(1.08);
    }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 620px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    padding: 0.35rem 0.85rem;
    border-radius: var(--r-pill);
    margin-bottom: 1.75rem;
    backdrop-filter: blur(8px);
}

.chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #30d158;
    box-shadow: 0 0 8px #30d158;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    font-family: var(--font-alt);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--text-1);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 0.8rem 1.6rem;
    border-radius: var(--r-pill);
    transition: opacity var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-hero-primary:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-1);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    padding: 0.8rem 1.6rem;
    border-radius: var(--r-pill);
    backdrop-filter: blur(8px);
    transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-h);
    transform: translateY(-2px);
}

/* Hero Visual - Float Card */
.hero-visual {
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 500px;
}

.tech-float-card {
    background: rgba(18, 18, 20, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg), 0 0 0 0.5px rgba(255, 255, 255, 0.05) inset;
}

.tfc-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.tfc-dots {
    display: flex;
    gap: 6px;
}

.tfc-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.tfc-dots span:nth-child(1) {
    background: #ff5f57;
}

.tfc-dots span:nth-child(2) {
    background: #febc2e;
}

.tfc-dots span:nth-child(3) {
    background: #28c840;
}

.tfc-label {
    font-size: 0.75rem;
    color: var(--text-3);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.tfc-body {
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.tfc-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-2);
}

.tfc-metric-value {
    font-weight: 700;
    font-size: 0.82rem;
}

.tfc-metric-value.up {
    color: #30d158;
}

.tfc-bar-wrap {
    height: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.tfc-bar {
    height: 100%;
    width: var(--w, 0%);
    background: var(--accent);
    border-radius: 2px;
    animation: barGrow 1.5s var(--ease) forwards;
    transform-origin: left;
}

.tfc-bar-green {
    background: #30d158;
}

.tfc-bar-purple {
    background: #5e5ce6;
}

@keyframes barGrow {
    from {
        width: 0;
    }

    to {
        width: var(--w);
    }
}

.tfc-divider {
    height: 1px;
    background: var(--border);
}

.tfc-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: var(--text-3);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #30d158;
    flex-shrink: 0;
}

.status-dot.pulse {
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(48, 209, 88, 0);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.4;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--text-2), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.4;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 1;
    }
}

/* ═══ 9. LOGO BAR ════════════════════════════════════════════════ */
.logobar {
    padding: 2.5rem var(--side-pad);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
}

.logobar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem 3rem;
}

.logobar-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    white-space: nowrap;
}

.logobar-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.partner-pill {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-3);
    padding: 0.3rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color var(--t-fast), color var(--t-fast);
}

.partner-pill:hover {
    border-color: var(--border-h);
    color: var(--text-2);
}

/* ═══ 10. ABOUT ══════════════════════════════════════════════════ */
.about {
    border-bottom: 1px solid var(--border);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--t-fast), opacity var(--t-fast);
    margin-top: 0.5rem;
}

.text-link:hover {
    gap: 0.6rem;
    opacity: 0.8;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--border);
}

.stat-block {
    background: var(--bg-alt);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background var(--t-fast);
}

.stat-block:hover {
    background: rgba(255, 255, 255, 0.04);
}

.stat-num {
    font-family: var(--font-alt);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    display: inline-block;
}

.stat-pct {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-2);
    margin-top: 0.2rem;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-3);
    margin-top: 0.6rem;
    letter-spacing: 0.01em;
}

/* ═══ 11. TECHNOLOGY CARDS ═══════════════════════════════════════ */
.tech-section {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 3rem 2.5rem;
    transition: all 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

#card-ai {
    grid-column: span 3;
    grid-row: span 1;
}

#card-iot {
    grid-column: span 3;
    grid-row: span 1;
}

#card-aut {
    grid-column: span 2;
    grid-row: span 1;
}

#card-sw {
    grid-column: span 4;
    grid-row: span 1;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-h);
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(41, 151, 255, 0.05), transparent 60%);
    pointer-events: none;
}

.card-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-md);
    margin-bottom: 1.5rem;
}

.icon-blue {
    background: rgba(41, 151, 255, 0.12);
    color: #2997ff;
}

.icon-teal {
    background: rgba(90, 200, 250, 0.12);
    color: #5ac8fa;
}

.icon-purple {
    background: rgba(94, 92, 230, 0.12);
    color: #5e5ce6;
}

.icon-orange {
    background: rgba(255, 159, 10, 0.12);
    color: #ff9f0a;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.7rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.card-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-top: auto;
}

/* ═══ 12. SOLUTIONS ══════════════════════════════════════════════ */
.solutions {
    border-bottom: 1px solid var(--border);
}

.solutions .section-container.col {
    gap: 6rem;
}

.solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.solution-row-reverse {
    direction: rtl;
}

.solution-row-reverse>* {
    direction: ltr;
}

.solution-num {
    font-family: var(--font-alt);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.solution-text h3 {
    font-family: var(--font-alt);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-1);
    margin-bottom: 1.1rem;
}

.solution-text p {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-1);
}

.check-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: rgba(48, 209, 88, 0.12);
    border: 1px solid rgba(48, 209, 88, 0.3);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2330d158' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* Media frame */
.media-frame {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.media-frame:hover img {
    transform: scale(1.03);
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem 1.4rem;
}

.overlay-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: var(--r-pill);
    backdrop-filter: blur(8px);
}

/* ═══ 13. PROJECTS ═══════════════════════════════════════════════ */
.projects {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    background: transparent;
    border-radius: 0;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    transition: all 0.5s var(--ease);
}

#project-1 {
    grid-column: span 8;
}

#project-2 {
    grid-column: span 4;
}

#project-3 {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-h);
    transform: translateY(-6px);
}

.project-icon-bg {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bg-blue {
    background: rgba(41, 151, 255, 0.12);
    color: #2997ff;
}

.bg-teal {
    background: rgba(90, 200, 250, 0.12);
    color: #5ac8fa;
}

.bg-purple {
    background: rgba(94, 92, 230, 0.12);
    color: #5e5ce6;
}

.project-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.project-card p {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.project-badge {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-3);
}

/* ═══ 14. CTA BANNER ════════════════════════════════════════════ */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 7rem var(--side-pad);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.cta-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(41, 151, 255, 0.12), transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-alt);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: var(--text-1);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1rem;
    color: var(--text-2);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    background: var(--grad-main);
    padding: 0.9rem 2.5rem;
    border-radius: var(--r-pill);
    box-shadow: 0 4px 30px var(--accent-glow);
    transition: opacity var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
    letter-spacing: -0.01em;
}

.btn-cta:hover {
    opacity: 0.88;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

/* ═══ 15. CONTACT ════════════════════════════════════════════════ */

/* Social media buttons */
.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 0.45rem 0.85rem;
    border-radius: var(--r-pill);
    transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.social-btn:hover {
    color: var(--text-1);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-h);
    transform: translateY(-2px);
}

/* Ar-Ge project tag */
.project-arge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #ff9f0a;
    background: rgba(255, 159, 10, 0.1);
    border: 1px solid rgba(255, 159, 10, 0.25);
    padding: 0.2rem 0.6rem;
    border-radius: var(--r-pill);
    margin-bottom: 0.75rem;
}

.project-arge-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff9f0a;
    animation: blink 2s ease-in-out infinite;
}

/* Stat block — kuruluş yılı büyük numara için */
.stat-block .stat-num[data-count="2016"] {
    font-size: 2.2rem;
}

.contact {
    border-bottom: 1px solid var(--border);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: background var(--t-fast), border-color var(--t-fast);
}

.contact-item:hover {
    background: var(--bg-card-h);
    border-color: var(--border-h);
}

.ci-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(41, 151, 255, 0.1);
    color: var(--accent);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ci-label {
    font-size: 0.7rem;
    color: var(--text-3);
    font-weight: 500;
    margin-bottom: 0.2rem;
    letter-spacing: 0.02em;
}

.ci-value {
    font-size: 0.88rem;
    color: var(--text-1);
    font-weight: 500;
}

/* Form */
.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    color: var(--text-1);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
    resize: none;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(41, 151, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(41, 151, 255, 0.12);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    border: none;
    padding: 0.85rem 1.8rem;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: opacity var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
    box-shadow: 0 4px 20px var(--accent-glow);
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ═══ 14. PROCESS (PROCESS STEPS) ══════════════════════════════ */
.process-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

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

.process-step {
    position: relative;
    padding: 2rem;
    border-radius: var(--r-lg);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    transition: transform var(--t-med), border-color var(--t-fast);
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.step-num-bg {
    font-family: var(--font-alt);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    user-select: none;
}

.process-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.75rem;
    position: relative;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0;
}

/* ═══ 15. VISION / CRAFTSMANSHIP ════════════════════════════════ */
.vision-section {
    background: var(--bg-alt);
    overflow: hidden;
    padding: 8rem var(--side-pad);
}

.vision-card {
    background: var(--grad-dark);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(41, 151, 255, 0.08), transparent 40%);
    pointer-events: none;
}

.vision-quote {
    font-family: var(--font-alt);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-1);
    letter-spacing: -0.02em;
}

.vision-author {
    margin-top: 2rem;
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-1);
}

.author-title {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

/* ═══ 17. INTERACTIVE COMPONENTS ═════════════════════════════════ */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent), #5e5ce6);
    z-index: 10001;
    width: 0%;
    transition: width 0.1s ease;
}

/* Feature/Project Card Enhancements */
.feature-card,
.project-card {
    overflow: hidden;
    position: relative;
    /* cursor: none; removed to show default system cursor */
}

.feature-card::after,
.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after,
.project-card:hover::after {
    opacity: 1;
}

/* Magnetic Hover Trigger */
.btn-hero-primary,
.btn-hero-ghost,
.nav-cta,
.btn-submit,
.social-btn {
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (max-width: 1024px) {
    .cursor-follower {
        display: none;
    }

    * {
        cursor: auto !important;
    }
}

/* ═══ 16. FOOTER ═════════════════════════════════════════════════ */
.footer {
    background: var(--bg-alt);
    padding: 7rem var(--side-pad) 3rem;
    /* Even more padding */
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    /* 5 sütun: Marka (2.8 birim) + 4 Nav Grubu (1'er birim) */
    grid-template-columns: 2.8fr 1fr 1fr 1fr 1fr;
    gap: 5rem;
    /* Wider gaps for an open Apple-style feel */
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: auto;
    width: 280px;
    /* Büyütülmüş footer logosu */
    max-width: 100%;
    object-fit: contain;
    opacity: 1;
    margin-bottom: 2rem;
    will-change: opacity;
}

.footer-brand p {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-2);
    line-height: 1.5;
    max-width: 240px;
    letter-spacing: -0.01em;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-group h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
}

.footer-nav-group a {
    font-size: 0.82rem;
    /* Slightly smaller for premium look */
    color: var(--text-2);
    text-decoration: none;
    transition: color var(--t-fast);
    font-weight: 400;
}

.footer-nav-group a:hover {
    color: var(--text-1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 3rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-3);
    font-weight: 500;
}

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

.footer-bottom-links a {
    font-size: 0.75rem;
    color: var(--text-3);
    transition: color var(--t-fast);
}

.footer-bottom-links a:hover {
    color: var(--text-2);
}

/* ═══ 18. PARTNER SHOWCASE (inohom) ════════════════════════════ */
.partner-showcase {
    background: var(--bg-alt);
    padding: 10rem var(--side-pad);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partner-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.partner-video-showcase {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 6rem;
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.partner-video-showcase video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay-text {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 2;
}

.video-tag {
    background: var(--accent);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: var(--r-pill);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.partner-video-showcase h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
}

.partner-main-logo {
    height: 45px;
    width: auto;
    margin-bottom: 2.5rem;
    filter: brightness(1);
    opacity: 0.9;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

.partner-product-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}

.partner-product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    /* Logo hover shadow removed as requested */
}

.product-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #000;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.partner-product-card:hover .product-media img {
    transform: scale(1.08) translateZ(0);
}

/* Standard transparent PNG styling (Nova Panel) */
.partner-product-card img[src*="nova-panel-static-trans.png"] {
    mix-blend-mode: normal;
    background: transparent;
    object-fit: contain;
    padding: 1.5rem;
    image-rendering: -webkit-optimize-contrast;
}

/* Original WebP assets with white bg - Using MULTIPLY to make white transparent safely */
.partner-product-card img[src*="home-manager-"] {
    mix-blend-mode: multiply;
    /* Makes white background disappear on dark colors */
    object-fit: contain;
    padding: 1rem;
    filter: brightness(1.2) contrast(1.1);
    /* Compensate for multiply darkening */
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    /* Hardware acceleration for smoother edges */
}

.product-info {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.product-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.product-info p {
    font-size: 0.92rem;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-features {
    margin-top: auto;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.product-features li {
    font-size: 0.85rem;
    color: var(--text-3);
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.partner-footer {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
}

.partner-trust-badge {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 1rem 2.5rem;
    border-radius: var(--r-pill);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-2);
}

.badge-icon {
    color: #FFD700;
    font-size: 1.2rem;
}

/* ═══ 19. RESPONSIVE UPDATES ═════════════════════════════════════ */
@media (max-width: 1100px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .partner-showcase {
        padding: 6rem var(--side-pad);
    }

    .partner-product-card {
        padding: 0;
    }

    .partner-video-showcase {
        margin-bottom: 4rem;
    }

    .video-overlay-text {
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .partner-video-showcase h3 {
        font-size: 1.4rem;
    }
}

/* ═══ 17. RESPONSIVE ═════════════════════════════════════════════ */

/* Large Tablets / Small Laptops */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablets & Below */
@media (max-width: 900px) {
    :root {
        --side-pad: 2rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        max-width: 100%;
        width: 100%;
    }

    .hero-desc br {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .section-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-right {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vision-card {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2.5rem;
    }

    .solution-row {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .solution-row-reverse {
        flex-direction: column;
    }

    .hamburger {
        display: flex;
        /* Hamburger görünür */
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        display: none;
        /* JS ile açılacak */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        padding: 4rem 2rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
        padding: 1.2rem;
    }
}

/* Phones */
/* Tablet & Phones (Responsive Stack) */
@media (max-width: 850px) {
    .section {
        padding: 5rem 1.5rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
        line-height: 1.1;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    /* Force all containers to 1 column */
    .section-container,
    .vision-card,
    .cards-grid,
    .projects-grid,
    .stats-grid,
    .partner-grid,
    .opredo-feature-grid,
    .process-grid,
    .footer-top {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2.5rem;
    }

    /* Reset grid spans for all cards */
    .feature-card,
    .project-card,
    .partner-product-card,
    .vision-card {
        grid-column: span 12 !important;
        grid-row: auto !important;
        width: 100% !important;
        min-height: auto !important;
    }

    /* Extra fix for projects with internal grids (like Project 3) */
    .project-card {
        display: flex !important;
        flex-direction: column !important;
        padding: 2.5rem !important;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-links {
        justify-content: center;
        width: 100%;
    }

    /* Logo Mobile Optimization */
    .logo img {
        height: 35px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-tagline {
        display: none;
    }

    .footer-logo-img {
        width: 200px;
    }

    .opredo-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .opredo-main-desc {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
}

/* Phones */
@media (max-width: 600px) {
    .hero-chip {
        font-size: 0.75rem;
    }

    .stats-grid .stat-num {
        font-size: 2.5rem;
    }
}

/* Very Small Phones */
@media (max-width: 400px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-ghost {
        width: 100%;
        text-align: center;
    }
}

/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128c7e;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* ═══ 18. OPREDO SECTION ═════════════════════════════════════════ */
.opredo-section {
    position: relative;
    background: #050505;
    overflow: hidden;
    padding-top: 10rem;
    padding-bottom: 10rem;
    border-bottom: 1px solid var(--border);
}

.opredo-glow {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(35, 57, 129, 0.20) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.opredo-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: #7b9bd4;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

/* Opredo Branding */
.opredo-brand-wrapper {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: flex-start;
}

.opredo-main-logo {
    height: 160px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(91, 130, 209, 0.40));
    transition: transform 0.5s var(--ease);
}

.opredo-main-logo:hover {
    transform: scale(1.03);
}

.opredo-section .section-title {
    margin-top: 0;
}

.opredo-neon-text {
    color: #5b82d1;
    text-shadow: 0 0 20px rgba(91, 130, 209, 0.4);
}

.opredo-main-desc {
    font-size: 1.15rem;
    max-width: 540px;
    margin-bottom: 3.5rem;
}

/* Phone Mockup */
.phone-mockup-wrapper {
    position: relative;
    width: 320px;
    margin: 0 auto;
}

.phone-frame {
    width: 100%;
    aspect-ratio: 9/19.5;
    background: #111;
    border: 8px solid #222;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-button {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #333;
    border-radius: 10px;
}

.mockup-bg-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(35, 57, 129, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

/* Feature Grid */
.opredo-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.opredo-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.5s var(--ease);
}

.opredo-card:hover {
    background: rgba(35, 57, 129, 0.08);
    border-color: rgba(91, 130, 209, 0.3);
    transform: translateY(-5px);
}

.op-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(35, 57, 129, 0.15);
    color: #7b9bd4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.op-card-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.5rem;
}

.op-card-text p {
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.5;
}

/* CTA */
.opredo-cta-wrap {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.opredo-cta-wrap p {
    font-size: 0.95rem;
    color: var(--text-2);
    margin-bottom: 1.5rem;
}

.btn-opredo-primary {
    display: inline-flex;
    align-items: center;
    background: #233981;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(35, 57, 129, 0.35);
}

.btn-opredo-primary:hover {
    background: #1f326b;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(35, 57, 129, 0.55);
}

@media (max-width: 1024px) {
    .opredo-section .section-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .opredo-brand-wrapper {
        justify-content: center;
    }

    .opredo-main-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .opredo-feature-grid {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .opredo-feature-grid {
        grid-template-columns: 1fr;
    }

    .opredo-main-logo {
        height: 120px;
    }
}