/*
Theme Name: Plaka Basım
Theme URI: https://plakabasim.com
Author: Velonga Dijital Medya Ajansı
Author URI: https://velonga.com
Description:
Version: 1.0
Text Domain: plaka-basim
*/

:root{
  --bg:#eef3f9;
  --surface:#ffffff;
  --surface-soft:#f7faff;
  --surface-blue:#0c4b96;
  --surface-blue-2:#083c7d;
  --primary:#0b3f7f;
  --primary-2:#1657a6;
  --accent:#22c55e;
  --accent-2:#18a34a;
  --text:#0f172a;
  --muted:#63748b;
  --line:#dbe6f2;
  --shadow-xl:0 24px 56px rgba(9,35,68,.14);
  --shadow-lg:0 16px 34px rgba(9,35,68,.10);
  --shadow-md:0 8px 20px rgba(9,35,68,.06);
  --radius-3xl:22px;
  --radius-2xl:18px;
  --radius-xl:16px;
  --radius-lg:14px;
  --radius-md:10px;
  --container:1240px;
  --header-h:84px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#f6f9fc 0%, var(--bg) 100%);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea{font:inherit}
.container{width:min(calc(100% - 32px),var(--container));margin:0 auto}

/* utility */
.utility-bar{
  background:#f8fbff;
  border-bottom:1px solid #e3ecf6;
  color:#6d7e96;
  font-size:.84rem;
}
.utility-inner{
  min-height:50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.utility-group{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.contact-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:5px;
  background:#fff;
  border:1px solid #dce6f1;
  color:#5d728d;
  font-weight:700;
}
.chip-icon{
  width:22px;
  height:22px;
  border-radius:5px;
  display:grid;
  place-items:center;
  background:#f3f7fd;
  color:var(--primary);
}
.social-links{
  gap:8px;
}
.social-icon{
  width:34px;
  height:34px;
  border-radius:5px;
  display:grid;
  place-items:center;
  background:#fff;
  border:1px solid #e1ebf6;
  color:#59708c;
  transition:.2s ease;
}
.social-icon:hover{
  color:var(--primary);
  border-color:#cfdcec;
}

/* header */
.topbar{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(219,230,242,.95);
}
.nav{
  min-height:var(--header-h);
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:center;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--primary);
  min-width:0;
}
.brand-mark{
  width:52px;
  height:52px;
  border-radius:5px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;
  position:relative;
  overflow:hidden;
  flex:0 0 52px;
}
.brand-mark::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.30),transparent 60%);
}
.brand-title{
  font-size:1.55rem;
  font-weight:900;
  letter-spacing:-.04em;
  line-height:1;
}
.brand-sub{
  font-size:.9rem;
  color:#657790;
  font-weight:700;
  margin-top:4px;
}
.nav-center{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
}
.nav-link{
  padding:11px 14px;
  border-radius:12px;
  color:#556983;
  font-weight:700;
  font-size:.95rem;
  transition:.2s ease;
}
.nav-link:hover{
  background:#f3f8fe;
  color:var(--primary);
}
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:flex-end;
}
.header-support-logo{
  width: 65px;
  height: 45px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 72px;
  padding:4px 20px;
  border-radius:8px;
  background:#fff;
  border:0px solid #e3ebf5;
}
.header-support-logo img{
  width:auto;
  height:auto;
  max-width:70px;
  max-height:45px;
  object-fit:contain;
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:0 18px;
  border-radius:5px;
  border:0;
  cursor:pointer;
  font-weight:800;
  font-size:.92rem;
  transition:.25s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
}
.btn-secondary{
  color:var(--primary);
  background:#fff;
  border:1px solid var(--line);
}

/* hero */
.hero-wrap{
  padding:36px 0 0;
}
.hero{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-3xl);
  background:linear-gradient(135deg,#0c4b96 0%, #0b458d 45%, #083c7d 100%);
  box-shadow:var(--shadow-xl);
  border:1px solid rgba(255,255,255,.10);
}
.hero::before{
  content:'';
  position:absolute;
  right:-120px;
  top:-120px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(34,197,94,.10),transparent 65%);
  filter:blur(10px);
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:32px;
  align-items:center;
  padding:34px;
}
.hero-content{
  max-width:560px;
  min-width:0;
}
h1{
  margin:0 0 14px;
  color:#fff;
  font-size:clamp(2.2rem,3.8vw,3.4rem);
  line-height:1.04;
  letter-spacing:-.04em;
}
.hero-lead{
  margin:0 0 20px;
  color:rgba(239,246,255,.90);
  font-size:.98rem;
  line-height:1.68;
  max-width:48ch;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* hero right */
.hero-side{
  position:relative;
  min-width:0;
}
.showcase-card{
  position:relative;
  padding:16px;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,.98) 0%, rgba(247,250,255,.98) 100%);
  border:1px solid rgba(255,255,255,.34);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}
.plate-frame{
  border-radius:18px;
  background:linear-gradient(180deg,#f7fafc 0%, #e9eff5 100%);
  border:5px solid #d3dbe6;
  padding:10px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.75);
}
.plate-body{
  border-radius:14px;
  background:#fff;
  border:2px dashed #c2d1e0;
  display:grid;
  grid-template-columns:72px 1fr;
  overflow:hidden;
  min-height:80px;
}
.plate-left{
  background:linear-gradient(180deg,#1d5aaf 0%, #0d3d7d 100%);
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  font-weight:900;
  letter-spacing:.10em;
}
.plate-right{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  font-weight:900;
  color:#121826;
  letter-spacing:.10em;
  font-size:2rem;
  min-width:0;
}
.plate-right span{
  white-space:nowrap;
}
.quick-stack{
  display:grid;
  gap:10px;
  margin-top:12px;
}
.quick-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px;
  border-radius:14px;
  background:linear-gradient(180deg,#fff 0%, #f8fbff 100%);
  border:1px solid #e3ebf5;
}
.qi-icon{
  width:36px;
  height:36px;
  border-radius:10px;
  display:grid;
  place-items:center;
  flex:0 0 36px;
  background:linear-gradient(180deg,#eef5fd 0%, #e6f0fb 100%);
  color:var(--primary);
}
.quick-item strong{
  display:block;
  color:#14345f;
  font-size:.94rem;
  margin-bottom:2px;
}
.quick-item span{
  display:block;
  color:#6a7a90;
  font-size:.86rem;
  line-height:1.45;
}

/* sections */
.section{
  padding:50px 0 20px;
}
.section-head{
  text-align:center;
  margin-bottom:32px;
}
.section-head h2{
  margin:0 0 10px;
  font-size:clamp(1.8rem,3vw,2.4rem);
  line-height:1.08;
  letter-spacing:-.03em;
  color:#12345f;
}
.section-head p{
  margin:0 auto;
  color:#66778e;
  font-size:.98rem;
}

/* process */
.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.process-grid-two{
  grid-template-columns:repeat(2,1fr);
}
.process-card,
.metric-card,
.info-panel,
.faq-item{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow-md);
}
.process-card{
  padding:22px;
}
.pc-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}
.pc-no{
  width:38px;
  height:38px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:800;
  color:var(--primary);
  background:#edf5fd;
  border:1px solid #dce8f4;
}
.pc-icon{
  width:50px;
  height:50px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#eef5fd 0%, #e7f1fc 100%);
  color:var(--primary);
}
.process-card h3{
  margin:0 0 10px;
  font-size:1.08rem;
  color:#12345f;
}
.process-card p{
  margin:0 0 16px;
  color:#64758c;
  font-size:.93rem;
  line-height:1.6;
}
.pc-foot{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 11px;
  border-radius:999px;
  background:#f3f8fd;
  color:#31557f;
  border:1px solid #dce8f4;
  font-weight:700;
  font-size:.8rem;
}

/* metrics */
.metrics-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.metric-card{
  padding:20px;
}
.metric-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#eef5fd 0%, #e7f0fb 100%);
  color:var(--primary);
  margin-bottom:14px;
}
.metric-card h3{
  margin:0 0 8px;
  font-size:1rem;
  color:#12345f;
}
.metric-card p{
  margin:0;
  color:#67788e;
  font-size:.9rem;
  line-height:1.55;
}

/* iteo section */
.iteo-card{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:28px;
  border-radius:20px;
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid var(--line);
  box-shadow:var(--shadow-lg);
}
.iteo-top{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:24px;
  align-items:center;
}
.iteo-logo-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
}
.iteo-logo{
  width:100%;
  max-width:220px;
  height:auto;
  object-fit:contain;
}
.iteo-content h2{
  margin:0 0 10px;
  color:#12345f;
  font-size:clamp(1.5rem,3vw,2rem);
  line-height:1.1;
  letter-spacing:-.03em;
}
.iteo-content p{
  margin:0;
  color:#66778e;
  font-size:.96rem;
  line-height:1.65;
}
.iteo-fee-note{
  margin-top:16px;
  padding:14px 15px;
  border-radius:5px;
  background:#e9f2fc;
  border:1px solid #e2ebf5;
  color:#12345f;
  font-weight:600;
  font-size:.9rem;
}
.iteo-fee-note.full-row{
  width:100%;
}

/* faq */
.faq-wrap{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow-lg);
  padding:22px;
}
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  align-items:start;
}
.faq-item{
  padding:18px;
  cursor:pointer;
  transition:.2s ease;
}
.faq-item:hover{
  transform:translateY(-2px);
}
.faq-q{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.faq-q strong{
  font-size:.96rem;
  color:#12345f;
}
.faq-toggle{
  width:32px;
  height:32px;
  border-radius:999px;
  display:grid;
  place-items:center;
  flex:0 0 32px;
  background:#eef5fd;
  color:var(--primary);
  font-weight:800;
  border:1px solid #dce8f4;
}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .28s ease, opacity .2s ease;
  color:#68798f;
  font-size:.9rem;
  opacity:0;
}
.faq-a p{
  margin:12px 0 0;
  line-height:1.6;
}
.faq-item.active{
  min-height:auto;
}
.faq-item.active .faq-a{
  max-height:180px;
  opacity:1;
}
.faq-item.active .faq-toggle{
  transform:rotate(45deg);
}

/* footer */
.site-footer{
  margin-top:24px;
  padding:40px 0 24px;
  background:#0c2648;
  color:#d8e4f3;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.25fr .85fr .9fr;
  gap:32px;
  align-items:start;
}
.footer-logo-row{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:10px;
}
.footer-mark{
  width:46px;
  height:46px;
  flex:0 0 46px;
}
.footer-brand h3{
  margin:0;
  color:#fff;
  font-size:1.2rem;
}
.footer-brand p{
  margin:0;
  color:#a8bdd4;
  font-size:.92rem;
}
.footer-about{
  margin:0 0 18px;
  color:#b9c9dc;
  font-size:.92rem;
  max-width:42ch;
}
.footer-socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.footer-social-icon{
  width:38px;
  height:38px;
  border-radius:8px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:#ffffff;
  transition:.2s ease;
}
.footer-social-icon:hover{
  background:rgba(255,255,255,.14);
  transform:translateY(-2px);
}
.footer-contact h4,
.footer-links h4{
  margin:0 0 12px;
  color:#fff;
  font-size:1rem;
}
.footer-contact a,
.footer-links a{
  display:block;
  margin-bottom:10px;
  color:#c5d5e8;
  font-size:.92rem;
}
.footer-contact a:hover,
.footer-links a:hover{
  color:#fff;
}
.footer-bottom{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:#a8bdd4;
  font-size:.88rem;
}
.footer-bottom a{
  color:#a8bdd4;
}

/* floating */
.desktop-floating-wa{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:90;
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:58px;
  padding:0 16px;
  border-radius:5px;
  color:#fff;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  font-weight:800;
  font-size:.92rem;
  animation:pulse 2.2s infinite;
}
.mobile-bottom-wa{
  display:none;
}
@keyframes pulse{
  0%{transform:translateY(0) scale(1)}
  50%{transform:translateY(-1px) scale(1.02)}
  100%{transform:translateY(0) scale(1)}
}

/* tablet */
@media (max-width:1180px){
  .hero-grid,
  .metrics-grid,
  .process-grid,
  .faq-grid,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .iteo-top{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-brand{
    grid-column:1 / -1;
  }

  .nav{
    grid-template-columns:1fr;
    justify-items:center;
    padding:14px 0;
  }

  .nav-center{
    order:3;
  }

  .header-actions{
    justify-content:center;
  }
}

/* mobile */
@media (max-width:860px){
  .container{
    width:min(calc(100% - 20px),var(--container));
  }

  .utility-inner{
    min-height:auto;
    justify-content:center;
    flex-direction:column;
    gap:10px;
    padding:10px 0;
  }

  .phones{
    width:100%;
    justify-content:center;
    flex-wrap:nowrap;
    gap:8px;
  }

  .contact-chip{
    flex:1 1 0;
    min-width:0;
    justify-content:center;
    padding:7px 8px;
    font-size:.75rem;
  }

  .contact-chip span:last-child{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .social-links{
    display:none;
  }

  .nav{
    grid-template-columns:1fr;
    justify-items:stretch;
    gap:14px;
    padding:14px 0;
    min-height:auto;
  }

  .brand{
    justify-content:center;
    text-align:center;
  }

  .nav-center{
    justify-content:center;
    gap:6px;
  }

  .nav-link{
    padding:9px 12px;
    font-size:.9rem;
  }

  .header-actions{
    display:none;
  }

  .header-support-logo{
    display:none;
  }

  .hero-grid,
  .metrics-grid,
  .process-grid,
  .process-grid-two,
  .faq-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero-grid{
    padding:22px;
    gap:20px;
  }

  h1{
    font-size:clamp(1.9rem,9vw,2.5rem);
    line-height:1.25;
  }

  .hero-lead{
    font-size:.94rem;
    line-height:1.62;
    max-width:100%;
  }

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

  .btn{
    width:100%;
  }

  .showcase-card{
    padding:12px;
  }

  .plate-frame{
    padding:8px;
    border-width:4px;
  }

  .plate-body{
    grid-template-columns:60px 1fr;
    min-height:88px;
  }

  .plate-right{
    font-size:1.15rem;
    letter-spacing:.04em;
    padding:0 10px;
    overflow:hidden;
  }

  .plate-right span{
    font-size:inherit;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .quick-item{
    padding:11px;
  }

  .quick-item strong{
    font-size:.9rem;
  }

  .quick-item span{
    font-size:.84rem;
  }

  .section{
    padding:42px 0;
  }

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

  .section-head h2{
    font-size:clamp(1.5rem,7vw,2rem);
    line-height:1.12;
  }

  .section-head p{
    font-size:.92rem;
  }

  .process-card,
  .metric-card,
  .faq-item,
  .iteo-card{
    padding:16px;
  }

  .pc-foot{
    width:100%;
    justify-content:center;
    text-align:center;
  }

  .faq-wrap{
    padding:16px;
  }

  .faq-item{
    min-height:unset;
  }

  .faq-item.active{
    min-height:unset;
  }

  .site-footer{
    padding:34px 0 92px;
  }

  .footer-about{
    max-width:100%;
  }

  .footer-socials{
    justify-content:flex-start;
  }

  .footer-bottom{
    flex-direction:column;
    justify-content:center;
    text-align:center;
  }

  .desktop-floating-wa{
    display:none;
  }

  .mobile-bottom-wa{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:95;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:58px;
    padding:0 16px;
    color:#fff;
    background:linear-gradient(135deg,var(--accent),var(--accent-2));
    font-weight:800;
    font-size:.95rem;
    box-shadow:0 -8px 24px rgba(34,197,94,.20);
  }
}

@media (max-width:480px){
  .brand-title{
    font-size:1.3rem;
  }

  .brand-sub{
    font-size:.82rem;
  }

  .hero{
    border-radius:16px;
  }

  .showcase-card,
  .faq-wrap,
  .process-card,
  .metric-card,
  .iteo-card{
    border-radius:14px;
  }

  .plate-right{
    font-size:1rem;
    letter-spacing:.02em;
  }

  .faq-q strong{
    font-size:.92rem;
  }

  .contact-chip{
    font-size:.72rem;
    padding:6px 8px;
  }

  .chip-icon{
    width:20px;
    height:20px;
  }

  .iteo-fee-note{
    font-size:.84rem;
  }
}

/* kvkk page */
.kvkk-page{
  max-width:900px;
  margin:0 auto;
}
.kvkk-head{
  margin-bottom:24px;
}
.kvkk-title{
  color:#12345f !important;
  margin:0;
  font-size:clamp(2rem,4vw,2.8rem);
  line-height:1.1;
  letter-spacing:-.03em;
}
.kvkk-card{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow-lg);
  padding:28px;
}
.kvkk-card h2{
  margin:28px 0 12px;
  color:#12345f;
  font-size:1.2rem;
  line-height:1.35;
}
.kvkk-card p{
  margin:0 0 16px;
  color:#66778e;
  font-size:.96rem;
  line-height:1.8;
}
.kvkk-card a{
  color:var(--primary);
  font-weight:700;
}
.kvkk-list{
  margin:0 0 18px 0;
  padding-left:20px;
  color:#66778e;
}
.kvkk-list li{
  margin-bottom:10px;
  line-height:1.7;
}
@media (max-width:860px){
  .kvkk-card{
    padding:18px;
    border-radius:14px;
  }

  .kvkk-title{
    font-size:clamp(1.7rem,8vw,2.2rem);
  }

  .kvkk-card h2{
    font-size:1.08rem;
    margin:22px 0 10px;
  }

  .kvkk-card p,
  .kvkk-list li{
    font-size:.92rem;
  }
}