/* =========================================================
   Restaurant Panel Yönetimi — Demo Landing Page
   ========================================================= */

:root{
  --green-50:  #eafaf3;
  --green-100: #d3f3e4;
  --green-500: #1fa971;
  --green-600: #14895b;
  --green-700: #0f6d48;
  --navy-900:  #101d2b;
  --navy-800:  #16283b;
  --navy-700:  #1e3650;
  --ink:       #16233a;
  --text:      #3d4c5e;
  --text-soft: #64748b;
  --bg:        #ffffff;
  --bg-soft:   #f5f9f8;
  --border:    #e4ece9;
  --shadow-sm: 0 2px 10px rgba(16, 29, 43, 0.06);
  --shadow-md: 0 12px 32px rgba(16, 29, 43, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 29, 43, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  --ff-head: 'Manrope', 'Segoe UI', sans-serif;
  --ff-body: 'Inter', 'Segoe UI', sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 84px; }
body{
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4{
  font-family: var(--ff-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .6em;
  font-weight: 800;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 1em; }
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section{ position: relative; }
.section-pad{ padding: 108px 0; }
@media (max-width: 768px){ .section-pad{ padding: 72px 0; } }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow svg{ width: 14px; height: 14px; }

.section-head{
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); }
.section-head p{ color: var(--text-soft); font-size: 17px; margin: 0; }
.section-head.left{ margin-left: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg{ width: 19px; height: 19px; flex-shrink: 0; }
.btn-primary{
  background: var(--green-500);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31,169,113,.32);
}
.btn-primary:hover{ background: var(--green-600); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(31,169,113,.38); }
.btn-outline{
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover{ border-color: var(--green-500); color: var(--green-600); transform: translateY(-2px); }
.btn-ghost-light{
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover{ background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-sm{ padding: 11px 20px; font-size: 14px; }
.btn-block{ width: 100%; }

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header .container{ display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-scrolled{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.brand{ display: flex; align-items: center; gap: 10px; }
.brand img{ height: 42px; width: auto; }
.brand-name{
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 16.5px;
  line-height: 1.15;
  color: #fff;
  transition: color .3s ease;
}
.brand-name span{ display:block; font-weight: 600; font-size: 12px; color: rgba(255,255,255,.75); letter-spacing: .03em; }
.is-scrolled .brand-name{ color: var(--ink); }
.is-scrolled .brand-name span{ color: var(--text-soft); }

.nav-links{ display: flex; align-items: center; gap: 34px; }
.nav-links a{
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 14.5px;
  color: rgba(255,255,255,.92);
  transition: color .3s ease, opacity .2s ease;
  position: relative;
}
.is-scrolled .nav-links a{ color: var(--ink); }
.nav-links a:hover{ opacity: .7; }
.header-actions{ display: flex; align-items: center; gap: 14px; }
.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.is-scrolled .nav-toggle{ border-color: var(--border); background: var(--bg-soft); }
.nav-toggle svg{ width: 22px; height: 22px; color: #fff; }
.is-scrolled .nav-toggle svg{ color: var(--ink); }

@media (max-width: 920px){
  .nav-links{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 32px;
    gap: 26px;
    box-shadow: -20px 0 50px rgba(16,29,43,.18);
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a{ color: var(--ink) !important; font-size: 17px; }
  .header-actions .btn-primary span.long{ display: none; }
  .nav-toggle{ display: flex; }
  .nav-scrim{
    position: fixed; inset: 0; background: rgba(16,29,43,.45);
    z-index: 90; opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .nav-scrim.is-open{ opacity: 1; pointer-events: auto; }
}

@media (max-width: 480px){
  .container{ padding: 0 16px; }
  .brand{ gap: 8px; }
  .brand img{ height: 34px; }
  .brand-name{ font-size: 13.5px; }
  .brand-name span{ font-size: 10.5px; }
  .header-actions{ gap: 8px; }
  #workWithUsBtn{ padding: 10px 14px; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-900);
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media::after{
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,29,43,.72) 0%, rgba(16,29,43,.35) 32%, rgba(16,29,43,.55) 68%, rgba(9,16,24,.92) 100%),
    linear-gradient(120deg, rgba(15,109,72,.35), rgba(16,29,43,.15) 55%);
}
.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  /* top/bottom only — this div also has .container, which supplies the left/right gutter */
  padding-top: 200px;
  padding-bottom: 96px;
  color: #fff;
}
.hero-content .eyebrow{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  color: #eafaf3;
  backdrop-filter: blur(6px);
}
.hero-content h1{
  color: #fff;
  font-size: clamp(34px, 5.2vw, 60px);
  max-width: 800px;
  margin-bottom: 22px;
}
.hero-content h1 em{ font-style: normal; color: var(--green-500); background: linear-gradient(180deg, transparent 62%, rgba(31,169,113,.35) 62%); padding: 0 2px; }
.hero-content .lead{
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 38px;
}
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-platforms{
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-platforms span.label{ font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); font-weight: 700; }
.platform-chip{
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  padding: 8px 16px;
  border-radius: 999px;
}
.scroll-cue{
  position: absolute;
  right: 32px; bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  writing-mode: vertical-rl;
}
.scroll-cue .dot{
  width: 1px; height: 46px; background: rgba(255,255,255,.4);
  position: relative; overflow: hidden;
}
.scroll-cue .dot::after{
  content:''; position:absolute; left:0; top:-100%; width:100%; height:100%;
  background: #fff; animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown{ 0%{ top:-100%; } 60%{ top: 100%; } 100%{ top: 100%; } }
@media (max-width: 640px){ .scroll-cue{ display: none; } }

/* ---------- About / benefits ---------- */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy p{ font-size: 16.5px; color: var(--text); }
.fact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.fact-card{
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.fact-card svg{ width: 24px; height: 24px; color: var(--green-600); margin-bottom: 10px; }
.fact-card h4{ font-size: 15px; margin: 0 0 4px; }
.fact-card p{ font-size: 13.5px; color: var(--text-soft); margin: 0; }

.benefit-panel{
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.benefit-panel::before{
  content:'';
  position: absolute; inset: -40% -20% auto auto;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,169,113,.35), transparent 70%);
}
.benefit-panel h3{ color: #fff; font-size: 22px; position: relative; }
.benefit-list{ display: flex; flex-direction: column; gap: 22px; position: relative; }
.benefit-list li{ display: flex; gap: 14px; align-items: flex-start; }
.benefit-list .ico{
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px;
  background: rgba(31,169,113,.18); border: 1px solid rgba(31,169,113,.4);
  display: flex; align-items: center; justify-content: center;
}
.benefit-list .ico svg{ width: 20px; height: 20px; color: var(--green-500); }
.benefit-list strong{ display:block; font-size: 15.5px; margin-bottom: 3px; color: #fff; }
.benefit-list span{ font-size: 13.8px; color: rgba(255,255,255,.68); line-height: 1.5; }

@media (max-width: 940px){
  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Services ---------- */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card .ico{
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-50); border: 1px solid var(--green-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card .ico svg{ width: 26px; height: 26px; color: var(--green-600); }
.service-card h3{ font-size: 18px; margin-bottom: 8px; }
.service-card p{ font-size: 14.5px; color: var(--text-soft); margin: 0; line-height: 1.6; }

@media (max-width: 940px){ .services-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .services-grid{ grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process-track{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-track::before{
  content: '';
  position: absolute;
  top: 27px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 10px, transparent 10px 18px);
}
@media (max-width: 900px){ .process-track::before{ display: none; } }
.process-step{ position: relative; text-align: left; }
.process-step .num{
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 800; font-size: 19px;
  position: relative; z-index: 1; margin-bottom: 20px;
  box-shadow: 0 8px 18px rgba(16,29,43,.22);
}
.process-step:nth-child(odd) .num{ background: var(--green-500); box-shadow: 0 8px 18px rgba(31,169,113,.32); }
.process-step h3{ font-size: 16.5px; margin-bottom: 8px; }
.process-step p{ font-size: 14px; color: var(--text-soft); margin: 0; line-height: 1.6; }
@media (max-width: 900px){ .process-track{ grid-template-columns: 1fr 1fr; row-gap: 40px; } }
@media (max-width: 560px){ .process-track{ grid-template-columns: 1fr; } }

/* ---------- Highlight band ---------- */
.highlight-band{
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
}
.highlight-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.highlight-item{ display: flex; flex-direction: column; gap: 14px; }
.highlight-item .ico{
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
}
.highlight-item .ico svg{ width: 23px; height: 23px; color: var(--green-500); }
.highlight-item h4{ color: #fff; font-size: 16px; margin: 0 0 4px; }
.highlight-item p{ color: rgba(255,255,255,.65); font-size: 13.8px; margin: 0; line-height: 1.55; }
@media (max-width: 900px){ .highlight-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .highlight-grid{ grid-template-columns: 1fr; } }

/* ---------- Instagram CTA ---------- */
.insta-card{
  background: linear-gradient(120deg, var(--green-50), #fff 60%);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.insta-card .txt{ max-width: 560px; }
.insta-card h3{ font-size: 24px; margin-bottom: 8px; }
.insta-card p{ margin: 0; color: var(--text-soft); }
.insta-icon-wrap{
  width: 58px; height: 58px; border-radius: 16px;
  background: #fff; border: 1px solid var(--green-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.insta-icon-wrap svg{ width: 28px; height: 28px; color: var(--green-600); }

/* ---------- FAQ ---------- */
.faq-list{ max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item{
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px 26px;
  background: #fff;
}
.faq-item summary{
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary .plus{
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.faq-item summary .plus svg{ width: 15px; height: 15px; color: var(--ink); }
.faq-item[open] summary .plus{ background: var(--green-500); border-color: var(--green-500); transform: rotate(45deg); }
.faq-item[open] summary .plus svg{ color: #fff; }
.faq-item p{ padding-bottom: 22px; margin: 0; color: var(--text-soft); font-size: 15px; line-height: 1.65; }

/* ---------- Contact ---------- */
.contact-wrap{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-info{
  background: var(--navy-900);
  color: #fff;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.contact-info::before{
  content: '';
  position: absolute; left: -60px; bottom: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,169,113,.28), transparent 70%);
}
.contact-info h3{ color: #fff; font-size: 25px; position: relative; }
.contact-info > p{ color: rgba(255,255,255,.68); font-size: 15px; margin-bottom: 32px; position: relative; }
.contact-rows{ display: flex; flex-direction: column; gap: 20px; position: relative; margin-bottom: 32px; }
.contact-row{ display: flex; align-items: center; gap: 16px; }
.contact-row > div{ min-width: 0; } /* let long e-mails wrap instead of overflowing the flex row */
.contact-row .ico{
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .ico svg{ width: 21px; height: 21px; color: var(--green-500); }
.contact-row .label{ font-size: 12.5px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.contact-row .value{ font-family: var(--ff-head); font-weight: 700; font-size: 15.5px; color: #fff; display: inline-block; overflow-wrap: break-word; word-break: break-word; }
.contact-row a.value:hover{ color: var(--green-500); }

.contact-form-side{
  background: var(--bg-soft);
  padding: 56px 48px;
}
.contact-form-side h3{ font-size: 22px; }
.contact-form-side > p{ color: var(--text-soft); margin-bottom: 28px; }
.hours-table{ display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.hours-row{
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--ff-head); font-size: 14.5px;
}
.hours-row span:first-child{ color: var(--ink); font-weight: 700; }
.hours-row span:last-child{ color: var(--green-600); font-weight: 700; }
.hours-row.closed span:last-child{ color: var(--text-soft); }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 72px 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand{ display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img{ height: 40px; }
.footer-brand span{ font-family: var(--ff-head); font-weight: 800; font-size: 16px; color: var(--ink); }
.footer-col p{ color: var(--text-soft); font-size: 14.5px; max-width: 320px; }
.footer-col h5{ font-family: var(--ff-head); font-size: 13.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); margin-bottom: 18px; }
.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a{ font-size: 14.5px; color: var(--text-soft); transition: color .2s ease; }
.footer-col ul a:hover{ color: var(--green-600); }
.footer-social{ display: flex; gap: 10px; margin-top: 18px; }
.footer-social a{
  width: 38px; height: 38px; border-radius: 10px;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease, transform .2s ease;
}
.footer-social a:hover{ border-color: var(--green-500); transform: translateY(-2px); }
.footer-social svg{ width: 18px; height: 18px; color: var(--ink); }
.footer-bottom{
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13.5px; color: var(--text-soft);
}
.footer-credit{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 700; font-size: 13px;
  color: var(--text-soft); transition: color .2s ease;
}
.footer-credit:hover{ color: var(--ink); }
.footer-credit .tag{ color: var(--text-soft); }
.footer-credit .code{
  font-family: 'Courier New', monospace; font-weight: 800; color: var(--green-600);
}
.footer-credit .domain{ color: var(--ink); }

/* Bal küpü (honeypot) — sadece botlar doldurur, gerçek kullanıcı görmez */
.hp-field{
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}

@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .contact-wrap{ grid-template-columns: 1fr; }
}

/* ---------- Reveal animation ---------- */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- WhatsApp float ---------- */
.wa-float{
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-500);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(31,169,113,.45);
  animation: pulseWa 2.6s ease-in-out infinite;
}
.wa-float svg{ width: 30px; height: 30px; color: #fff; }
.wa-float:hover{ background: var(--green-600); }
@keyframes pulseWa{
  0%, 100%{ box-shadow: 0 12px 30px rgba(31,169,113,.45); }
  50%{ box-shadow: 0 12px 30px rgba(31,169,113,.45), 0 0 0 10px rgba(31,169,113,.12); }
}
@media (max-width: 640px){ .wa-float{ width: 54px; height: 54px; right: 16px; bottom: 16px; } }

/* ---------- "Çalışalım" form modal ---------- */
.modal-overlay{
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(16,29,43,.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.is-open{ opacity: 1; pointer-events: auto; }
.modal-box{
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(.98);
  transition: transform .25s ease;
}
.modal-overlay.is-open .modal-box{ transform: translateY(0) scale(1); }
.modal-close{
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-soft);
  transition: background .2s ease, color .2s ease;
}
.modal-close:hover{ background: var(--green-50); color: var(--green-600); }
.modal-close svg{ width: 16px; height: 16px; }
.modal-box h3{ font-size: 22px; }
.modal-box > p{ color: var(--text-soft); font-size: 14.5px; margin-bottom: 28px; }
.form-row{ margin-bottom: 16px; }
.form-row label{
  display: block;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-row label .req{ color: var(--green-600); }
.form-row label .opt{ color: var(--text-soft); font-weight: 500; font-size: 12.5px; }
.form-row input{
  width: 100%;
  font-family: var(--ff-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.form-row input::placeholder{ color: #9aa8b4; }
.form-row input:focus{ outline: none; border-color: var(--green-500); background: #fff; }
.form-error{ color: #d64545; font-size: 13.5px; margin: -4px 0 16px; }

.form-success{ text-align: center; padding: 12px 0 6px; }
.form-success .ico{
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-50); border: 1px solid var(--green-100); color: var(--green-600);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success .ico svg{ width: 26px; height: 26px; }
.form-success h3{ font-size: 20px; margin-bottom: 8px; }
.form-success p{ color: var(--text-soft); font-size: 14.5px; margin: 0; }
