:root {
  /* ─── Renk paleti ─── */
  --wa-green: #25D366;
  --wa-dark: #075E54;
  --wa-mid: #128C7E;
  --wa-darker: #0A4A3F;
  --wa-lighter: #0a6b5f;
  --ink: #0D1F1B;
  --paper: #F5F9F7;
  --mist: #E8F5F0;
  --sand: #F0EDE8;
  --accent: #00C853;
  --gold: #C9A84C;
  --text: #2D4A42;
  --muted: #7A9990;
  --border: #D4E8E0;
  --white: #FFFFFF;
  --placeholder: #a8bdb6;
  --gray-muted: #888888;
  --phone-frame: #1C1C2E;
  --wa-screen: #E8F5E3;
  --wa-screen-alt: #ECF9EF;
  --wa-msg-out: #DCF8C6;
  --success: #16a34a;
  --amber: #d97706;
  --badge-blue: #7EB8D4;
  --ico-mist: #E8F4F1;
  --ico-amber: #FEF3E8;
  --ico-sand: #F0EDE6;
  --modal-bg: #fafcfb;
  --modal-bg-end: #e0f0eb;
  --wa-green-hover: #1eba58;

  /* ─── Tipografi ölçeği ─── */
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --fs-hero: clamp(2.8rem, 4.5vw, 4.2rem);
  --fs-section: clamp(1.8rem, 3vw, 2.5rem);
  --fs-section-sm: clamp(1.6rem, 2.5vw, 2.2rem);
  --fs-card: 1.15rem;
  --fs-body: 15px;
  --fs-body-sm: 14px;
  --fs-caption: 13px;
  --fs-small: 12px;
  --fs-tiny: 11px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  background:var(--paper);
  color:var(--ink);
  overflow-x:hidden;
  font-size:var(--fs-body);
}

/* ━━━━━━━━━━━━━━━━━ NAV ━━━━━━━━━━━━━━━━━ */
.top-nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  height:96px;
  background:rgba(245,249,247,0.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 48px;
}
.nav-logo{
  display:flex;align-items:center;gap:10px;
  font-family:var(--font-display);
  font-size:1.5rem;
  font-weight:900;
  color:var(--wa-dark);
  text-decoration:none;
}
.nav-logo-img{
  height:80px;width:auto;display:block;object-fit:contain;object-position:left center;vertical-align:middle;
}
.logo-mark{
  width:36px;height:36px;
  background:linear-gradient(135deg,var(--wa-dark),var(--wa-mid));
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  color:white;
  font-size:18px;
  box-shadow:0 4px 12px rgba(7,94,84,0.3);
}
.nav-links{
  display:flex;align-items:center;gap:8px;
}
.nav-link{
  padding:7px 16px;
  font-size:13.5px;
  font-weight:500;
  color:var(--muted);
  cursor:pointer;
  border-radius:8px;
  transition:all 0.2s;
  text-decoration:none;
}
.nav-link:hover{color:var(--wa-dark);background:var(--mist);}
.nav-demo-btn{
  background:var(--wa-dark);
  color:white;
  border:none;
  padding:9px 22px;
  border-radius:10px;
  font-size:13.5px;
  font-weight:600;
  cursor:pointer;
  font-family:var(--font-body);
  transition:all 0.2s;
  margin-left:8px;
}
.nav-demo-btn:hover{background:var(--wa-mid);transform:translateY(-1px);box-shadow:0 6px 20px rgba(7,94,84,0.25);}

/* ━━━━━━━━━━━━━━━━━ HERO ━━━━━━━━━━━━━━━━━ */
.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  padding:100px 48px 60px;
  max-width:1280px;
  margin:0 auto;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--mist);
  border:1px solid var(--border);
  color:var(--wa-dark);
  font-size:11.5px;
  font-weight:600;
  letter-spacing:1.8px;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:28px;
}
.pulse-dot{
  width:7px;height:7px;
  background:var(--wa-green);
  border-radius:50%;
  animation:pulse 2s infinite;
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.5;transform:scale(0.8)}}

.hero h1{
  font-family:var(--font-display);
  font-size:var(--fs-hero);
  font-weight:900;
  line-height:1.06;
  letter-spacing:-0.02em;
  margin-bottom:24px;
  color:var(--ink);
}
.hero h1 em{
  font-style:italic;
  color:var(--wa-dark);
  position:relative;
}
.hero h1 em::after{
  content:'';
  position:absolute;
  bottom:-4px;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,var(--wa-green),transparent);
  border-radius:2px;
}
.hero-sub{
  font-size:16.5px;
  color:var(--muted);
  line-height:1.75;
  max-width:460px;
  margin-bottom:40px;
  font-weight:400;
}
.hero-actions{
  display:flex;gap:14px;align-items:center;flex-wrap:wrap;
  margin-bottom:48px;
}
.btn-primary{
  background:linear-gradient(135deg,var(--wa-dark),var(--wa-mid));
  color:white;
  border:none;
  padding:15px 32px;
  border-radius:12px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  font-family:var(--font-body);
  transition:all 0.25s;
  display:flex;align-items:center;gap:10px;
  box-shadow:0 8px 24px rgba(7,94,84,0.3);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(7,94,84,0.4);}
.btn-secondary{
  background:transparent;
  color:var(--text);
  border:1.5px solid var(--border);
  padding:14px 26px;
  border-radius:12px;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  font-family:var(--font-body);
  transition:all 0.2s;
  display:flex;align-items:center;gap:8px;
}
.btn-secondary:hover{border-color:var(--wa-mid);color:var(--wa-dark);}

.stats-row{
  display:flex;gap:32px;
  padding-top:36px;
  border-top:1px solid var(--border);
}
.stat-item{min-width:0;}
.stat-num{
  font-family:var(--font-display);
  font-size:2.2rem;
  font-weight:900;
  color:var(--wa-dark);
  line-height:1;
}
.stat-label{
  font-size:12px;
  color:var(--muted);
  margin-top:4px;
  font-weight:400;
}

/* ━━━━━━ HERO PHONE ━━━━━━ */
.hero-visual{
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
}
.phone-wrap{
  position:relative;
  z-index:2;
}
.phone-glow{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:340px;height:340px;
  background:radial-gradient(circle,rgba(37,211,102,0.15),transparent 70%);
  pointer-events:none;
}
.phone-device{
  width:290px;
  background:var(--phone-frame);
  border-radius:42px;
  padding:14px;
  box-shadow:
    0 40px 100px rgba(13,31,27,0.4),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.phone-screen{
  background:var(--wa-screen-alt);
  border-radius:30px;
  overflow:hidden;
  height:540px;
  display:flex;
  flex-direction:column;
}
.wa-header{
  background:var(--wa-dark);
  padding:12px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.wa-av{
  width:36px;height:36px;
  border-radius:50%;
  background:var(--wa-green);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
  flex-shrink:0;
}
.wa-info{flex:1;}
.wa-name{color:white;font-size:13.5px;font-weight:600;}
.wa-online{color:rgba(255,255,255,0.65);font-size:11px;}
.wa-body{
  flex:1;
  padding:12px 10px;
  display:flex;
  flex-direction:column;
  gap:7px;
  overflow:hidden;
  background:var(--wa-screen) url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2325D366' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10S0 14.5 0 20s4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10v20c5.5 0 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}
.chat-msg{
  max-width:82%;
  padding:8px 12px;
  border-radius:16px;
  font-size:12.5px;
  line-height:1.5;
  opacity:0;
  transform:translateY(6px);
  transition:all 0.35s ease;
  position:relative;
}
.chat-msg.show{opacity:1;transform:translateY(0);}
.chat-msg.in{
  background:white;
  color:var(--ink);
  border-bottom-left-radius:4px;
  align-self:flex-start;
  box-shadow:0 1px 3px rgba(0,0,0,0.08);
}
.chat-msg.out{
  background:var(--wa-green);
  color:var(--white);
  border-bottom-right-radius:4px;
  align-self:flex-end;
}
.msg-time{
  display:block;
  font-size:10px;
  opacity:0.55;
  text-align:right;
  margin-top:3px;
}
.chat-buttons{
  align-self:flex-start;
  display:flex;
  flex-direction:column;
  gap:5px;
  margin-top:2px;
}
.chat-btn{
  background:white;
  border:1.5px solid rgba(7,94,84,0.3);
  color:var(--wa-dark);
  font-size:11.5px;
  font-weight:600;
  padding:7px 16px;
  border-radius:20px;
  cursor:pointer;
  font-family:var(--font-body);
  text-align:center;
  transition:all 0.2s;
  width:180px;
}
.chat-btn:hover{background:var(--mist);}
.typing-indicator{
  background:white;
  border-radius:16px;border-bottom-left-radius:4px;
  padding:10px 16px;
  display:flex;gap:4px;align-items:center;
  align-self:flex-start;
  box-shadow:0 1px 3px rgba(0,0,0,0.08);
}
.typing-dot{
  width:6px;height:6px;
  background:var(--gray-muted);
  border-radius:50%;
  animation:typingBounce 1.2s infinite;
}
.typing-dot:nth-child(2){animation-delay:0.2s;}
.typing-dot:nth-child(3){animation-delay:0.4s;}
@keyframes typingBounce{0%,100%{transform:translateY(0)}40%{transform:translateY(-5px)}}

/* floating badge on phone */
.float-badge{
  position:absolute;
  background:white;
  border-radius:12px;
  padding:10px 14px;
  box-shadow:0 8px 30px rgba(0,0,0,0.14);
  display:flex;align-items:center;gap:8px;
  font-size:12px;
  font-weight:600;
  color:var(--ink);
  white-space:nowrap;
  animation:floatBob 3s ease-in-out infinite;
}
@keyframes floatBob{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
.float-badge.b1{top:30px;right:-60px;}
.float-badge.b2{bottom:60px;left:-80px;animation-delay:1.2s;}
.float-badge.b3{top:180px;left:-75px;animation-delay:0.7s;}
.fb-icon{font-size:18px;}
.fb-val{color:var(--wa-dark);}
.fb-caption{font-size:var(--fs-tiny);color:var(--gray-muted);font-weight:500;}
.section-chip-inline{display:inline-block;background:var(--mist);color:var(--wa-dark);font-size:var(--fs-tiny);font-weight:700;letter-spacing:2px;text-transform:uppercase;padding:5px 14px;border-radius:6px;margin-bottom:20px;}
.demo-feature-icon.ico-mist{background:var(--ico-mist);}
.demo-feature-icon.ico-amber{background:var(--ico-amber);}
.demo-feature-icon.ico-sand{background:var(--ico-sand);}
.bc-recipients-label{font-size:var(--fs-tiny);font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:1px;}
.bc-cta-link{color:var(--wa-dark);font-weight:600;}
.resv-counter-wrap{margin-top:16px;background:var(--mist);border-radius:12px;padding:14px 16px;display:flex;justify-content:space-between;align-items:center;}
.resv-counter-label{font-size:var(--fs-small);color:var(--muted);}
.resv-counter-val{font-size:1.4rem;font-weight:900;color:var(--wa-dark);font-family:var(--font-display);}
.mini-phone-wrap{display:flex;justify-content:center;}
.mini-phone-inner{width:260px;}
.try-btn-amber{background:var(--ico-amber);color:var(--gold);border-color:rgba(232,147,58,0.3);margin-left:8px;}
.m-btn-primary{background:var(--wa-green);color:var(--white);border-color:var(--wa-green);}
.bc-tag strong{margin-left:4px;}
.msg-btn-group{align-self:flex-start;display:flex;flex-direction:column;gap:5px;}

/* ━━━━━━━━━━━━━━━━━ PAIN BÖLÜMÜ ━━━━━━━━━━━━━━━━━ */
.pain-section{
  background:var(--ink);
  padding:90px 48px;
  overflow:hidden;
  position:relative;
}
.pain-section::before{
  content:'';
  position:absolute;
  top:-1px;left:0;right:0;
  height:60px;
  background:var(--paper);
  clip-path:ellipse(55% 100% at 50% 0%);
}
.pain-section::after{
  content:'';
  position:absolute;
  bottom:-1px;left:0;right:0;
  height:60px;
  background:var(--paper);
  clip-path:ellipse(55% 100% at 50% 100%);
}
.pain-inner{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
  position:relative;
  z-index:1;
}
.section-chip{
  display:inline-block;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.6);
  font-size:11px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  padding:6px 16px;
  border-radius:20px;
  margin-bottom:24px;
}
.pain-title{
  font-family:var(--font-display);
  font-size:var(--fs-section);
  font-weight:900;
  color:white;
  line-height:1.15;
  margin-bottom:16px;
}
.pain-title em{
  font-style:italic;
  color:var(--wa-green);
}
.pain-sub{
  font-size:16px;
  color:rgba(255,255,255,0.5);
  max-width:560px;
  margin:0 auto 56px;
  line-height:1.7;
}
.pain-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.pain-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  padding:28px;
  text-align:left;
  transition:all 0.3s;
}
.pain-card:hover{background:rgba(255,255,255,0.07);transform:translateY(-3px);}
.pain-emoji{font-size:28px;margin-bottom:14px;display:block;}
.pain-card-title{
  font-size:15px;
  font-weight:600;
  color:white;
  margin-bottom:8px;
}
.pain-card-text{
  font-size:13.5px;
  color:rgba(255,255,255,0.45);
  line-height:1.65;
}

/* ━━━━━━━━━━━━━━━━━ TARZINIZ BÖLÜMÜ ━━━━━━━━━━━━━━━━━ */
.tarz-section{
  background:var(--wa-dark);
  padding:80px 48px;
  color:white;
}
.tarz-inner{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}
.tarz-title{
  font-family:var(--font-display);
  font-size:var(--fs-section-sm);
  font-weight:900;
  margin-bottom:12px;
  line-height:1.25;
}
.tarz-sub{
  font-size:16px;
  color:rgba(255,255,255,0.7);
  margin-bottom:48px;
}
.tarz-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.tarz-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:20px;
  padding:32px;
  text-align:center;
  transition:all 0.3s;
}
.tarz-card:hover{background:rgba(255,255,255,0.12);transform:translateY(-3px);}
.tarz-icon{font-size:36px;margin-bottom:16px;}
.tarz-card h3{font-size:18px;font-weight:700;margin-bottom:12px;}
.tarz-card p{font-size:14px;color:rgba(255,255,255,0.7);line-height:1.6;}

/* ━━━━━━━━━━━━━━━━━ NEDEN WHATSAPP (6 KUTU) ━━━━━━━━━━━━━━━━━ */
.neden-section{
  padding:90px 48px;
  background:white;
}
.neden-inner{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}
.neden-title{
  font-family:var(--font-display);
  font-size:var(--fs-section);
  font-weight:900;
  color:var(--ink);
  margin-bottom:12px;
}
.neden-sub{
  font-size:16px;
  color:var(--muted);
  margin-bottom:48px;
}
.neden-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.neden-card{
  background:var(--paper);
  border:1px solid var(--border);
  border-radius:20px;
  padding:28px;
  text-align:center;
  transition:all 0.3s;
}
.neden-card:hover{border-color:var(--wa-mid);box-shadow:0 8px 32px rgba(7,94,84,0.08);}
.neden-letter{
  width:48px;height:48px;
  background:var(--wa-dark);
  color:white;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;font-weight:700;
  margin:0 auto 16px;
}
.neden-card h3{font-size:16px;font-weight:700;color:var(--ink);margin-bottom:10px;}
.neden-card p{font-size:13px;color:var(--muted);line-height:1.65;}

/* ━━━━━━━━━━━━━━━━━ TURİZM KARMAŞIKLIKLARI ━━━━━━━━━━━━━━━━━ */
.turizm-section{
  padding:90px 48px;
  background:var(--paper);
}
.turizm-inner{max-width:1100px;margin:0 auto;}
.turizm-title{
  font-family:var(--font-display);
  font-size:var(--fs-section-sm);
  font-weight:900;
  color:var(--ink);
  text-align:center;
  margin-bottom:56px;
}
.turizm-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
  margin-bottom:80px;
}
.turizm-row:last-child{margin-bottom:0;}
.turizm-row.rev{direction:rtl;}
.turizm-row.rev>*{direction:ltr;}
.turizm-copy h3{font-size:20px;font-weight:700;color:var(--ink);margin-bottom:16px;}
.turizm-copy p{font-size:15px;color:var(--muted);line-height:1.7;}
.turizm-visual{
  background:white;
  border-radius:20px;
  padding:24px;
  box-shadow:0 8px 40px rgba(0,0,0,0.06);
  border:1px solid var(--border);
}
.turizm-phone{
  max-width:260px;
  margin:0 auto;
  background:var(--phone-frame);
  border-radius:28px;
  padding:12px;
  box-shadow:0 20px 50px rgba(0,0,0,0.2);
}
.turizm-screen{
  background:var(--wa-screen);
  border-radius:20px;
  overflow:hidden;
  min-height:320px;
}

/* ━━━━━━━━━━━━━━━━━ SANAL ASİSTAN ━━━━━━━━━━━━━━━━━ */
.sanal-section{
  padding:90px 48px;
  background:white;
}
.sanal-inner{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.sanal-title{
  font-family:var(--font-display);
  font-size:var(--fs-section-sm);
  font-weight:900;
  color:var(--ink);
  margin-bottom:16px;
}
.sanal-sub{
  font-size:16px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:28px;
}
.sanal-list{
  list-style:none;
}
.sanal-list li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
  color:var(--text);
  margin-bottom:12px;
}
.sanal-list li::before{content:'✓';color:var(--wa-green);font-weight:700;}

/* ━━━━━━━━━━━━━━━━━ SSS ━━━━━━━━━━━━━━━━━ */
.sss-section{
  background:var(--wa-dark);
  padding:90px 48px;
  color:white;
}
.sss-inner{max-width:700px;margin:0 auto;}
.sss-title{
  font-family:var(--font-display);
  font-size:var(--fs-section-sm);
  font-weight:900;
  text-align:center;
  margin-bottom:12px;
}
.sss-sub{
  text-align:center;
  font-size:16px;
  color:rgba(255,255,255,0.7);
  margin-bottom:40px;
}
.sss-item{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  margin-bottom:12px;
  overflow:hidden;
}
.sss-q{
  padding:18px 20px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.sss-q:hover{background:rgba(255,255,255,0.04);}
.sss-q span{font-size:18px;opacity:0.7;}
.sss-a{
  padding:0 20px 18px;
  font-size:14px;
  color:rgba(255,255,255,0.8);
  line-height:1.65;
  display:none;
}
.sss-item.open .sss-a{display:block;}
.sss-btn-wrap{text-align:center;margin-top:28px;}
.sss-btn{
  background:white;
  color:var(--wa-dark);
  border:none;
  padding:14px 28px;
  border-radius:12px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  font-family:var(--font-body);
  transition:all 0.2s;
}
.sss-btn:hover{background:var(--mist);color:var(--wa-dark);}

/* ━━━━━━━━━━━━━━━━━ HEPSi WHATSAPP'TA 6 KART ━━━━━━━━━━━━━━━━━ */
.solution-grid-section{
  padding:100px 48px;
  background:var(--paper);
}
.solution-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  max-width:1200px;
  margin:0 auto;
}
.solution-card{
  background:var(--white);
  border-radius:20px;
  padding:28px;
  border:1px solid var(--border);
  box-shadow:0 4px 24px rgba(13,31,27,0.06);
  transition:all 0.3s;
}
.solution-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(7,94,84,0.12);
  border-color:var(--wa-mid);
}
.solution-card-icon{
  width:56px;height:56px;
  background:var(--mist);
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-size:24px;
  margin-bottom:20px;
}
.solution-card h3{
  font-family:var(--font-display);
  font-size:1.15rem;
  font-weight:700;
  color:var(--ink);
  margin-bottom:10px;
}
.solution-card p{
  font-size:14px;
  color:var(--muted);
  line-height:1.65;
}
.solution-6-section{
  padding:90px 48px;
  background:var(--mist);
}
.solution-6-inner{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}
.solution-6-title{
  font-family:var(--font-display);
  font-size:var(--fs-section);
  font-weight:900;
  color:var(--ink);
  margin-bottom:16px;
}
.solution-6-sub{
  font-size:16px;
  color:var(--muted);
  margin-bottom:48px;
  max-width:520px;
  margin-left:auto;
  margin-right:auto;
}
.solution-6-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.solution-6-card{
  background:white;
  padding:32px;
  border-radius:24px;
  border:1px solid var(--border);
  text-align:left;
  transition:all 0.3s;
}
.solution-6-card:hover{
  box-shadow:0 12px 40px rgba(7,94,84,0.08);
  transform:translateY(-2px);
}
.solution-6-icon{
  width:56px;height:56px;
  background:var(--mist);
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  font-size:28px;
  margin-bottom:20px;
}
.solution-6-card h3{
  font-size:18px;
  font-weight:700;
  color:var(--ink);
  margin-bottom:12px;
}
.solution-6-card p{
  font-size:14px;
  color:var(--muted);
  line-height:1.65;
}

/* ━━━━━━━━━━━━━━━━━ DUYURU ALANI ━━━━━━━━━━━━━━━━━ */
.notif-section{
  background:var(--ink);
  padding:90px 48px;
  color:white;
}
.notif-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.notif-title{
  font-family:var(--font-display);
  font-size:var(--fs-section);
  font-weight:900;
  margin-bottom:24px;
  line-height:1.2;
}
.notif-desc{
  font-size:18px;
  color:rgba(255,255,255,0.6);
  line-height:1.7;
  margin-bottom:32px;
}
.notif-highlight{
  font-weight:700;
  color:var(--wa-green);
  display:block;
  margin-top:12px;
}
.notif-stats{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;
  padding:28px;
  margin-bottom:32px;
}
.notif-stats-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}
.notif-stats-title{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
}
.notif-stats-dot{
  width:8px;height:8px;
  background:var(--wa-green);
  border-radius:50%;
  animation:pulse 2s infinite;
}
.notif-stats-status{
  font-size:11px;
  color:rgba(255,255,255,0.4);
}
.notif-stats-msg{
  font-size:16px;
  font-weight:700;
  margin-bottom:20px;
}
.notif-stats-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.notif-stat-box{
  background:rgba(0,0,0,0.2);
  border-radius:12px;
  padding:20px;
}
.notif-stat-num{
  font-family:var(--font-display);
  font-size:2rem;
  font-weight:900;
  color:var(--wa-green);
  line-height:1;
}
.notif-stat-label{
  font-size:10px;
  color:rgba(255,255,255,0.45);
  text-transform:uppercase;
  letter-spacing:1px;
  margin-top:6px;
}
.notif-form-wrap{
  background:white;
  border-radius:24px;
  padding:32px;
  color:var(--ink);
  box-shadow:0 24px 60px rgba(0,0,0,0.3);
}
.notif-form-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:24px;
  padding-bottom:20px;
  border-bottom:1px solid var(--border);
}
.notif-form-title span:first-child{
  width:40px;height:40px;
  background:var(--wa-dark);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  color:white;
  font-size:18px;
}
.notif-form-title strong{font-size:16px;}
.notif-form-group{margin-bottom:20px;}
.notif-form-label{
  display:block;
  font-size:11px;
  font-weight:700;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:0.5px;
  margin-bottom:10px;
}
.notif-form-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.notif-form-tag{
  font-size:11px;
  padding:6px 12px;
  background:var(--paper);
  border:1px solid var(--border);
  border-radius:20px;
  color:var(--text);
}
.notif-form-preview{
  background:var(--paper);
  border:1px solid var(--border);
  border-radius:12px;
  padding:16px;
  font-size:13px;
  color:var(--text);
  line-height:1.6;
}
.notif-form-btn{
  width:100%;
  background:var(--wa-dark);
  color:white;
  border:none;
  padding:16px;
  border-radius:12px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  font-family:var(--font-body);
  margin-top:8px;
  transition:all 0.2s;
}
.notif-form-btn:hover{background:var(--wa-mid);transform:translateY(-1px);}

/* ━━━━━━━━━━━━━━━━━ WHATSAPP GRUBU ━━━━━━━━━━━━━━━━━ */
.wa-grupu-section{
  padding:90px 48px;
  background:var(--mist);
}
.wa-grupu-inner{
  max-width:900px;
  margin:0 auto;
  background:linear-gradient(135deg,rgba(7,94,84,0.06),rgba(37,211,102,0.04));
  border-radius:48px;
  padding:64px;
  border:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.wa-grupu-inner::after{
  content:'🛡️';
  position:absolute;
  top:24px;right:24px;
  font-size:80px;
  opacity:0.15;
}
.wa-grupu-title{
  font-family:var(--font-display);
  font-size:clamp(1.6rem,2.5vw,2.2rem);
  font-weight:900;
  color:var(--ink);
  margin-bottom:20px;
  line-height:1.25;
}
.wa-grupu-desc{
  font-size:16px;
  color:var(--muted);
  line-height:1.75;
  margin-bottom:32px;
  max-width:560px;
}
.wa-grupu-checks{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.wa-grupu-check{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
  font-weight:500;
  color:var(--text);
}
.wa-grupu-check span:first-child{
  color:var(--wa-green);
  font-size:18px;
}

/* ━━━━━━━━━━━━━━━━━ TESTIMONIAL 3 KART ━━━━━━━━━━━━━━━━━ */
.testi-3-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testi-3-card{
  background:white;
  padding:32px;
  border-radius:24px;
  border:1px solid var(--border);
  transition:all 0.2s;
}
.testi-3-card:hover{border-color:var(--wa-mid);box-shadow:0 8px 32px rgba(7,94,84,0.08);}
.testi-3-stars{
  color:var(--gold);
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:16px;
}
.testi-3-text{
  font-size:15px;
  color:var(--text);
  font-style:italic;
  line-height:1.65;
  margin-bottom:20px;
}
.testi-3-author{
  font-size:14px;
  font-weight:700;
  color:var(--ink);
}

/* ━━━━━━━━━━━━━━━━━ TASARRUF HESAPLAYICI ━━━━━━━━━━━━━━━━━ */
.calc-section{
  background:var(--sand);
  padding:90px 48px;
}
.calc-wrap{
  max-width:1100px;
  margin:0 auto;
  background:var(--ink);
  border-radius:28px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
}
.calc-left{
  padding:48px;
  color:white;
}
.calc-left h3{
  font-family:var(--font-display);
  font-size:1.5rem;
  font-weight:700;
  margin-bottom:8px;
}
.calc-left p{
  font-size:14px;
  color:rgba(255,255,255,0.55);
  margin-bottom:36px;
  line-height:1.6;
}
.slider-group{margin-bottom:28px;}
.slider-label{
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color:rgba(255,255,255,0.7);
  margin-bottom:10px;
}
.slider-value{
  font-family:var(--font-display);
  font-weight:700;
  color:var(--gold);
  font-size:15px;
}
input[type=range]{
  width:100%;
  appearance:none;
  -webkit-appearance:none;
  height:4px;
  border-radius:2px;
  background:rgba(255,255,255,0.15);
  outline:none;
  cursor:pointer;
}
input[type=range]::-webkit-slider-thumb{
  appearance:none;
  -webkit-appearance:none;
  width:18px;height:18px;
  border-radius:50%;
  background:var(--gold);
  cursor:pointer;
  box-shadow:0 0 0 4px rgba(201,168,76,0.2);
}
.calc-right{
  background:linear-gradient(135deg,var(--wa-dark),var(--wa-darker));
  padding:48px;
  color:white;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.calc-result{
  background:rgba(255,255,255,0.08);
  border-radius:16px;
  padding:24px;
  margin-bottom:16px;
}
.calc-result-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:rgba(255,255,255,0.55);
  margin-bottom:8px;
}
.calc-result-value{
  font-family:var(--font-display);
  font-size:2.4rem;
  font-weight:900;
  line-height:1;
}
.calc-result-sub{
  font-size:12px;
  color:rgba(255,255,255,0.5);
  margin-top:4px;
}
.calc-highlight{
  background:var(--wa-green);
  color:var(--ink);
  border-radius:16px;
  padding:24px;
}
.calc-highlight .calc-result-label{color:rgba(13,31,27,0.65);}
.calc-highlight .calc-result-value{color:var(--ink);font-size:2.8rem;}

/* ━━━━━━━━━━━━━━━━━ DEMO AKIŞ ━━━━━━━━━━━━━━━━━ */
.demo-section{
  padding:90px 48px;
  max-width:1200px;
  margin:0 auto;
}
.flow-tabs{
  display:flex;
  gap:8px;
  margin-bottom:40px;
  flex-wrap:wrap;
  justify-content:center;
}
.flow-tab{
  padding:10px 20px;
  border-radius:10px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.2s;
  border:1.5px solid var(--border);
  color:var(--muted);
  background:white;
  font-family:var(--font-body);
  display:flex;align-items:center;gap:7px;
}
.flow-tab.active{
  background:var(--wa-dark);
  color:white;
  border-color:var(--wa-dark);
}
.flow-tab:hover:not(.active){
  border-color:var(--wa-mid);
  color:var(--wa-dark);
}
.sq-typing{display:flex;gap:4px;align-items:center;padding:8px 12px;background:white;border-radius:0 10px 10px 10px;width:fit-content;box-shadow:0 1px 2px rgba(0,0,0,0.07);}
.sq-typing span{width:6px;height:6px;background:var(--gray-muted);border-radius:50%;animation:typingBounce 1.2s infinite;}
.sq-typing span:nth-child(2){animation-delay:0.2s;}
.sq-typing span:nth-child(3){animation-delay:0.4s;}
.msg-m{max-width:90%;padding:7px 10px;border-radius:10px;font-size:var(--fs-tiny);line-height:1.5;color:var(--ink);}
.msg-m.i{background:white;border-radius:0 10px 10px 10px;align-self:flex-start;box-shadow:0 1px 2px rgba(0,0,0,0.07);}
.msg-m.o{background:var(--wa-msg-out);border-radius:10px 0 10px 10px;align-self:flex-end;}
.msg-m .ts{font-size:9px;color:rgba(0,0,0,0.4);display:block;text-align:right;margin-top:2px;}
.m-btn{background:white;border:1px solid var(--wa-green);color:var(--wa-dark);padding:6px 12px;border-radius:7px;font-size:10px;font-weight:600;cursor:pointer;font-family:'DM Sans',sans-serif;display:inline-block;margin-top:4px;}
.m-btn:hover{background:var(--mist);}
.typing-demo{display:flex;gap:4px;align-items:center;padding:8px 12px;background:white;border-radius:0 10px 10px 10px;width:fit-content;box-shadow:0 1px 2px rgba(0,0,0,0.07);}
.typing-demo span{width:6px;height:6px;background:var(--gray-muted);border-radius:50%;animation:typingBounce 1.2s infinite;}
.typing-demo span:nth-child(2){animation-delay:0.2s;}
.typing-demo span:nth-child(3){animation-delay:0.4s;}
.chat-container{display:flex;flex-direction:column;height:100%;}
.ch-header{background:var(--wa-dark);padding:12px 14px;display:flex;align-items:center;gap:10px;}
.ch-av{width:36px;height:36px;border-radius:50%;background:var(--wa-green);display:flex;align-items:center;justify-content:center;font-size:16px;}
.ch-name{color:white;font-size:13px;font-weight:600;}
.ch-sub{color:rgba(255,255,255,0.7);font-size:10px;}
.ch-body{flex:1;padding:12px;display:flex;flex-direction:column;gap:6px;background:var(--wa-screen);}
.demo-frame{display:none;}
.demo-frame.active{display:grid;}
.demo-grid{
  grid-template-columns:300px 1fr;
  gap:40px;
  align-items:start;
}
.demo-phone-wrap{position:sticky;top:80px;}
.demo-phone{
  width:100%;
  max-width:300px;
  background:var(--phone-frame);
  border-radius:38px;
  padding:12px;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
}
.demo-screen{
  background:var(--wa-screen);
  border-radius:28px;
  overflow:hidden;
  min-height:480px;
}
.demo-info{min-width:0;}
.demo-step-title{
  font-family:var(--font-display);
  font-size:1.8rem;
  font-weight:900;
  margin-bottom:12px;
  line-height:1.2;
}
.demo-step-title em{font-style:italic;color:var(--wa-dark);}
.demo-step-desc{
  font-size:15px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:32px;
}
.demo-feature-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:32px;
}
.demo-feature-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px;
  background:white;
  border-radius:12px;
  border:1px solid var(--border);
  transition:border-color 0.2s;
}
.demo-feature-item:hover{border-color:var(--wa-mid);}
.demo-feature-icon{
  width:40px;height:40px;
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;
  flex-shrink:0;
}
.demo-feature-item h4{font-size:14px;font-weight:600;margin-bottom:3px;}
.demo-feature-item p{font-size:12px;color:var(--muted);line-height:1.5;}
.demo-chat-container{
  display:flex;
  flex-direction:column;
  height:100%;
}
.demo-ch-header{
  background:var(--wa-dark);
  padding:12px 14px;
  display:flex;align-items:center;gap:10px;
}
.demo-ch-av{
  width:36px;height:36px;border-radius:50%;
  background:var(--wa-green);
  display:flex;align-items:center;justify-content:center;font-size:16px;
}
.demo-ch-name{color:white;font-size:13px;font-weight:600;}
.demo-ch-sub{color:rgba(255,255,255,0.7);font-size:10px;}
.demo-ch-body{
  flex:1;padding:12px;overflow-y:auto;
  display:flex;flex-direction:column;gap:6px;
  background:#E8F5E3;
}
.demo-m{
  max-width:90%;padding:7px 10px;border-radius:10px;font-size:11px;line-height:1.5;color:var(--ink);
}
.demo-m.in{background:white;border-radius:0 10px 10px 10px;align-self:flex-start;box-shadow:0 1px 2px rgba(0,0,0,0.07);}
.demo-m.out{background:var(--wa-msg-out);border-radius:10px 0 10px 10px;align-self:flex-end;}
.demo-m .ts{font-size:9px;color:rgba(0,0,0,0.4);display:block;text-align:right;margin-top:2px;}
.demo-m-btn{
  background:white;
  border:1px solid var(--wa-green);
  color:var(--wa-dark);
  padding:6px 12px;
  border-radius:7px;
  font-size:10px;
  font-weight:600;
  cursor:pointer;
  font-family:var(--font-body);
  transition:background 0.15s;
  display:inline-block;
  margin-top:4px;
}
.demo-m-btn:hover{background:var(--mist);}

/* ━━━━━━━━━━━━━━━━━ DASHBOARD PANEL ━━━━━━━━━━━━━━━━━ */
.dash-section{
  background:var(--sand);
  padding:90px 48px;
}
.dash-op-wrap{
  max-width:1280px;
  margin:0 auto;
  padding:0 24px;
}
.dash-op-wrap .section-header{margin-bottom:64px;}
.dash-op-card{
  background:var(--white);
  border-radius:24px;
  box-shadow:0 25px 50px -12px rgba(0,0,0,0.12);
  border:1px solid var(--border);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:750px;
}
@media(min-width:768px){
  .dash-op-card{flex-direction:row;}
}
.dash-op-sidebar{
  width:100%;
  background:var(--ink);
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:40px;
}
@media(min-width:768px){
  .dash-op-sidebar{width:256px;flex-shrink:0;}
}
.dash-op-brand{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--white);
  padding:0 8px;
}
.dash-op-brand-icon{
  background:var(--accent);
  padding:6px;
  border-radius:8px;
  font-size:16px;
}
.dash-op-brand-text{font-weight:700;}
.dash-op-nav{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.dash-op-nav-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 16px;
  border-radius:12px;
  font-size:14px;
  font-weight:500;
  color:var(--muted);
  text-decoration:none;
  transition:all 0.2s;
}
.dash-op-nav-item:hover{
  color:var(--white);
  background:var(--wa-darker);
}
.dash-op-nav-item.active{
  background:var(--accent);
  color:var(--white);
  box-shadow:0 4px 14px rgba(0,200,83,0.3);
}
.dash-op-main{
  flex:1;
  padding:32px;
  background:rgba(245,249,247,0.6);
  overflow-y:auto;
}
.dash-op-stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-bottom:32px;
}
@media(min-width:1024px){
  .dash-op-stats{grid-template-columns:repeat(4,1fr);}
}
.dash-op-stat{
  background:var(--white);
  padding:24px;
  border-radius:24px;
  border:1px solid var(--border);
  box-shadow:0 1px 3px rgba(0,0,0,0.04);
}
.dash-op-stat-lbl{
  font-size:10px;
  font-weight:700;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:0.1em;
  margin-bottom:4px;
}
.dash-op-stat-val{
  font-size:1.5rem;
  font-weight:700;
  color:var(--ink);
}
.dash-op-stat.highlight .dash-op-stat-val{color:var(--accent);}
.dash-op-grid{
  display:grid;
  gap:24px;
}
@media(min-width:1024px){
  .dash-op-grid{grid-template-columns:2fr 1fr;}
}
.dash-op-feed{min-width:0;}
.dash-op-box{
  background:var(--white);
  border-radius:24px;
  border:1px solid var(--border);
  box-shadow:0 1px 3px rgba(0,0,0,0.04);
  padding:24px;
}
.dash-op-box-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}
.dash-op-box-title{
  font-weight:700;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
}
.dash-op-box-link{
  font-size:10px;
  font-weight:700;
  color:var(--accent);
  text-decoration:none;
}
.dash-op-box-link:hover{text-decoration:underline;}
.dash-op-table-wrap{overflow-x:auto;}
.dash-op-table{
  width:100%;
  text-align:left;
  font-size:14px;
  border-collapse:collapse;
}
.dash-op-table th{
  font-size:10px;
  font-weight:700;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:0.05em;
  padding-bottom:16px;
  border-bottom:1px solid var(--border);
}
.dash-op-table td{
  padding:16px 0;
  border-bottom:1px solid var(--border);
  color:var(--text);
}
.dash-op-table tr:last-child td{border-bottom:0;}
.dash-op-table td:nth-child(3){font-weight:700;}
.dash-op-badge{
  font-size:10px;
  font-weight:700;
  padding:4px 8px;
  border-radius:999px;
}
.dash-op-badge.warn{background:rgba(217,119,6,0.15);color:var(--amber);}
.dash-op-badge.info{background:rgba(0,200,83,0.15);color:var(--accent);}
.dash-op-badge.ok{background:rgba(22,163,74,0.15);color:var(--success);}
.dash-op-widgets{display:flex;flex-direction:column;gap:24px;}
.dash-op-widget{
  background:var(--white);
  padding:24px;
  border-radius:24px;
  border:1px solid var(--border);
  box-shadow:0 1px 3px rgba(0,0,0,0.04);
}
.dash-op-widget-title{
  font-weight:700;
  font-size:14px;
  margin-bottom:16px;
}
.dash-op-widget-accent{
  background:var(--wa-mid);
  color:var(--white);
  border:none;
  box-shadow:0 10px 40px rgba(7,94,84,0.25);
}
.dash-op-widget-accent .dash-op-widget-title{opacity:0.9;}
.dash-op-widget-inner{
  background:rgba(255,255,255,0.1);
  padding:16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.1);
  margin-bottom:16px;
}
.dash-op-widget-quote{font-size:14px;font-weight:700;font-style:italic;margin-bottom:4px;}
.dash-op-widget-desc{font-size:10px;opacity:0.8;}
.dash-op-widget-footer{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}
.dash-op-widget-num{font-size:1.5rem;font-weight:700;}
.dash-op-widget-num-lbl{font-size:10px;opacity:0.8;}
.dash-op-widget-check{
  font-size:24px;
  color:rgba(255,255,255,0.7);
  font-weight:700;
}
.dash-op-segments{display:flex;flex-direction:column;gap:8px;}
.dash-op-seg-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px;
  background:var(--mist);
  border-radius:12px;
  font-size:12px;
  font-weight:500;
  color:var(--text);
}
.dash-op-seg-arrow{font-size:10px;color:var(--muted);}

/* ━━━━━━━━━━━━━━━━━ ÇÖZÜM / ÖZELLİKLER ━━━━━━━━━━━━━━━━━ */
.features-section{
  padding:100px 48px;
  max-width:1200px;
  margin:0 auto;
}
.section-header{
  text-align:center;
  margin-bottom:64px;
}
.section-title{
  font-family:var(--font-display);
  font-size:var(--fs-section);
  font-weight:900;
  line-height:1.15;
  margin-bottom:16px;
}
.section-title em{
  font-style:italic;
  color:var(--wa-dark);
}
.section-sub{
  font-size:16px;
  color:var(--muted);
  max-width:520px;
  margin:0 auto;
  line-height:1.7;
}
.feature-rows{
  display:flex;
  flex-direction:column;
  gap:80px;
}
.feature-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.feature-row.rev{direction:rtl;}
.feature-row.rev>*{direction:ltr;}
.feature-label{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--mist);
  color:var(--wa-dark);
  font-size:11px;
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  padding:5px 12px;
  border-radius:6px;
  margin-bottom:16px;
}
.feature-icon-sm{font-size:14px;}
.feature-title{
  font-family:var(--font-display);
  font-size:var(--fs-section-sm);
  font-weight:900;
  line-height:1.2;
  margin-bottom:16px;
}
.feature-desc{
  font-size:15px;
  color:var(--muted);
  line-height:1.75;
  margin-bottom:24px;
}
.feature-checks{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.feature-checks li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color:var(--text);
}
.check-icon{
  width:20px;height:20px;
  background:var(--mist);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  margin-top:1px;
  font-size:10px;
  color:var(--wa-dark);
}

/* ━━━━━━ FEATURE VISUALS ━━━━━━ */
.feat-visual{
  background:var(--white);
  border-radius:24px;
  padding:24px;
  box-shadow:0 4px 40px rgba(13,31,27,0.08);
  border:1px solid var(--border);
  overflow:hidden;
  position:relative;
}
/* Duyuru animasyonu */
.broadcast-wrap{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.bc-header{
  background:var(--wa-dark);
  border-radius:12px;
  padding:16px;
  display:flex;
  align-items:center;
  gap:12px;
}
.bc-icon{
  width:40px;height:40px;
  background:rgba(255,255,255,0.12);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;
}
.bc-info{flex:1;}
.bc-title{color:white;font-size:13px;font-weight:600;}
.bc-sub{color:rgba(255,255,255,0.55);font-size:11px;}
.bc-recipients{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.bc-tag{
  background:var(--mist);
  color:var(--wa-dark);
  font-size:11.5px;
  font-weight:600;
  padding:5px 12px;
  border-radius:20px;
  display:flex;align-items:center;gap:5px;
}
.bc-msg-preview{
  background:var(--mist);
  border:1px solid var(--border);
  border-radius:12px;
  padding:16px;
  font-size:13px;
  color:var(--text);
  line-height:1.6;
}
.bc-msg-preview strong{color:var(--wa-dark);}
.bc-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.bc-counter{
  font-size:12px;
  color:var(--muted);
}
.bc-send-btn{
  background:var(--wa-green);
  color:white;
  border:none;
  padding:9px 20px;
  border-radius:10px;
  font-size:12.5px;
  font-weight:600;
  cursor:pointer;
  font-family:var(--font-body);
  display:flex;align-items:center;gap:6px;
}
.send-animation{
  width:0;
  overflow:hidden;
  transition:width 0.5s;
  white-space:nowrap;
  font-size:11px;
  opacity:0.8;
}

/* Rezervasyon animasyonu */
.resv-phone{
  width:100%;
  max-width:260px;
  margin:0 auto;
}
.mini-phone{
  background:var(--phone-frame);
  border-radius:28px;
  padding:10px;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
}
.mini-screen{
  background:var(--wa-screen-alt);
  border-radius:20px;
  overflow:hidden;
}
.mini-wa-header{
  background:var(--wa-dark);
  padding:10px 12px;
  display:flex;align-items:center;gap:8px;
}
.mini-av{
  width:28px;height:28px;border-radius:50%;
  background:var(--wa-green);
  display:flex;align-items:center;justify-content:center;
  font-size:12px;
}
.mini-name{color:white;font-size:12px;font-weight:600;}
.mini-body{
  padding:10px 8px;
  display:flex;
  flex-direction:column;
  gap:6px;
  min-height:200px;
  background:var(--wa-screen);
}
.mini-msg{
  max-width:85%;
  padding:6px 10px;
  border-radius:12px;
  font-size:11px;
  line-height:1.45;
  opacity:0;
  transform:translateY(4px);
  transition:all 0.3s;
}
.mini-msg.show{opacity:1;transform:translateY(0);}
.mini-msg.in{
  background:white;
  color:var(--ink);
  border-bottom-left-radius:3px;
  align-self:flex-start;
}
.mini-msg.out{
  background:var(--wa-green);
  color:white;
  border-bottom-right-radius:3px;
  align-self:flex-end;
}

/* Evrak visual */
.docs-visual{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.doc-item{
  background:var(--paper);
  border:1px solid var(--border);
  border-radius:12px;
  padding:14px 16px;
  display:flex;align-items:center;gap:12px;
  transition:all 0.3s;
  cursor:default;
}
.doc-item.collected{
  border-color:var(--wa-green);
  background:var(--mist);
}
.doc-icon-wrap{
  width:38px;height:38px;
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;
  flex-shrink:0;
}
.doc-icon-wrap.green{background:rgba(37,211,102,0.12);}
.doc-icon-wrap.blue{background:rgba(37,99,235,0.1);}
.doc-icon-wrap.amber{background:rgba(245,158,11,0.1);}
.doc-meta{flex:1;}
.doc-name{font-size:13px;font-weight:600;color:var(--ink);}
.doc-from{font-size:11.5px;color:var(--muted);margin-top:2px;}
.doc-status{
  font-size:11px;
  font-weight:600;
  padding:4px 10px;
  border-radius:6px;
}
.doc-status.ok{background:rgba(37,211,102,0.1);color:var(--success);}
.doc-status.wait{background:rgba(245,158,11,0.1);color:var(--amber);}
.doc-progress{
  background:var(--mist);
  border-radius:12px;
  padding:12px 16px;
  display:flex;justify-content:space-between;align-items:center;
}
.dp-label{font-size:12px;color:var(--muted);}
.dp-bar-wrap{flex:1;height:6px;background:var(--border);border-radius:3px;margin:0 12px;}
.dp-bar{height:6px;background:var(--wa-green);border-radius:3px;transition:width 1.5s ease;}
.dp-pct{font-size:12px;font-weight:700;color:var(--wa-dark);}

/* ━━━━━━━━━━━━━━━━━ NASIL ÇALIŞIR ━━━━━━━━━━━━━━━━━ */
.how-section{
  background:var(--sand);
  padding:100px 48px;
}
.how-inner{
  max-width:1100px;
  margin:0 auto;
}
.how-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:64px;
  position:relative;
}
.how-steps::before{
  content:'';
  position:absolute;
  top:32px;left:calc(12.5% + 16px);right:calc(12.5% + 16px);
  height:2px;
  background:linear-gradient(90deg,var(--border),var(--wa-green),var(--border));
}
.how-step{
  text-align:center;
  position:relative;
}
.how-num{
  width:64px;height:64px;
  background:var(--white);
  border:2px solid var(--border);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
  font-size:22px;
  box-shadow:0 4px 16px rgba(0,0,0,0.06);
  position:relative;
  z-index:1;
  transition:all 0.3s;
}
.how-step:hover .how-num{
  border-color:var(--wa-green);
  background:var(--mist);
  transform:scale(1.1);
}
.how-step-title{
  font-size:15px;
  font-weight:700;
  color:var(--ink);
  margin-bottom:8px;
}
.how-step-text{
  font-size:13px;
  color:var(--muted);
  line-height:1.65;
}

/* ━━━━━━━━━━━━━━━━━ SOSYAL KANIT ━━━━━━━━━━━━━━━━━ */
.social-section{
  padding:80px 48px;
  max-width:1100px;
  margin:0 auto;
}
.quote-block{
  background:var(--ink);
  border-radius:28px;
  padding:48px 56px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:40px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.quote-block::before{
  content:'❝';
  position:absolute;
  top:-10px;left:40px;
  font-size:140px;
  color:rgba(255,255,255,0.04);
  font-family:serif;
  line-height:1;
}
.stars{color:var(--gold);font-size:18px;letter-spacing:2px;margin-bottom:16px;}
.quote-text{
  font-family:var(--font-display);
  font-size:1.45rem;
  font-weight:700;
  font-style:italic;
  color:white;
  line-height:1.5;
  max-width:600px;
}
.quote-author{
  text-align:right;
}
.qa-name{color:white;font-size:14px;font-weight:600;margin-bottom:4px;}
.qa-role{color:rgba(255,255,255,0.45);font-size:12px;line-height:1.5;}

/* ━━━━━━━━━━━━━━━━━ FİYAT YOK — CTA ━━━━━━━━━━━━━━━━━ */
.cta-section{
  background:linear-gradient(135deg,var(--wa-dark) 0%,var(--wa-darker) 100%);
  padding:100px 48px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-section::before{
  content:'';
  position:absolute;
  top:-200px;right:-200px;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(37,211,102,0.12),transparent 60%);
  pointer-events:none;
}
.cta-section::after{
  content:'';
  position:absolute;
  bottom:-200px;left:-200px;
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(201,168,76,0.1),transparent 60%);
  pointer-events:none;
}
.cta-inner{position:relative;z-index:1;}
.cta-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.15);
  color:rgba(255,255,255,0.8);
  font-size:11.5px;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  padding:6px 16px;
  border-radius:20px;
  margin-bottom:28px;
}
.cta-title{
  font-family:var(--font-display);
  font-size:clamp(2.2rem,4vw,3.4rem);
  font-weight:900;
  color:white;
  line-height:1.1;
  margin-bottom:20px;
}
.cta-title em{
  font-style:italic;
  color:var(--wa-green);
}
.cta-desc{
  font-size:16px;
  color:rgba(255,255,255,0.6);
  max-width:500px;
  margin:0 auto 40px;
  line-height:1.7;
}
.cta-btn{
  background:var(--wa-green);
  color:white;
  border:none;
  padding:18px 40px;
  border-radius:14px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  font-family:var(--font-body);
  transition:all 0.25s;
  display:inline-flex;align-items:center;gap:10px;
  box-shadow:0 8px 32px rgba(37,211,102,0.35);
}
.cta-btn:hover{background:var(--wa-green-hover);transform:translateY(-2px);box-shadow:0 14px 40px rgba(37,211,102,0.45);}
.cta-note{
  margin-top:20px;
  font-size:13px;
  color:rgba(255,255,255,0.35);
}

/* ━━━━━━━━━━━━━━━━━ MODAL (DEMO FORMU) ━━━━━━━━━━━━━━━━━ */
.modal-overlay{
  display:none;
  position:fixed;inset:0;
  background:rgba(13,31,27,0.72);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  z-index:1000;
  align-items:center;
  justify-content:center;
  padding:40px 24px;
  animation:overlayFade 0.25s ease;
}
.modal-overlay.open{display:flex;}
@keyframes overlayFade{from{opacity:0}to{opacity:1}}
.modal{
  background:linear-gradient(180deg,var(--white) 0%,var(--modal-bg) 100%);
  border-radius:20px;
  width:100%;
  max-width:440px;
  max-height:calc(100vh - 80px);
  margin:auto 0;
  position:relative;
  box-shadow:0 24px 64px rgba(7,94,84,0.15),0 0 0 1px rgba(7,94,84,0.06);
  animation:modalSlide 0.35s cubic-bezier(0.16,1,0.3,1);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
@keyframes modalSlide{from{opacity:0;transform:scale(0.96) translateY(20px)}to{opacity:1;transform:scale(1) translateY(0)}}
.modal::before{
  content:'';
  position:absolute;top:0;left:0;right:0;
  height:4px;
  background:linear-gradient(90deg,var(--wa-dark),var(--wa-green));
}
.modal-close{
  position:absolute;top:20px;right:20px;
  width:36px;height:36px;
  background:transparent;
  border:1px solid var(--border);
  border-radius:10px;
  cursor:pointer;
  font-size:18px;
  font-weight:300;
  display:flex;align-items:center;justify-content:center;
  color:var(--muted);
  transition:all 0.2s;
  z-index:2;
}
.modal-close:hover{background:var(--mist);border-color:var(--wa-mid);color:var(--ink);}
.modal-body{
  padding:44px 36px 36px;
  overflow-y:auto;
  flex:1;
  min-height:0;
}
.modal-header{
  text-align:center;
  margin-bottom:28px;
}
.modal-icon{
  width:56px;height:56px;
  background:linear-gradient(135deg,var(--mist) 0%,var(--modal-bg-end) 100%);
  border:1px solid rgba(7,94,84,0.08);
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  font-size:26px;
  margin:0 auto 16px;
}
.modal h3{
  font-family:var(--font-display);
  font-size:1.5rem;
  font-weight:900;
  margin-bottom:6px;
  color:var(--ink);
  letter-spacing:-0.02em;
}
.modal-sub{
  font-size:14px;
  color:var(--muted);
  line-height:1.55;
}
.form-group{margin-bottom:18px;}
.form-label{
  display:block;
  font-size:12px;
  font-weight:600;
  color:var(--text);
  margin-bottom:8px;
  letter-spacing:0.02em;
}
.form-input{
  width:100%;
  padding:14px 16px;
  border:1.5px solid var(--border);
  border-radius:12px;
  font-size:var(--fs-body);
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  transition:all 0.2s;
  outline:none;
}
.form-input:hover{border-color:rgba(7,94,84,0.25);}
.form-input:focus{
  border-color:var(--wa-mid);
  box-shadow:0 0 0 3px rgba(7,94,84,0.1);
}
.form-input::placeholder{color:var(--placeholder);}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.form-submit{
  width:100%;
  background:linear-gradient(135deg,var(--wa-dark) 0%,var(--wa-lighter) 100%);
  color:white;
  border:none;
  padding:16px;
  border-radius:12px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  font-family:var(--font-body);
  margin-top:24px;
  transition:all 0.2s;
  box-shadow:0 4px 14px rgba(7,94,84,0.25);
}
.form-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(7,94,84,0.35);
}
.form-submit:active{transform:translateY(0);}
.form-note{
  text-align:center;
  font-size:12px;
  color:var(--muted);
  margin-top:14px;
  display:flex;align-items:center;justify-content:center;gap:6px;
}
.form-note::before{content:'📞';}
/* success state */
.form-success{
  display:none;
  text-align:center;
  padding:32px 24px;
}
.form-success.show{display:block;}
.success-icon{
  font-size:52px;
  margin-bottom:20px;
  filter:grayscale(0.1);
}
.success-title{
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:900;
  color:var(--ink);
  margin-bottom:10px;
  letter-spacing:-0.02em;
}
.success-text{font-size:14px;color:var(--muted);line-height:1.65;}

/* ━━━━━━━━━━━━━━━━━ FOOTER ━━━━━━━━━━━━━━━━━ */
footer{
  background:var(--ink);
  padding:48px;
}
.footer-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:24px;
}
.footer-brand{
  font-family:var(--font-display);
  font-size:1.4rem;
  font-weight:900;
  color:white;
}
.footer-brand span{color:var(--wa-green);}
.footer-tagline{
  font-size:12.5px;
  color:rgba(255,255,255,0.35);
  margin-top:4px;
}
.footer-bb{
  text-align:right;
}
.bb-label{
  font-size:11.5px;
  color:rgba(255,255,255,0.3);
  letter-spacing:0.5px;
  margin-bottom:4px;
}
.bb-name{
  font-size:13.5px;
  font-weight:600;
  color:rgba(255,255,255,0.6);
}
.bb-name a{
  color:inherit;
  text-decoration:none;
  transition:color 0.2s;
}
.bb-name a:hover{color:var(--wa-green);}
.bb-sub{
  font-size:11px;
  color:rgba(255,255,255,0.2);
}

/* ━━━━━━━━━━━━━━━━━ RESPONSIVE ━━━━━━━━━━━━━━━━━ */
@media(max-width:900px){
  .top-nav{padding:0 24px;}
  .nav-links{display:none;}
  .hero{grid-template-columns:1fr;padding:90px 24px 60px;gap:40px;}
  .hero-visual{order:-1;}
  .float-badge.b1,.float-badge.b2,.float-badge.b3{display:none;}
  .pain-cards{grid-template-columns:1fr;}
  .feature-row{grid-template-columns:1fr;}
  .feature-row.rev{direction:ltr;}
  .how-steps{grid-template-columns:1fr 1fr;}
  .how-steps::before{display:none;}
  .quote-block{grid-template-columns:1fr;text-align:center;}
  .quote-author{text-align:center;}
  .pain-section,.how-section,.cta-section{padding:70px 24px;}
  .features-section{padding:70px 24px;}
  .solution-grid{grid-template-columns:1fr;}
  .solution-grid-section{padding:70px 24px;}
  footer{padding:32px 24px;}
  .footer-inner{flex-direction:column;text-align:center;}
  .footer-bb{text-align:center;}
  .calc-wrap{grid-template-columns:1fr;}
  .calc-section{padding:70px 24px;}
  .demo-section{padding:70px 24px;}
  .demo-grid{grid-template-columns:1fr;}
  .demo-phone-wrap{position:static;display:flex;justify-content:center;}
  .dash-section{padding:70px 24px;}
  .dash-op-wrap{padding:0 16px;}
  .solution-6-grid{grid-template-columns:1fr;}
  .solution-6-section{padding:70px 24px;}
  .notif-inner{grid-template-columns:1fr;}
  .notif-section{padding:70px 24px;}
  .wa-grupu-section{padding:70px 24px;}
  .wa-grupu-inner{padding:40px 24px;}
  .wa-grupu-checks{grid-template-columns:1fr;}
  .testi-3-grid{grid-template-columns:1fr;}
}
