:root{
    --void:#1E1233;
    --void-deep:#130A24;
    --void-light:#2A1B4C;
    --void-card:#241638;
    --magenta:#FF2E93;
    --indigo:#6366F1;
    --mist:#EBEFF5;
    --mist-dim:#A9AFC6;
    --line:rgba(235,239,245,0.10);
    --grad: linear-gradient(120deg, var(--magenta), var(--indigo));
    --font-display:'Space Grotesk', sans-serif;
    --font-body:'Inter', sans-serif;
    --font-mono:'JetBrains Mono', monospace; 
    --phi-1: 8px;
    --phi-2: 13px;
    --phi-3: 21px;
    --phi-4: 34px;
    --phi-5: 55px;
    --phi-6: 89px;
    --phi-7: 144px;
    --phi-8: 233px;
  }

  *{ margin:0; padding:0; box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
  }

  body{
    background:var(--void);
    color:var(--mist);
    font-family:var(--font-body);
    line-height:1.7;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
  }

  img,svg{ display:block; max-width:100%; }
  a{ color:inherit; text-decoration:none; }
  ul{ list-style:none; }
  button{ font-family:inherit; cursor:pointer; }

  ::selection{ background:var(--magenta); color:var(--void); }

  :focus-visible{
    outline:2px solid var(--indigo);
    outline-offset:3px;
    border-radius:4px;
  }

  .skip-link{
    position:fixed; top:-60px; left:16px; z-index:10000;
    background:var(--grad); color:#fff;
    padding:12px 20px; border-radius:10px;
    font-weight:600; font-size:0.9rem;
    transition:top .2s ease;
  }
  .skip-link:focus{ top:16px; }

  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 var(--phi-4);
  }

  @media (min-width:1600px){
    .wrap{ max-width:1440px; }
  }
  @media (min-width:2000px){
    .wrap{ max-width:1680px; }
  }

  .eyebrow{
    font-family:var(--font-mono);
    font-size:0.78rem;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--indigo);
    display:flex;
    align-items:center;
    gap:var(--phi-1);
    margin-bottom:var(--phi-3);
  }
  .showcase-eyebrow{ margin-top:var(--phi-2); }
  #hero-eyebrow{ margin-top:120px; }
  .eyebrow::before{
    content:'';
    width:22px; height:1px;
    background:var(--grad);
  }

  h1,h2,h3,h4{
    font-family:var(--font-display);
    font-weight:600;
    letter-spacing:-0.01em;
    color:var(--mist);
  }

  .section-title{
    font-size:clamp(2rem, 1.4rem + 2.6vw, 3.1rem);
    line-height:1.12;
    max-width:720px;
  }

  .lead{
    color:var(--mist-dim);
    font-size:1.06rem;
    max-width:560px;
    margin-top:var(--phi-3);
  }

  section{ position:relative; }

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:var(--phi-2) var(--phi-4);
    border-radius:100px;
    font-weight:600;
    font-size:0.95rem;
    border:1px solid transparent;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--grad);
    color:#fff;
    box-shadow:0 8px 30px -8px rgba(255,46,147,0.45);
  }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 34px -8px rgba(255,46,147,0.6); }
  .btn-ghost{
    background:transparent;
    color:var(--mist);
    border-color:var(--line);
  }
  .btn-ghost:hover{ border-color:var(--indigo); background:rgba(99,102,241,0.08); }
  .btn-sm{ padding:var(--phi-1) var(--phi-3); font-size:0.85rem; }

  /* ---------- Nav ---------- */
  header{
    position:fixed;
    top:0; left:0; right:0;
    z-index:100;
    padding:var(--phi-3) 0;
    transition:background .3s ease, border-color .3s ease, padding .3s ease;
    border-bottom:1px solid transparent;
  }
  header.scrolled{
    background:rgba(19,10,36,0.82);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-color:var(--line);
    padding:var(--phi-2) 0;
  }
  nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-family:var(--font-display);
    font-size:1.15rem;
    font-weight:700;
    letter-spacing:0.01em;
  }
  .brand .mark{ width:34px; height:34px; }
  .brand small{
    display:block;
    font-family:var(--font-mono);
    font-size:0.6rem;
    font-weight:400;
    color:var(--mist-dim);
    letter-spacing:0.12em;
    margin-top:1px;
  }
  .nav-links{
    display:flex;
    align-items:center;
    gap:36px;
  }
  .nav-links a{
    font-size:0.92rem;
    color:var(--mist-dim);
    position:relative;
    padding:4px 0;
    transition:color .2s ease;
  }
  .nav-links a:hover{ color:var(--mist); }
  .nav-links a::after{
    content:'';
    position:absolute; left:0; right:100%; bottom:0;
    height:1px; background:var(--grad);
    transition:right .25s ease;
  }
  .nav-links a:hover::after{ right:0; }
  .nav-actions{ display:flex; align-items:center; gap:18px; }
  .burger{
    display:none;
    width:44px; height:44px;
    border:1px solid var(--line);
    border-radius:12px;
    background:transparent;
    position:relative;
    flex-shrink:0;
    transition:border-color .2s ease, background .2s ease;
  }
  .burger:hover{ border-color:rgba(99,102,241,0.5); background:rgba(99,102,241,0.08); }
  .burger span, .burger span::before, .burger span::after{
    content:'';
    position:absolute; left:50%; top:50%;
    width:17px; height:1.5px;
    background:var(--mist);
    transform:translate(-50%,-50%);
    transition:transform .25s ease, opacity .25s ease;
  }
  .burger span::before{ transform:translate(-50%, -6px); }
  .burger span::after{ transform:translate(-50%, 6px); }
  .burger[aria-expanded="true"] span{ background:transparent; }
  .burger[aria-expanded="true"] span::before{ transform:translate(-50%,0) rotate(45deg); }
  .burger[aria-expanded="true"] span::after{ transform:translate(-50%,0) rotate(-45deg); }

  .mobile-panel-backdrop{
    position:fixed;
    inset:64px 0 0 0;
    background:rgba(10,6,20,0.55);
    z-index:85;
    opacity:0;
    pointer-events:none;
    transition:opacity .2s ease;
  }
  .mobile-panel-backdrop.open{ opacity:1; pointer-events:auto; }

  .mobile-panel{
    position:fixed;
    top:64px; left:0; right:0;
    max-height:calc(100vh - 64px);
    background:var(--void-deep);
    z-index:90;
    padding:var(--phi-4) var(--phi-4);
    transform:translateY(-6px);
    opacity:0;
    pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
    overflow-y:auto;
    display:flex;
    flex-direction:column;
    border-bottom:1px solid var(--line);
    border-radius:0 0 20px 20px;
    box-shadow:0 24px 48px -24px rgba(0,0,0,0.55);
  }
  .mobile-panel.open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .mobile-panel a{
    font-family:var(--font-body);
    font-weight:600;
    font-size:1.05rem;
    padding:17px 2px;
    border-bottom:1px solid var(--line);
    color:var(--mist);
    transition:color .15s ease;
  }
  .mobile-panel a:active{ color:var(--indigo); }
  .mobile-panel .btn{ margin-top:var(--phi-4); width:100%; justify-content:center; }

  /* ---------- Hero ---------- */
  .hero{
    padding:var(--phi-7) 0 var(--phi-6) 0;
    position:relative;
    overflow:hidden;
    background:
      radial-gradient(ellipse 900px 500px at 82% -10%, rgba(255,46,147,0.18), transparent 60%),
      radial-gradient(ellipse 700px 500px at 5% 20%, rgba(99,102,241,0.20), transparent 60%),
      var(--void);
  }
  #nexus-canvas{
    position:absolute;
    inset:0;
    width:100%; height:100%;
    opacity:0.55;
    pointer-events:none;
  }
  .hero-inner{ position:relative; z-index:2; }
  .hero h1{
    font-size:clamp(2.3rem, 1.4rem + 4vw, 4.1rem);
    line-height:1.12;
    max-width:960px;
  }
  .hero h1 .accent{
    background:var(--grad);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  .hero .lead{ max-width:600px; font-size:1.12rem; margin-top:var(--phi-3); }
  .hero-ctas{ display:flex; gap:var(--phi-3); flex-wrap:wrap; margin-top:var(--phi-4); }

  .stat-row{
    display:grid;
    grid-template-columns:repeat(3,auto);
    gap:var(--phi-5);
    margin-top:var(--phi-6);
    padding-top:34px;
    border-top:1px solid var(--line);
    max-width:640px;
  }
  .stat b{
    display:block;
    font-family:var(--font-display);
    font-size:2.1rem;
    background:var(--grad);
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .stat span{
    font-size:0.82rem;
    color:var(--mist-dim);
    font-family:var(--font-mono);
    letter-spacing:0.02em;
  }

  /* ---------- Reveal ---------- */
  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.in-view{ opacity:1; transform:translateY(0); }
  .reveal-1{ transition-delay:.05s; }
  .reveal-2{ transition-delay:.15s; }
  .reveal-3{ transition-delay:.25s; }
  .reveal-4{ transition-delay:.35s; }

  /* ---------- Services ---------- */
  .services{ padding:var(--phi-7) 0; }
  .services-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:var(--phi-4);
    flex-wrap:wrap;
    margin-bottom:var(--phi-5);
  }
  .service-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
    border-radius:22px;
    overflow:hidden;
  }
  .service-card{
    background:var(--void);
    padding:var(--phi-4) var(--phi-4);
    transition:background .3s ease;
  }
  .service-card:hover{ background:var(--void-light); }
  .service-icon{
    width:46px; height:46px;
    border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    background:rgba(99,102,241,0.12);
    border:1px solid rgba(99,102,241,0.25);
    margin-bottom:26px;
  }
  .service-icon svg{ width:22px; height:22px; }
  .service-card h3{
    font-size:1.3rem;
    margin-bottom:12px;
  }
  .service-card p{
    color:var(--mist-dim);
    font-size:0.96rem;
    max-width:420px;
  }
  .service-tags{
    display:flex; gap:8px; flex-wrap:wrap;
    margin-top:20px;
  }
  .service-tags span{
    font-family:var(--font-mono);
    font-size:0.7rem;
    padding:5px 10px;
    border-radius:100px;
    border:1px solid var(--line);
    color:var(--mist-dim);
  }

  /* ---------- Arayüz Vitrini (Showcase) — temel bölüm ---------- */
  .showcase{
    padding:var(--phi-7) 0;
    background:linear-gradient(180deg, var(--void) 0%, var(--void-deep) 100%);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .showcase-note{
    font-size:0.85rem;
    color:var(--mist-dim);
    max-width:520px;
    margin-top:var(--phi-3);
  }

  /* ---------- Grafik Tasarım Hizmetleri (Detay) ---------- */
  .design-detail{
    padding:var(--phi-7) 0;
    background:var(--void-deep);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .design-detail-grid{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:var(--phi-6);
    align-items:center;
  }
  .design-detail-intro .lead{ margin-top:var(--phi-3); }
  .design-detail-intro .btn{ margin-top:var(--phi-4); }

  .design-detail-panel{
    background:var(--void-card);
    border:1px solid var(--line);
    border-radius:22px;
    padding:var(--phi-5);
  }
  .design-checklist{
    list-style:none;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:var(--phi-3) var(--phi-4);
  }
  .design-checklist li{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:0.94rem;
    color:var(--mist);
  }
  .check-ico{ width:19px; height:19px; flex-shrink:0; }

  .design-detail-contact{
    margin-top:var(--phi-5);
    padding-top:var(--phi-4);
    border-top:1px solid var(--line);
  }
  .design-detail-contact p{ color:var(--mist-dim); font-size:0.88rem; margin-bottom:10px; }
  .design-detail-contact-link{
    display:inline-flex; align-items:center; gap:8px;
    font-weight:600; color:var(--mist); font-size:0.98rem;
  }
  .design-detail-contact-link svg{ transition:transform .2s ease; }
  .design-detail-contact-link:hover svg{ transform:translateX(4px); }

  .showcase-cta{
    margin-top:var(--phi-5);
    padding-top:var(--phi-4);
    border-top:1px solid var(--line);
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:var(--phi-3);
  }
  .showcase-cta p{ color:var(--mist-dim); font-size:0.94rem; max-width:440px; }

  /* ---------- Process ---------- */
  .process{ padding:var(--phi-7) 0; }
  .process-grid{
    margin-top:var(--phi-5);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
  }
  .step{
    padding:0 28px 0 0;
    position:relative;
  }
  .step:not(:last-child)::after{
    content:'';
    position:absolute;
    top:22px; right:0;
    width:28px; height:1px;
    background:var(--line);
  }
  .step .num{
    font-family:var(--font-mono);
    font-size:0.85rem;
    color:var(--magenta);
    margin-bottom:20px;
    display:block;
  }
  .step h3{ font-size:1.12rem; margin-bottom:10px; }
  .step p{ color:var(--mist-dim); font-size:0.88rem; }

  /* ---------- Why ---------- */
  .why{
    padding:var(--phi-7) 0;
    background:var(--void-deep);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:var(--phi-5);
    align-items:center;
  }
  .why-list{ margin-top:36px; display:flex; flex-direction:column; gap:24px; }
  .why-item{ display:flex; gap:16px; }
  .why-item .ico{
    flex-shrink:0;
    width:38px; height:38px;
    border-radius:10px;
    background:rgba(255,46,147,0.1);
    border:1px solid rgba(255,46,147,0.28);
    display:flex; align-items:center; justify-content:center;
  }
  .why-item .ico svg{ width:18px; height:18px; }
  .why-item h3{ font-size:1.02rem; margin-bottom:4px; }
  .why-item p{ color:var(--mist-dim); font-size:0.9rem; }

  .why-panel{
    background:var(--void-card);
    border:1px solid var(--line);
    border-radius:20px;
    padding:var(--phi-4);
    position:relative;
    overflow:hidden;
  }
  .why-panel::before{
    content:'';
    position:absolute; inset:-40% -20% auto auto;
    width:260px; height:260px;
    background:radial-gradient(circle, rgba(255,46,147,0.25), transparent 70%);
  }
  .code-line{ font-family:var(--font-mono); font-size:0.82rem; color:var(--mist-dim); margin-bottom:8px; }
  .code-line .k{ color:var(--indigo); }
  .code-line .s{ color:var(--magenta); }
  .why-metrics{
    display:grid; grid-template-columns:1fr 1fr; gap:20px;
    margin-top:28px; padding-top:24px; border-top:1px solid var(--line);
    position:relative; z-index:1;
  }
  .why-metrics b{ display:block; font-family:var(--font-display); font-size:1.7rem; }
  .why-metrics span{ font-size:0.78rem; color:var(--mist-dim); }

  /* ---------- CTA ---------- */
  .cta{
    padding:var(--phi-7) 0;
    text-align:center;
    position:relative;
    overflow:hidden;
    background:
      radial-gradient(ellipse 600px 400px at 50% 0%, rgba(255,46,147,0.16), transparent 65%),
      var(--void);
  }
  .cta h2{
    font-size:clamp(2rem, 1.3rem + 3vw, 3.4rem);
    max-width:760px;
    margin:0 auto;
    line-height:1.12;
  }
  .cta .lead{ margin:22px auto 0; text-align:center; }
  .cta-trust{
    max-width:560px; margin:14px auto var(--phi-5);
    text-align:center; font-size:0.86rem;
    color:var(--indigo); font-weight:600;
  }

  /* ---------- İletişim / Talep Formu ---------- */
  .contact-grid{
    display:flex;
    justify-content:center;
    text-align:left;
    max-width:560px;
    margin:0 auto;
  }
  .contact-form{
    width:100%;
    background:var(--void-card);
    border:1px solid var(--line);
    border-radius:22px;
    padding:var(--phi-5);
  }
  .contact-form-row{ display:grid; grid-template-columns:1fr 1fr; gap:var(--phi-3); }
  .field-group{ margin-bottom:var(--phi-3); }
  .field-group label{
    display:block; font-size:0.78rem; color:var(--mist-dim);
    margin-bottom:8px; font-family:var(--font-mono); letter-spacing:0.02em;
  }
  .field-group .optional-tag{ text-transform:none; letter-spacing:0; font-family:var(--font-body); }
  .field-group input, .field-group textarea{
    width:100%;
    background:rgba(235,239,245,0.05);
    border:1px solid var(--line);
    color:var(--mist);
    padding:12px 14px;
    border-radius:10px;
    font-size:0.92rem;
    font-family:inherit;
    transition:border-color .2s ease, background .2s ease;
  }
  .field-group input:focus, .field-group textarea:focus{
    border-color:var(--indigo);
    background:rgba(235,239,245,0.09);
    outline:none;
  }
  .field-group textarea{ resize:vertical; min-height:100px; }
  .field-hint{
    display:block; margin-top:6px;
    font-size:0.76rem; color:var(--mist-dim); line-height:1.5;
  }
  .field-error{
    display:none; margin-top:6px;
    font-size:0.78rem; color:var(--magenta); font-weight:600; line-height:1.5;
  }
  .field-group.invalid input, .field-group.invalid textarea{
    border-color:var(--magenta);
    background:rgba(255,46,147,0.06);
  }
  .field-group.invalid .field-error{ display:block; }
  .hp-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
  .contact-form .btn{ width:100%; justify-content:center; margin-top:4px; }
  .form-note{ margin-top:14px; font-size:0.85rem; color:var(--mist-dim); line-height:1.6; }
  .form-status{ margin-top:0; font-size:0.86rem; opacity:0; max-height:0; overflow:hidden; transition:opacity .3s ease, max-height .3s ease; }
  .form-status.show{ opacity:1; max-height:60px; margin-top:12px; }
  .form-status.success{ color:#34D399; }
  .form-status.error{ color:var(--magenta); }

  /* ---------- Footer ---------- */
  footer{
    background:var(--void-deep);
    border-top:1px solid var(--line);
    padding:var(--phi-5) 0 var(--phi-4) 0;
  }
  .footer-top{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:var(--phi-4);
    padding-bottom:var(--phi-5);
    border-bottom:1px solid var(--line);
  }
  .footer-brand p{ color:var(--mist-dim); font-size:0.9rem; margin-top:16px; max-width:280px; }
  .footer-col h4{
    font-family:var(--font-mono);
    font-size:0.72rem;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--mist-dim);
    margin-bottom:18px;
  }
  .footer-col a, .footer-col p{
    display:block;
    color:var(--mist-dim);
    font-size:0.9rem;
    margin-bottom:12px;
    transition:color .2s ease;
  }
  .footer-col a:hover{ color:var(--mist); }
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:28px;
    flex-wrap:wrap;
    gap:16px;
  }
  .footer-bottom p{ font-size:0.8rem; color:var(--mist-dim); }

  .under-construction{
    padding:14px var(--phi-4);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    text-align:center;
    background:var(--void-deep);
    border-top:1px solid var(--line);
    font-family:var(--font-mono);
    font-size:0.74rem;
    letter-spacing:0.01em;
    color:var(--mist-dim);
  }
  .uc-dot{
    width:7px; height:7px; border-radius:50%;
    background:var(--magenta);
    flex-shrink:0;
    animation:uc-pulse 1.8s ease-in-out infinite;
  }
  @keyframes uc-pulse{ 0%,100%{ opacity:1; } 50%{ opacity:0.25; } }
  @media (prefers-reduced-motion: reduce){
    .uc-dot{ animation:none; }
  }
  @media (max-width:480px){
    .under-construction{ font-size:0.7rem; padding:12px var(--phi-3); }
  }

  .socials{ display:flex; gap:14px; flex-shrink:0; }
  .social-cta{
    display:inline-flex; align-items:center; gap:10px;
    padding:10px 20px 10px 14px;
    border-radius:100px;
    border:1px solid rgba(255,46,147,0.35);
    background:linear-gradient(120deg, rgba(255,46,147,0.14), rgba(99,102,241,0.14));
    color:var(--mist);
    font-size:0.86rem;
    font-weight:600;
    white-space:nowrap;
    transition:border-color .2s ease, background .2s ease, transform .2s ease;
  }
  .social-cta svg{ width:20px; height:20px; flex-shrink:0; }
  .social-cta:hover{
    border-color:rgba(255,46,147,0.6);
    background:linear-gradient(120deg, rgba(255,46,147,0.22), rgba(99,102,241,0.22));
    transform:translateY(-2px);
  }

  /* ============================================================
     RESPONSIVE — üç kademeli sistem: tablet (920) / telefon (680) / küçük telefon (420)
     ============================================================ */

  /* ---- Tablet ---- */
  @media (max-width:920px){
    .nav-links{ display:none; }
    .nav-actions .btn-primary{ display:none; }
    .burger{ display:block; }
    .service-grid{ grid-template-columns:1fr; }
    .design-detail-grid{ grid-template-columns:1fr; gap:var(--phi-5); }
    .process-grid{ grid-template-columns:1fr 1fr; row-gap:var(--phi-5); column-gap:var(--phi-4); }
    .step:nth-child(2)::after{ display:none; }
    .why-grid{ grid-template-columns:1fr; }
    .footer-top{ grid-template-columns:1fr 1fr; }
    .stat-row{ grid-template-columns:repeat(3,1fr); gap:var(--phi-3); }
  }

  /* ---- Telefon ---- */
  @media (max-width:680px){
    .wrap{ padding:0 var(--phi-3); }

    header{ padding:var(--phi-2) 0; }
    header.scrolled{ padding:10px 0; }
    .brand{ font-size:1.02rem; }
    .brand .mark{ width:29px; height:29px; }
    .hero{ padding:calc(var(--phi-6) + 24px) 0 var(--phi-5) 0; }
    #hero-eyebrow{ margin-top:48px; }
    .hero .lead{ font-size:1rem; }
    .hero-ctas{ flex-direction:column; align-items:stretch; }
    .hero-ctas .btn{ width:100%; justify-content:center; }
    .stat-row{ grid-template-columns:1fr 1fr 1fr; gap:var(--phi-2); margin-top:var(--phi-5); }
    .stat b{ font-size:1.4rem; }

    .services, .showcase, .design-detail, .process, .why, .cta{ padding:var(--phi-6) 0; }
    .services-head{ flex-direction:column; align-items:flex-start; gap:var(--phi-2); margin-bottom:var(--phi-3); }
    .section-title{ font-size:clamp(1.7rem, 1.3rem + 4vw, 2.4rem); }

    .service-grid{ border-radius:16px; }
    .service-card{
      display:block;
      padding:16px;
    }
    .service-card:hover{ background:var(--void); }
    .service-icon{ display:none; }
    .service-card h3{
      font-size:0.98rem;
      margin-bottom:4px;
    }
    .service-card p{
      font-size:0.82rem;
      line-height:1.5;
      max-width:none;
    }
    .service-tags{ margin-top:8px; gap:6px; }
    .service-tags span{
      font-size:0.62rem;
      padding:3px 9px;
    }

    .design-detail-panel{ padding:var(--phi-3); border-radius:18px; }
    .design-checklist{ grid-template-columns:1fr; gap:var(--phi-2); }
    .design-detail-intro .btn{ width:100%; justify-content:center; }

    .showcase-cta{ flex-direction:column; align-items:flex-start; }
    .showcase-cta .btn{ width:100%; justify-content:center; }

    .process-grid{ grid-template-columns:1fr; gap:var(--phi-4); }
    .step{ padding:0 0 0 calc(var(--phi-4)); position:relative; }
    .step::before{
      content:''; position:absolute; left:7px; top:5px;
      width:9px; height:9px; border-radius:50%; background:var(--grad);
      box-shadow:0 0 0 4px rgba(255,46,147,0.12);
    }
    .step:not(:last-child)::after{
      content:''; display:block; position:absolute;
      left:11px; top:20px; bottom:calc(-1 * var(--phi-4));
      width:1px; background:var(--line);
    }

    .why{ padding:var(--phi-6) 0; }
    .why-panel{ padding:var(--phi-3); }
    .why-metrics{ grid-template-columns:1fr 1fr; gap:var(--phi-2); }

    .cta h2{ font-size:clamp(1.7rem, 1.2rem + 4.5vw, 2.4rem); }
    .contact-form{ padding:var(--phi-4); border-radius:18px; }
    .contact-form-row{ grid-template-columns:1fr; }

    .footer-top{ grid-template-columns:1fr; gap:var(--phi-4); text-align:left; }
    .footer-bottom{ flex-direction:column; align-items:flex-start; gap:var(--phi-2); }
    .social-cta{ white-space:normal; font-size:0.82rem; padding:9px 16px 9px 12px; }
  }

  /* ---- Küçük telefon ---- */
  @media (max-width:420px){
    .wrap{ padding:0 var(--phi-2); }
    .hero{ padding:calc(var(--phi-6) + 10px) 0 var(--phi-4) 0; }
    .hero h1{ font-size:clamp(1.9rem, 1.3rem + 6vw, 2.5rem); }
    .stat-row{ gap:var(--phi-1); }
    .stat b{ font-size:1.25rem; }
    .stat span{ font-size:0.68rem; }
    .why-metrics{ grid-template-columns:1fr; }
    .service-card{ padding:12px; }
    .service-icon svg{ width:15px; height:15px; }
    .design-detail-panel{ padding:var(--phi-2); }
    .mockup-tag{ font-size:0.68rem; padding:6px 12px; }
  }


/* ============================================================
   NEXUS SHOWCASE — DESIGN TOKENS
   ------------------------------------------------------------
   Yön: "Control Room" — koyu, enstrüman panosu hissi veren bir
   SaaS ürün vitrini. Önizleme alanı gerçek bir bilgisayar ekranı
   gibi (pencere çerçevesi + trafik ışıkları) büyütülerek gösterilir.
   ============================================================ */

.showcase-stage {
  --sc-bg: #0f1115;
  --sc-surface: #171a21;
  --sc-surface-2: #1d212a;
  --sc-surface-3: #242832;
  --sc-border: rgba(255, 255, 255, 0.08);
  --sc-border-strong: rgba(255, 255, 255, 0.16);
  --sc-text: #f2f3f5;
  --sc-text-dim: #a1a7b3;
  --sc-text-faint: #666c78;
  --sc-accent: #7c6cf6;
  --sc-accent-strong: #9585ff;
  --sc-accent-dim: rgba(124, 108, 246, 0.16);
  --sc-positive: #3ecf8e;
  --sc-positive-dim: rgba(62, 207, 142, 0.14);
  --sc-warning: #e8a23d;
  --sc-warning-dim: rgba(232, 162, 61, 0.14);
  --sc-danger: #ef5b5b;
  --sc-danger-dim: rgba(239, 91, 91, 0.14);
  --sc-font-display: 'Space Grotesk', 'Manrope', 'Segoe UI', sans-serif;
  --sc-font-body: 'Inter', 'Segoe UI', sans-serif;
  --sc-font-mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;
  --sc-radius-sm: 8px;
  --sc-radius-md: 14px;
  --sc-radius-lg: 22px;
  --sc-shadow-lg: 0 24px 60px -24px rgba(0, 0, 0, 0.65);
  --sc-shadow-sm: 0 8px 20px -12px rgba(0, 0, 0, 0.5);
  --sc-dur: 220ms;
  --sc-ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(320px, 1.15fr);
  grid-template-areas: "preview content";
  gap: 44px;
  align-items: center;
  background: var(--sc-bg);
  color: var(--sc-text);
  font-family: var(--sc-font-body);
  padding: 56px 48px 68px;
  border-radius: var(--sc-radius-lg);
  outline: none;
  overflow: hidden;
}

.showcase-stage::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--sc-accent-dim), transparent 70%);
  pointer-events: none;
  transition: background var(--sc-dur) var(--sc-ease);
}

.showcase-stage:focus-visible {
  box-shadow: 0 0 0 2px var(--sc-bg), 0 0 0 4px var(--sc-accent-strong);
}

/* ---------- Yerleşim: önizleme SOLDA, tanıtım yazısı SAĞDA ----------
   grid-template-areas kullanıldığı için, kaynak kod (DOM) sırası ne
   olursa olsun önizleme her zaman solda, metin her zaman sağda
   görüntülenir — masaüstü, tablet ve mobilde tutarlıdır. */

.showcase-preview { grid-area: preview; min-width: 0; }
.showcase-content { grid-area: content; min-width: 0; }

/* ---------- İçerik paneli ---------- */

.showcase-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: var(--sc-font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sc-accent-strong);
  background: var(--sc-accent-dim);
  border: 1px solid rgba(124, 108, 246, 0.3);
  border-radius: 999px;
  padding: 6px 12px 6px 10px;
  transition: background var(--sc-dur) var(--sc-ease), color var(--sc-dur) var(--sc-ease), border-color var(--sc-dur) var(--sc-ease);
}

.showcase-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sc-accent-strong);
  box-shadow: 0 0 0 3px var(--sc-accent-dim);
}

.showcase-headline {
  margin: 0;
  font-family: var(--sc-font-display);
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--sc-text);
  max-width: 26ch;
}

.showcase-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--sc-text-dim);
  max-width: 40ch;
}

/* ---------- Cihaz çerçevesi (bilgisayar ekranı hissi) ---------- */

.showcase-preview {
  position: relative;
  z-index: 1;
  border-radius: var(--sc-radius-lg);
  padding: 1px;
  background: linear-gradient(140deg, var(--sc-border-strong), transparent 40%, transparent 60%, var(--sc-border-strong));
  box-shadow: var(--sc-shadow-lg);
}

.showcase-preview::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sc-danger);
  box-shadow: 16px 0 0 var(--sc-warning), 32px 0 0 var(--sc-positive);
  opacity: 0.85;
  z-index: 2;
}

.showcase-mockup {
  position: relative;
  background: var(--sc-surface);
  border-radius: calc(var(--sc-radius-lg) - 1px);
  padding: 46px 30px 30px;
  min-height: 540px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  transition: opacity var(--sc-dur) var(--sc-ease), transform var(--sc-dur) var(--sc-ease), background var(--sc-dur) var(--sc-ease);
}

.showcase-mockup[data-interface='hero'] {
  padding: 0;
  min-height: 560px;
}

.showcase-mockup.showcase-enter {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================================
   HER EKRANIN KENDİ KİMLİĞİ — "kökten farklı" temalar
   ------------------------------------------------------------
   Artık her arayüz sadece vurgu rengini değil; yüzey tonunu,
   köşe yuvarlaklığını, başlık fontunu ve arka plan dokusunu da
   değiştiriyor. Böylece art arda gelen ekranlar birbirinin
   renk paleti değişmiş kopyası gibi değil, bağımsız ürünler
   gibi hissettiriyor.
   ============================================================ */

/* 01 — Analiz: "Control Room" / koyu mavi enstrüman panosu (varsayılan temaya en yakın) */
.showcase-mockup[data-interface='analytics'] {
  --sc-accent: #3b82f6; --sc-accent-strong: #60a5fa; --sc-accent-dim: rgba(59, 130, 246, 0.16);
  --sc-surface: #12151c; --sc-surface-2: #171b24; --sc-surface-3: #1e232e;
  --sc-radius-md: 12px; --sc-radius-lg: 20px;
  background: var(--sc-surface);
}

/* 02 — CRM: "Atölye Defteri" / sıcak amber, ahşap kahve tonları */
.showcase-mockup[data-interface='crm'] {
  --sc-accent: #d97706; --sc-accent-strong: #f59e0b; --sc-accent-dim: rgba(217, 119, 6, 0.16);
  --sc-surface: #1c1611; --sc-surface-2: #241c14; --sc-surface-3: #2e2419;
  --sc-border: rgba(245, 222, 179, 0.10); --sc-border-strong: rgba(245, 222, 179, 0.2);
  --sc-radius-md: 10px; --sc-radius-lg: 18px;
  --sc-font-display: 'Georgia', 'Iowan Old Style', serif;
  background: var(--sc-surface);
}

/* 03 — Randevu: "Klinik / Salon" / açık, temiz, ferah teal zemin */
.showcase-mockup[data-interface='appointments'] {
  --sc-accent: #0d9488; --sc-accent-strong: #14b8a6; --sc-accent-dim: rgba(13, 148, 136, 0.14);
  --sc-surface: #f4faf9; --sc-surface-2: #ffffff; --sc-surface-3: #e6f3f1;
  --sc-text: #12312c; --sc-text-dim: #4f6b66; --sc-text-faint: #8aa39e;
  --sc-border: rgba(13, 65, 58, 0.10); --sc-border-strong: rgba(13, 65, 58, 0.2);
  --sc-radius-md: 16px; --sc-radius-lg: 24px;
  --sc-shadow-lg: 0 24px 60px -24px rgba(13, 65, 58, 0.35);
  background: var(--sc-surface);
}

/* 04 — Menü: "Kağıt Menü Kartı" / krem kağıt, çentikli bordo çizgiler, serif */
.showcase-mockup[data-interface='menu'] {
  --sc-accent: #9a3412; --sc-accent-strong: #c2410c; --sc-accent-dim: rgba(154, 52, 18, 0.12);
  --sc-surface: #fbf3e3; --sc-surface-2: #f6ead2; --sc-surface-3: #efdcb8;
  --sc-text: #3a2412; --sc-text-dim: #6b4a2c; --sc-text-faint: #9c7a52;
  --sc-border: rgba(58, 36, 18, 0.14); --sc-border-strong: rgba(58, 36, 18, 0.26);
  --sc-radius-md: 4px; --sc-radius-lg: 6px;
  --sc-font-display: 'Playfair Display', 'Georgia', serif;
  --sc-font-body: 'Georgia', 'Iowan Old Style', serif;
  --sc-shadow-lg: 0 24px 60px -24px rgba(58, 36, 18, 0.4);
  background:
    repeating-linear-gradient(180deg, rgba(58,36,18,0.02) 0px, rgba(58,36,18,0.02) 1px, transparent 1px, transparent 26px),
    var(--sc-surface);
}

/* 05 — Stok: "Sanayi / Depo" / gritty turuncu, keskin köşeler, mono ağırlıklı */
.showcase-mockup[data-interface='stock'] {
  --sc-accent: #c2410c; --sc-accent-strong: #f97316; --sc-accent-dim: rgba(194, 65, 12, 0.18);
  --sc-surface: #14100c; --sc-surface-2: #1c1712; --sc-surface-3: #251e17;
  --sc-border: rgba(249, 115, 22, 0.14); --sc-border-strong: rgba(249, 115, 22, 0.3);
  --sc-radius-md: 6px; --sc-radius-lg: 10px;
  --sc-font-display: var(--sc-font-mono);
  background:
    repeating-linear-gradient(135deg, rgba(249,115,22,0.03) 0px, rgba(249,115,22,0.03) 2px, transparent 2px, transparent 14px),
    var(--sc-surface);
}

/* 07 — Hakkımızda: "Gökyüzü / Arşiv" / soğuk mavi, geniş nefes alanı */
.showcase-mockup[data-interface='about'] {
  --sc-accent: #0284c7; --sc-accent-strong: #38bdf8; --sc-accent-dim: rgba(2, 132, 199, 0.14);
  --sc-surface: #0b141c; --sc-surface-2: #101c26; --sc-surface-3: #16252f;
  --sc-radius-md: 16px; --sc-radius-lg: 26px;
  --sc-font-display: 'Space Grotesk', sans-serif;
  background: radial-gradient(ellipse 400px 260px at 100% 0%, rgba(56,189,248,0.10), transparent 65%), var(--sc-surface);
}

/* 08 — Önce & Sonra: "Stüdyo Duvarı / Editoryal" / açık zemin, pembe-mürekkep vurgular, polaroid hissi */
.showcase-mockup[data-interface='beforeafter'] {
  --sc-accent: #be185d; --sc-accent-strong: #ec4899; --sc-accent-dim: rgba(190, 24, 93, 0.12);
  --sc-surface: #faf7f5; --sc-surface-2: #ffffff; --sc-surface-3: #f1e7e2;
  --sc-text: #241318; --sc-text-dim: #6b5158; --sc-text-faint: #a4898f;
  --sc-border: rgba(36, 19, 24, 0.12); --sc-border-strong: rgba(36, 19, 24, 0.24);
  --sc-radius-md: 4px; --sc-radius-lg: 8px;
  --sc-font-display: 'Space Grotesk', sans-serif;
  --sc-font-mono: 'IBM Plex Mono', monospace;
  --sc-shadow-lg: 0 24px 60px -24px rgba(36, 19, 24, 0.35);
  background:
    radial-gradient(circle at 1px 1px, rgba(36,19,24,0.06) 1px, transparent 0) 0 0/16px 16px,
    var(--sc-surface);
}

/* 09 — Değerlendirmeler: "Sosyal Duvar" / açık krem zemin, mercan-kırmızı vurgu, yuvarlak kartlar */
.showcase-mockup[data-interface='reviews'] {
  --sc-accent: #e11d48; --sc-accent-strong: #fb7185; --sc-accent-dim: rgba(225, 29, 72, 0.10);
  --sc-surface: #fff7f5; --sc-surface-2: #ffffff; --sc-surface-3: #ffe4e6;
  --sc-text: #2a1216; --sc-text-dim: #6b4348; --sc-text-faint: #a67d81;
  --sc-border: rgba(42, 18, 22, 0.10); --sc-border-strong: rgba(42, 18, 22, 0.2);
  --sc-radius-md: 18px; --sc-radius-lg: 26px;
  --sc-font-display: 'Space Grotesk', sans-serif;
  --sc-shadow-lg: 0 24px 60px -24px rgba(42, 18, 22, 0.3);
  background: var(--sc-surface);
}

.showcase-mockup * {
  box-sizing: border-box;
}

.showcase-transition-next .showcase-content,
.showcase-transition-prev .showcase-content {
  transition: opacity calc(var(--sc-dur) * 0.8) var(--sc-ease), transform calc(var(--sc-dur) * 0.8) var(--sc-ease);
  opacity: 0;
}

.showcase-transition-next .showcase-content { transform: translateY(-6px); }
.showcase-transition-prev .showcase-content { transform: translateY(6px); }

/* ---------- Oklar / Noktalar / İlerleme / Sayaç ---------- */

.showcase-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--sc-border);
  background: var(--sc-surface-2);
  color: var(--sc-text);
  font-size: 16px;
  cursor: pointer;
  transition: border-color var(--sc-dur) var(--sc-ease), background var(--sc-dur) var(--sc-ease), transform var(--sc-dur) var(--sc-ease);
}
.showcase-arrow:hover { border-color: var(--sc-accent); background: var(--sc-accent-dim); transform: translateY(-1px); }
.showcase-arrow:active { transform: translateY(0); }
.showcase-arrow:focus-visible { outline: 2px solid var(--sc-accent-strong); outline-offset: 2px; }

.showcase-dots { display: flex; align-items: center; gap: 8px; }
.showcase-dot { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; background: var(--sc-border-strong); cursor: pointer; transition: width var(--sc-dur) var(--sc-ease), background var(--sc-dur) var(--sc-ease); }
.showcase-dot:hover { background: var(--sc-text-dim); }
.showcase-dot.active { width: 22px; border-radius: 999px; background: var(--sc-accent-strong); }
.showcase-dot:focus-visible { outline: 2px solid var(--sc-accent-strong); outline-offset: 3px; }

.showcase-progress { position: absolute; left: 48px; right: 48px; bottom: 40px; height: 2px; background: var(--sc-border); border-radius: 999px; overflow: hidden; z-index: 1; }
.showcase-progress-bar { height: 100%; background: linear-gradient(90deg, var(--sc-accent), var(--sc-accent-strong)); border-radius: inherit; transition: width var(--sc-dur) var(--sc-ease); }

.showcase-counter { position: absolute; top: 32px; right: 48px; z-index: 1; font-family: var(--sc-font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--sc-text-faint); }

@media (prefers-reduced-motion: reduce) {
  .showcase-stage *, .showcase-stage *::before { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   RESPONSIVE — Showcase: masaüstü / tablet / telefon
   ------------------------------------------------------------
   ≥901px  : önizleme solda, metin sağda (iki sütun)
   ≤900px  : tek sütun — önizleme üstte, metin altta, her ikisi
             de tam genişlik; dokunmatik kaydırma (swipe) aktif.
   ============================================================ */

@media (max-width: 900px) {
  .showcase-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "preview"
      "content";
    padding: 28px 18px 46px;
    gap: 22px;
  }
  .showcase-progress { left: 18px; right: 18px; bottom: 18px; }
  .showcase-counter { top: 16px; right: 18px; }
  .showcase-headline { max-width: none; font-size: 22px; }
  .showcase-body { font-size: 14.5px; max-width: none; }
  .showcase-mockup { min-height: 480px; padding: 42px 20px 24px; }
  .showcase-mockup[data-interface='hero'] { min-height: 440px; }

  /* Mobilde küçük kalan metinleri okunur seviyeye çıkar */
  .analytics-kpi strong, .stock-summary strong { font-size: 19px; }
  .analytics-kpi span, .stock-summary small { font-size: 11.5px; }
  .crm-customer-main strong, .stock-product-info strong,
  .about-value strong { font-size: 13.5px; }
  .crm-customer-main small, .stock-product-info small,
  .about-value p { font-size: 12px; }
  .chart-days span { font-size: 10.5px; }
  .mockup-period-tabs button { font-size: 13px; padding: 7px 13px; }
  .appointment-slot { font-size: 13px; padding: 11px 4px; }
  .appointment-day strong { font-size: 15px; }
  .hero-title { font-size: 24px; }
  .hero-text { font-size: 13.5px; }
  .about-intro strong { font-size: 19px; }
  .about-intro p { font-size: 13px; max-width: none; }
}

/* ---- Tablet (900–681px arası ince ayar: iki sütun yerine tek sütun
       zaten üstteki breakpoint ile devrede; burada sadece iç boşluklar
       biraz daha ferahlatılıyor) ---- */
@media (min-width: 681px) and (max-width: 900px) {
  .showcase-stage { padding: 40px 32px 56px; }
  .showcase-mockup { min-height: 520px; }
}

/* ---- Küçük telefon ---- */
@media (max-width: 420px) {
  .showcase-stage { padding: 22px 14px 36px; gap: 18px; }
  .showcase-mockup { padding: 36px 14px 18px; min-height: 460px; }
  .showcase-headline { font-size: 19px; }
  .showcase-counter { top: 12px; right: 14px; font-size: 10.5px; }
  .showcase-progress { left: 14px; right: 14px; bottom: 14px; }
}

/* ============================================================
   00 — TOAST
   ============================================================ */

.showcase-toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.showcase-toast {
  display: flex; align-items: center; gap: 10px; min-width: 240px; max-width: 340px;
  padding: 12px 16px; border-radius: 8px; background: #1d212a; border: 1px solid rgba(255,255,255,0.1);
  color: #f2f3f5; font-family: 'Inter', sans-serif; font-size: 13.5px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.55);
  opacity: 0; transform: translateY(8px);
  transition: opacity 220ms cubic-bezier(0.22,1,0.36,1), transform 220ms cubic-bezier(0.22,1,0.36,1);
}
.showcase-toast.show { opacity: 1; transform: translateY(0); }
.showcase-toast-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; font-size: 12px; font-weight: 700; }
.showcase-toast-success .showcase-toast-icon { background: rgba(62,207,142,0.16); color: #3ecf8e; }
.showcase-toast-warning .showcase-toast-icon { background: rgba(232,162,61,0.16); color: #e8a23d; }
.showcase-toast-info .showcase-toast-icon { background: rgba(124,108,246,0.16); color: #9585ff; }

/* ============================================================
   01 — ANALYTICS
   ============================================================ */

.advanced-dashboard { display: flex; flex-direction: column; gap: 20px; }
.dashboard-topbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.dashboard-topbar strong { display: block; font-family: var(--sc-font-display); font-size: 16px; font-weight: 600; }
.dashboard-topbar span { display: block; margin-top: 2px; font-size: 12.5px; color: var(--sc-text-faint); }

.mockup-period-tabs { display: flex; gap: 4px; padding: 4px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: 999px; }
.mockup-period-tabs button { border: none; background: transparent; color: var(--sc-text-faint); font-family: var(--sc-font-body); font-size: 12px; font-weight: 500; padding: 6px 11px; border-radius: 999px; cursor: pointer; transition: background var(--sc-dur) var(--sc-ease), color var(--sc-dur) var(--sc-ease); }
.mockup-period-tabs button:hover { color: var(--sc-text); }
.mockup-period-tabs button.active { background: var(--sc-accent); color: #fff; }

.mockup-category-select {
  background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: 999px;
  color: var(--sc-text); font-size: 12px; padding: 6px 12px; font-family: var(--sc-font-body); cursor: pointer;
}

.analytics-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.analytics-kpi { display: flex; flex-direction: column; gap: 6px; padding: 14px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-md); }
.analytics-kpi span { font-size: 10.5px; color: var(--sc-text-faint); text-transform: uppercase; letter-spacing: 0.06em; }
.analytics-kpi strong { font-family: var(--sc-font-mono); font-size: 17px; font-weight: 600; color: var(--sc-text); }
.analytics-kpi small { font-family: var(--sc-font-mono); font-size: 10.5px; width: fit-content; padding: 2px 6px; border-radius: 5px; }
.analytics-kpi small.positive { color: var(--sc-positive); background: var(--sc-positive-dim); }
.analytics-kpi small.negative { color: var(--sc-danger); background: var(--sc-danger-dim); }

.analytics-split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 12px; }
.analytics-chart-card { display: flex; flex-direction: column; gap: 14px; padding: 18px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-md); }
.chart-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.chart-heading strong { display: block; font-size: 13.5px; font-weight: 600; }
.chart-heading span { display: block; margin-top: 2px; font-size: 11.5px; color: var(--sc-text-faint); }
.chart-live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sc-font-mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--sc-danger); }
.chart-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--sc-danger); box-shadow: 0 0 0 3px var(--sc-danger-dim); }

.advanced-chart { display: flex; align-items: flex-end; gap: 6px; height: 140px; padding-top: 8px; }
.chart-column { position: relative; flex: 1; height: var(--height, 20%); min-height: 4px; border: none; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--sc-accent-strong), var(--sc-accent)); opacity: 0.55; cursor: pointer; transition: opacity var(--sc-dur) var(--sc-ease), transform var(--sc-dur) var(--sc-ease), height .5s cubic-bezier(.16,1,.3,1); }
.chart-column:hover, .chart-column.active { opacity: 1; transform: scaleY(1.02); }
.chart-tooltip { position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: #05060a; color: var(--sc-text); font-family: var(--sc-font-mono); font-size: 10px; padding: 4px 7px; border-radius: 5px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--sc-dur) var(--sc-ease); }
.chart-column:hover .chart-tooltip { opacity: 1; }
.chart-days { display: flex; gap: 4px; }
.chart-days span { flex: 1; text-align: center; font-size: 9.5px; color: var(--sc-text-faint); }

.analytics-donut-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 16px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-md); }
.analytics-donut-card strong { align-self: flex-start; font-size: 12.5px; color: var(--sc-text); }
.mockup-donut {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--gradient);
  position: relative; display: flex; align-items: center; justify-content: center;
}
.mockup-donut::before { content: ''; position: absolute; inset: 18px; border-radius: 50%; background: var(--sc-surface-2); }
.mockup-donut span { position: relative; z-index: 1; font-family: var(--sc-font-mono); font-size: 10px; color: var(--sc-text-faint); }
.mockup-donut-legend { display: flex; flex-direction: column; gap: 5px; width: 100%; }
.mockup-donut-legend div { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: var(--sc-text-dim); }
.mockup-donut-legend i { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.mockup-donut-legend b { margin-left: auto; font-family: var(--sc-font-mono); color: var(--sc-text-faint); }

.analytics-top-list { display: flex; flex-direction: column; gap: 8px; padding: 14px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-md); }
.analytics-top-list strong { font-size: 12px; color: var(--sc-text); font-weight: 600; margin-bottom: 2px; }
.analytics-top-list div { display: flex; justify-content: space-between; font-size: 11.5px; }
.analytics-top-list div span { color: var(--sc-text-faint); }
.analytics-top-list div b { font-family: var(--sc-font-mono); color: var(--sc-text-dim); font-weight: 500; }

.mockup-alert-box { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--sc-warning-dim); border: 1px solid rgba(232,162,61,0.3); border-radius: var(--sc-radius-sm); font-size: 12px; color: #f3d9ab; }
.mockup-alert-box span:first-child { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; background: var(--sc-warning); color: #1a1300; font-size: 11px; font-weight: 700; }

/* ============================================================
   02 — CRM
   ============================================================ */

.crm-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.crm-header strong { display: block; font-family: var(--sc-font-display); font-size: 16px; font-weight: 600; }
.crm-header span { display: block; margin-top: 2px; font-size: 12.5px; color: var(--sc-text-faint); }
.crm-add { border: 1px solid color-mix(in srgb, var(--sc-accent) 35%, transparent); background: var(--sc-accent-dim); color: var(--sc-accent-strong); font-size: 12.5px; font-weight: 600; padding: 8px 14px; border-radius: var(--sc-radius-sm); cursor: pointer; transition: background var(--sc-dur) var(--sc-ease); }
.crm-add:hover { background: color-mix(in srgb, var(--sc-accent) 28%, transparent); }

.crm-search-wrapper { position: relative; margin-bottom: 14px; }
.crm-search-wrapper span { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--sc-text-faint); font-size: 13px; }
.crm-search { width: 100%; padding: 10px 12px 10px 34px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-sm); color: var(--sc-text); font-family: var(--sc-font-body); font-size: 13px; }
.crm-search::placeholder { color: var(--sc-text-faint); }
.crm-search:focus-visible { outline: none; border-color: var(--sc-accent); }

.crm-content { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; min-height: 300px; }
.crm-list { display: flex; flex-direction: column; gap: 6px; max-height: 380px; overflow-y: auto; }
.crm-customer { display: flex; align-items: center; gap: 10px; padding: 10px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-sm); cursor: pointer; text-align: left; transition: border-color var(--sc-dur) var(--sc-ease), background var(--sc-dur) var(--sc-ease); }
.crm-customer:hover { border-color: var(--sc-border-strong); }
.crm-customer.selected { border-color: var(--sc-accent); background: var(--sc-accent-dim); }
.crm-avatar { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: var(--sc-surface-3); font-family: var(--sc-font-mono); font-size: 11px; font-weight: 600; color: var(--sc-text); }
.crm-customer-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.crm-customer-main strong { font-size: 12.5px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crm-customer-main small { font-size: 11px; color: var(--sc-text-faint); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crm-customer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; margin-left: auto; }
.crm-customer-meta b { font-family: var(--sc-font-mono); font-size: 12px; }
.crm-customer-meta small { font-size: 10.5px; padding: 2px 6px; border-radius: 5px; }
.crm-customer-meta small.active { color: var(--sc-positive); background: var(--sc-positive-dim); }
.crm-customer-meta small.potential { color: var(--sc-warning); background: var(--sc-warning-dim); }

.crm-detail { display: flex; flex-direction: column; gap: 14px; padding: 16px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-md); color: var(--sc-text-faint); font-size: 12.5px; }
.crm-profile { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.crm-profile-avatar { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--sc-surface-3); font-family: var(--sc-font-mono); font-size: 14px; font-weight: 600; color: var(--sc-text); }
.crm-profile strong { font-size: 14px; color: var(--sc-text); }
.crm-profile-status { font-size: 10.5px; padding: 2px 8px; border-radius: 999px; background: var(--sc-positive-dim); color: var(--sc-positive); }
.crm-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.crm-detail-grid div { display: flex; flex-direction: column; gap: 4px; padding: 10px; background: var(--sc-surface); border-radius: var(--sc-radius-sm); }
.crm-detail-grid small { font-size: 10.5px; color: var(--sc-text-faint); }
.crm-detail-grid strong { font-size: 13px; color: var(--sc-text); }
.crm-notes strong { display: block; font-size: 11.5px; color: var(--sc-text); margin-bottom: 4px; }
.crm-notes p, .crm-notes-p { margin: 0; line-height: 1.5; }
.crm-note-button { align-self: flex-start; border: 1px solid var(--sc-border-strong); background: transparent; color: var(--sc-text); font-size: 12px; padding: 8px 14px; border-radius: var(--sc-radius-sm); cursor: pointer; transition: border-color var(--sc-dur) var(--sc-ease); }
.crm-note-button:hover { border-color: var(--sc-accent); }
.crm-tag-row { display: flex; align-items: center; gap: 6px; }
.crm-tag { font-size: 9.5px; padding: 2px 7px; border-radius: 5px; background: var(--sc-accent-dim); color: var(--sc-accent-strong); font-family: var(--sc-font-mono); }

/* ============================================================
   03 — RANDEVU ONAY PANELİ
   ============================================================ */

.appointment-summary-row { display: flex; gap: 8px; margin-bottom: 14px; }
.appointment-mini-stat { flex: 1; padding: 10px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-sm); display: flex; flex-direction: column; gap: 2px; align-items: center; }
.appointment-mini-stat b { font-family: var(--sc-font-display); font-size: 17px; color: var(--sc-text); }
.appointment-mini-stat span { font-size: 10px; color: var(--sc-text-faint); }

.appointment-day { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 4px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-sm); cursor: pointer; transition: border-color var(--sc-dur) var(--sc-ease), background var(--sc-dur) var(--sc-ease); }
.appointment-day small { font-size: 10.5px; color: var(--sc-text-faint); }
.appointment-day strong { font-family: var(--sc-font-mono); font-size: 14px; }
.appointment-day:hover { border-color: var(--sc-border-strong); }
.appointment-day.active { border-color: var(--sc-accent); background: var(--sc-accent-dim); }
.appointment-day.active strong { color: var(--sc-accent-strong); }

.appointment-slot { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 9px 4px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-sm); color: var(--sc-text); font-family: var(--sc-font-mono); font-size: 11.5px; cursor: pointer; transition: border-color var(--sc-dur) var(--sc-ease), background var(--sc-dur) var(--sc-ease); }
.appointment-slot small { font-family: var(--sc-font-body); font-size: 9.5px; color: var(--sc-text-faint); }
.appointment-slot:hover { border-color: var(--sc-border-strong); }
.appointment-slot.selected { border-color: var(--sc-accent); background: var(--sc-accent-dim); color: var(--sc-accent-strong); }
.appointment-slot.booked { opacity: 0.4; cursor: not-allowed; }
.appointment-slot.booked small { color: var(--sc-danger); }

.appt-row-onaylandi { border-left: 3px solid var(--sc-positive); }
.appt-row-bekliyor { border-left: 3px solid var(--sc-warning); }
.appt-row-iptal { border-left: 3px solid var(--sc-danger); opacity: 0.7; }

.appt-status-pill { font-size: 10px; padding: 3px 9px; border-radius: 999px; font-family: var(--sc-font-mono); flex-shrink: 0; }
.appt-status-onaylandi { background: var(--sc-positive-dim); color: var(--sc-positive); }
.appt-status-bekliyor { background: var(--sc-warning-dim); color: var(--sc-warning); }
.appt-status-iptal { background: var(--sc-danger-dim); color: var(--sc-danger); }

.appt-action-row { display: flex; gap: 8px; margin-top: 4px; }
.appt-btn { flex: 1; padding: 9px; border-radius: var(--sc-radius-sm); font-size: 12px; font-weight: 600; cursor: pointer; border: 1px solid var(--sc-border-strong); background: transparent; color: var(--sc-text); transition: all var(--sc-dur) var(--sc-ease); }
.appt-btn-confirm { background: var(--sc-positive-dim); border-color: rgba(62,207,142,0.35); color: var(--sc-positive); }
.appt-btn-confirm:hover { background: var(--sc-positive); color: #06281a; }
.appt-btn-cancel:hover { border-color: var(--sc-danger); color: var(--sc-danger); }

/* ============================================================
   05 — STOCK
   ============================================================ */

.stock-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.stock-summary div { display: flex; flex-direction: column; gap: 6px; padding: 14px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-md); }
.stock-summary small { font-size: 11px; color: var(--sc-text-faint); }
.stock-summary strong { font-family: var(--sc-font-mono); font-size: 18px; }
.stock-summary strong.danger { color: var(--sc-danger); }

.stock-products { display: flex; flex-direction: column; gap: 8px; max-height: 300px; overflow-y: auto; }
.stock-product { display: flex; align-items: center; gap: 12px; padding: 12px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-sm); }
.stock-product-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.stock-product-info strong { font-size: 12.5px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stock-product-info small { font-family: var(--sc-font-mono); font-size: 10.5px; color: var(--sc-text-faint); }
.stock-controls { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.stock-controls button { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--sc-border-strong); background: var(--sc-surface-3); color: var(--sc-text); font-size: 14px; line-height: 1; cursor: pointer; transition: border-color var(--sc-dur) var(--sc-ease); }
.stock-controls button:hover { border-color: var(--sc-accent); }
.stock-quantity { min-width: 24px; text-align: center; font-family: var(--sc-font-mono); font-size: 13px; }
.stock-state { flex-shrink: 0; font-size: 10.5px; padding: 3px 9px; border-radius: 999px; }
.stock-state.safe { color: var(--sc-positive); background: var(--sc-positive-dim); }
.stock-state.critical { color: var(--sc-danger); background: var(--sc-danger-dim); }
.stock-product-colored { position: relative; padding-left: 16px; }
.stock-category-dot { position: absolute; left: 0; top: 12px; bottom: 12px; width: 4px; border-radius: 4px; background: var(--cat-color); }

/* ============================================================
   06 — HERO (moda vitrini)
   ============================================================ */

.hero-showcase {
  --hero-linen-50: #fdfcfa;
  --hero-linen-100: #f6f2ea;
  --hero-linen-400: #cabca2;
  --hero-linen-500: #ab9b7d;
  --hero-linen-700: #5c5344;
  --hero-linen-900: #24211b;
  --hero-clay: #b3654a;

  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  background: var(--hero-linen-100);
  font-family: 'Inter', sans-serif;
}

.hero-frame { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 900ms ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); }
.hero-slide.active img { animation: hero-ken-burns 7s ease-out forwards; }
.hero-slide-gradient { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(246,242,234,0.92) 0%, rgba(246,242,234,0.55) 42%, rgba(246,242,234,0.08) 68%), linear-gradient(0deg, rgba(246,242,234,0.55), transparent 45%); }
.hero-hairline { position: absolute; inset: 14px; border: 1px solid rgba(36,33,27,0.14); pointer-events: none; }

.hero-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; height: 100%; max-width: 62%; padding: 34px 0 34px 36px; animation: hero-fade-up 700ms ease both; }
.hero-eyebrow { display: flex; align-items: center; gap: 8px; margin: 0 0 12px; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--hero-clay); }
.hero-eyebrow span:first-child { width: 26px; height: 1px; background: var(--hero-clay); }
.hero-title { margin: 0; font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(26px, 2.8vw, 36px); line-height: 1.02; font-weight: 500; color: var(--hero-linen-900); }
.hero-title em { font-style: italic; color: var(--hero-clay); }
.hero-text { margin: 14px 0 0; max-width: 30ch; font-size: 13px; line-height: 1.6; color: var(--hero-linen-700); }
.hero-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; border: none; background: var(--hero-linen-900); color: var(--hero-linen-50); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 11px 18px; cursor: pointer; transition: background 220ms ease, transform 220ms ease; }
.hero-cta:hover { background: var(--hero-clay); transform: translateX(2px); }

.hero-controls { position: absolute; left: 0; right: 0; bottom: 20px; z-index: 1; display: flex; align-items: center; justify-content: space-between; padding: 0 20px 0 36px; }
.hero-arrows { display: flex; align-items: center; gap: 4px; }
.hero-arrows button { border: none; background: transparent; color: var(--hero-linen-700); font-size: 14px; padding: 6px; cursor: pointer; transition: color 220ms ease; }
.hero-arrows button:hover { color: var(--hero-clay); }
.hero-dots { display: flex; align-items: center; gap: 8px; }
.hero-dot { width: 16px; height: 2px; border: none; padding: 0; background: var(--hero-linen-400); cursor: pointer; transition: width 400ms ease, background 400ms ease; }
.hero-dot:hover { background: var(--hero-linen-500); }
.hero-dot.active { width: 30px; background: var(--hero-clay); }
.hero-counter { margin-left: 4px; font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--hero-linen-500); }

@keyframes hero-ken-burns { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes hero-fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero-content { max-width: 84%; padding: 22px 0 22px 20px; }
  .hero-controls { padding: 0 16px 0 20px; }
}

/* ============================================================
   07 — HAKKIMIZDA — zaman tüneli
   ============================================================ */

.about-timeline { display: flex; flex-direction: column; gap: 20px; }
.about-label { font-family: var(--sc-font-mono); font-size: 10.5px; letter-spacing: 0.12em; color: var(--sc-accent-strong); }
.about-timeline-intro { display: flex; flex-direction: column; gap: 6px; min-height: 78px; }
.about-timeline-intro strong { font-family: var(--sc-font-display); font-size: 20px; color: var(--sc-text); transition: opacity 0.15s ease; }
.about-timeline-intro p { margin: 0; font-size: 12.5px; line-height: 1.6; color: var(--sc-text-dim); max-width: 42ch; transition: opacity 0.15s ease; }
.about-timeline-track { padding: 8px 0; }
.about-timeline-line { position: relative; height: 2px; background: var(--sc-border); border-radius: 999px; margin-bottom: 14px; }
.about-timeline-line i { display: block; height: 100%; background: linear-gradient(90deg, var(--sc-accent), var(--sc-accent-strong)); border-radius: 999px; transition: width 0.35s ease; }
.about-timeline-years { display: flex; justify-content: space-between; }
.about-timeline-year { display: flex; flex-direction: column; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; }
.about-timeline-year span { width: 10px; height: 10px; border-radius: 50%; background: var(--sc-border-strong); transition: all var(--sc-dur) var(--sc-ease); }
.about-timeline-year b { font-family: var(--sc-font-mono); font-size: 10.5px; color: var(--sc-text-faint); }
.about-timeline-year.active span { background: var(--sc-accent); box-shadow: 0 0 0 4px var(--sc-accent-dim); }
.about-timeline-year.active b { color: var(--sc-accent-strong); }
.about-stats { display: flex; gap: 10px; padding-top: 16px; border-top: 1px solid var(--sc-border); }
.about-stats div { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.about-stats b { font-family: var(--sc-font-display); font-size: 17px; color: var(--sc-text); }
.about-stats span { font-size: 10.5px; color: var(--sc-text-faint); }

/* ============================================================
   ORTAK — marka başlığı, kaydırma
   ============================================================ */

.mockup-brand-header {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--sc-border);
}
.mockup-brand-badge {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sc-accent), var(--sc-accent-strong));
  color: #fff; font-family: var(--sc-font-mono); font-size: 13px; font-weight: 700;
}
.mockup-brand-header > div { display: flex; flex-direction: column; gap: 1px; }
.mockup-brand-header strong { font-family: var(--sc-font-display); font-size: 14.5px; color: var(--sc-text); }
.mockup-brand-header span { font-family: var(--sc-font-mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--sc-text-faint); text-transform: uppercase; }

.mockup-scroll { max-height: 440px; overflow-y: auto; padding-right: 4px; }
.mockup-scroll::-webkit-scrollbar { width: 6px; }
.mockup-scroll::-webkit-scrollbar-thumb { background: var(--sc-border-strong); border-radius: 999px; }

@media (max-width: 900px) {
  .analytics-kpis { grid-template-columns: repeat(2, 1fr); }
  .analytics-split { grid-template-columns: 1fr; }
  .crm-content { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .about-stats { flex-wrap: wrap; }
  .appointment-slots { grid-template-columns: repeat(3, 1fr); }
  .mockup-brand-header strong { font-size: 13.5px; }
}

/* ============================================================
   04 — MENÜ YÖNETİMİ — "Kağıt Menü Kartı"
   ------------------------------------------------------------
   Grid kartlar yerine gerçek bir basılı menüyü taklit eden,
   noktalı bağlantı çizgili (dotted leader) dikey liste.
   ============================================================ */

.paper-menu { display: flex; flex-direction: column; gap: 16px; }
.paper-menu-tabs { display: flex; gap: 18px; border-bottom: 1px solid var(--sc-border-strong); padding-bottom: 2px; flex-wrap: wrap; }
.paper-menu-tabs button {
  position: relative; border: none; background: transparent; color: var(--sc-text-faint);
  font-family: var(--sc-font-display); font-size: 13px; letter-spacing: 0.02em;
  padding: 8px 2px 12px; cursor: pointer; transition: color var(--sc-dur) var(--sc-ease);
}
.paper-menu-tabs button::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -1px; height: 2px;
  background: var(--sc-accent); transition: right var(--sc-dur) var(--sc-ease);
}
.paper-menu-tabs button:hover { color: var(--sc-text); }
.paper-menu-tabs button.active { color: var(--sc-accent); font-weight: 600; }
.paper-menu-tabs button.active::after { right: 0; }

.paper-menu-list { display: flex; flex-direction: column; gap: 2px; }
.paper-menu-section-title {
  margin: 4px 0 6px; font-family: var(--sc-font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--sc-accent);
}
.paper-menu-row { display: flex; align-items: baseline; gap: 8px; padding: 9px 2px; border-bottom: 1px dashed var(--sc-border-strong); }
.paper-menu-row-out { opacity: 0.5; }
.paper-menu-dot {
  align-self: center; flex-shrink: 0; width: 9px; height: 9px; border-radius: 50%; border: none;
  background: var(--sc-border-strong); cursor: pointer; transition: background var(--sc-dur) var(--sc-ease), box-shadow var(--sc-dur) var(--sc-ease);
}
.paper-menu-dot.active { background: var(--sc-positive); box-shadow: 0 0 0 3px var(--sc-positive-dim); }
.paper-menu-name { font-family: var(--sc-font-display); font-size: 13.5px; color: var(--sc-text); white-space: nowrap; }
.paper-menu-flag {
  display: inline-block; margin-left: 8px; font-family: var(--sc-font-mono); font-style: normal;
  font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sc-danger);
  border: 1px solid var(--sc-danger); border-radius: 3px; padding: 1px 5px; transform: rotate(-2deg);
}
.paper-menu-leader { flex: 1; border-bottom: 1px dotted var(--sc-text-faint); margin-bottom: 4px; min-width: 12px; }
.paper-menu-price {
  flex-shrink: 0; border: none; background: transparent; color: var(--sc-accent); font-family: var(--sc-font-mono);
  font-size: 13.5px; font-weight: 700; cursor: pointer; padding: 2px 4px; border-radius: 4px; transition: background var(--sc-dur) var(--sc-ease);
}
.paper-menu-price:hover { background: var(--sc-accent-dim); }
.paper-menu-price-input {
  width: 74px; flex-shrink: 0; background: var(--sc-surface-3); border: 1px solid var(--sc-accent); border-radius: 5px;
  color: var(--sc-text); font-family: var(--sc-font-mono); font-size: 13px; padding: 4px 7px;
}
.paper-menu-hint { margin: 4px 0 0; font-size: 11px; color: var(--sc-text-faint); font-style: italic; text-align: center; }

@media (max-width: 900px) {
  .paper-menu-tabs { gap: 12px; }
  .paper-menu-name { white-space: normal; }
}

/* ============================================================
   08 — ÖNCE & SONRA — "Stüdyo Duvarı" (dikey sürgü)
   ------------------------------------------------------------
   Yatay tab yerine numaralı proje şeridi; yatay sürükleme yerine
   dikey (yukarı/aşağı) karşılaştırma sürgüsü ve grenli açık zemin.
   ============================================================ */

.ba-showcase { display: flex; flex-direction: column; gap: 14px; }
.ba-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; }
.ba-thumb {
  flex-shrink: 0; display: flex; align-items: center; gap: 8px; border: 1px solid var(--sc-border);
  background: var(--sc-surface-2); color: var(--sc-text-faint); font-family: var(--sc-font-mono);
  font-size: 11px; padding: 8px 12px; border-radius: 999px; cursor: pointer; transition: all var(--sc-dur) var(--sc-ease); white-space: nowrap;
}
.ba-thumb span { font-weight: 700; color: var(--sc-accent); }
.ba-thumb:hover { border-color: var(--sc-border-strong); }
.ba-thumb.active { border-color: var(--sc-accent); background: var(--sc-accent-dim); color: var(--sc-text); }

.ba-frame { position: relative; padding: 10px 10px 26px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-md); box-shadow: var(--sc-shadow-sm); transform: rotate(-0.6deg); }
.ba-frame-index { position: absolute; top: 10px; right: 16px; z-index: 2; font-family: var(--sc-font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--sc-text-faint); }

.ba-compare { position: relative; height: 240px; border-radius: calc(var(--sc-radius-md) - 4px); overflow: hidden; cursor: pointer; user-select: none; touch-action: none; }
.ba-panel { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 16px; }
.ba-panel span { font-family: var(--sc-font-mono); font-size: 10px; letter-spacing: 0.12em; color: rgba(255,255,255,0.75); margin-bottom: 4px; }
.ba-panel em { font-style: normal; font-size: 12.5px; color: #fff; max-width: 26ch; line-height: 1.4; }

.ba-handle-vertical { position: absolute; left: 0; right: 0; top: 50%; height: 34px; margin-top: -17px; display: flex; align-items: center; justify-content: center; cursor: ns-resize; }
.ba-handle-vertical::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: #fff; opacity: 0.85; }
.ba-handle-vertical i { position: relative; z-index: 1; width: 30px; height: 30px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-style: normal; font-size: 13px; color: #18181b; box-shadow: 0 4px 14px rgba(0,0,0,0.3); }

.ba-hint { margin: 0; font-size: 11px; color: var(--sc-text-faint); text-align: center; }

@media (max-width: 900px) {
  .ba-compare { height: 210px; }
}

/* ============================================================
   09 — ÇOKLU PLATFORM DEĞERLENDİRME — "Sosyal Duvar"
   ------------------------------------------------------------
   Sekmeli tek kart yerine, yıldız puanlı ve avatarlı yorum
   akışı; üstte filtre çipleri ile platforma göre süzme.
   ============================================================ */

.wall-filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.wall-chip {
  display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--sc-border);
  background: var(--sc-surface-2); color: var(--sc-text-dim); font-size: 12px; font-weight: 500;
  padding: 7px 13px; border-radius: 999px; cursor: pointer; transition: all var(--sc-dur) var(--sc-ease);
}
.wall-chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--p-color, var(--sc-accent)); flex-shrink: 0; }
.wall-chip:hover { border-color: var(--sc-border-strong); }
.wall-chip.active { border-color: var(--p-color, var(--sc-accent)); background: color-mix(in srgb, var(--p-color, var(--sc-accent)) 12%, var(--sc-surface-2)); color: var(--sc-text); }

.wall-feed { display: flex; flex-direction: column; gap: 10px; max-height: 300px; overflow-y: auto; margin-bottom: 16px; padding-right: 2px; }
.wall-card { padding: 14px; background: var(--sc-surface-2); border: 1px solid var(--sc-border); border-radius: var(--sc-radius-md); }
.wall-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.wall-avatar { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: var(--sc-surface-3); font-family: var(--sc-font-mono); font-size: 11px; font-weight: 700; color: var(--sc-text); }
.wall-card-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.wall-card-meta strong { font-size: 12.5px; font-weight: 600; color: var(--sc-text); }
.wall-platform-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; color: var(--sc-text-faint); }
.wall-platform-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--p-color); }
.wall-stars { margin-left: auto; flex-shrink: 0; font-size: 12px; letter-spacing: 1px; }
.wall-star-filled { color: var(--sc-warning); }
.wall-star-empty { color: var(--sc-border-strong); }
.wall-quote { margin: 0; font-size: 12.5px; line-height: 1.6; color: var(--sc-text-dim); font-style: italic; }

.wall-overall { display: flex; align-items: center; gap: 14px; padding-top: 14px; border-top: 1px solid var(--sc-border); }
.wall-overall strong { font-family: var(--sc-font-display); font-size: 26px; color: var(--sc-text); }
.wall-overall > div { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.wall-overall span { font-size: 11px; color: var(--sc-text-faint); }
.wall-overall-bar { height: 6px; background: var(--sc-border); border-radius: 999px; overflow: hidden; }
.wall-overall-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--sc-accent), var(--sc-accent-strong)); }

@media (max-width: 900px) {
  .wall-filter-row { gap: 6px; }
}

/* ---------- Gerçek Projeler (canlı site önizlemeleri) ---------- */
  .live-projects{
    padding:var(--phi-7) 0;
    background:var(--void-deep);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .live-projects-track{
    display:flex;
    gap:var(--phi-4);
    margin-top:var(--phi-5);
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -ms-overflow-style:none;
    padding-bottom:6px;
  }
  .live-projects-track::-webkit-scrollbar{ display:none; }

  .live-project-card{
    flex:0 0 min(78vw, 340px);
    display:flex;
    flex-direction:column;
    border-radius:18px;
    overflow:hidden;
    background:var(--void-card);
    border:1px solid var(--line);
    text-decoration:none;
    transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  }
  .live-project-card:hover{
    transform:translateY(-4px);
    border-color:var(--indigo);
    box-shadow:0 20px 40px -20px rgba(99,102,241,0.35);
  }

  .live-project-browser{
    background:var(--void-deep);
    padding:12px 14px;
    border-bottom:1px solid var(--line);
  }
  .live-project-dots{ display:flex; gap:6px; margin-bottom:10px; }
  .live-project-dots span{ width:8px; height:8px; border-radius:50%; background:var(--line); }
  .live-project-dots span:nth-child(1){ background:var(--magenta); opacity:.7; }
  .live-project-dots span:nth-child(2){ background:#fbbf24; opacity:.6; }
  .live-project-dots span:nth-child(3){ background:var(--indigo); opacity:.7; }
  .live-project-urlbar{
    background:rgba(235,239,245,0.05);
    border:1px solid var(--line);
    border-radius:6px;
    padding:6px 10px;
    font-family:var(--font-mono);
    font-size:0.7rem;
    color:var(--mist-dim);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .live-project-body{ padding:var(--phi-3); display:flex; flex-direction:column; gap:6px; }
  .live-project-tag{
    font-family:var(--font-mono);
    font-size:0.68rem;
    letter-spacing:0.05em;
    text-transform:uppercase;
    color:var(--indigo);
  }
  .live-project-body strong{
    font-family:var(--font-display);
    font-size:1.05rem;
    color:var(--mist);
  }
  .live-project-body p{
    font-size:0.85rem;
    color:var(--mist-dim);
    line-height:1.5;
  }
  .live-project-link{
    margin-top:6px;
    font-size:0.82rem;
    font-weight:600;
    color:var(--magenta);
  }

  .live-projects-cta{
    margin-top:var(--phi-5);
    padding-top:var(--phi-4);
    border-top:1px solid var(--line);
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:var(--phi-3);
  }
  .live-projects-cta p{ color:var(--mist-dim); font-size:0.94rem; }

  @media (max-width:680px){
    .live-projects{ padding:var(--phi-6) 0; }
    .live-projects-cta{ flex-direction:column; align-items:flex-start; }
    .live-projects-cta .btn{ width:100%; justify-content:center; }
  }