/* ================================================
   İNOWAX — Main Stylesheet
   Colors: #1a2b48 (navy) | #98c595 (sage green)
   ================================================ */

:root {
    --navy: #1a2b48;
    --navy-deep: #0d1b30;
    --navy-mid: #243d62;
    --green: #98c595;
    --green-dim: rgba(152, 197, 149, 0.15);
    --green-glow: rgba(152, 197, 149, 0.4);
    --white: #f0f4f8;
    --grey: #7a8fa8;
    --font-display: 'Syne', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    background: var(--navy-deep);
	font-size: 11px;
}

body {
    font-family: var(--font-body);
    background: var(--navy-deep);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--navy-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 3px;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    position: static;
    background: rgba(13, 27, 48, 0.98);
    border-bottom: 1px solid rgba(152, 197, 149, 0.15);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
    transition: var(--transition);
}



.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 0.05em;
    text-decoration: none;
}

.nav-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.nav-logo span {
    color: var(--green);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
	padding: 2rem;
	
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240, 244, 248, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--green);
    color: var(--navy-deep);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    background: rgba(13, 27, 48, 0.98);
    padding: 1.5rem 2.5rem 2rem;
    position: relative;
    z-index: 999;
}

.nav-mobile.open {
    display: block;
}

.nav-mobile ul {
    list-style: none;
}

.nav-mobile li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(152, 197, 149, 0.1);
}

.nav-mobile a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.nav-mobile .btn-green-sm {
    display: inline-block;
    margin-top: 0.5rem;
    background: var(--green);
    color: var(--navy-deep) !important;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-burger {
        display: flex;
    }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-green {
    background: var(--green);
    color: var(--navy-deep);
    font-weight: 600;
}

.btn-green:hover {
    background: #b5d9b2;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--green-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(240, 244, 248, 0.4);
}

.btn-outline:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ================================================
   SECTION COMMON
   ================================================ */
.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.section-title .accent {
    color: var(--green);
}

.section-sub {
    color: var(--grey);
    font-size: 1rem;
    max-width: 600px;
}

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy-deep);
    margin-top: 0;
    padding-top: 0;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(152, 197, 149, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(152, 197, 149, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--green);
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

.hero-visual {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}

.hero-visual.left {
    left: 2%;
}

.hero-visual.right {
    right: 2%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pcb-wrap {
    position: relative;
    width: 280px;
    height: 280px;
}

.pcb-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(152, 197, 149, 0.2) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.pcb-svg {
    width: 100%;
    height: 100%;
}

.scan-line {
    animation: scanAnim 2s linear infinite;
}

@keyframes scanAnim {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(60px);
        opacity: 0;
    }
}

.code-stream {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--green);
    line-height: 1.9;
    opacity: 0.7;
    width: 280px;
}

.code-line {
    animation: fadeSlideIn 0.5s ease forwards;
    animation-delay: var(--d);
    opacity: 0;
    transform: translateX(10px);
    white-space: nowrap;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.app-mockup {
    background: rgba(26, 43, 72, 0.9);
    border: 1px solid rgba(152, 197, 149, 0.3);
    border-radius: 8px;
    overflow: hidden;
    width: 240px;
    backdrop-filter: blur(10px);
}

.app-bar {
    background: rgba(13, 27, 48, 0.8);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid rgba(152, 197, 149, 0.15);
}

.app-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.app-dot.r {
    background: #ff5f57;
}

.app-dot.y {
    background: #febc2e;
}

.app-dot.g {
    background: #28c840;
}

.app-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--grey);
    margin-left: 0.5rem;
}

.app-body {
    padding: 0.8rem 1rem;
}

.app-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.72rem;
    font-family: var(--font-mono);
    color: rgba(240, 244, 248, 0.7);
    border-bottom: 1px solid rgba(152, 197, 149, 0.08);
}

.badge {
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge.ok {
    background: rgba(152, 197, 149, 0.2);
    color: var(--green);
}

.badge.warn {
    background: rgba(254, 188, 46, 0.2);
    color: #febc2e;
}

.app-progress {
    margin-top: 0.6rem;
    height: 3px;
    background: rgba(152, 197, 149, 0.1);
    border-radius: 2px;
}

.app-progress .bar {
    height: 100%;
    background: var(--green);
    border-radius: 2px;
    animation: loadBar 2s ease forwards;
}

@keyframes loadBar {
    from {
        width: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 780px;
    padding: 2rem;
}

.hero-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.4s forwards;
}

.hero-title .accent {
    color: var(--green);
    position: relative;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.6s forwards;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.8s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
    opacity: 0;
    animation: fadeUp 0.6s ease 1.2s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--green), transparent);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.6);
    }
}

@media (max-width: 900px) {
    .hero-visual {
        display: none;
    }
}

/* ================================================
   SERVICES
   ================================================ */
.services {
    padding: 8rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.services .section-label,
.services .section-title,
.services .section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services .section-title {
    margin-bottom: 0.5rem;
}

.services .section-sub {
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: start;
}

.services-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    padding-top: 4rem;
    gap: 0;
}

.divider-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(152, 197, 149, 0.4), transparent);
}

.divider-node {
    color: var(--green);
    font-size: 1.2rem;
    padding: 0.5rem;
}

.col-header {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(152, 197, 149, 0.15);
}

.col-icon {
    width: 90px;
    height: 90px;
    border: 1px solid rgba(152, 197, 149, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.col-icon svg {
    width: 60px;
    height: 60px;
}

.col-tag {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--green);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.col-header h3 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
    border-left: 2px solid transparent;
    cursor: default;
}

.service-card:hover {
    background: var(--green-dim);
    border-left-color: var(--green);
    box-shadow: 0 0 30px rgba(152, 197, 149, 0.08);
}

.sc-icon {
    width: 72px;
    height: 72px;
    border: 1px solid rgba(152, 197, 149, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
    transition: var(--transition);
}

.sc-icon svg {
    width: 38px;
    height: 38px;
}

.service-card:hover .sc-icon {
    background: var(--green);
    color: var(--navy-deep);
    border-color: var(--green);
}

.service-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.service-card p {
    font-size: 1rem;
    color: var(--grey);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-divider {
        flex-direction: row;
        padding: 1rem 0;
        padding-top: 0;
    }

    .divider-line {
        width: 80px;
        height: 1px;
    }
}

/* ================================================
   ABOUT
   ================================================ */
.about {
    padding: 8rem 0;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 20vw;
    font-weight: 800;
    color: rgba(152, 197, 149, 0.025);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-img-wrap {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    max-width: 460px;
    background: var(--navy);
    border: 1px solid rgba(152, 197, 149, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lab-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(152, 197, 149, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(152, 197, 149, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.about-scope {
    width: 60%;
    height: 60%;
}

.about-scope svg {
    width: 100%;
    height: 100%;
}

.est-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--green);
    line-height: 1.2;
}

.about-img-border {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 70%;
    height: 70%;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    opacity: 0.4;
    pointer-events: none;
}

.about-desc {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    margin-top: 1rem;
}

.values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(152, 197, 149, 0.15);
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--green);
    background: var(--green-dim);
}

.value-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}

.value-icon svg {
    width: 20px;
    height: 20px;
}

.value-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.value-desc {
    font-size: 0.78rem;
    color: var(--grey);
    font-family: var(--font-mono);
}

@media (max-width: 768px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-placeholder {
        max-width: 100%;
    }
}

/* ================================================
   CONTACT
   ================================================ */
.contact {
    padding: 8rem 0;
    background: var(--navy);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 2rem 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(152, 197, 149, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 18px;
    height: 18px;
}

.info-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.2rem;
}

.info-val {
    font-size: 0.9rem;
    color: var(--white);
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: var(--navy-deep);
    border: 1px solid rgba(152, 197, 149, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--grey);
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

/* FORM */
.form-toggle-wrap {
    display: flex;
    background: var(--navy-deep);
    padding: 4px;
    margin-bottom: 2rem;
    gap: 4px;
}

.toggle-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: transparent;
    border: none;
    color: var(--grey);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-btn.active {
    background: var(--green);
    color: var(--navy-deep);
}

.toggle-btn:not(.active):hover {
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--navy-deep);
    border: 1px solid rgba(152, 197, 149, 0.2);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    resize: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(152, 197, 149, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(122, 143, 168, 0.6);
}

.form-group select option {
    background: var(--navy-deep);
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.3rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--grey);
    cursor: pointer;
}

.radio-item input[type="radio"] {
    accent-color: var(--green);
    width: 14px;
    height: 14px;
    padding: 0;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--navy-deep);
    border-top: 1px solid rgba(152, 197, 149, 0.15);
    padding-bottom: 5rem;
    margin-bottom: 0;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.footer-top {
    padding: 5rem 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.footer-slogan {
    color: var(--grey);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(152, 197, 149, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    transition: var(--transition);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-dim);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--green);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col li {
    font-size: 0.85rem;
    color: var(--grey);
}

.footer-col a {
    color: var(--grey);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid rgba(152, 197, 149, 0.15);
    padding: 1.2rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(122, 143, 168, 0.6);
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ================================================
   SCROLL NAV BUTTONS
   ================================================ */
.scroll-nav {
    position: fixed;
    right: 1.5rem;
    bottom: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.scroll-nav-btn {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border: 1px solid rgba(152, 197, 149, 0.3);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-nav-btn:hover {
    background: var(--green);
    color: var(--navy-deep);
    border-color: var(--green);
    box-shadow: 0 4px 20px var(--green-glow);
}

.scroll-nav-btn svg {
    width: 18px;
    height: 18px;
}

/* IGBT pulse & LED blink animations */
.igbt-pulse {
    animation: igbtRing 2s ease-in-out infinite;
}

@keyframes igbtRing {

    0%,
    100% {
        r: 4;
        opacity: 1;
    }

    50% {
        r: 8;
        opacity: 0;
    }
}

.led-blink-g {
    animation: ledG 2.5s ease-in-out infinite;
}

@keyframes ledG {

    0%,
    100% {
        opacity: 0.9
    }

    50% {
        opacity: 0.2
    }
}

.led-blink-r {
    animation: ledR 3.5s ease-in-out infinite;
}

@keyframes ledR {

    0%,
    100% {
        opacity: 0.2
    }

    40% {
        opacity: 0.8
    }
}

.led-blink-y {
    animation: ledY 4s ease-in-out infinite;
}

@keyframes ledY {

    0%,
    100% {
        opacity: 0.5
    }

    60% {
        opacity: 0.9
    }
}

.scan-line-v {
    animation: scanV 3s linear infinite;
}

@keyframes scanV {
    0% {
        transform: translateY(-200px);
        opacity: 0;
    }

    15% {
        opacity: 0.7;
    }

    85% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(200px);
        opacity: 0;
    }
}

.pcb-svg {
    width: 100%;
    height: 100%;
}

.pcb-wrap {
    width: 300px;
    height: 370px;
}

/* About — vizyon kutusu */
.about-desc+.about-desc {
    margin-top: -0.5rem;
}

.about-vision {
    margin: 1.8rem 0;
    padding: 1.4rem 1.6rem;
    border-left: 2px solid var(--green);
    background: rgba(152, 197, 149, 0.06);
}

.vision-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.8rem;
}

.about-vision p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.8;
}

.about-vision strong {
    color: var(--green);
    font-weight: 600;
}

/* Stat kutuları */
.values-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.8rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(152, 197, 149, 0.2);
    background: rgba(152, 197, 149, 0.04);
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--green);
    background: rgba(152, 197, 149, 0.1);
    transform: translateY(-4px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 0.8rem;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-num span {
    font-size: 1.4rem;
    font-weight: 600;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
}

/* About görseli - chip rotate & cursor blink */
.chip-rotate {
    transform-origin: 200px 200px;
    animation: chipSpin 12s linear infinite;
}

@keyframes chipSpin {
    to {
        transform: rotate(360deg);
    }
}

.code-cursor {
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 0.8
    }

    50% {
        opacity: 0
    }
}

/* About SVG cursor blink & chip rotate */
.code-cursor {
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 0.8
    }

    50% {
        opacity: 0
    }
}

.chip-rotate {
    animation: chipSpin 20s linear infinite;
    transform-origin: 200px 200px;
}

@keyframes chipSpin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

/* About görsel büyütme & cursor animasyonu */
.about-img-placeholder {
    min-height: 460px;
}

.code-cursor {
    animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 0;
    }
}

.chip-rotate {
    transform-origin: 200px 200px;
    animation: chipSpin 12s linear infinite;
}

@keyframes chipSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ================================================
   SERVICE CARD — HOVER KAYMA + DETAY BUTONU
   ================================================ */
.service-card {
    position: relative;
    overflow: hidden;
}

.sc-text {
    flex: 1;
}

.sc-detail-btn {
    display: none;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: 1px solid var(--green);
    color: var(--green);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
    margin-left: auto;
    align-self: center;
}

.sc-detail-btn:hover {
    background: var(--green);
    color: var(--navy-deep);
}

.service-card:hover {
    transform: translateX(-8px);
}

.service-card:hover .sc-detail-btn {
    display: flex;
}

/* ================================================
   DETAY PANELİ (SLIDE-IN)
   ================================================ */
.sc-detail-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 35, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
}

.sc-detail-overlay.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-detail-panel {
    width: 500px;
    max-width: 95vw;
    max-height: 90vh;
    height: auto;
    background: var(--navy);
    border: 1px solid rgba(152, 197, 149, 0.3);
    padding: 3rem 2.5rem;
    position: relative;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
    overflow-y: auto;
}

.sc-detail-panel.open {
    transform: translateY(0);
    opacity: 1;
}

.sc-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 1px solid rgba(152, 197, 149, 0.3);
    color: var(--grey);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.sc-close:hover {
    border-color: var(--green);
    color: var(--green);
}

.sc-detail-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(152, 197, 149, 0.2);
}

.sc-detail-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.sc-detail-content li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.6;
}

.sc-detail-content li::before {
    content: '▸';
    color: var(--green);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.sc-detail-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
}

/* Footer logo resim */
.footer-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 0.8rem;
}

/* Renkli sosyal ikonlar */
.social-linkedin {
    color: #0077b5 !important;
    border-color: #0077b5 !important;
}

.social-linkedin:hover {
    background: #0077b5 !important;
    color: #fff !important;
}

.social-instagram {
    color: #e1306c !important;
    border-color: #e1306c !important;
}

.social-instagram:hover {
    background: #e1306c !important;
    color: #fff !important;
}

.social-whatsapp {
    color: #25d366 !important;
    border-color: #25d366 !important;
}

.social-whatsapp:hover {
    background: #25d366 !important;
    color: #fff !important;
}

.social-mail {
    color: #1a73e8 !important;
    border-color: #1a73e8 !important;
}

.social-mail:hover {
    background: #1a73e8 !important;
    color: #fff !important;
}

.social-phone {
    color: #a8b8cc !important;
    border-color: #a8b8cc !important;
}

.social-phone:hover {
    background: #a8b8cc !important;
    color: var(--navy-deep) !important;
}

/* Footer altındaki boşluğu tamamen kaldır */
footer {
    display: block;
}

footer+* {
    display: none;
}

body {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

html {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Scroll nav altında boşluk bırakma */
.scroll-nav {
    bottom: 1.5rem;
}

body::after {
    display: none !important;
    content: none !important;
}

/* Sayfa taşmasını engelle */
body {
    overflow-y: auto;
    position: relative;
}

/* Body yükseklik fix */
html,
body {
    height: auto !important;
    min-height: unset !important;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.info-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.info-link:hover {
    color: var(--green);
}

/* ================================================
   RESPONSIVE — 1024px (Tablet)
   ================================================ */
@media (max-width: 1024px) {

    /* Hero */
    .hero-visual {
        display: none;
    }

    .hero-content {
        transform: translateX(0);
        max-width: 100%;
        padding: 2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3.2rem);
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-divider {
        flex-direction: row;
        padding: 1rem 0;
    }

    .divider-line {
        width: 80px;
        height: 1px;
    }

    /* About */
    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-placeholder {
        max-width: 100%;
        min-height: 320px;
    }

    /* Contact */
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* ================================================
   RESPONSIVE — 768px (Mobil)
   ================================================ */
@media (max-width: 768px) {

    /* Genel */
    .container {
        padding: 0 1.2rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    /* Navbar */
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-inner {
        padding: 1rem 1.2rem;
    }

    /* Hero */
    .hero {
        min-height: calc(100vh - 60px);
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .hero-sub {
        font-size: 0.92rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    /* Services */
    .services {
        padding: 4rem 0;
    }

    .col-header {
        flex-direction: column;
        gap: 0.8rem;
    }

    .col-header h3 {
        font-size: 1.3rem;
    }

    .service-card {
        flex-wrap: wrap;
        padding: 1.2rem;
    }

    .service-card:hover {
        transform: none;
    }

    .sc-detail-btn {
        display: flex !important;
        margin-left: 0;
        margin-top: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .sc-icon {
        width: 52px;
        height: 52px;
    }

    .sc-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-card h4 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    /* About */
    .about {
        padding: 4rem 0;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-img-placeholder {
        min-height: 260px;
    }

    .about-bg-text {
        font-size: 30vw;
    }

    .about-vision {
        padding: 1rem 1.2rem;
    }

    /* Contact */
    .contact {
        padding: 4rem 0;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-toggle-wrap {
        flex-direction: column;
        gap: 0;
    }

    .toggle-btn {
        padding: 0.8rem;
    }

    .map-placeholder {
        height: 150px;
    }

    /* Detail Panel */
    .sc-detail-panel {
        width: 95vw;
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* Scroll nav */
    .scroll-nav {
        right: 1rem;
        bottom: 1.5rem;
    }

    .scroll-nav-btn {
        width: 38px;
        height: 38px;
    }
}

/* ================================================
   RESPONSIVE — 480px (Küçük Mobil)
   ================================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-sub {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.75rem;
    }

    .col-icon {
        width: 60px;
        height: 60px;
    }

    .col-icon svg {
        width: 38px;
        height: 38px;
    }

    .about-vision p {
        font-size: 0.85rem;
    }

    .sc-detail-panel {
        padding: 1.5rem 1rem;
        max-height: 85vh;
    }

    .footer-logo-img {
        height: 32px;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* ================================================
   TOAST BİLDİRİM
   ================================================ */
.toast {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    padding: 1rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-left: 3px solid var(--green);
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transform: translateX(calc(100% + 2rem));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 320px;
    display: none;
}

.toast.show {
    display: block;
    transform: translateX(0);
}

.toast.error {
    border-left-color: #ff4444;
}