﻿/* ==========================================================================
   SEFAKARADENIZ.COM — GOLD & BLACK REDESIGN
   ========================================================================== */

:root {
    --gold:       #D4AF37;
    --gold-light: #F0D060;
    --gold-dim:   rgba(212,175,55,0.18);
    --gold-glow:  rgba(212,175,55,0.12);
    --bg:         #0A0A0A;
    --bg-card:    #111111;
    --bg-card2:   #161616;
    --border:     rgba(212,175,55,0.14);
    --border-hi:  rgba(212,175,55,0.38);
    --txt:        #FFFFFF;
    --txt-mid:    #9A9A9A;
    --txt-dim:    #555555;
    --font:       'Inter', sans-serif;
    --ease:       cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--txt);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.gold-text { color: var(--gold); }

/* ── AMBIENT ────────────────────────────────────────────────────── */
body::before {
    content: '';
    position: fixed; top: -300px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(212,175,55,.10) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none; z-index: 0;
}

/* Global Ambient Particles Canvas */
.global-bg-canvas {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none; z-index: 0;
    opacity: 0.65;
}

html {
    overflow-y: scroll; /* Force vertical scrollbar on all pages to eliminate layout shift */
}

main {
    padding-top: 0;
}

/* ── NAVBAR (100% Dead-Centered Fixed Width Glass Bar) ────────────── */
.navbar {
    position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 64px); max-width: 1440px; margin: 0 auto;
    z-index: 9999;
    pointer-events: none;
    box-sizing: border-box;
}

.nav-inner {
    width: 100%; height: 64px;
    padding: 0 32px;
    background: rgba(12, 12, 16, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.85);
    display: flex; align-items: center; justify-content: space-between;
    pointer-events: auto;
    box-sizing: border-box;
}

.nav-brand {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; flex: 0 0 auto;
}
.sk-mark {
    font-size: 1rem; font-weight: 800;
    color: #0A0A0C; background: var(--gold);
    padding: 5px 12px; border-radius: 8px;
    letter-spacing: -0.5px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}
.nav-brand-name {
    font-size: .88rem; font-weight: 700;
    letter-spacing: 2px; color: var(--txt);
    white-space: nowrap;
}

.nav-menu {
    display: flex; align-items: center; gap: 28px;
    list-style: none; margin: 0; padding: 0;
}
.nav-link {
    font-size: .88rem; font-weight: 600;
    color: var(--txt-mid); text-decoration: none;
    transition: color .25s ease; position: relative;
    padding: 6px 0; display: inline-block;
    white-space: nowrap;
}
.nav-link:hover { color: #FFFFFF; }
.nav-link.active {
    color: var(--gold); font-weight: 600;
}
.nav-link.active::after {
    content: '';
    position: absolute; bottom: -2px; left: 0; right: 0;
    height: 2px; background: var(--gold);
    border-radius: 2px;
    box-shadow: 0 0 12px var(--gold);
}

.nav-right {
    display: flex; align-items: center; gap: 14px;
    flex: 0 0 auto;
}

.btn-contact {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: #0A0A0C;
    font-size: .84rem; font-weight: 600;
    padding: 9px 20px; border-radius: 8px;
    text-decoration: none;
    transition: all .2s ease;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}
.btn-contact:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-admin {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--txt-mid);
    display: flex; align-items: center; justify-content: center;
    transition: all .2s ease;
}
.btn-admin:hover {
    color: var(--gold); border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.1);
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: #0A0A0A;
    font-size: .9rem; font-weight: 600;
    padding: 12px 28px; border-radius: 8px;
    transition: background .2s, box-shadow .2s;
}
.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 0 28px rgba(212,175,55,.35);
}

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    border: 1px solid var(--border-hi);
    color: var(--gold); font-size: .9rem; font-weight: 500;
    padding: 12px 28px; border-radius: 8px;
    transition: background .2s;
}
.btn-secondary:hover { background: var(--gold-dim); }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
    max-width: 1440px; margin: 0 auto;
    padding: 130px 40px 40px;
    position: relative; z-index: 1;
    min-height: 560px;
    display: block;
}

.hero-carousel-nav {
    position: absolute; top: 120px; right: 40px; z-index: 25;
    display: flex; align-items: center; gap: 12px;
}
.hero-timer-select {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(22, 22, 28, 0.9); border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 999px; padding: 4px 12px;
    color: var(--gold); font-size: 0.76rem; font-weight: 600;
}
.hero-timer-select select {
    background: transparent; border: none; outline: none;
    color: var(--gold-light); font-size: 0.76rem; font-weight: 700;
    font-family: var(--font); cursor: pointer;
}
.hero-timer-select select option {
    background: #0A0A0C; color: #FFFFFF;
}
.hero-dots-wrap {
    display: inline-flex; align-items: center; gap: 8px;
}
.carousel-dot {
    width: 28px; height: 6px; border-radius: 3px;
    background: rgba(255, 255, 255, 0.2); border: none; cursor: pointer;
    transition: all 0.35s ease;
}
.carousel-dot.active {
    background: var(--gold); width: 44px;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.hero-slider-wrap {
    position: relative; width: 100%; min-height: 520px;
}

.hero-slide-item {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: absolute; top: 0; left: 0; width: 100%;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(18px) scale(0.985);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.75s ease;
    z-index: 1;
}
.hero-slide-item.active {
    position: relative; opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateY(0) scale(1);
    z-index: 2;
}

.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
    display: inline-flex; align-items: center;
    border: 1px solid var(--border-hi);
    border-radius: 999px;
    padding: 8px 24px; margin-bottom: 24px;
    font-size: .78rem; font-weight: 600;
    color: var(--txt-mid); letter-spacing: 1.5px;
    background: rgba(212,175,55,.03);
}

.hero-badge.gold-badge {
    background: rgba(212, 175, 55, 0.12); border-color: rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
}

.hero-title {
    font-size: clamp(2.1rem, 3.4vw, 3.2rem);
    font-weight: 700; line-height: 1.2;
    letter-spacing: -1px; margin-bottom: 24px;
    white-space: normal;
}

.hero-desc {
    color: var(--txt-mid); font-size: 1.05rem;
    line-height: 1.75; margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-right {
    display: flex; align-items: center; justify-content: flex-end;
    padding: 10px 0; position: relative; width: 100%;
}

.hero-img-wrap {
    width: 100%; max-width: 620px; height: 500px;
    position: relative; display: flex; align-items: center; justify-content: flex-end;
}

.robot-img {
    width: 100%; height: 100%; object-fit: contain;
    filter: drop-shadow(0 12px 35px rgba(212, 175, 55, 0.25));
}

/* Native Gold Glass HUD Panel - 100% Turkish & Seamless */
.hero-hud-card {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.96) 0%, rgba(10, 10, 14, 0.98) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px; padding: 28px 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.15);
    width: 100%; max-width: 500px; margin-left: auto; margin-right: 0;
    position: relative; overflow: hidden;
}
.hero-hud-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.8) 50%, transparent 100%);
}

.hud-top-bar {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 14px; margin-bottom: 20px;
}
.hud-status {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.76rem; font-weight: 800; color: var(--gold); letter-spacing: 1px;
}
.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
    box-shadow: 0 0 10px var(--gold); animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}
.hud-version { font-size: 0.74rem; color: var(--txt-dim); font-weight: 600; }

.hud-metrics-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px;
}
.hud-metric {
    background: rgba(0, 0, 0, 0.45); border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px; padding: 16px; text-align: left;
}
.hud-lbl { font-size: 0.7rem; color: var(--txt-mid); font-weight: 700; letter-spacing: 0.5px; display: block; }
.hud-big-gold {
    font-size: 1.7rem; font-weight: 800; color: var(--gold); margin: 4px 0 2px;
    background: linear-gradient(135deg, #FFF5D6 0%, #E6C252 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hud-sub { font-size: 0.74rem; color: var(--gold-light); font-weight: 600; }

.hud-graph-box {
    background: rgba(0, 0, 0, 0.35); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px; padding: 16px; margin-bottom: 20px;
}
.hud-graph-header {
    display: flex; justify-content: space-between; font-size: 0.78rem; font-weight: 700; color: var(--txt-mid); margin-bottom: 14px;
}
.gold-txt { color: var(--gold-light); }

.hud-bars {
    display: flex; align-items: flex-end; justify-content: space-between; height: 75px; gap: 12px; padding: 0 10px;
}
.hbar {
    flex: 1; height: var(--h); background: rgba(212, 175, 55, 0.25);
    border-radius: 6px 6px 0 0; position: relative; transition: height 0.4s ease;
}
.hbar.active {
    background: linear-gradient(180deg, #FFF5D6 0%, #E6C252 100%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}
.hbar span {
    position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
    font-size: 0.7rem; color: var(--txt-dim); font-weight: 600;
}

.hud-action-btn {
    display: flex; align-items: center; justify-content: center; width: 100%;
    background: linear-gradient(135deg, #FFF5D6 0%, #E6C252 100%);
    color: #0A0A0C; font-weight: 800; font-size: 0.9rem; padding: 13px;
    border-radius: 12px; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hud-action-btn:hover {
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.soc-header { display: flex; flex-direction: column; gap: 4px; margin-bottom: 6px; }
.soc-tag { font-size: 0.74rem; font-weight: 800; color: var(--gold); letter-spacing: 1.5px; }
.soc-header h4 { font-size: 1.15rem; font-weight: 800; color: #FFFFFF; }
.soc-desc { font-size: 0.86rem; color: var(--txt-mid); margin-bottom: 14px; line-height: 1.5; }
.btn-soc { padding: 10px 22px; font-size: 0.85rem; border-radius: 10px; width: fit-content; }

/* ── FEATURES BAR ────────────────────────────────────────────────── */
.features-bar {
    max-width: 1440px; margin: 0 auto;
    padding: 10px 40px 70px;
    position: relative; z-index: 1;
}
.features-inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.feat-item {
    background: linear-gradient(165deg, rgba(24, 24, 26, 0.95) 0%, rgba(12, 12, 14, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 44px 32px 40px;
    display: flex; flex-direction: column;
    gap: 20px;
    transition: all .35s cubic-bezier(.16,1,.3,1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feat-item::before {
    content: '';
    position: absolute; top: 0; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
    opacity: 0.8;
}

.feat-item::after {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    filter: blur(25px);
    pointer-events: none;
    transition: opacity .35s ease;
    opacity: 0.5;
}

.feat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.55);
    background: linear-gradient(165deg, rgba(30, 30, 34, 0.98) 0%, rgba(16, 16, 18, 1) 100%);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.75), 0 0 35px rgba(212, 175, 55, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.feat-item:hover::after {
    opacity: 1;
}

.feat-icon {
    width: 64px; height: 64px;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.22) 0%, rgba(12, 12, 12, 0.9) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.16), inset 0 0 12px rgba(212, 175, 55, 0.1);
    margin-bottom: 6px;
    transition: transform 0.35s cubic-bezier(.16,1,.3,1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.feat-item:hover .feat-icon {
    transform: scale(1.1);
    border-color: var(--gold-light);
    box-shadow: 0 0 32px rgba(212, 175, 55, 0.4), inset 0 0 16px rgba(212, 175, 55, 0.2);
}

.feat-icon svg {
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

.feat-body h3 {
    font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--txt);
    letter-spacing: -0.3px;
}

.feat-body p {
    font-size: .88rem; color: #A4A4A4; line-height: 1.65;
}

/* ── TOOLS BAR ───────────────────────────────────────────────────── */
.tools-bar {
    max-width: 1440px; margin: 0 auto;
    padding: 10px 40px 60px;
    position: relative; z-index: 1;
}
.tools-inner {
    display: flex; align-items: center; gap: 24px;
    background: linear-gradient(145deg, rgba(20, 20, 24, 0.8) 0%, rgba(10, 10, 12, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 20px;
    padding: 18px 28px;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.tools-label {
    font-size: .88rem; font-weight: 700;
    color: var(--txt); white-space: nowrap; flex-shrink: 0;
    display: flex; align-items: center; gap: 8px;
    letter-spacing: -0.2px;
}
.tools-label::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
}
.tools-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    flex: 1;
    width: 100%;
}

.tool-chip {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 9px 14px; border-radius: 12px;
    font-size: .82rem; font-weight: 600; color: var(--txt);
    white-space: nowrap; flex: 1 1 auto; min-width: 110px;
    transition: all .25s cubic-bezier(.16,1,.3,1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.tool-chip:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 16px rgba(212, 175, 55, 0.15);
}
.tool-chip svg { flex-shrink: 0; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }

/* Tooltip Popup */
.tool-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: linear-gradient(145deg, rgba(22, 22, 26, 0.96) 0%, rgba(10, 10, 12, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #F1F5F9;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.76rem;
    font-weight: 400;
    white-space: normal;
    width: 200px;
    text-align: center;
    line-height: 1.45;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85), 0 0 20px rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(12px);
    z-index: 1000;
}
.tool-tooltip::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(212, 175, 55, 0.35) transparent transparent transparent;
}
.tool-chip:hover .tool-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ── FİKİRDEN SONUCA TIMELINE ────────────────────────────────────── */
.fts-section {
    padding: 60px 40px 80px;
    position: relative; z-index: 1;
    background: transparent;
}
.fts-container {
    max-width: 1200px;
    margin: 0 auto;
}
.fts-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--txt);
    letter-spacing: -0.5px;
    margin-bottom: 56px;
}
.fts-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.fts-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}
/* Dashed connector line between steps */
.fts-line {
    position: absolute;
    top: 36px; /* center of icon circle */
    left: 50%;
    width: 100%;
    height: 2px;
    border-top: 2px dashed rgba(212, 175, 55, 0.45);
    z-index: 0;
}
.fts-step-last .fts-line { display: none; }

/* Icon circle */
.fts-icon-wrap {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.55);
    background: rgba(12, 12, 14, 0.95);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    position: relative; z-index: 1;
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.06), 0 8px 24px rgba(0,0,0,0.5);
    transition: all .3s cubic-bezier(.16,1,.3,1);
    flex-shrink: 0;
}
.fts-icon-wrap:hover,
.fts-icon-active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.1), 0 0 24px rgba(212, 175, 55, 0.3);
}
/* Label below icon */
.fts-label {
    text-align: center;
    margin-top: 20px;
    padding: 0 8px;
}
.fts-num {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}
.fts-label p {
    font-size: 0.83rem;
    color: rgba(241, 245, 249, 0.6);
    line-height: 1.5;
    margin: 0;
}


.process-header {
    text-align: center;
    margin-bottom: 56px;
}
.process-header .section-title {
    font-size: 2.2rem; font-weight: 700; color: var(--txt);
    letter-spacing: -0.5px;
}

.process-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: flex-start;
}

.process-line {
    position: absolute;
    top: 36px;
    left: 8%; right: 8%;
    height: 1px;
    border-top: 1.5px dashed rgba(212, 175, 55, 0.45);
    z-index: 0;
}

.process-step {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    padding: 0 10px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-step:hover {
    transform: translateY(-8px);
}

.step-circle {
    width: 74px; height: 74px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(26, 26, 30, 0.98) 0%, rgba(8, 8, 10, 1) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.18), inset 0 0 12px rgba(212, 175, 55, 0.1);
    margin-bottom: 22px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-step:hover .step-circle {
    border-color: var(--gold-light);
    box-shadow: 0 0 38px rgba(212, 175, 55, 0.45), inset 0 0 16px rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}
.step-circle svg {
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

.step-num {
    font-size: 1.1rem; font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.step-desc {
    font-size: 0.86rem; color: #9A9A9A;
    line-height: 1.6;
    max-width: 220px;
}

/* ── PROJECTS ─────────────────────────────────────────────────────── */
.projects-section {
    max-width: 1440px; margin: 0 auto;
    padding: 20px 40px 70px;
    position: relative; z-index: 1;
}

.projects-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 32px;
}

.section-overline {
    font-size: .7rem; color: var(--gold);
    letter-spacing: 3px; font-weight: 600;
    margin-bottom: 8px;
}
.section-title {
    font-size: 1.8rem; font-weight: 600; color: var(--txt);
}

.see-all-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .84rem; color: var(--txt-mid);
    transition: color .2s;
}
.see-all-link:hover { color: var(--gold); }

.projects-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

.project-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; padding: 28px 24px;
    display: flex; flex-direction: column; gap: 12px;
    transition: border-color .2s, transform .2s;
}
.project-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-3px);
}
.project-card.featured {
    background: linear-gradient(135deg, var(--bg-card2) 0%, rgba(212,175,55,.05) 100%);
    border-color: rgba(212,175,55,.25);
}

.proj-badge {
    display: inline-flex; align-self: flex-start;
    background: var(--gold-dim); color: var(--gold);
    font-size: .68rem; font-weight: 600; letter-spacing: 1px;
    padding: 3px 10px; border-radius: 999px;
}
.project-card h3 {
    font-size: 1.05rem; font-weight: 600; color: var(--txt);
}
.project-card p {
    font-size: .8rem; color: var(--txt-mid); line-height: 1.55; flex: 1;
}
.proj-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .8rem; color: var(--gold); font-weight: 500;
    transition: gap .2s;
}
.proj-link:hover { gap: 10px; }

/* ── ECOSYSTEM ─────────────────────────────────────────────────────── */
.eco-section {
    max-width: 1440px; margin: 0 auto;
    padding: 0 40px 70px;
    position: relative; z-index: 1;
}
.eco-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.eco-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; padding: 24px;
    display: flex; flex-direction: column; gap: 10px;
    transition: border-color .2s, transform .2s;
}
.eco-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.eco-top { display: flex; justify-content: space-between; align-items: center; }
.eco-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--gold-glow); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
}
.eco-badge {
    font-size: .62rem; color: var(--txt-dim);
    border: 1px solid var(--border); padding: 2px 8px; border-radius: 4px;
    font-family: monospace;
}
.eco-card h3 { font-size: 1rem; font-weight: 600; }
.eco-card p { font-size: .78rem; color: var(--txt-mid); line-height: 1.5; flex: 1; }
.eco-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .78rem; color: var(--gold); font-weight: 500;
    transition: gap .2s;
}
.eco-link:hover { gap: 10px; }

/* ── CTA ────────────────────────────────────────────────────────────── */
.cta-section {
    max-width: 1440px; margin: 0 auto;
    padding: 0 40px 80px;
    position: relative; z-index: 1;
}
.cta-box {
    position: relative; overflow: hidden;
    background: linear-gradient(145deg, rgba(18, 18, 22, 0.95) 0%, rgba(8, 8, 10, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px; padding: 34px 48px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.cta-canvas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}
.cta-glow {
    position: absolute; top: -100px; right: -100px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(212,175,55,.16) 0%, transparent 65%);
    filter: blur(60px); pointer-events: none;
}
.cta-content { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 32px; }
.cta-content h2 { font-size: 2.2rem; font-weight: 600; line-height: 1.35; }

/* ── ULTRA LUXURY FOOTER ────────────────────────────────────────── */
.site-footer {
    background: #070709;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    padding: 72px 32px 28px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.footer-ambient-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1.1fr 1.3fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 56px;
    position: relative;
    z-index: 1;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand-desc {
    font-size: 0.84rem;
    color: rgba(241, 245, 249, 0.65);
    margin: 18px 0 16px;
    line-height: 1.65;
    max-width: 290px;
}

.footer-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 163, 127, 0.1);
    border: 1px solid rgba(16, 163, 127, 0.3);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.76rem;
    color: #10A37F;
    font-weight: 500;
    margin-bottom: 20px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #10A37F;
    border-radius: 50%;
    box-shadow: 0 0 8px #10A37F;
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.footer-social-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin-top: 6px;
}

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

.footer-nav-list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    color: rgba(241, 245, 249, 0.65);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
    color: var(--gold);
    font-weight: 700;
}

.footer-nav-list a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-nav-list a:hover .nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

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

.stack-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: rgba(241, 245, 249, 0.7);
}

.stack-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold);
}

.footer-newsletter-card {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.85) 0%, rgba(10, 10, 14, 0.95) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-newsletter-card p {
    font-size: 0.82rem;
    color: rgba(241, 245, 249, 0.65);
    line-height: 1.55;
    margin-bottom: 16px;
}

.nl-form {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    padding: 4px 4px 4px 12px;
    transition: all 0.25s ease;
}

.nl-form:focus-within {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
}

.nl-form input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-size: 0.83rem;
    font-family: var(--font);
}

.nl-form input::placeholder {
    color: rgba(241, 245, 249, 0.4);
}

.nl-form button {
    background: linear-gradient(135deg, var(--gold) 0%, #C5A028 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 14px;
    color: #0A0A0C;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.nl-form button:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
}

.nl-guarantee {
    display: block;
    font-size: 0.72rem;
    color: rgba(241, 245, 249, 0.45);
    margin-top: 12px;
}

.footer-bottom {
    max-width: 1360px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(241, 245, 249, 0.5);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-tagline {
    color: rgba(241, 245, 249, 0.4);
    font-size: 0.76rem;
}

.footer-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(241, 245, 249, 0.7);
    font-weight: 500;
}

/* ── PROJECTS PAGE ────────────────────────────────────────────────── */
.page-hero {
    max-width: 1440px; margin: 0 auto;
    padding: 130px 40px 50px;
    text-align: center;
    position: relative; z-index: 1;
}
.page-hero-inner { max-width: 1440px; margin: 0 auto; }
.page-title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 800; line-height: 1.2;
    letter-spacing: -1px; margin-bottom: 20px;
}
.page-desc {
    font-size: 1.05rem; color: var(--txt-mid);
    line-height: 1.75;
}

.projects-page-section {
    max-width: 1440px; margin: 0 auto;
    padding: 20px 40px 80px;
    position: relative; z-index: 1;
}

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

.project-card-full {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.95) 0%, rgba(12, 12, 15, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    position: relative; overflow: hidden;
}
.project-card-full:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(212, 175, 55, 0.2);
}
.project-card-full::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.5) 50%, transparent 100%);
}

.proj-card-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px;
}
.proj-tag {
    font-size: 0.72rem; font-weight: 700;
    color: var(--gold); background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4px 12px; border-radius: 999px;
    letter-spacing: 0.5px;
}
.proj-date {
    font-size: 0.75rem; color: var(--txt-dim); font-family: monospace;
}

.project-card-full h3 {
    font-size: 1.25rem; font-weight: 700; color: #FFFFFF;
    margin-bottom: 12px; line-height: 1.35;
}
.project-card-full p {
    font-size: 0.88rem; color: var(--txt-mid);
    line-height: 1.65; margin-bottom: 24px; flex: 1;
}

.proj-stack {
    display: flex; gap: 8px; flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}
.proj-stack span {
    font-size: 0.72rem; color: #E2E8F0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 10px; border-radius: 6px;
}

/* ── TOOLS DETAILED PAGE (araclar.html) ─────────────────────────────── */
.tools-page-section {
    max-width: 1440px; margin: 0 auto;
    padding: 20px 40px 90px;
    position: relative; z-index: 1;
}

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

.tool-detail-card {
    background: linear-gradient(145deg, rgba(20, 20, 26, 0.95) 0%, rgba(10, 10, 14, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 22px;
    padding: 32px 28px;
    display: flex; flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65);
    position: relative; overflow: hidden;
}
.tool-detail-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.22);
}
.tool-detail-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.6) 50%, transparent 100%);
}

.tool-card-header {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 24px; padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tool-icon-wrap {
    width: 54px; height: 54px; border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.tool-card-header h3 {
    font-size: 1.2rem; font-weight: 700; color: #FFFFFF;
    margin-bottom: 6px; letter-spacing: -0.3px;
}

.tool-badge {
    font-size: 0.72rem; font-weight: 600;
    color: var(--gold); background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.28);
    padding: 3px 10px; border-radius: 999px;
    display: inline-block;
}

.tool-card-body h4 {
    font-size: 0.84rem; font-weight: 700; color: var(--gold-light);
    margin-bottom: 8px; margin-top: 14px;
    letter-spacing: 0.2px;
}
.tool-card-body h4:first-child { margin-top: 0; }

.tool-card-body p {
    font-size: 0.86rem; color: var(--txt-mid);
    line-height: 1.65; margin-bottom: 16px;
}

.tool-card-body ul {
    list-style: none; padding: 0; margin: 0;
}
.tool-card-body ul li {
    font-size: 0.82rem; color: #CBD5E1;
    position: relative; padding-left: 18px;
    margin-bottom: 8px; line-height: 1.5;
}
.tool-card-body ul li::before {
    content: '◆';
    position: absolute; left: 0; top: 0;
    font-size: 0.6rem; color: var(--gold);
}

/* ── HAKKIMDA PAGE (hakkimda.html) ────────────────────────────────── */
.about-stats-section {
    max-width: 1440px; margin: 0 auto;
    padding: 0 40px 60px;
    position: relative; z-index: 1;
}
.about-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.about-stat-card {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.95) 0%, rgba(12, 12, 15, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px; padding: 28px 24px; text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.stat-num {
    font-size: 2.2rem; font-weight: 800; color: var(--gold);
    margin-bottom: 6px; letter-spacing: -0.5px;
}
.stat-label {
    font-size: 0.84rem; color: var(--txt-mid); font-weight: 500;
}

.about-story-section {
    max-width: 1440px; margin: 0 auto;
    padding: 20px 40px 80px;
    position: relative; z-index: 1;
}
.story-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
    align-items: center;
}
.story-box h2 {
    font-size: 2rem; font-weight: 700; line-height: 1.35;
    margin-bottom: 24px;
}
.story-box p {
    font-size: 0.94rem; color: var(--txt-mid); line-height: 1.75;
    margin-bottom: 16px;
}

.story-values { display: flex; flex-direction: column; gap: 20px; }
.value-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px; padding: 20px 24px;
    display: flex; gap: 16px; align-items: flex-start;
    transition: transform 0.3s ease;
}
.value-item:hover {
    transform: translateX(6px);
    border-color: rgba(212, 175, 55, 0.4);
}
.val-icon {
    font-size: 1.6rem; line-height: 1;
}
.value-item h3 { font-size: 1rem; font-weight: 700; color: #FFFFFF; margin-bottom: 6px; }
.value-item p { font-size: 0.84rem; color: var(--txt-mid); line-height: 1.55; }

/* ── TEKLİF FORM PAGE (teklif.html) ───────────────────────────────── */
.proposal-section {
    max-width: 1440px; margin: 0 auto;
    padding: 0 40px 90px;
    position: relative; z-index: 1;
}
.proposal-container {
    max-width: 900px; margin: 0 auto;
    background: linear-gradient(145deg, rgba(20, 20, 26, 0.96) 0%, rgba(10, 10, 14, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 28px; padding: 48px 44px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
}

.form-step-group {
    margin-bottom: 36px;
}
.step-title {
    display: flex; align-items: center; gap: 12px;
    font-size: 1.1rem; font-weight: 700; color: #FFFFFF;
    margin-bottom: 20px;
}
.step-num-badge {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--gold); color: #0A0A0C;
    font-size: 0.86rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}

.checkbox-cards-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.custom-card-check {
    position: relative; cursor: pointer; display: block;
}
.custom-card-check input {
    position: absolute; opacity: 0; pointer-events: none;
}
.card-check-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px; padding: 20px;
    transition: all 0.25s ease;
}
.custom-card-check input:checked + .card-check-content {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}
.card-check-icon {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    margin-bottom: 12px;
    transition: all 0.25s ease;
}
.custom-card-check input:checked + .card-check-content .card-check-icon {
    background: var(--gold);
    color: #0A0A0C;
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}
.card-check-content h4 { font-size: 0.95rem; font-weight: 700; color: #FFFFFF; margin-bottom: 4px; }
.card-check-content p { font-size: 0.8rem; color: var(--txt-mid); line-height: 1.45; }

.inputs-grid-2col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.input-field {
    display: flex; flex-direction: column; gap: 8px;
}
.input-field label {
    font-size: 0.82rem; font-weight: 600; color: #CBD5E1;
}
.input-field input, .input-field textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px; padding: 12px 16px;
    color: #FFFFFF; font-size: 0.88rem; font-family: var(--font);
    outline: none; transition: border-color 0.25s ease;
}
.input-field input:focus, .input-field textarea:focus {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.btn-submit-proposal {
    width: 100%;
    background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
    border: none; color: #0A0A0C; font-size: 1rem; font-weight: 700;
    padding: 16px 28px; border-radius: 14px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}
.btn-submit-proposal:hover {
    background: linear-gradient(135deg, #F3D368 0%, #C49418 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.proposal-success-box {
    text-align: center; padding: 40px 20px;
}
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.proposal-success-box h2 { font-size: 1.8rem; font-weight: 700; color: #FFFFFF; margin-bottom: 12px; }
.proposal-success-box p { font-size: 0.95rem; color: var(--txt-mid); max-width: 500px; margin: 0 auto; line-height: 1.6; }

/* ── CANLI OTOMASYON SİMÜLATÖRÜ (DEMO) ────────────────────────────── */
.demo-section, .calc-section, .metrics-section, .faq-section {
    max-width: 1440px; margin: 0 auto;
    padding: 70px 24px;
    position: relative; z-index: 1;
}

.section-overline {
    font-size: 0.76rem; font-weight: 800; letter-spacing: 2px;
    color: var(--gold); margin-bottom: 8px; text-transform: uppercase;
}
.section-title {
    font-size: 2.2rem; font-weight: 800; color: #FFFFFF;
    margin-bottom: 12px; line-height: 1.25;
}
.section-subtitle {
    font-size: 0.95rem; color: var(--txt-mid); margin-bottom: 36px;
}

.demo-card-box {
    background: linear-gradient(145deg, rgba(20, 20, 26, 0.96) 0%, rgba(10, 10, 14, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px; padding: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
}

.demo-presets {
    display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap;
}
.preset-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--txt-mid); font-size: 0.84rem; font-weight: 600;
    padding: 10px 18px; border-radius: 12px; cursor: pointer;
    transition: all 0.25s ease;
}
.preset-btn:hover {
    color: #FFFFFF; border-color: rgba(212, 175, 55, 0.4);
}
.preset-btn.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold); color: var(--gold-light);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.2);
}

.demo-flow-display {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; margin-bottom: 32px;
}
.flow-step-node {
    flex: 1; background: rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px; padding: 18px;
    display: flex; align-items: center; gap: 14px;
    transition: all 0.3s ease; position: relative;
}
.flow-step-node.active {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.08);
}
.flow-step-node.completed {
    border-color: #10B981;
    background: rgba(16, 185, 129, 0.08);
}

.node-icon {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.08); color: #FFFFFF;
    font-size: 0.88rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.node-info h4 { font-size: 0.92rem; font-weight: 700; color: #FFFFFF; margin-bottom: 3px; }
.node-info p { font-size: 0.78rem; color: var(--txt-mid); }

.node-status {
    font-size: 0.72rem; font-weight: 700;
    padding: 3px 10px; border-radius: 999px;
    background: rgba(255, 255, 255, 0.08); color: var(--txt-dim);
    margin-left: auto;
}
.node-status.active { background: rgba(212, 175, 55, 0.2); color: var(--gold); }
.node-status.completed { background: rgba(16, 185, 129, 0.2); color: #10B981; }

.flow-line {
    flex: 0 0 40px; height: 3px; background: rgba(255, 255, 255, 0.1);
    border-radius: 2px; overflow: hidden; position: relative;
}
.flow-line-progress {
    height: 100%; width: 0%; background: var(--gold);
    transition: width 0.4s ease;
}

.demo-action-bar {
    display: flex; align-items: center; gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}
.btn-run-demo {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: #0A0A0C; font-size: 0.88rem; font-weight: 700;
    padding: 12px 24px; border-radius: 12px; border: none; cursor: pointer;
    transition: all 0.25s ease; flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-run-demo:hover {
    background: var(--gold-light); transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}
.demo-log-output {
    font-family: monospace; font-size: 0.84rem; color: var(--gold-light);
    background: rgba(0, 0, 0, 0.5); padding: 10px 16px; border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08); flex: 1;
}

/* ── TASARRUF HESAPLAYICI BİLGİ KARTI (TEASER) ───────────────────── */
.calc-teaser-box {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.96) 0%, rgba(10, 10, 14, 0.98) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 28px; padding: 48px;
    display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(212, 175, 55, 0.12);
    position: relative; overflow: hidden;
}
.teaser-glow {
    position: absolute; top: -50%; right: -20%; width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.teaser-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212, 175, 55, 0.12); border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light); font-size: 0.76rem; font-weight: 800; letter-spacing: 1.5px;
    padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.teaser-left h2 { font-size: 2.2rem; font-weight: 800; line-height: 1.25; margin-bottom: 14px; }
.teaser-left p { font-size: 0.95rem; color: var(--txt-mid); line-height: 1.65; }

.teaser-right {
    display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center;
}
.teaser-stat-preview {
    display: flex; align-items: center; justify-content: center; gap: 24px;
    background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px; padding: 20px 28px; width: 100%;
}
.t-stat { text-align: center; }
.t-val { font-size: 2rem; font-weight: 800; color: var(--gold); display: block; line-height: 1.1; }
.t-lbl { font-size: 0.78rem; color: var(--txt-mid); font-weight: 600; text-transform: uppercase; margin-top: 4px; display: block; }
.t-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.1); }

.btn-calc-teaser {
    width: 100%; justify-content: center; padding: 16px 32px; font-size: 1rem;
}

/* ── CANLI TASARRUF HESAPLAYICI ───────────────────────────────────── */
.calc-card-box {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.96) 0%, rgba(10, 10, 14, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 28px; padding: 48px;
    display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px;
    align-items: stretch;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.12);
    position: relative; overflow: hidden;
}
.calc-card-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.7) 50%, transparent 100%);
}

.calc-left {
    display: flex; flex-direction: column; justify-content: space-between;
}
.calc-left h2 { font-size: 2.2rem; font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.calc-left p { font-size: 0.94rem; color: var(--txt-mid); line-height: 1.7; margin-bottom: 16px; }

.calc-info-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 999px; padding: 6px 16px;
    font-size: 0.8rem; color: var(--gold-light); font-weight: 600;
    margin-top: 4px; margin-bottom: 16px; width: fit-content;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.sliders-stack { display: flex; flex-direction: column; gap: 16px; flex: 1; justify-content: center; }

.slider-group {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px; padding: 20px 22px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.slider-group:hover, .slider-group:focus-within {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.slider-label-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.88rem; font-weight: 600; color: #CBD5E1; margin-bottom: 14px;
}

.num-input-wrap {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(212, 175, 55, 0.12);
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    border-radius: 10px; padding: 4px 10px;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
    transition: all 0.2s ease;
}
.num-input-wrap:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.2);
}
.num-input-wrap input {
    width: 68px; background: transparent; border: none; outline: none;
    color: var(--gold); font-size: 1.1rem; font-weight: 800;
    font-family: var(--font); text-align: center;
}
.num-input-wrap input[type=number]::-webkit-inner-spin-button, 
.num-input-wrap input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; margin: 0; 
}
.num-input-wrap input[type=number] {
    -moz-appearance: textfield;
}
.unit-prefix, .unit-suffix {
    font-size: 0.88rem; font-weight: 700; color: var(--gold-light);
}

/* Custom Range Slider Input Styling - Ultra Smooth & Small Thumb */
input[type=range] {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 6px; border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    outline: none; transition: background 0.2s ease;
    cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%; height: 6px; cursor: pointer;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.8) 100%);
    border-radius: 4px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    height: 16px; width: 16px; border-radius: 50%;
    background: linear-gradient(135deg, #FFF5D6 0%, #E6C252 100%);
    cursor: pointer; margin-top: -5px;
    border: 2px solid #0A0A0C;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.9), 0 2px 4px rgba(0,0,0,0.5);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    box-shadow: 0 0 16px rgba(212, 175, 55, 1);
}

input[type=range]::-moz-range-track {
    width: 100%; height: 6px; cursor: pointer;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.8) 100%);
    border-radius: 4px;
}

input[type=range]::-moz-range-thumb {
    height: 16px; width: 16px; border-radius: 50%;
    background: linear-gradient(135deg, #FFF5D6 0%, #E6C252 100%);
    cursor: pointer; border: 2px solid #0A0A0C;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.9);
}

.slider-marks {
    display: flex; justify-content: space-between;
    font-size: 0.76rem; color: var(--txt-dim); margin-top: 10px; font-weight: 500;
}

/* 3D Glass Result Card Stretched Equally */
.calc-right {
    display: flex; flex-direction: column; height: 100%;
}
.roi-result-card {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    border-radius: 24px; padding: 36px 30px;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.18);
    position: relative; backdrop-filter: blur(12px);
    display: flex; flex-direction: column; justify-content: space-between; height: 100%;
}
.roi-label {
    font-size: 0.82rem; color: var(--txt-mid); font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
}
.roi-val-gold {
    font-size: 2.5rem; font-weight: 800;
    background: linear-gradient(135deg, #FFF5D6 0%, #F5D061 50%, #C49418 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-top: 6px; letter-spacing: -0.5px;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.3));
}
.roi-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%);
    margin: 16px 0;
}
.roi-narrative-box {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px; padding: 16px 18px;
    font-size: 0.86rem; color: var(--txt-mid);
    line-height: 1.6; text-align: left;
    margin-top: 4px;
}
.roi-narrative-box strong {
    color: var(--gold-light); font-weight: 700;
}

/* ── BAŞARI METRİKLERİ & FAQ ──────────────────────────────────────── */
.metrics-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 36px;
}
.metric-card {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.95) 0%, rgba(12, 12, 15, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 20px; padding: 32px 24px; text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.metric-big-num { font-size: 3rem; font-weight: 800; color: var(--gold); margin-bottom: 8px; line-height: 1; }
.metric-card h4 { font-size: 1.05rem; font-weight: 700; color: #FFFFFF; margin-bottom: 8px; }
.metric-card p { font-size: 0.84rem; color: var(--txt-mid); line-height: 1.55; }

.quote-card-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px; padding: 36px 40px; text-align: center;
    max-width: 900px; margin: 0 auto; position: relative;
}
.quote-mark { font-size: 4rem; color: var(--gold); line-height: 0.5; margin-bottom: 10px; font-family: serif; opacity: 0.5; }
.quote-text { font-size: 1.1rem; color: #E2E8F0; font-style: italic; line-height: 1.6; margin-bottom: 14px; }
.quote-author { font-size: 0.86rem; font-weight: 700; color: var(--gold-light); letter-spacing: 0.5px; }

.faq-accordion {
    max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
    background: rgba(20, 20, 26, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px; overflow: hidden;
    transition: all 0.25s ease;
}
.faq-question {
    width: 100%; background: none; border: none; outline: none;
    padding: 20px 24px; text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.98rem; font-weight: 600; color: #FFFFFF;
}
.faq-arrow { transition: transform 0.3s ease; color: var(--gold); }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-item.active { border-color: rgba(212, 175, 55, 0.5); background: rgba(212, 175, 55, 0.06); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
    padding: 0 24px;
}
.faq-item.active .faq-answer {
    max-height: 200px; padding-bottom: 20px;
}
.faq-answer p { font-size: 0.88rem; color: var(--txt-mid); line-height: 1.65; }

/* ── MOBILE NAV DRAWER OVERLAY ────────────────────────────────────── */
.mobile-nav-toggle {
    display: none;
    align-items: center; justify-content: center;
    width: 44px; height: 42px;
    background: rgba(212, 175, 55, 0.18) !important;
    border: 1.5px solid rgba(212, 175, 55, 0.5) !important;
    border-radius: 10px;
    color: var(--gold-light) !important;
    cursor: pointer; flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}
.mobile-nav-toggle svg {
    stroke: var(--gold) !important;
}
.mobile-nav-toggle:hover { background: rgba(212, 175, 55, 0.3) !important; }

.mobile-nav-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(10, 10, 14, 0.96); backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px); z-index: 10000;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 24px 28px 40px; opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-20px); transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-overlay.active {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}

.mobile-nav-header {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav-close {
    background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF; width: 40px; height: 40px; border-radius: 12px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.2s ease;
}
.mobile-nav-close:hover { background: rgba(212, 175, 55, 0.2); color: var(--gold); }

.mobile-nav-links {
    display: flex; flex-direction: column; gap: 16px; margin: auto 0;
}
.mobile-link {
    font-size: 1.25rem; font-weight: 700; color: var(--txt-mid); text-decoration: none;
    padding: 12px 16px; border-radius: 14px; transition: all 0.25s ease;
    border: 1px solid transparent;
}
.mobile-link.active, .mobile-link:hover {
    color: var(--gold-light); background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.mobile-nav-footer { margin-top: 20px; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .navbar { width: calc(100% - 32px); top: 12px; }
    .nav-inner { padding: 0 16px; height: 60px; }
    .nav-menu { gap: 16px; }
    .nav-link { font-size: 0.82rem; }
    .sk-mark { font-size: 0.85rem; padding: 3px 8px; }
    .nav-brand-name { font-size: 0.8rem; letter-spacing: 1px; }
    .btn-contact { padding: 8px 16px; font-size: 0.8rem; }
}

@media (max-width: 860px) {
    .nav-menu { display: none !important; }
    .btn-contact { display: none !important; }
    .nav-right { display: flex !important; align-items: center !important; }
    .mobile-nav-toggle {
        display: inline-flex !important;
        align-items: center; justify-content: center;
        width: 42px; height: 42px;
        background: rgba(212, 175, 55, 0.18) !important;
        border: 1.5px solid rgba(212, 175, 55, 0.5) !important;
        border-radius: 10px;
        color: var(--gold-light) !important;
        cursor: pointer;
    }

    .hero { padding-left: 20px; padding-right: 20px; padding-top: 110px; }
    .hero-slider-wrap { min-height: 650px; }
    .hero-slide-item {
        grid-template-columns: 1fr;
        gap: 32px; text-align: center;
    }
    .hero-left { align-items: center; text-align: center; }
    .hero-right { justify-content: center; width: 100%; }
    .hero-img-wrap { max-width: 360px; margin: 0 auto; }
    .hero-hud-card { max-width: 440px; margin: 0 auto; }
    .hero-title { font-size: 2rem; text-align: center; }
    .hero-desc { text-align: center; font-size: 0.9rem; }

    .features-bar, .tools-bar, .projects-section, .eco-section, .cta-section { padding-left: 20px; padding-right: 20px; }
    .features-inner { grid-template-columns: 1fr; }
    .feat-divider { display: none; }
    .tools-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .projects-grid { grid-template-columns: 1fr; }
    .eco-grid { grid-template-columns: 1fr; }
    .site-footer { padding: 48px 20px 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
    .footer-bottom-right { flex-direction: column; gap: 8px; }

    .calc-teaser-box {
        grid-template-columns: 1fr;
        gap: 28px; padding: 28px 20px;
        text-align: center;
    }
    .teaser-left h2 { font-size: 1.6rem; text-align: center; }
    .teaser-left p { font-size: 0.9rem; text-align: center; }
    .teaser-right { width: 100%; }
    .teaser-stat-preview {
        padding: 16px 12px; width: 100%; gap: 12px;
    }
    .t-val { font-size: 1.5rem; }
    .t-lbl { font-size: 0.7rem; }
    .btn-calc-teaser { font-size: 0.9rem; padding: 14px 18px; width: 100%; }

    .calc-section { padding: 40px 16px; }
    .calc-card-box { padding: 24px 16px; border-radius: 20px; grid-template-columns: 1fr; }
    .calc-left h2 { font-size: 1.75rem; text-align: center; }
    .slider-group { padding: 16px 14px; }
    .slider-label-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .num-input-wrap { width: 100%; justify-content: center; }
    .roi-result-card { padding: 24px 16px; }
    .roi-val-gold { font-size: 2.1rem; }
}
