@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #f7f8f5;
    --ink: #111827;
    --muted: #5b6472;
    --line: #dfe4dc;
    --panel: #ffffff;
    --brand: #0f7b63;
    --brand-dark: #0a5b4a;
    --accent: #d99a2b;
    --soft: #e9f3ef;
    --font: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(180deg, #f7f8f5 0%, #eef3ee 100%);
}

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

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-hidden {
    transform: translateY(-110%);
}

.brand {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    font-size: 20px;
}

.brand span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-right: 8px;
    color: #fff;
    background: var(--brand);
    border-radius: 8px;
}

.nav a.mobile-only {
    display: none;
}

.nav {
    display: flex;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.mobile-demo-link {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-cta,
.btn.primary {
    color: #fff;
    background: var(--brand);
    box-shadow: 0 4px 14px rgba(15, 123, 99, 0.25);
}

.header-cta.blue {
    background: #3b82f6;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.btn.primary:hover,
.header-cta:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 123, 99, 0.35);
}

.header-cta.blue:hover {
    background: #2563eb;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.btn.secondary {
    background: #fff;
    border-color: var(--line);
    color: var(--ink);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.btn.secondary:hover {
    background: #f9fafb;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
    overflow: hidden;
}

.hero-content,
.section,
.band,
.contact-section,
.footer {
    max-width: 1180px;
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 20px;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-text {
    max-width: 650px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 760px;
    margin-top: 34px;
}

.hero-stats div {
    padding: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.hero-stats strong {
    display: block;
    color: var(--brand-dark);
    font-size: 24px;
}

.hero-stats span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.hero-panel,
.product-card,
.package-card,
.contact-form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 60px rgba(17, 24, 39, 0.08);
}

.hero-panel {
    padding: 28px;
}

.live-panel {
    position: relative;
    min-height: 430px;
    color: #fff;
    background: #111f1c;
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(0);
    animation: panelFloat 5s ease-in-out infinite;
}

.panel-toolbar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.panel-toolbar span {
    width: 10px;
    height: 10px;
    background: #8fe0c7;
    border-radius: 50%;
}

.panel-toolbar span:nth-child(2) {
    background: var(--accent);
}

.panel-toolbar span:nth-child(3) {
    background: #f87171;
}

.panel-toolbar b {
    margin-left: auto;
    color: #d7f7ee;
    font-size: 13px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dashboard-card {
    position: relative;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.dashboard-card span,
.dashboard-card small {
    display: block;
    color: #b8cbc5;
    font-size: 13px;
    font-weight: 700;
}

.dashboard-card strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 34px;
}

.accent-card {
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(15, 123, 99, 0.92), rgba(217, 154, 43, 0.62));
}

.mini-chart {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 130px;
    margin-top: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.mini-chart i {
    flex: 1;
    min-width: 18px;
    background: linear-gradient(180deg, #8fe0c7, #d99a2b);
    border-radius: 999px 999px 3px 3px;
    animation: barPulse 2.8s ease-in-out infinite;
}

.mini-chart i:nth-child(even) {
    animation-delay: 0.35s;
}

.metric {
    padding: 24px;
    margin-bottom: 18px;
    background: var(--soft);
    border-radius: 8px;
}

.metric strong {
    display: block;
    color: var(--brand);
    font-size: 58px;
    line-height: 1;
}

.metric span {
    color: var(--muted);
    font-weight: 700;
}

.panel-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.panel-line span {
    color: var(--muted);
}

.section,
.contact-section {
    padding: 84px clamp(18px, 5vw, 72px);
}

.section-head {
    margin-bottom: 34px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(380px, auto);
    gap: 20px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card,
.package-card {
    padding: 30px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 380px;
    isolation: isolate;
}

.product-card-1 {
    padding: 40px;
    background: #ffffff;
}

.product-card-1::after {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 130px;
    height: 130px;
    content: "";
    background:
        linear-gradient(90deg, rgba(15, 123, 99, 0.13) 1px, transparent 1px),
        linear-gradient(rgba(15, 123, 99, 0.13) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.8;
    pointer-events: none;
}

.product-card-2 {
    color: #fff;
    background:
        radial-gradient(circle at 86% 82%, rgba(37, 99, 235, 0.24), transparent 30%),
        linear-gradient(145deg, #111b31, #091225);
    border-color: #1d2d4a;
}

.product-card-2::after {
    position: absolute;
    inset: auto 24px 22px auto;
    width: 92px;
    height: 92px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    transform: rotate(12deg);
    pointer-events: none;
}

.product-card-2 .card-top h3,
.product-card-2 h3 {
    color: #fff;
}

.product-card-2 .card-top span {
    color: #dbeafe;
    background: rgba(96, 165, 250, 0.16);
}

.product-card-2 p,
.product-card-2 li {
    color: #ffffff !important;
    font-weight: 500;
}

.product-card-2 li::before {
    color: var(--brand-light);
}

.product-card-2 .text-link {
    color: #0f172a;
    background: #ffffff;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.product-card-3 {
    background:
        linear-gradient(135deg, rgba(217, 154, 43, 0.11), transparent 48%),
        #fffdf8;
    border-color: #ead8b8;
}

.product-card-3::after {
    position: absolute;
    right: 24px;
    bottom: 22px;
    width: 150px;
    height: 76px;
    content: "";
    background:
        linear-gradient(90deg, #0f7b63 50%, transparent 0) 0 0 / 20px 20px,
        linear-gradient(#0f7b63 50%, transparent 0) 0 0 / 20px 20px;
    opacity: 0.08;
    pointer-events: none;
}

.product-card-4 {
    justify-content: space-between;
    min-height: 310px;
    color: #fff;
    background: #15575d;
    border-color: #15575d;
}

.product-card-4 .feature-kicker {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-card-4 h3 {
    position: relative;
    z-index: 1;
    max-width: 190px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.08;
}

.product-card-4::after {
    position: absolute;
    right: -34px;
    bottom: -42px;
    width: 150px;
    height: 150px;
    content: "";
    background: #4cc4cf;
    border-radius: 50%;
    pointer-events: none;
}

.product-card-4 .text-link {
    position: relative;
    z-index: 1;
    width: fit-content;
    min-height: 44px;
    padding: 0 18px;
    align-items: center;
    color: #15575d;
    background: #fff;
    border-radius: 8px;
    font-size: 13px;
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.card-top h3,
.package-card h3 {
    margin-bottom: 0;
    font-size: 26px;
}

.product-card-1 h3 {
    font-size: 42px;
}

.card-top span {
    flex: 0 0 auto;
    padding: 7px 10px;
    color: var(--brand-dark);
    background: var(--soft);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.product-card p,
.package-card p,
.contact-copy p {
    color: var(--muted);
    line-height: 1.7;
}

.product-card ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.product-card li {
    padding-left: 18px;
    position: relative;
    color: #263241;
    font-weight: 600;
}

.product-card li::before {
    position: absolute;
    left: 0;
    content: "";
    width: 7px;
    height: 7px;
    top: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: fit-content;
    padding: 0 18px;
    margin-top: auto;
    color: #fff;
    background: var(--brand);
    border-radius: 8px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(15, 123, 99, 0.16);
}

.product-card-1 .text-link,
.product-card-3 .text-link {
    color: var(--brand-dark);
    background: var(--soft);
    box-shadow: none;
}

.product-card-2 .text-link {
    color: #0f172a;
    background: #fff;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.demo-btn {
    color: #fff;
    background: #2563eb;
    border-color: #2563eb;
}

.demo-btn:hover {
    background: #1d4ed8;
}

/* Featured Card Style (Özel Yazılım) */

.showcase {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px clamp(18px, 5vw, 72px);
}

.showcase-copy p:last-child {
    color: var(--muted);
    line-height: 1.75;
}

.flow-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.flow-card {
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.flow-card span {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 22px;
    color: #fff;
    background: var(--brand);
    border-radius: 8px;
    font-weight: 900;
}

.flow-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.flow-card p {
    color: var(--muted);
    line-height: 1.65;
}

.flow-commerce {
    background: #fff7ed;
    border-color: #fed7aa;
}

.flow-logistics {
    color: #fff;
    background: #111827;
    border-color: #111827;
}

.flow-logistics p,
.flow-logistics h3 {
    color: #fff;
}

.flow-erp {
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.07) 1px, transparent 1px),
        linear-gradient(rgba(17, 24, 39, 0.07) 1px, transparent 1px),
        #fff;
    background-size: 18px 18px;
}

.flow-custom {
    color: #fff;
    background: #15575d;
    border-color: #15575d;
}

.flow-custom p,
.flow-custom h3 {
    color: #fff;
}

.flow-custom a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-top: 8px;
    padding: 0 16px;
    color: #15575d;
    background: #fff;
    border-radius: 8px;
    font-weight: 900;
}

.flow-line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.flow-line b,
.mini-table b,
.mini-table em {
    padding: 10px;
    background: rgba(15, 123, 99, 0.09);
    border-radius: 8px;
    font-size: 12px;
}

.route-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    border-top: 2px dashed rgba(255, 255, 255, 0.28);
}

.route-line i {
    width: 18px;
    height: 18px;
    margin-top: -10px;
    background: #d99a2b;
    border: 4px solid #111827;
    border-radius: 50%;
}

.mini-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 18px;
}

.mini-table em {
    color: var(--brand-dark);
    font-style: normal;
    font-weight: 800;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.module-card {
    position: relative;
    min-height: 190px;
    padding: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.module-card::before {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 28px;
    color: #fff;
    background: var(--brand);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    content: "0";
}

.module-card-1,
.module-card-4 {
    grid-column: span 3;
}

.module-card-2,
.module-card-3,
.module-card-5,
.module-card-6 {
    grid-column: span 2;
}

.module-card-2 {
    background: #111827;
    border-color: #111827;
}

.module-card-2 span,
.module-card-2 p {
    color: #fff;
}

.module-card-3 {
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(17, 24, 39, 0.08) 1px, transparent 1px),
        #fff;
    background-size: 20px 20px;
}

.module-card-4 {
    background: #f3f7f5;
}

.module-card-5 {
    background: #fff7ed;
    border-color: #fed7aa;
}

.module-card-6 {
    color: #fff;
    background: #155e75;
    border-color: #155e75;
}

.module-card-1::before { content: "01"; }
.module-card-2::before { content: "02"; background: #2563eb; }
.module-card-3::before { content: "03"; background: #d99a2b; }
.module-card-4::before { content: "04"; }
.module-card-5::before { content: "05"; background: #ea580c; }
.module-card-6::before { content: "06"; background: rgba(255, 255, 255, 0.18); }

.module-card span {
    color: var(--brand-dark);
    font-size: 18px;
    font-weight: 800;
}

.module-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.module-card-6 span,
.module-card-6 p {
    color: #fff;
}

.live-preview {
    max-width: 1180px;
    margin: 0 auto;
    padding: 84px clamp(18px, 5vw, 72px);
}

.preview-grid {
    display: grid;
    gap: 22px;
}

.preview-card {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: clamp(20px, 4vw, 42px);
    align-items: center;
    padding: clamp(20px, 3vw, 34px);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 70px rgba(17, 24, 39, 0.09);
}

.preview-copy h3 {
    margin-bottom: 12px;
    font-size: clamp(24px, 3vw, 34px);
}

.preview-copy p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.75;
}

.status-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.status-dot::before {
    width: 9px;
    height: 9px;
    content: "";
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.14);
}

.status-dot.secure::before {
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(217, 154, 43, 0.16);
}

.browser-frame {
    display: block;
    overflow: hidden;
    min-height: 360px;
    background: #eef2f7;
    border: 1px solid #d8e0ea;
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.live-site-frame {
    max-width: 486px;
    margin-left: auto;
    background: #fff;
}

.iframe-scale {
    position: relative;
    width: 100%;
    aspect-ratio: 486 / 735;
    overflow: hidden;
}

.browser-top {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 42px;
    padding: 0 14px;
    background: #fff;
    border-bottom: 1px solid #dce4ee;
}

.browser-top i {
    width: 9px;
    height: 9px;
    background: #ff6b5f;
    border-radius: 50%;
}

.browser-top i:nth-child(2) {
    background: #f5b84b;
}

.browser-top i:nth-child(3) {
    background: #31c46b;
}

.browser-top span {
    flex: 1;
    min-width: 0;
    margin-left: 10px;
    padding: 7px 12px;
    overflow: hidden;
    color: #708090;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dark-frame {
    color: #fff;
    background: #0f172a;
    border-color: rgba(56, 189, 248, 0.2);
}

.dark-frame .browser-top {
    background: #111827;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.dark-frame .browser-top span {
    color: #a7f3d0;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.live-site-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 486px;
    height: 735px;
    border: 0;
    transform-origin: top left;
    transform: scale(var(--frame-scale, 1));
}

.admin-screen {
    display: grid;
    grid-template-columns: 170px 1fr;
    min-height: 430px;
}

.admin-screen aside {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 22px;
    background: rgba(2, 6, 23, 0.65);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-screen aside b {
    margin-bottom: 14px;
    color: #8fe0c7;
}

.admin-screen aside span {
    padding: 10px 12px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
}

.admin-content {
    padding: 24px;
}

.admin-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-head strong {
    font-size: 22px;
}

.admin-head small {
    color: #93c5fd;
    font-weight: 800;
}

.admin-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.admin-kpis div {
    padding: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.admin-kpis b {
    display: block;
    font-size: 28px;
}

.admin-kpis span {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 800;
}

.admin-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.admin-table span,
.admin-table b,
.admin-table em {
    padding: 13px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
    font-style: normal;
}

.admin-table span {
    color: #93c5fd;
    font-weight: 900;
}

.admin-table em {
    color: #8fe0c7;
    font-weight: 800;
}

.band {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    padding: 46px clamp(18px, 5vw, 72px);
    background: #12231f;
    color: #fff;
    border-radius: 8px;
}

.band .eyebrow {
    color: #8fe0c7;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.benefits span {
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-weight: 700;
}

.package-card strong {
    display: block;
    margin: 18px 0;
    color: var(--brand);
    font-size: 28px;
}

.package-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
}

.package-card::before {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    border-radius: 8px;
    font-weight: 900;
}

.package-card-1 {
    background: #ffffff;
}

.package-card-1::before {
    content: "S";
    color: var(--brand-dark);
    background: var(--soft);
}

.package-card-2 {
    color: #fff;
    background: #0f7b63;
    border-color: #0f7b63;
}

.package-card-2::before {
    content: "P";
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.package-card-2 h3,
.package-card-2 strong,
.package-card-2 p,
.package-card-2 a {
    color: #fff;
}

.package-card-3 {
    background:
        linear-gradient(135deg, rgba(217, 154, 43, 0.12), transparent 52%),
        #fff;
    border-color: #ead8b8;
}

.package-card-3::before {
    content: "K";
    color: #7c2d12;
    background: #ffedd5;
}

.package-card-4::before {
    content: "O";
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.package-card a {
    color: var(--brand-dark);
    font-weight: 800;
}

.locations-grid .service-card {
    display: flex;
    flex-direction: column;
}

.feature-card.loc-antalya { background: linear-gradient(135deg, #f97316, #e11d48); }
.feature-card.loc-burdur { background: linear-gradient(135deg, #0891b2, #0f766e); }
.feature-card.loc-bucak { background: linear-gradient(135deg, #8b5cf6, #db2777); }
.feature-card.loc-isparta { background: linear-gradient(135deg, #16a34a, #166534); }

.locations-grid .feature-card {
    color: #fff;
    border: 0;
}

.locations-grid .feature-card h3,
.locations-grid .feature-card strong,
.locations-grid .feature-card p,
.locations-grid .feature-card a {
    color: #fff;
}

.locations-grid .feature-card::before {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: auto;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 900;
}

.contact-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(24px, 5vw, 60px);
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 26px;
}

label {
    display: grid;
    gap: 8px;
    color: #283342;
    font-size: 14px;
    font-weight: 800;
}

label span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    color: var(--ink);
    background: #fbfcfa;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(15, 123, 99, 0.14);
    border-color: var(--brand);
}

.form-status {
    min-height: 22px;
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.form-status.success {
    color: var(--brand-dark);
}

.form-status.error {
    color: #b42318;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 30px clamp(18px, 5vw, 72px);
    color: var(--muted);
    border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
    .site-header {
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px 10px 10px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    }

    .brand {
        width: 100%;
        padding: 7px 9px;
        background: linear-gradient(135deg, rgba(15, 123, 99, 0.08), rgba(37, 99, 235, 0.06));
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 10px 24px rgba(15,23,42,.06);
        font-size: 16px;
    }

    .brand span {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .nav a.mobile-only {
        display: flex;
    }

    .nav {
        order: 3;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        overflow: visible;
        padding-bottom: 0;
        color: #445166;
    }

    .nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 0 6px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid var(--line);
        border-radius: 10px;
        font-size: 12px;
        font-weight: 900;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
        white-space: nowrap;
    }

    .nav-demo-btn {
        display: none;
    }

    .nav .nav-demo-btn {
        display: inline-flex;
        background: #3b82f6 !important;
        color: #fff !important;
        border-color: #3b82f6 !important;
        box-shadow: 0 10px 24px rgba(59, 130, 246, 0.22);
    }

    .header-right {
        display: none !important;
    }

    .nav a[href="#teklif"] {
        grid-column: 1 / -1;
        color: #fff;
        background: var(--brand);
        border-color: var(--brand);
        box-shadow: 0 12px 26px rgba(15, 123, 99, 0.22);
    }

    .hero,
    .contact-section,
    .band,
    .showcase,
    .preview-card {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .product-grid,
    .module-grid,
    .flow-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .package-grid.locations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .locations-grid .service-card {
        min-height: 260px;
        padding: 20px;
        border-radius: 16px;
    }

    .product-card,
    .module-card,
    .flow-card {
        min-height: 230px;
        padding: 18px;
        border-radius: 12px;
    }

    .product-card h3,
    .flow-card h3 {
        font-size: 20px;
        line-height: 1.12;
    }

    .product-card p,
    .product-card li,
    .flow-card p,
    .module-card p {
        font-size: 14px;
        line-height: 1.45;
    }

    .product-card ul {
        gap: 7px;
        margin-top: 14px;
    }

    .module-card::before,
    .flow-card span {
        width: 34px;
        height: 34px;
        margin-bottom: 18px;
    }

    .locations-grid .service-card h3 {
        font-size: 20px;
    }

    .locations-grid .service-card strong {
        font-size: 20px;
    }

    .locations-grid .service-card p {
        font-size: 14px;
        line-height: 1.45;
    }

    .product-card-1,
    .module-card-2,
    .module-card-3,
    .module-card-5,
    .module-card-6,
    .module-card-1,
    .module-card-4 {
        grid-column: auto;
        grid-row: auto;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-screen {
        grid-template-columns: 1fr;
    }

    .admin-screen aside {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 560px) {
    .header-cta {
        display: none;
    }

    .hero-actions,
    .footer {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .package-grid.locations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stats,
    .admin-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero {
        padding-top: 280px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    .product-grid,
    .module-grid,
    .flow-board {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card,
    .module-card,
    .flow-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 200px;
        padding: 12px;
        border-radius: 12px;
    }

    .product-card-2 p,
    .product-card-2 li,
    .product-card-4 h3,
    .flow-logistics p,
    .flow-logistics h3,
    .flow-custom p,
    .flow-custom h3 {
        color: #fff !important;
    }

    .product-card p,
    .flow-card p {
        display: block;
        font-size: 10px;
        line-height: 1.3;
        margin-top: 4px;
        color: var(--muted);
    }

    .product-card ul {
        display: block;
        margin-top: 8px;
        list-style: none;
    }

    .product-card li {
        font-size: 10px;
        line-height: 1.2;
        margin-bottom: 3px;
        position: relative;
        padding-left: 8px;
    }

    .product-card-2 li::before {
        color: #fff !important;
    }

    .product-card li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--brand);
    }

    .product-card h3,
    .flow-card h3 {
        font-size: 14px;
        font-weight: 900;
        margin-bottom: 4px;
    }

    .product-card-1 {
        padding: 12px;
    }

    .product-card-4 {
        grid-column: span 1;
        min-height: 200px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .product-card-4 h3 {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 12px;
    }

    .product-card-4 .text-link,
    .action-link {
        margin-top: 10px;
        min-height: 36px;
        padding: 0 10px;
        font-size: 11px;
        width: 100%;
        justify-content: center;
    }

    .product-card-4::after {
        right: -10px;
        bottom: -10px;
        width: 70px;
        height: 70px;
        opacity: 0.3;
        pointer-events: none;
    }

    .action-link {
        position: relative;
        z-index: 5;
    }

    .admin-screen {
        height: 360px;
        min-height: 360px;
    }

    .live-site-frame {
        max-width: 100%;
        margin-left: 0;
    }

    .iframe-scale {
        --frame-scale: calc((100vw - 72px) / 486);
    }

    .admin-screen aside {
        display: none;
    }

    .card-top {
        flex-direction: column;
    }
}

@media (min-width: 901px) {
    body {
        zoom: 0.75;
    }
}

@keyframes panelFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes barPulse {
    0%,
    100% {
        opacity: 0.78;
        transform: scaleY(0.92);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Premium Preview Styles */
.preview-card-premium {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(10px);
}

.view-toggle {
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    margin: 24px 0;
    background: var(--soft);
    border-radius: 12px;
}

.toggle-btn {
    padding: 8px 20px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-btn.active {
    background: #fff;
    color: var(--brand);
    box-shadow: 0 4px 12px rgba(15, 123, 99, 0.12);
}

.preview-display {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.device-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* iPhone Mockup */
.iphone-mockup {
    width: 300px;
    height: 600px;
    padding: 14px;
    background: #1a1a1a;
    border-radius: 48px;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.3);
    border: 4px solid #333;
    position: relative;
    transition: transform 0.3s ease;
}

.iphone-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 26px;
    background: #1a1a1a;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 5;
}

.iphone-inner iframe {
    width: 390px;
    height: 840px;
    border: none;
    transform: scale(0.7);
    transform-origin: top left;
}

/* Browser Mockup */
.browser-mockup-premium {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.browser-bar {
    height: 48px;
    background: #f8fafc;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 20px;
}

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

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.browser-url {
    flex: 1;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    height: 28px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 12px;
    color: var(--muted);
}

.browser-body {
    flex: 1;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.browser-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 1280px; /* Force desktop width */
    height: 800px;
    border: none;
    transform: scale(0.6); /* Scale down to fit the preview container */
    transform-origin: top left;
}

@media (max-width: 991px) {
    .preview-card-premium {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .preview-display {
        height: 450px;
    }
    .iphone-mockup {
        width: 220px;
        height: 440px;
    }
}

/* Canlı Yerleşim Rehberi - Final Premium Styles */
.preview-header-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.header-title-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.preview-header-premium .header-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #6366f1, #2563eb);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    flex-shrink: 0;
}

.preview-header-premium h2 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 1000;
    white-space: nowrap;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.status-indicator span {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(1); }
}

.preview-container-v3 {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
    overflow: hidden;
}

.preview-container-v3.centered-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-info {
    max-width: 100%;
}

.guide-intro {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.guide-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.guide-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.guide-item .icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-item .icon.web { background: #eff6ff; color: #2563eb; }
.guide-item .icon.mobile { background: #fdf2f8; color: #db2777; }

.guide-item b { display: block; font-size: 13px; margin-bottom: 0px; }
.guide-item span { font-size: 12px; color: var(--muted); line-height: 1.4; }

.header-right-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    width: 250px;
}

.action-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    color: #3b82f6;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.preview-banner-v4 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    padding: 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

.preview-banner-v4 p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}

.view-toggle-premium {
    display: inline-flex;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 12px;
    width: 100%; /* Buton kutusunu tam genişlik yap */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.view-toggle-premium .toggle-btn {
    border: none;
    background: transparent;
    padding: 8px;
    flex: 1; /* Butonları eşit yay */
    border-radius: 9px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748b;
}

.view-toggle-premium .toggle-btn.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: scale(1.02);
}

.preview-viewport-v3 {
    width: 100%;
    height: 520px;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .header-right-actions {
        align-items: center;
        width: 100%;
        max-width: 320px; /* Mobilde biraz daha genişleyebilir */
        margin: 15px auto 0 auto;
    }
    .action-label { text-align: center; }
}

@media (max-width: 480px) {
    .preview-banner-v4 {
        padding: 8px;
    }
    .preview-viewport-v3 {
        min-height: 480px;
    }
}

.iphone-mockup-v3 {
    width: 240px;
    height: 480px;
    background: #000;
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.iphone-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.preview-loader {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: grid;
    place-content: center;
    gap: 10px;
    padding: 24px;
    color: #fff;
    background: linear-gradient(135deg, #071331, #0f7b63);
    text-align: center;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.preview-loader.is-done {
    opacity: 0;
    visibility: hidden;
}

.preview-loader strong {
    font-size: 34px;
    line-height: 1;
}

.preview-loader span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 800;
}

.preview-loader i {
    display: block;
    width: 170px;
    height: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
}

.preview-loader b {
    display: block;
    width: 0%;
    height: 100%;
    background: #60a5fa;
    border-radius: inherit;
    transition: width 0.16s linear;
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: #000;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.iphone-inner iframe {
    width: 390px;
    height: 780px;
    border: none;
    transform: scale(0.564); /* Fit to 220px */
    transform-origin: top left;
}

.browser-mockup-v3 {
    width: 98%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    height: auto;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.browser-header {
    height: 36px;
    background: #f1f5f9;
    padding: 0 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.browser-header .dots { display: flex; gap: 6px; }
.browser-header .dots span { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }

.url-bar {
    flex: 1;
    margin: 0 16px;
    height: 22px;
    background: #fff;
    border-radius: 4px;
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.browser-body { flex: 1; position: relative; background: #fff; overflow: hidden; }

.browser-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 1280px;
    height: 800px;
    border: none;
    transform: scale(0.75);
    transform-origin: top left;
}

/* Modal Styles */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-modal.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal .modal-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.custom-modal.active .modal-content {
    transform: translateY(0);
}

.custom-modal .modal-icon {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.custom-modal h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.custom-modal p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.custom-modal .modal-actions {
    display: flex;
    gap: 12px;
}

.custom-modal .modal-actions button,
.custom-modal .modal-actions a {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-modal .btn-cancel {
    background: #f1f5f9;
    color: #475569;
}

.custom-modal .btn-cancel:hover {
    background: #e2e8f0;
}

.custom-modal .btn-confirm {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.custom-modal .btn-confirm:hover {
    background: #2563eb;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.site-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(8px);
}

.site-modal.active {
    display: flex;
}

.site-modal-card {
    position: relative;
    width: min(500px, 100%);
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.22);
}

.site-modal-close {
    position: absolute;
    right: 16px;
    top: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    color: var(--muted);
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
}

.site-modal-kicker {
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.site-modal-card h3 {
    max-width: 420px;
    margin: 10px 0 10px;
    font-size: 28px;
    line-height: 1.08;
}

.site-modal-card p {
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

.site-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.modal-lead-form {
    display: none;
    gap: 10px;
    margin-top: 16px;
}

.modal-lead-form input,
.modal-lead-form select,
.modal-lead-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

.modal-lead-form select {
    font-weight: 800;
}

.modal-lead-form select option.other-option {
    color: #fff;
    background: #db2777;
    font-weight: 900;
}

.modal-lead-form button {
    min-height: 44px;
    border: 0;
    color: #fff;
    background: var(--brand);
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
}

.modal-form-status {
    min-height: 20px;
    color: var(--muted);
    font-weight: 800;
}

.modal-form-status.success {
    color: var(--brand-dark);
}

.modal-form-status.error {
    color: #b42318;
}

.site-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 900;
}

.site-modal-btn.primary {
    color: #fff;
    background: var(--brand);
}

.site-modal-btn.secondary {
    color: #0f172a;
    background: #f1f5f9;
}

@media (max-width: 520px) {
    .site-modal {
        align-items: center;
        padding: 10px;
    }

    .site-modal-card {
        width: 92%;
        max-height: calc(100vh - 20px);
        padding: 20px;
        border-radius: 12px;
    }

    .site-modal-close {
        right: 10px;
        top: 8px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .site-modal-kicker {
        font-size: 10px;
    }

    .site-modal-card h3 {
        max-width: 100%;
        font-size: 20px;
        margin-top: 6px;
    }

    .site-modal-card p {
        font-size: 13px;
        line-height: 1.4;
    }

    .modal-lead-form textarea {
        min-height: 58px;
    }

    .site-modal-actions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 14px;
    }

    .site-modal-btn {
        padding: 0 10px;
        font-size: 13px;
    }

    .site-modal-btn.primary {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1200px) {
    .browser-body iframe { transform: scale(0.65); }
}

@media (max-width: 991px) {
    .preview-viewport-v3 { height: auto; padding: 20px 0; }
    .browser-body iframe { transform: scale(0.55); }
}

@media (max-width: 768px) {
    .preview-header-premium {
        flex-direction: column;
        justify-content: center;
    }
    .browser-body iframe { transform: scale(0.45); }
}

@media (max-width: 480px) {
    .preview-container-v3 { padding: 10px; border-radius: 16px; }
    .header-title-group { flex-direction: column; text-align: center; gap: 10px; }
    .preview-header-premium h2 { white-space: normal; font-size: 1.3rem; margin-bottom: 5px; }
    .preview-header-premium .status-indicator { justify-content: center; }
    
    .view-toggle-premium { margin-top: 10px; width: 100%; justify-content: center; }
    .view-toggle-premium .toggle-btn { flex: 1; }

    .preview-viewport-v3 { 
        padding: 30px 0; 
        min-height: 500px;
        background: transparent;
    }
    
    .iphone-mockup-v3 { 
        width: 220px; 
        height: 440px; 
        margin: 0 auto;
        flex-shrink: 0; /* Basılmayı engelle */
    }
    .iphone-inner iframe { transform: scale(0.512); } /* 200 / 390 */
    
    .browser-mockup-v3 { display: none; }
}

/* Premium Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.2), inset 0 0 10px rgba(37, 211, 102, 0.1);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsappBounce 2s infinite ease-in-out;
}

.whatsapp-float span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.4s ease;
    opacity: 0;
}

.whatsapp-float:hover {
    background: rgba(37, 211, 102, 0.25);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.whatsapp-float:hover span {
    max-width: 150px;
    opacity: 1;
}

@keyframes whatsappBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }
    .whatsapp-float span { display: none; }
}

/* Custom Confirm Modal Styles - Ultra Premium */
.modal-confirm .site-modal-card {
    max-width: 440px !important;
    padding: 50px 40px !important;
    text-align: center !important;
    border-radius: 32px !important;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.18) !important;
    border: 1px solid rgba(255,255,255,0.7) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
}

.modal-confirm h3 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 16px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.8px !important;
}

.modal-confirm p {
    color: #475569 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 40px !important;
    font-weight: 400 !important;
}

.confirm-actions {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
}

.confirm-yes {
    background: #0f172a !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 40px !important;
    border-radius: 16px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 20px -5px rgba(15, 23, 42, 0.3) !important;
}

.confirm-no {
    background: #ffffff !important;
    color: #475569 !important;
    border: 2px solid #e2e8f0 !important;
    padding: 12px 40px !important;
    border-radius: 16px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.confirm-yes:hover, .confirm-no:hover { 
    transform: translateY(-3px) !important;
}

