/* ============================================================
   COTTICOTTI ON THE GO — İskandinav minimal tasarım sistemi
   Sıcak kağıt zemin, is mürekkebi, tek ölçülü vurgu rengi,
   ince çizgiler, bol boşluk.
   ============================================================ */
#cotti-lp{
  --bg:#F6F4EF;
  --bg2:#EFECE4;
  --surface:#FCFBF8;
  --ink:#1B1915;
  --muted:#716C61;
  --faint:#9B968A;
  --line:#DAD5C9;
  --line-strong:#C7C1B2;
  --accent:#C72227;
  --accent-dark:#A91B20;
  --accent-soft:#F1DADB;
  --dark:#211F1A;
  --dark-line:rgba(246,244,239,.14);
  --dark-muted:rgba(246,244,239,.62);

  --f-sans:'Schibsted Grotesk','Helvetica Neue',Arial,sans-serif;
  --f-serif:'Fraunces',Georgia,'Times New Roman',serif;

  --wrap:1200px;
  --header-h:84px;
  color-scheme:light;
}
#cotti-lp *, #cotti-lp *::before, #cotti-lp *::after{box-sizing:border-box;}
#cotti-lp, #cotti-lp *, #cotti-lp *::before, #cotti-lp *::after{
  color:inherit;
  font-family:inherit;
  font-size:inherit;
  font-weight:inherit;
  font-style:inherit;
  line-height:inherit;
  letter-spacing:inherit;
  text-align:inherit;
  text-decoration:none;
  text-transform:none;
  margin:0;
  padding:0;
  border:0 none;
  background:none;
  box-shadow:none;
  outline:none;
}
html{scroll-padding-top:calc(var(--header-h) + 24px);}
@media (prefers-reduced-motion:no-preference){
html{scroll-behavior:smooth;}
}
#cotti-lp{
  margin:0;
  font-family:var(--f-sans);
  font-size:16.5px;
  line-height:1.66;
  color:var(--ink);
  background:var(--bg);
  overflow-x:clip;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
#cotti-lp img, #cotti-lp svg{display:block;max-width:100%;}
#cotti-lp a{color:inherit;}
#cotti-lp h1, #cotti-lp h2, #cotti-lp h3{margin:0;font-weight:500;}
#cotti-lp p{margin:0 0 1em;}
#cotti-lp p:last-child{margin-bottom:0;}
#cotti-lp ::selection{background:var(--ink);color:var(--bg);}
#cotti-lp .wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:clamp(20px,4vw,32px);}
#cotti-lp section{position:relative;}
#cotti-lp .section-pad{padding-block:clamp(76px,10vw,132px);}
#cotti-lp .hairline-top{border-top:1px solid var(--line);}
/* ---------- Tipografi ---------- */
#cotti-lp .label{
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  display:block;
  margin-bottom:22px;
}
#cotti-lp .label .dot{color:var(--accent);}
#cotti-lp .h1{
  font-size:clamp(2.5rem,5.6vw,4.4rem);
  line-height:1.04;
  letter-spacing:-.022em;
  font-weight:500;
}
#cotti-lp .h2{
  font-size:clamp(1.75rem,3.4vw,2.55rem);
  line-height:1.12;
  letter-spacing:-.018em;
  font-weight:500;
  margin-bottom:20px;
}
#cotti-lp .serif-i{
  font-family:var(--f-serif);
  font-style:italic;
  font-weight:340;
  letter-spacing:0;
}
#cotti-lp .lead{font-size:clamp(1rem,1.5vw,1.11rem);color:var(--muted);max-width:58ch;}
#cotti-lp .small{font-size:.85rem;color:var(--muted);}
/* ---------- Bağlantı ve butonlar ---------- */
#cotti-lp .tlink{
  text-decoration:none;
  font-weight:600;
  font-size:.95rem;
  display:inline-flex;align-items:center;gap:.5em;
  border-bottom:1px solid var(--line-strong);
  padding-bottom:3px;
  transition:border-color .2s ease,color .2s ease,gap .2s ease;
}
#cotti-lp .tlink:hover{border-color:var(--accent);color:var(--accent);gap:.75em;}
#cotti-lp .btn{
  font-family:var(--f-sans);
  font-size:.93rem;
  font-weight:600;
  letter-spacing:.01em;
  text-decoration:none;
  display:inline-flex;align-items:center;justify-content:center;gap:.6em;
  padding:15px 28px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:var(--accent);
  color:var(--bg);
  cursor:pointer;
  transition:background-color .2s ease,color .2s ease,transform .2s ease;
}
#cotti-lp .btn:hover{background:var(--accent-dark);border-color:var(--accent-dark);transform:translateY(-1px);}
#cotti-lp .btn:active{transform:translateY(0);}
#cotti-lp .btn .ar{transition:transform .2s ease;}
#cotti-lp .btn:hover .ar{transform:translateX(3px);}
#cotti-lp .btn-ghost{background:transparent;color:var(--ink);border-color:var(--line-strong);}
#cotti-lp .btn-ghost:hover{background:transparent;border-color:var(--ink);}
#cotti-lp .btn-sm{padding:11px 20px;font-size:.85rem;}
#cotti-lp :is(a,button,input,select,textarea):focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
  border-radius:4px;
}
/* ---------- Header ---------- */
#cotti-lp .site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(246,244,239,.9);
  background:color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
#cotti-lp .site-header .bar{
  height:var(--header-h);
  display:flex;align-items:center;gap:28px;
}
#cotti-lp .brand{
  display:flex;align-items:baseline;gap:10px;
  text-decoration:none;
  margin-right:auto;
  line-height:1;
}
#cotti-lp .brand b{font-weight:700;letter-spacing:-.01em;font-size:1.06rem;}
#cotti-lp .brand span{
  font-size:.62rem;font-weight:600;letter-spacing:.2em;
  text-transform:uppercase;color:var(--muted);
}
#cotti-lp .main-nav{display:flex;align-items:center;gap:26px;}
#cotti-lp .main-nav a:not(.btn){
  font-size:.88rem;font-weight:500;
  text-decoration:none;color:var(--muted);
  transition:color .18s ease;
}
#cotti-lp .main-nav a:not(.btn):hover{color:var(--accent);}
#cotti-lp .main-nav .btn{display:none;}
#cotti-lp .nav-toggle{
  display:none;
  background:none;border:0;cursor:pointer;
  width:44px;height:44px;padding:10px;
  flex-direction:column;justify-content:center;gap:6px;
}
#cotti-lp .nav-toggle span{
  display:block;height:1.6px;background:var(--ink);
  transition:transform .25s ease,opacity .2s ease;
}
#cotti-lp .nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7.6px) rotate(45deg);}
#cotti-lp .nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
#cotti-lp .nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7.6px) rotate(-45deg);}
@media (max-width:920px){
#cotti-lp .nav-toggle{display:flex;}
#cotti-lp .header-cta{display:none;}
#cotti-lp .main-nav{
    position:absolute;left:0;right:0;top:100%;
    background:var(--bg);
    border-bottom:1px solid var(--line);
    flex-direction:column;align-items:stretch;gap:0;
    padding:6px 24px 26px;
    display:none;
  }
#cotti-lp .main-nav.open{display:flex;}
#cotti-lp .main-nav a:not(.btn){
    font-size:1.05rem;color:var(--ink);
    padding:16px 2px;
    border-bottom:1px solid var(--line);
  }
#cotti-lp .main-nav .btn{display:inline-flex;margin-top:18px;}
}
/* ---------- Hero ---------- */
#cotti-lp .hero{padding-top:clamp(64px,9vw,120px);padding-bottom:clamp(56px,7vw,96px);}
#cotti-lp .hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:clamp(36px,5vw,72px);
  align-items:center;
}
#cotti-lp .hero .h1{max-width:13ch;margin-bottom:26px;}
#cotti-lp .hero .h1 .serif-i{font-size:1.06em;color:var(--accent);}
#cotti-lp .hero-sub{margin-bottom:34px;}
#cotti-lp .hero-ctas{display:flex;flex-wrap:wrap;gap:14px;align-items:center;margin-bottom:44px;}
#cotti-lp .hero-meta{
  margin-top:clamp(34px,5vw,56px);
  border-top:1px solid var(--line);
  padding-top:18px;
  display:flex;flex-wrap:wrap;gap:10px clamp(24px,3.5vw,44px);
  font-size:.8rem;color:var(--muted);
}
#cotti-lp .hero-meta span{white-space:nowrap;}
@media (max-width:560px){
#cotti-lp .hero-meta{flex-direction:column;gap:11px;}
#cotti-lp .hero-meta span{white-space:normal;}
}
#cotti-lp .hero-meta span{display:inline-flex;align-items:center;gap:.55em;}
#cotti-lp .hero-meta i{font-style:normal;color:var(--accent);font-size:.6rem;}
#cotti-lp .hero-art{position:relative;}
#cotti-lp .hero-art > svg{width:100%;height:auto;}
#cotti-lp .pizza-pepperoni{fill:var(--accent);stroke:var(--accent);}
#cotti-lp .pizza-sauce{stroke:var(--accent);}
/* Dönen damga */
#cotti-lp .stamp{
  position:absolute;
  width:clamp(116px,12vw,152px);
  aspect-ratio:1;
  top:-8%;
  right:-2%;
}
#cotti-lp .stamp .spin{
  animation:cottilp-spin 28s linear infinite;
  transform-origin:50% 50%;
}
@keyframes cottilp-spin{to{transform:rotate(360deg);}}
@media (max-width:920px){
#cotti-lp .hero-grid{grid-template-columns:1fr;}
#cotti-lp .hero-art{max-width:560px;width:100%;margin-top:8px;}
#cotti-lp .stamp{top:-12%;right:0;}
}
/* ---------- Marquee ---------- */
#cotti-lp .ticker{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  overflow:hidden;
  padding-block:15px;
}
#cotti-lp .ticker-track{
  display:flex;width:max-content;
  animation:cottilp-marquee 46s linear infinite;
}
#cotti-lp .ticker:hover .ticker-track{animation-play-state:paused;}
#cotti-lp .ticker-track span{
  font-size:.72rem;font-weight:600;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--muted);
  white-space:nowrap;
  padding-inline:14px;
}
#cotti-lp .ticker-track i{font-style:normal;color:var(--accent);padding-inline:14px;font-size:.6rem;}
@keyframes cottilp-marquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}
/* ---------- Selam listesi ---------- */
#cotti-lp .selam-head{max-width:640px;margin-bottom:clamp(36px,5vw,56px);}
#cotti-lp .moments{list-style:none;margin:0;padding:0;}
#cotti-lp .moments li{
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:76px 1fr;
  align-items:baseline;
  gap:20px;
  padding-block:clamp(18px,2.6vw,26px);
}
#cotti-lp .moments .no{
  font-size:.72rem;font-weight:600;letter-spacing:.14em;
  color:var(--accent);
}
#cotti-lp .moments .tx{
  font-size:clamp(1.35rem,3vw,2.1rem);
  line-height:1.15;
  letter-spacing:-.015em;
  font-weight:500;
}
#cotti-lp .moments .tx em{
  font-style:normal;color:var(--accent);font-weight:500;
}
#cotti-lp .big-statement{
  border-top:1px solid var(--line);
  padding-top:clamp(30px,4.5vw,48px);
  font-family:var(--f-serif);
  font-style:italic;
  font-weight:320;
  font-size:clamp(3rem,8.4vw,6.6rem);
  line-height:1;
  letter-spacing:-.01em;
}
#cotti-lp .big-statement .dot{color:var(--accent);}
@media (max-width:600px){
#cotti-lp .moments li{grid-template-columns:52px 1fr;gap:14px;}
}
/* ---------- Hikaye ---------- */
#cotti-lp .story-grid{
  display:grid;
  grid-template-columns:5fr 7fr;
  gap:clamp(32px,5vw,80px);
}
#cotti-lp .story-facts{
  list-style:none;margin:36px 0 0;padding:0;
}
#cotti-lp .story-facts li{
  border-top:1px solid var(--line);
  padding-block:15px;
  display:flex;gap:18px;align-items:baseline;
  font-size:.94rem;
}
#cotti-lp .story-facts .no{
  font-size:.68rem;font-weight:600;letter-spacing:.14em;color:var(--faint);
  flex:none;width:28px;
}
#cotti-lp .story-facts b{font-weight:600;}
@media (max-width:880px){
#cotti-lp .story-grid{grid-template-columns:1fr;}
}
/* ---------- İmza ürün ---------- */
#cotti-lp .signature{background:var(--bg2);}
#cotti-lp .signature .label,
#cotti-lp .menu-head .label,
#cotti-lp .events .label,
#cotti-lp .rfq-grid .label{color:var(--accent);}
#cotti-lp .sig-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:clamp(36px,5vw,80px);
  align-items:center;
}
#cotti-lp .sig-art svg{width:min(100%,420px);margin-inline:auto;}
#cotti-lp .features{
  display:grid;grid-template-columns:1fr 1fr;
  gap:clamp(24px,3vw,40px) clamp(24px,3.5vw,48px);
  margin-top:38px;
}
#cotti-lp .feature{border-top:1px solid var(--line-strong);padding-top:16px;}
#cotti-lp .feature .no{
  font-size:.68rem;font-weight:600;letter-spacing:.14em;color:var(--accent);
  display:block;margin-bottom:10px;
}
#cotti-lp .feature h3{font-size:1.02rem;font-weight:600;margin-bottom:6px;letter-spacing:-.01em;}
#cotti-lp .feature p{font-size:.9rem;color:var(--muted);line-height:1.55;}
@media (max-width:880px){
#cotti-lp .sig-grid{grid-template-columns:1fr;}
#cotti-lp .sig-art svg{max-width:340px;}
}
@media (max-width:520px){
#cotti-lp .features{grid-template-columns:1fr;}
}
/* ---------- Menü ---------- */
#cotti-lp .menu-head{
  display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;
  gap:18px;margin-bottom:clamp(30px,4vw,44px);
}
#cotti-lp .menu-head .lead{max-width:44ch;}
#cotti-lp .menu-list{list-style:none;margin:0;padding:0;}
#cotti-lp .menu-item{
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:56px 1fr auto;
  gap:clamp(16px,3vw,36px);
  align-items:center;
  padding-block:clamp(22px,3vw,30px);
}
#cotti-lp .menu-item:last-child{border-bottom:1px solid var(--line);}
#cotti-lp .menu-item .ic{width:40px;height:40px;color:var(--ink);transition:color .18s ease;}
#cotti-lp .menu-item:first-child .ic{color:var(--accent);}
#cotti-lp .menu-item .ic svg{width:100%;height:100%;}
#cotti-lp .menu-item h3{
  font-size:clamp(1.15rem,2vw,1.4rem);
  font-weight:600;letter-spacing:-.012em;
  display:flex;align-items:baseline;gap:12px;flex-wrap:wrap;
}
#cotti-lp .menu-item .flag{
  font-size:.64rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--accent);
}
#cotti-lp .menu-item p{font-size:.92rem;color:var(--muted);max-width:62ch;margin-top:6px;}
#cotti-lp .menu-item .no{
  font-size:.72rem;font-weight:600;letter-spacing:.14em;color:var(--accent);
  align-self:start;padding-top:6px;
}
#cotti-lp .menu-item:hover .ic{color:var(--accent);}
@media (max-width:640px){
#cotti-lp .menu-item{grid-template-columns:44px 1fr;}
#cotti-lp .menu-item .no{display:none;}
#cotti-lp .menu-item .ic{width:32px;height:32px;}
}
/* ---------- Fark (değerler) ---------- */
#cotti-lp .values-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:clamp(28px,3.5vw,48px);
  margin-top:clamp(34px,5vw,54px);
}
#cotti-lp .vitem{border-top:1px solid var(--line);padding-top:18px;}
#cotti-lp .vitem .no{font-size:.68rem;font-weight:600;letter-spacing:.14em;color:var(--accent);display:block;margin-bottom:12px;}
#cotti-lp .vitem h3{font-size:1.04rem;font-weight:600;letter-spacing:-.01em;margin-bottom:4px;}
#cotti-lp .vitem .pair{
  font-size:.66rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
  color:var(--accent);display:block;margin-bottom:10px;
}
#cotti-lp .vitem p{font-size:.9rem;color:var(--muted);line-height:1.55;}
@media (max-width:940px){
#cotti-lp .values-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:520px){
#cotti-lp .values-grid{grid-template-columns:1fr;}
}
/* ---------- Neden (koyu bant) ---------- */
#cotti-lp .why{background:var(--dark);color:var(--bg);}
#cotti-lp .why .label{color:var(--dark-muted);}
#cotti-lp .why .h2{color:var(--bg);}
#cotti-lp .why-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:0 clamp(40px,6vw,88px);
  margin-top:clamp(30px,4vw,46px);
}
#cotti-lp .witem{
  border-top:1px solid var(--dark-line);
  padding-block:clamp(24px,3vw,34px);
  position:relative;
}
#cotti-lp .witem::before{content:"";position:absolute;left:0;top:-1px;width:32px;height:2px;background:var(--accent);}
#cotti-lp .witem h3{font-size:1.08rem;font-weight:600;letter-spacing:-.01em;margin-bottom:8px;}
#cotti-lp .witem p{font-size:.92rem;color:var(--dark-muted);line-height:1.6;}
#cotti-lp .why-note{
  margin-top:clamp(30px,4vw,44px);
  padding-top:22px;
  border-top:1px solid var(--dark-line);
  font-size:.72rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:var(--dark-muted);
}
#cotti-lp .why-note i{font-style:normal;color:var(--accent);padding-inline:10px;}
@media (max-width:760px){
#cotti-lp .why-grid{grid-template-columns:1fr;}
}
/* ---------- Ekip ---------- */
#cotti-lp .team-intro{max-width:660px;}
#cotti-lp .team-perks{
  display:flex;flex-wrap:wrap;gap:10px 26px;margin-top:22px;
  font-size:.78rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:var(--muted);
}
#cotti-lp .team-perks span{display:inline-flex;align-items:center;gap:.6em;}
#cotti-lp .team-perks i{font-style:normal;color:var(--accent);font-size:.55rem;}
#cotti-lp .team-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:clamp(26px,3.4vw,44px) clamp(22px,3vw,40px);
  margin-top:clamp(36px,5vw,56px);
}
#cotti-lp .member{border-top:1px solid var(--line);padding-top:18px;}
#cotti-lp .member .av{
  width:46px;height:46px;border-radius:50%;
  border:1px solid var(--accent);
  display:flex;align-items:center;justify-content:center;
  font-size:.78rem;font-weight:600;letter-spacing:.06em;
  color:var(--accent);
  background:var(--accent-soft);
  margin-bottom:16px;
}
#cotti-lp .member h3{font-size:1rem;font-weight:600;letter-spacing:-.008em;margin-bottom:3px;}
#cotti-lp .member .role{
  font-size:.64rem;font-weight:600;letter-spacing:.13em;text-transform:uppercase;
  color:var(--muted);display:block;line-height:1.7;margin-bottom:9px;
}
#cotti-lp .member .quote{
  font-family:var(--f-serif);font-style:italic;font-weight:340;
  font-size:.98rem;color:var(--faint);
}
@media (max-width:940px){
#cotti-lp .team-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:440px){
#cotti-lp .team-grid{grid-template-columns:1fr;}
}
/* ---------- Etkinlikler ---------- */
#cotti-lp .events{background:var(--bg2);}
#cotti-lp .event-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:clamp(28px,3.5vw,48px);
  margin-top:clamp(34px,5vw,54px);
}
#cotti-lp .eitem{border-top:1px solid var(--line-strong);padding-top:18px;}
#cotti-lp .eitem .ic{width:30px;height:30px;margin-bottom:16px;color:var(--accent);}
#cotti-lp .eitem .ic svg{width:100%;height:100%;}
#cotti-lp .eitem h3{font-size:1.02rem;font-weight:600;letter-spacing:-.01em;margin-bottom:6px;}
#cotti-lp .eitem p{font-size:.9rem;color:var(--muted);line-height:1.55;}
#cotti-lp .eitem .tlink{margin-top:14px;font-size:.88rem;}
@media (max-width:940px){
#cotti-lp .event-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:520px){
#cotti-lp .event-grid{grid-template-columns:1fr;}
}
/* ---------- Teklif formu ---------- */
#cotti-lp .rfq-grid{
  display:grid;grid-template-columns:5fr 7fr;
  gap:clamp(40px,6vw,96px);
}
#cotti-lp .contact-list{list-style:none;margin:30px 0 0;padding:0;}
#cotti-lp .contact-list li{
  border-top:1px solid var(--line);
  padding-block:14px;
  display:flex;justify-content:space-between;gap:16px;
  font-size:.92rem;
}
#cotti-lp .contact-list .k{color:var(--muted);font-size:.78rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;padding-top:2px;}
#cotti-lp .contact-list a{text-decoration:none;}
#cotti-lp .contact-list a:hover{color:var(--accent);}
#cotti-lp .f-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px 32px;}
#cotti-lp .f-field{display:flex;flex-direction:column;gap:9px;}
#cotti-lp .f-field.full{grid-column:1 / -1;}
#cotti-lp .f-field label{
  font-size:.66rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--muted);
}
#cotti-lp .f-field label b{color:var(--accent);font-weight:600;}
#cotti-lp .f-field :is(input,select,textarea){
  font-family:var(--f-sans);
  font-size:1rem;color:var(--ink);
  background:transparent;
  border:0;border-bottom:1px solid var(--line-strong);
  border-radius:0;
  padding:10px 2px 12px;
  width:100%;
  transition:border-color .2s ease;
}
#cotti-lp .f-field :is(input,select,textarea)::placeholder{color:var(--faint);}
#cotti-lp .f-field :is(input,select,textarea):focus{border-color:var(--accent);outline:none;}
#cotti-lp .f-field :is(input,select,textarea):focus-visible{outline:none;border-radius:0;}
#cotti-lp .f-field textarea{resize:vertical;min-height:96px;}
#cotti-lp .f-field select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1.5 1.5 L6 6 L10.5 1.5' fill='none' stroke='%231B1915' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 4px center;
  padding-right:28px;
}
#cotti-lp .f-field select:invalid{color:var(--faint);}
#cotti-lp .f-field .err{display:none;font-size:.78rem;color:var(--accent);}
#cotti-lp .f-field.invalid :is(input,select,textarea){border-color:var(--accent);}
#cotti-lp .f-field.invalid .err{display:block;}
#cotti-lp .form-actions{margin-top:38px;display:flex;flex-wrap:wrap;align-items:center;gap:20px;}
#cotti-lp .form-actions .hint{font-size:.8rem;color:var(--muted);max-width:38ch;line-height:1.5;}
#cotti-lp .form-success{display:none;padding-top:6px;}
#cotti-lp .form-success.show{display:block;}
#cotti-lp .form-success .ok{
  width:64px;height:64px;border-radius:50%;
  border:1px solid var(--ink);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:24px;
}
#cotti-lp .form-success h3{font-size:1.4rem;font-weight:600;letter-spacing:-.014em;margin-bottom:10px;}
#cotti-lp .form-success p{max-width:48ch;color:var(--muted);}
#cotti-lp .form-success .demo-note{font-size:.78rem;color:var(--faint);margin-top:14px;}
@media (max-width:880px){
#cotti-lp .rfq-grid{grid-template-columns:1fr;}
}
@media (max-width:600px){
#cotti-lp .f-grid{grid-template-columns:1fr;gap:26px;}
}
/* ---------- Kapanış ---------- */
#cotti-lp .closing{text-align:center;}
#cotti-lp .closing .van{width:min(200px,50vw);margin:0 auto 30px;color:var(--ink);}
#cotti-lp .closing h2{
  font-size:clamp(1.9rem,4.4vw,3.2rem);
  letter-spacing:-.02em;line-height:1.12;
  max-width:22ch;margin-inline:auto;
}
#cotti-lp .closing .sub{
  margin-top:18px;
  font-size:.72rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;
  color:var(--muted);
}
#cotti-lp .closing .sub i{font-style:normal;color:var(--accent);padding-inline:10px;}
/* ---------- Footer ---------- */
#cotti-lp .site-footer{border-top:1px solid var(--line);}
#cotti-lp .footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr;
  gap:clamp(30px,5vw,72px);
  padding-block:clamp(52px,7vw,84px);
}
#cotti-lp .site-footer .brand{margin-bottom:16px;}
#cotti-lp .f-about{font-size:.9rem;color:var(--muted);max-width:36ch;}
#cotti-lp .f-title{
  font-size:.66rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
  color:var(--faint);margin:0 0 18px;
}
#cotti-lp .f-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:12px;font-size:.92rem;}
#cotti-lp .f-list a{text-decoration:none;color:var(--ink);transition:color .18s ease;}
#cotti-lp .f-list a:hover{color:var(--accent);}
#cotti-lp .f-list .ph{color:var(--muted);}
#cotti-lp .footer-bottom{
  border-top:1px solid var(--line);
  padding-block:22px;
  display:flex;flex-wrap:wrap;gap:8px 24px;justify-content:space-between;
  font-size:.78rem;color:var(--faint);
}
#cotti-lp .footer-credit a{
  color:var(--faint);
  text-decoration:underline;
  text-underline-offset:2px;
  text-decoration-color:var(--line-strong);
  transition:color .18s ease, text-decoration-color .18s ease;
}
#cotti-lp .footer-credit a:hover{color:var(--ink);text-decoration-color:var(--ink);}
@media (max-width:820px){
#cotti-lp .footer-grid{grid-template-columns:1fr;gap:38px;}
}
/* ---------- Marka logosu ---------- */
#cotti-lp .brand{align-items:center;}
#cotti-lp .brand svg{height:64px;width:auto;display:block;}
#cotti-lp .brand .logo-custom{height:64px;width:auto;max-width:190px;object-fit:contain;display:block;}
#cotti-lp .brand-footer svg{height:74px;}
#cotti-lp .brand-footer .logo-custom{height:74px;}
@media (max-width:400px){
#cotti-lp .brand svg{height:52px;}
#cotti-lp .brand .logo-custom{height:52px;max-width:150px;}
}
/* ---------- Dama şeridi ---------- */
#cotti-lp .dama{
  height:12px;
  background:conic-gradient(var(--accent) 25%, var(--bg) 0 50%, var(--accent) 0 75%, var(--bg) 0) 0 0 / 12px 12px;
}
/* ---------- Sahadan (video) ---------- */
#cotti-lp .videos-inner{
  display:grid;grid-template-columns:minmax(260px,400px) 1fr;
  gap:clamp(32px,5vw,72px);align-items:center;
}
#cotti-lp .videos-grid{
  display:flex;flex-wrap:wrap;
  gap:clamp(18px,2.5vw,28px);
  justify-content:flex-end;align-items:center;
}
#cotti-lp .vid{
  margin:0;
  background:var(--surface);
  border:1px solid var(--line-strong);
  border-radius:22px;
  padding:10px;
}
#cotti-lp .vid video{display:block;border-radius:14px;background:#000;width:100%;}
#cotti-lp .v-portrait{width:min(280px,100%);}
#cotti-lp .v-land{width:min(300px,100%);}
@media (max-width:1140px){
#cotti-lp .videos-inner{grid-template-columns:1fr;}
#cotti-lp .videos-grid{justify-content:flex-start;}
}
/* ---------- Oyun alanı ---------- */
#cotti-lp .arena-grid{
  list-style:none;margin:clamp(30px,4vw,46px) 0 0;padding:0;
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:0 clamp(28px,4vw,56px);
}
#cotti-lp .arena-grid li{
  border-top:1px solid var(--line-strong);
  padding-block:15px;
  display:flex;gap:16px;align-items:baseline;
  font-weight:500;font-size:1rem;
}
#cotti-lp .arena-grid .no{font-size:.68rem;font-weight:600;letter-spacing:.14em;color:var(--accent);flex:none;width:26px;}
#cotti-lp .arena-cta{
  margin-top:clamp(26px,3.5vw,38px);padding-top:18px;
  border-top:1px solid var(--line-strong);
  display:flex;flex-wrap:wrap;gap:10px 18px;align-items:baseline;
  font-weight:500;
}
@media (max-width:860px){
#cotti-lp .arena-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:480px){
#cotti-lp .arena-grid{grid-template-columns:1fr;}
}
/* ---------- Koyu bant logo ---------- */
#cotti-lp .why-note{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:16px 24px;margin-top:clamp(30px,4vw,44px);}
#cotti-lp .why-note .logo-lw{height:46px;width:auto;flex:none;opacity:.95;}
#cotti-lp .why-note .logo-custom-light{height:46px;width:auto;max-width:160px;object-fit:contain;flex:none;}
#cotti-lp .contact-list .v{text-align:right;}
#cotti-lp .contact-list .v a{text-decoration:none;}
#cotti-lp .contact-list .v a:hover{color:var(--accent);}
/* ---------- Parallax bölüm geçişi (masaüstü, hareket tercihi kısıtlı değilse) ----------
   Her panel kendi konumuna geldiğinde üstte sabitlenir; bir sonraki panel
   aşağıdan yukarı kayarak üzerini örter. Form (teklif) ve footer, tüm
   içeriğin her zaman ulaşılabilir kalması için bu zincirin dışında tutulur. */
@media (min-width:960px) and (prefers-reduced-motion:no-preference){
#cotti-lp .hero, #cotti-lp .ticker, #cotti-lp #selam, #cotti-lp #hikaye, #cotti-lp #imza, #cotti-lp #sahada, #cotti-lp #menu, #cotti-lp .dama, #cotti-lp #fark, #cotti-lp #ekip, #cotti-lp #etkinlikler, #cotti-lp .closing{
    position:sticky;
    top:0;
  }
#cotti-lp .hero{z-index:1;}
#cotti-lp .ticker{z-index:2;}
#cotti-lp #selam{z-index:3;}
#cotti-lp #hikaye{z-index:4;}
#cotti-lp #imza{z-index:5;}
#cotti-lp #sahada{z-index:6;}
#cotti-lp #menu{z-index:7;}
#cotti-lp .dama{z-index:8;}
#cotti-lp #fark{z-index:9;}
#cotti-lp #ekip{z-index:10;}
#cotti-lp #etkinlikler{z-index:11;}
#cotti-lp .closing{z-index:12;}
/* #teklif kasıtlı olarak sticky ZİNCİRİNE dahil değildir (formun tüm
     alanları her zaman ulaşılabilir kalsın diye) — ama tam bu yüzden,
     zincirdeki SON sabit panel (.closing, z-index:12) onun üzerinde
     asılı kalıp formu ve footer'ı görünmez kılabilir. Bunu önlemek için
     ikisine de zincirin tepesinden daha yüksek bir z-index veriyoruz;
     kendileri sticky OLMUYOR, sadece doğru şekilde ÜSTTE boyanıyorlar. */
#cotti-lp #teklif, #cotti-lp .site-footer{position:relative;z-index:13;}
/* Örtme etkisinin düzgün çalışması için opak zeminler
     (renk zaten aynı krem tonu; sadece saydamlığı ortadan kaldırır). */
#cotti-lp .hero, #cotti-lp .ticker, #cotti-lp #selam, #cotti-lp #hikaye, #cotti-lp #sahada, #cotti-lp #menu, #cotti-lp #ekip, #cotti-lp .closing, #cotti-lp #teklif, #cotti-lp .site-footer{
    background:var(--bg);
  }
/* Panel içeriği yaygın masaüstü ekran yüksekliklerine (800-900px) sığsın
     diye sabitlenen bölümlerde dikey boşluklar hafifçe sıkılaştırılır;
     mobilde bu kural devreye girmez, içerik tam boyutuyla kalır. */
#cotti-lp .hero{padding-top:clamp(40px,5.5vw,72px);padding-bottom:clamp(32px,4.5vw,56px);}
#cotti-lp #selam, #cotti-lp #hikaye, #cotti-lp #imza, #cotti-lp #sahada, #cotti-lp #fark, #cotti-lp #etkinlikler, #cotti-lp .closing{
    padding-block:clamp(36px,4.5vw,60px);
  }
#cotti-lp #menu, #cotti-lp #ekip{padding-block:clamp(24px,3.4vw,46px);}
#cotti-lp #selam .selam-head{margin-bottom:clamp(20px,2.6vw,30px);}
#cotti-lp #selam .moments li{padding-block:clamp(10px,1.4vw,16px);}
#cotti-lp #selam .big-statement{
    padding-top:clamp(18px,2.4vw,28px);
    font-size:clamp(2.3rem,6vw,4.6rem);
  }
#cotti-lp #menu .menu-head{margin-bottom:clamp(18px,2.2vw,26px);}
#cotti-lp #menu .menu-item{padding-block:clamp(9px,1.1vw,14px);}
#cotti-lp #menu .menu-item p{margin-top:3px;line-height:1.42;}
#cotti-lp #ekip .team-grid{margin-top:clamp(18px,2.2vw,26px);gap:clamp(16px,2vw,26px) clamp(16px,2vw,26px);}
#cotti-lp #ekip .team-perks{margin-top:clamp(10px,1.4vw,16px);}
#cotti-lp #ekip .member{padding-top:13px;}
#cotti-lp #ekip .member .av{width:38px;height:38px;margin-bottom:11px;font-size:.7rem;}
#cotti-lp #ekip .member .role{line-height:1.5;margin-bottom:6px;}
}
/* Kısa masaüstü pencereleri (≤780px yükseklik) için ek sıkılaştırma */
@media (min-width:960px) and (max-height:780px) and (prefers-reduced-motion:no-preference){
#cotti-lp .hero{padding-top:clamp(24px,3vw,40px);padding-bottom:clamp(20px,2.5vw,32px);}
#cotti-lp #menu, #cotti-lp #ekip, #cotti-lp #sahada{padding-block:clamp(12px,1.6vw,20px);}
#cotti-lp #menu .menu-item{padding-block:clamp(6px,.8vw,10px);}
#cotti-lp #ekip .member{padding-top:9px;}
#cotti-lp #ekip .team-grid{gap:clamp(12px,1.6vw,18px);}
#cotti-lp #sahada .videos-inner{grid-template-columns:1fr;gap:16px;}
#cotti-lp #sahada .videos-grid{justify-content:flex-start;}
#cotti-lp #sahada .v-portrait{width:200px;}
#cotti-lp #sahada .v-land{width:260px;}
}
/* ---------- İletişim çekmecesi ---------- */
#cotti-lp html.contact-lock, #cotti-lp html.contact-lock body{overflow:hidden;height:100%;}
#cotti-lp .contact-tab{
  position:fixed;right:0;top:62%;
  transform:translateY(-50%);
  z-index:90;
  background:var(--ink);color:var(--bg);
  border:1px solid var(--ink);
  border-right:none;
  border-radius:10px 0 0 10px;
  padding:18px 11px;
  writing-mode:vertical-rl;
  text-orientation:mixed;
  font-family:var(--f-sans);
  font-size:.72rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  cursor:pointer;
  box-shadow:-6px 0 18px rgba(27,25,21,.14);
  transition:padding-right .2s ease, background-color .2s ease, box-shadow .2s ease;
}
#cotti-lp .contact-tab:hover{padding-right:15px;background:#000;}
#cotti-lp .contact-tab:active{padding-right:11px;}
#cotti-lp .contact-tab span{display:inline-block;transform:rotate(180deg);}
#cotti-lp .contact-tab .dot{color:var(--accent);}
#cotti-lp .contact-scrim{
  position:fixed;inset:0;
  background:rgba(27,25,21,.4);
  z-index:94;
  opacity:0;
  transition:opacity .5s ease;
  pointer-events:none;
}
#cotti-lp .contact-scrim.show{opacity:1;pointer-events:auto;}
#cotti-lp .contact-drawer{
  position:fixed;top:0;right:0;bottom:0;
  width:min(400px,88vw);
  background:var(--surface);
  border-left:1px solid var(--line-strong);
  z-index:95;
  display:flex;flex-direction:column;
  transform:translateX(100%);
  transition:transform .6s cubic-bezier(.19,1,.22,1);
  box-shadow:-24px 0 48px rgba(27,25,21,.16);
}
#cotti-lp .contact-drawer.open{transform:translateX(0);}
#cotti-lp .cd-head{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;
  padding:24px clamp(22px,4vw,30px);
  border-bottom:1px solid var(--line);
  flex:none;
}
#cotti-lp .cd-head .label{margin:0;}
#cotti-lp .cd-close{
  background:none;border:1px solid var(--line-strong);border-radius:50%;
  width:36px;height:36px;flex:none;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:var(--ink);
  transition:border-color .2s ease,color .2s ease,transform .2s ease;
}
#cotti-lp .cd-close:hover{border-color:var(--ink);color:var(--accent);transform:rotate(90deg);}
#cotti-lp .cd-body{padding:26px clamp(22px,4vw,30px) 34px;overflow-y:auto;}
#cotti-lp .cd-body .lead{margin-bottom:24px;}
#cotti-lp .cd-body .contact-list{margin-top:0;}
#cotti-lp .cd-body .btn{width:100%;margin-top:28px;}
#cotti-lp .cd-socials{display:flex;gap:10px;margin-top:22px;}
#cotti-lp .cd-socials a{
  width:40px;height:40px;border-radius:50%;
  border:1px solid var(--line-strong);
  display:flex;align-items:center;justify-content:center;
  color:var(--ink);
  transition:border-color .2s ease,color .2s ease;
}
#cotti-lp .cd-socials a:hover{border-color:var(--ink);color:var(--accent);}
@media (max-width:480px){
#cotti-lp .contact-tab{font-size:.64rem;padding:15px 8px;}
#cotti-lp .contact-tab:hover{padding-right:9px;}
}
@media (prefers-reduced-motion:reduce){
#cotti-lp .contact-drawer{transition:transform .01s linear;}
}
/* ---------- Teklif formu (popup) ---------- */
#cotti-lp .modal-scrim{
  position:fixed;inset:0;
  background:rgba(27,25,21,.46);
  z-index:96;
  opacity:0;
  transition:opacity .4s ease;
  pointer-events:none;
}
#cotti-lp .modal-scrim.show{opacity:1;pointer-events:auto;}
#cotti-lp .quote-modal{
  position:fixed;top:50%;left:50%;
  width:min(640px,92vw);
  max-height:86vh;
  z-index:97;
  background:var(--surface);
  border:1px solid var(--line-strong);
  border-radius:22px;
  box-shadow:0 32px 80px rgba(27,25,21,.3);
  opacity:0;
  visibility:hidden;
  transform:translate(-50%,-50%) scale(.96);
  transition:opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
}
#cotti-lp .quote-modal.open{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,-50%) scale(1);
  transition:opacity .35s ease, transform .35s ease, visibility 0s;
}
#cotti-lp .qm-panel{
  padding:clamp(30px,4.5vw,46px);
  max-height:86vh;
  overflow-y:auto;
  position:relative;
}
#cotti-lp .qm-close{position:absolute;top:20px;right:20px;background:var(--surface);}
#cotti-lp .qm-title{margin-top:10px;font-size:clamp(1.35rem,3vw,1.75rem);}
@media (max-width:600px){
#cotti-lp .quote-modal{width:94vw;max-height:90vh;}
#cotti-lp .qm-panel{max-height:90vh;padding:26px 20px 30px;}
#cotti-lp .qm-close{top:14px;right:14px;}
}
@media (prefers-reduced-motion:reduce){
#cotti-lp .quote-modal{transition:opacity .01s linear, visibility 0s;}
}
/* ---------- Reveal ---------- */
#cotti-lp [data-rv]{opacity:0;transform:translateY(14px);transition:opacity .6s ease,transform .6s ease;transition-delay:var(--d,0s);}
#cotti-lp [data-rv].in{opacity:1;transform:none;}
@media (prefers-reduced-motion:reduce){
#cotti-lp *, #cotti-lp *::before, #cotti-lp *::after{animation-duration:.001s !important;animation-iteration-count:1 !important;transition-duration:.001s !important;}
#cotti-lp [data-rv]{opacity:1;transform:none;}
#cotti-lp .ticker-track{animation:none;flex-wrap:wrap;width:auto;}
#cotti-lp .ticker-track span:nth-of-type(n+11){display:none;}
#cotti-lp .ticker-track i:nth-of-type(n+11){display:none;}
#cotti-lp .stamp .spin{animation:none;}
}
/* ---------- WordPress eklentisi: honeypot, form hata durumu, gönderim kilidi ---------- */
#cotti-lp .hp-field{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden;}
#cotti-lp .form-error{
  display:none;
  margin-top:18px;
  font-size:.85rem;
  color:var(--accent);
  border-top:1px solid var(--line);
  padding-top:14px;
}
#cotti-lp .form-error.show{display:block;}
#cotti-lp .btn:disabled{opacity:.6;cursor:not-allowed;}
#cotti-lp .btn:disabled:hover{background:var(--ink);transform:none;}
