:root{
  --bg:#f7f3ec;
  --paper:#fffdf8;
  --ink:#14120f;
  --muted:#72695d;
  --line:rgba(20,18,15,.12);
  --gold:#cda66b;
  --gold-2:#e8c98d;
  --gold-dark:#8d6a31;
  --dark:#0e0d0b;
  --dark-2:#1d1914;
  --green:#20b26b;
  --shadow:0 24px 80px rgba(31,24,14,.16);
  --soft-shadow:0 14px 42px rgba(31,24,14,.10);
  --radius:30px;
  --radius-sm:18px;
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.55;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
img{max-width:100%;display:block}
.container{
  width:min(var(--container), calc(100% - 36px));
  margin-inline:auto;
}
.section{padding:98px 0}
.site-bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  overflow:hidden;
}
.bg-orb{
  position:absolute;
  width:560px;
  height:560px;
  border-radius:999px;
  filter:blur(22px);
  opacity:.45;
}
.bg-orb-1{
  background:radial-gradient(circle, rgba(232,201,141,.65), rgba(232,201,141,0) 66%);
  top:-220px;
  right:-160px;
}
.bg-orb-2{
  background:radial-gradient(circle, rgba(255,255,255,.92), rgba(255,255,255,0) 68%);
  bottom:-240px;
  left:-200px;
}
.bg-grid{
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(20,18,15,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(20,18,15,.045) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.6), transparent 76%);
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(22px);
  background:rgba(247,243,236,.72);
  border-bottom:1px solid rgba(20,18,15,.08);
}
.nav-wrap{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand{display:flex;align-items:center;min-width:210px}
.brand-logo{width:220px;height:auto}
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px;
  border:1px solid rgba(20,18,15,.08);
  background:rgba(255,253,248,.62);
  border-radius:999px;
  box-shadow:0 8px 24px rgba(31,24,14,.06);
}
.nav a{
  font-size:14px;
  color:#4f473c;
  padding:11px 15px;
  border-radius:999px;
  transition:.22s ease;
}
.nav a:hover{
  color:var(--ink);
  background:rgba(205,166,107,.16);
}
.nav-actions{display:flex;align-items:center;gap:10px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:-.01em;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  color:#14100a;
  background:linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow:0 18px 42px rgba(205,166,107,.35);
}
.btn-soft{
  color:var(--ink);
  background:rgba(255,253,248,.78);
  border-color:rgba(20,18,15,.10);
  box-shadow:0 10px 26px rgba(31,24,14,.08);
}
.btn-ghost{
  color:#17120a;
  border-color:rgba(20,18,15,.12);
  background:rgba(255,253,248,.44);
}
.full{width:100%}
.menu-btn{
  display:none;
  width:48px;height:48px;
  border:1px solid rgba(20,18,15,.12);
  border-radius:999px;
  background:rgba(255,253,248,.8);
  padding:13px;
}
.menu-btn span{
  display:block;
  height:2px;
  background:var(--ink);
  margin:5px 0;
  border-radius:999px;
}

.hero{padding:86px 0 70px}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr);
  gap:54px;
  align-items:center;
}
.eyebrow,.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--gold-dark);
  background:rgba(205,166,107,.13);
  border:1px solid rgba(205,166,107,.22);
  border-radius:999px;
  padding:8px 13px;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.spark{
  width:10px;height:10px;
  border-radius:2px;
  background:linear-gradient(135deg,var(--gold-2),var(--gold-dark));
  transform:rotate(45deg);
  display:inline-block;
}
.hero h1{
  margin:24px 0 20px;
  font-size:clamp(46px,6.2vw,84px);
  line-height:.93;
  letter-spacing:-.075em;
  max-width:790px;
}
.hero-lead{
  font-size:20px;
  color:var(--muted);
  max-width:680px;
  margin:0 0 28px;
}
.hero-bullets{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:26px 0 30px;
}
.hero-bullets span{
  border:1px solid rgba(20,18,15,.1);
  background:rgba(255,253,248,.72);
  border-radius:999px;
  padding:10px 14px;
  color:#4e4538;
  font-weight:800;
  font-size:14px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.mini-trust{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  max-width:610px;
  margin-top:34px;
}
.mini-trust div{
  padding:18px;
  border-radius:22px;
  background:rgba(255,253,248,.66);
  border:1px solid rgba(20,18,15,.09);
}
.mini-trust strong{display:block;font-size:18px}
.mini-trust small{color:var(--muted);font-weight:700}
.hero-visual{position:relative;min-height:590px;display:grid;place-items:center}
.dashboard-card{
  position:relative;
  width:min(100%, 560px);
  border-radius:36px;
  background:linear-gradient(180deg,#211c16,#0f0d0b);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 42px 130px rgba(14,13,11,.38);
  padding:16px;
  color:#fff;
}
.floating{animation:floaty 7s ease-in-out infinite}
@keyframes floaty{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-16px)}
}
.window-top{
  display:flex;
  align-items:center;
  gap:8px;
  height:44px;
  padding:0 8px;
  color:rgba(255,255,255,.78);
}
.window-top span{width:11px;height:11px;border-radius:999px;background:rgba(255,255,255,.28)}
.window-top b{margin-left:auto;font-size:13px;color:rgba(255,255,255,.6)}
.invoice-panel{
  border-radius:28px;
  background:linear-gradient(180deg,#fffdf8,#f2eadc);
  color:var(--ink);
  padding:24px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.88);
}
.status-row,.customer-line,.total-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.status-row small,.customer-line small,.total-box small{
  display:block;
  color:#7f7466;
  font-weight:750;
}
.status-row strong{font-size:20px}
.pill{
  padding:9px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
}
.pill-green{background:rgba(32,178,107,.12);color:#127a47;border:1px solid rgba(32,178,107,.2)}
.customer-line{
  margin-top:20px;
  justify-content:flex-start;
  border:1px solid rgba(20,18,15,.09);
  background:#fff;
  border-radius:22px;
  padding:14px;
}
.avatar{
  width:48px;height:48px;border-radius:16px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  font-weight:950;
}
.invoice-table{
  margin-top:18px;
  overflow:hidden;
  border:1px solid rgba(20,18,15,.08);
  border-radius:22px;
}
.invoice-table .row{
  display:grid;
  grid-template-columns:1.15fr .62fr .82fr;
  gap:10px;
  align-items:center;
  padding:14px 16px;
  background:#fff;
  border-bottom:1px solid rgba(20,18,15,.07);
  font-weight:850;
}
.invoice-table .row:last-child{border-bottom:none}
.invoice-table .head{
  color:#766a59;
  background:#f8f3e9;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.invoice-table .muted{
  color:#6e6253;
  background:#fffaf0;
}
.total-box{
  margin-top:18px;
  padding:18px;
  border-radius:22px;
  background:#14120f;
  color:#fff;
}
.total-box strong{font-size:28px;letter-spacing:-.04em}
.floating-chip{
  position:absolute;
  display:flex;
  align-items:center;
  gap:9px;
  padding:13px 15px;
  border-radius:999px;
  background:rgba(255,253,248,.9);
  color:var(--ink);
  font-size:13px;
  font-weight:900;
  box-shadow:0 16px 42px rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.8);
}
.floating-chip span{
  width:9px;height:9px;border-radius:999px;background:var(--green);
  box-shadow:0 0 0 6px rgba(32,178,107,.12);
}
.chip-1{right:-28px;top:118px}
.chip-2{left:-36px;bottom:105px}
.logo-strip{
  padding:22px 0;
  border-top:1px solid rgba(20,18,15,.08);
  border-bottom:1px solid rgba(20,18,15,.08);
  background:rgba(255,253,248,.46);
}
.strip-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}
.strip-inner span{
  color:#5d5346;
  font-weight:850;
  border-right:1px solid rgba(20,18,15,.14);
  padding-right:18px;
}
.strip-inner span:last-child{border-right:0;padding-right:0}

.section-head{max-width:760px}
.section-head.centered{text-align:center;margin-inline:auto}
.section-head h2,.split-copy h2,.app-copy h2,.faq-copy h2,.cta-card h2{
  margin:16px 0 14px;
  font-size:clamp(34px,4.3vw,60px);
  line-height:1;
  letter-spacing:-.055em;
}
.section-head p,.split-copy p,.app-copy p,.faq-copy p,.cta-card p{
  color:var(--muted);
  font-size:18px;
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:44px;
}
.feature-card{
  min-height:300px;
  padding:26px;
  border-radius:var(--radius);
  background:rgba(255,253,248,.72);
  border:1px solid rgba(20,18,15,.09);
  box-shadow:var(--soft-shadow);
  position:relative;
  overflow:hidden;
}
.feature-card:before{
  content:"";
  position:absolute;
  inset:auto -60px -70px auto;
  width:180px;height:180px;border-radius:999px;
  background:rgba(205,166,107,.16);
}
.feature-card.dark{
  background:linear-gradient(180deg,#1d1914,#0e0d0b);
  color:#fff;
}
.feature-card.dark p{color:rgba(255,255,255,.68)}
.feature-card.gold{
  background:linear-gradient(135deg,#e9ca8e,#bd9051);
  color:#1b1308;
}
.feature-card .icon{
  width:46px;height:46px;border-radius:16px;
  display:grid;place-items:center;
  background:rgba(20,18,15,.08);
  color:var(--gold-dark);
  font-weight:950;
}
.feature-card.dark .icon{background:rgba(255,255,255,.12);color:var(--gold-2)}
.feature-card h3{
  margin:84px 0 12px;
  font-size:24px;
  line-height:1.05;
  letter-spacing:-.035em;
}
.feature-card p{color:var(--muted);margin:0}

.split-section{padding-top:68px}
.split-grid{
  display:grid;
  grid-template-columns:1fr .86fr;
  gap:42px;
  align-items:center;
}
.steps{margin-top:34px;display:grid;gap:16px}
.step{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  align-items:start;
  padding:18px;
  border:1px solid rgba(20,18,15,.08);
  border-radius:24px;
  background:rgba(255,253,248,.6);
}
.step b{
  width:54px;height:54px;border-radius:18px;
  display:grid;place-items:center;
  background:#14120f;color:var(--gold-2);
  font-size:20px;
}
.step h4{margin:0 0 4px;font-size:18px}
.step p{margin:0;color:var(--muted);font-size:15px}
.flow-card{
  border-radius:36px;
  padding:22px;
  background:#fffdf8;
  border:1px solid rgba(20,18,15,.09);
  box-shadow:var(--shadow);
}
.flow-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 4px 20px;
}
.flow-header strong{font-size:26px;letter-spacing:-.04em}
.flow-header span{
  color:#805f29;
  background:rgba(205,166,107,.16);
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
}
.flow-control{
  padding:18px;
  border-radius:24px;
  background:#f8f2e8;
  margin-bottom:14px;
}
.flow-control label{
  display:block;
  color:#766a59;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:950;
  margin-bottom:11px;
}
.segmented{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.segmented button{
  border:1px solid rgba(20,18,15,.1);
  background:#fff;
  border-radius:16px;
  min-height:46px;
  font-weight:900;
  cursor:default;
}
.segmented .active{
  background:#14120f;
  color:#fff;
  border-color:#14120f;
}
.live-lines{
  border:1px solid rgba(20,18,15,.08);
  border-radius:24px;
  overflow:hidden;
}
.live-lines div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 18px;
  border-bottom:1px solid rgba(20,18,15,.07);
}
.live-lines div:last-child{border-bottom:0}
.live-lines span{color:#655b4f;font-weight:800}
.live-lines b{letter-spacing:-.02em}
.preview-footer{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:14px;
}
.preview-footer button{
  min-height:52px;
  border-radius:18px;
  border:0;
  font-weight:950;
}
.preview-footer button:first-child{background:#eee5d6;color:#2a2218}
.preview-footer button:last-child{background:linear-gradient(135deg,var(--gold-2),var(--gold));color:#1b1308}

.gold-section{padding-top:52px}
.gold-panel{
  border-radius:44px;
  padding:46px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.72), transparent 28%),
    linear-gradient(135deg,#1b1712,#0d0c0b 48%,#2f2416);
  color:#fff;
  box-shadow:0 36px 120px rgba(14,13,11,.34);
  overflow:hidden;
  position:relative;
}
.gold-panel:after{
  content:"";
  position:absolute;
  width:420px;height:420px;
  border-radius:999px;
  background:rgba(205,166,107,.16);
  right:-120px;top:-160px;
}
.gold-panel .section-head{position:relative;z-index:1}
.gold-panel .section-head p{color:rgba(255,255,255,.68)}
.gold-panel .section-kicker{
  color:#ffe4ad;
  border-color:rgba(232,201,141,.26);
  background:rgba(232,201,141,.13);
}
.product-cloud{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:32px;
}
.product-cloud span{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-weight:900;
}
.calc-showcase{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr .86fr;
  gap:26px;
  align-items:end;
  margin-top:44px;
}
.calc-copy h3{
  font-size:34px;
  line-height:1;
  letter-spacing:-.045em;
  margin:0 0 14px;
}
.calc-copy p{color:rgba(255,255,255,.68);font-size:18px;margin:0;max-width:600px}
.calc-card{
  background:#fffdf8;
  color:var(--ink);
  border-radius:30px;
  padding:20px;
  box-shadow:0 30px 80px rgba(0,0,0,.28);
}
.calc-row,.calc-total{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid rgba(20,18,15,.08);
}
.calc-row span,.calc-total span{color:#716659;font-weight:800}
.calc-row b{font-size:18px}
.calc-row.highlight{
  margin:6px -8px;
  padding:14px 8px;
  border-radius:18px;
  background:rgba(205,166,107,.14);
  border-bottom:0;
}
.calc-total{border-bottom:0}
.calc-total strong{font-size:22px;letter-spacing:-.03em}

.module-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:42px;
}
.module-grid article{
  padding:26px;
  border-radius:28px;
  background:rgba(255,253,248,.72);
  border:1px solid rgba(20,18,15,.09);
  box-shadow:var(--soft-shadow);
}
.module-icon{
  width:54px;height:54px;
  display:grid;place-items:center;
  border-radius:18px;
  background:rgba(205,166,107,.14);
  font-size:24px;
}
.module-grid h3{
  margin:24px 0 9px;
  font-size:24px;
  letter-spacing:-.035em;
}
.module-grid p{margin:0;color:var(--muted)}

.app-section{background:rgba(255,253,248,.5);border-block:1px solid rgba(20,18,15,.07)}
.app-grid{
  display:grid;
  grid-template-columns:.82fr 1fr;
  gap:52px;
  align-items:center;
}
.phone-mock{display:grid;place-items:center}
.phone-frame{
  width:320px;
  height:630px;
  border-radius:52px;
  padding:14px;
  background:#12100d;
  box-shadow:0 40px 110px rgba(14,13,11,.28);
  border:1px solid rgba(255,255,255,.14);
  position:relative;
}
.phone-notch{
  position:absolute;
  width:110px;height:28px;
  background:#12100d;
  top:18px;left:50%;
  transform:translateX(-50%);
  border-radius:0 0 18px 18px;
  z-index:2;
}
.phone-screen{
  height:100%;
  border-radius:40px;
  background:linear-gradient(180deg,#fffdf8,#ede2d0);
  padding:62px 20px 20px;
  overflow:hidden;
}
.phone-logo{width:210px;margin:0 auto 26px}
.phone-card{
  padding:22px;
  border-radius:26px;
  color:#fff;
  background:linear-gradient(135deg,#1d1914,#0e0d0b);
}
.phone-card small{display:block;color:rgba(255,255,255,.6);font-weight:800}
.phone-card strong{display:block;font-size:36px;letter-spacing:-.05em;margin:6px 0}
.phone-card span{color:var(--gold-2);font-weight:850}
.phone-list{margin-top:18px;display:grid;gap:10px}
.phone-list span{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(20,18,15,.08);
}
.phone-list em{
  font-style:normal;
  color:#127a47;
  background:rgba(32,178,107,.12);
  padding:5px 9px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
}
.check-list{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:28px}
.check-list span{
  padding:15px 16px;
  border-radius:18px;
  background:#fffdf8;
  border:1px solid rgba(20,18,15,.08);
  font-weight:900;
}
.check-list span:before{
  content:"✓";
  color:#127a47;
  margin-right:9px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:42px;
  align-items:stretch;
}
.price-card{
  padding:28px;
  border-radius:32px;
  background:#fffdf8;
  border:1px solid rgba(20,18,15,.09);
  box-shadow:var(--soft-shadow);
  display:flex;
  flex-direction:column;
}
.price-card.featured{
  background:linear-gradient(180deg,#1d1914,#0e0d0b);
  color:#fff;
  transform:translateY(-12px);
  box-shadow:0 36px 110px rgba(14,13,11,.28);
}
.price-card.featured p,.price-card.featured li{color:rgba(255,255,255,.72)}
.tag{
  align-self:flex-start;
  padding:8px 11px;
  border-radius:999px;
  color:#80602d;
  background:rgba(205,166,107,.14);
  font-weight:950;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.07em;
}
.price-card.featured .tag{color:#ffe0a0;background:rgba(232,201,141,.15)}
.price-card h3{font-size:28px;letter-spacing:-.04em;margin:22px 0 8px}
.price-card p{color:var(--muted);margin:0 0 18px}
.price-card ul{list-style:none;padding:0;margin:0 0 26px;display:grid;gap:12px}
.price-card li{color:#5f5548;font-weight:800}
.price-card li:before{content:"✓";color:#127a47;margin-right:9px}
.price-card .btn{margin-top:auto}

.faq-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:42px;
  align-items:start;
}
.faq-list{display:grid;gap:12px}
details{
  background:#fffdf8;
  border:1px solid rgba(20,18,15,.09);
  border-radius:24px;
  padding:0 20px;
  box-shadow:0 10px 34px rgba(31,24,14,.07);
}
summary{
  list-style:none;
  cursor:pointer;
  padding:20px 0;
  font-weight:950;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
summary::-webkit-details-marker{display:none}
summary:after{
  content:"+";
  width:30px;height:30px;
  border-radius:999px;
  display:grid;place-items:center;
  background:rgba(205,166,107,.14);
  color:var(--gold-dark);
}
details[open] summary:after{content:"−"}
details p{
  margin:0;
  padding:0 0 20px;
  color:var(--muted);
}

.final-cta{padding-top:50px}
.cta-card{
  display:grid;
  grid-template-columns:1fr 430px;
  gap:34px;
  align-items:center;
  padding:44px;
  border-radius:44px;
  color:#fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(232,201,141,.28), transparent 30%),
    linear-gradient(135deg,#1d1914,#0e0d0b);
  box-shadow:0 36px 110px rgba(14,13,11,.32);
}
.cta-card p{color:rgba(255,255,255,.68)}
.cta-card .section-kicker{
  color:#ffe0a0;
  border-color:rgba(232,201,141,.26);
  background:rgba(232,201,141,.12);
}
.demo-form{
  background:#fffdf8;
  color:var(--ink);
  border-radius:30px;
  padding:22px;
  display:grid;
  gap:13px;
}
.demo-form label{display:grid;gap:7px}
.demo-form span{
  color:#685f54;
  font-size:13px;
  font-weight:950;
}
.demo-form input{
  width:100%;
  min-height:50px;
  border-radius:17px;
  border:1px solid rgba(20,18,15,.11);
  padding:0 14px;
  outline:0;
  background:#fff;
}
.demo-form input:focus{
  border-color:rgba(205,166,107,.72);
  box-shadow:0 0 0 4px rgba(205,166,107,.14);
}
.demo-form small{color:#776d60;font-weight:700}

.footer{
  padding:58px 0 26px;
  background:#0e0d0b;
  color:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr repeat(3,.6fr);
  gap:34px;
}
.footer-logo{width:230px;margin-bottom:18px}
.footer p{color:rgba(255,255,255,.62);max-width:420px}
.footer h4{margin:0 0 15px;color:#ffe0a0}
.footer a,.footer span{
  display:block;
  color:rgba(255,255,255,.62);
  margin:9px 0;
  font-weight:700;
}
.footer a:hover{color:#fff}
.footer-bottom{
  margin-top:40px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.5);
  font-size:14px;
}

.toast{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translate(-50%, 120px);
  background:#14120f;
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  padding:14px 18px;
  box-shadow:0 18px 44px rgba(0,0,0,.22);
  z-index:100;
  transition:.28s ease;
  font-weight:800;
  max-width:calc(100% - 32px);
  text-align:center;
}
.toast.show{transform:translate(-50%,0)}



.hero-phone{
  width:340px;
  height:690px;
}
.image-screen{
  padding:0;
  background:linear-gradient(180deg,#f7efe1,#eadfc9);
}
.screen-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.report-phone{
  will-change:transform;
}

@media (max-width:1080px){
  .nav{position:fixed;left:18px;right:18px;top:96px;display:none;flex-direction:column;border-radius:24px;padding:14px;background:#fffdf8;box-shadow:var(--shadow)}
  .nav.open{display:flex}
  .nav a{width:100%;text-align:center}
  .menu-btn{display:block}
  .btn-ghost{display:none}
  .hero-grid,.split-grid,.calc-showcase,.app-grid,.faq-grid,.cta-card{grid-template-columns:1fr}
  .hero-visual{min-height:auto}
  .feature-grid,.module-grid,.pricing-grid{grid-template-columns:repeat(2,1fr)}
  .chip-1{right:8px}
  .chip-2{left:8px}
  .cta-card{padding:32px}
}
@media (max-width:720px){
  .section{padding:70px 0}
  .nav-wrap{height:76px}
  .brand-logo{width:185px}
  .hero{padding-top:58px}
  .hero h1{font-size:48px}
  .hero-lead{font-size:18px}
  .mini-trust,.feature-grid,.module-grid,.pricing-grid,.check-list,.footer-grid{grid-template-columns:1fr}
  .dashboard-card{border-radius:28px;padding:10px}
  .invoice-panel{padding:16px;border-radius:22px}
  .invoice-table .row{grid-template-columns:1fr;gap:3px}
  .floating-chip{display:none}
  .gold-panel,.cta-card{border-radius:30px;padding:24px}
  .preview-footer,.segmented{grid-template-columns:1fr}
  .phone-frame{width:290px;height:580px}
  .footer-bottom{flex-direction:column;align-items:flex-start}
  .strip-inner{justify-content:flex-start}
  .strip-inner span{border-right:0;background:rgba(255,253,248,.8);padding:8px 12px;border-radius:999px}
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* Net anlatım düzenlemesi */
.promo-bar{
  position:relative;
  z-index:60;
  background:linear-gradient(135deg,#17120c,#2b2115 62%,#cda66b);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.promo-inner{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-align:center;
  font-size:14px;
  font-weight:800;
}
.promo-inner strong{color:#ffe0a0;text-transform:uppercase;letter-spacing:.04em}
.promo-inner span{color:rgba(255,255,255,.82)}
.promo-inner a{
  color:#17120c;
  background:#ffe0a0;
  padding:7px 12px;
  border-radius:999px;
  font-weight:950;
  white-space:nowrap;
}
.phone-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 16px;
  border-radius:999px;
  color:#17120a;
  background:rgba(205,166,107,.18);
  border:1px solid rgba(205,166,107,.38);
  font-weight:950;
  white-space:nowrap;
}
.login-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  color:#14100a;
  background:linear-gradient(135deg, var(--gold-2), var(--gold));
  border:1px solid rgba(141,106,49,.22);
  font-weight:950;
  white-space:nowrap;
  box-shadow:0 12px 30px rgba(205,166,107,.24);
  transition:transform .22s ease, box-shadow .22s ease;
}
.login-pill:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(205,166,107,.32);
}
.simple-lead{max-width:720px;color:#61584d}
.clear-bullets span{background:#fffdf8;color:#292017;box-shadow:0 8px 26px rgba(31,24,14,.06)}
.hero-bullets.clear-bullets .hero-check-icon{color:#127a47;margin-right:9px;font-weight:950;font-style:normal}
.hero-actions-wide .btn{min-width:190px}
.simple-stats div{background:rgba(255,253,248,.82)}
.smart-panel .status-row strong{letter-spacing:-.035em;font-size:28px}
.bank-table .row{grid-template-columns:1fr .75fr .95fr}
.main-feature-grid{grid-template-columns:repeat(4,1fr)}
.main-feature-grid .feature-card{min-height:320px}
.main-feature-grid .feature-card h3{margin-top:76px}
.bank-flow-card{overflow:hidden;position:relative}
.bank-flow-card:before{
  content:"";
  position:absolute;
  width:230px;height:230px;border-radius:999px;
  right:-100px;top:-90px;
  background:rgba(205,166,107,.12);
  pointer-events:none;
}
.money-list{display:grid;gap:12px;margin:10px 0 16px;position:relative;z-index:1}
.money-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px 16px;
  align-items:center;
  padding:18px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(20,18,15,.08);
}
.money-row span{color:#5f5548;font-weight:900}
.money-row b{font-size:24px;letter-spacing:-.04em}
.money-row small,
.money-action{
  grid-column:1 / -1;
  color:#7a6d5f;
  font-weight:800;
  background:#f8f2e8;
  padding:9px 11px;
  border-radius:999px;
  width:max-content;
  border:0;
  appearance:none;
  font-family:inherit;
  font-size:13px;
  cursor:default;
}
.money-action{
  color:#2a2218;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  font-weight:950;
}
.money-row.incoming b{color:#127a47}
.money-row.outgoing b{color:#7c4b14}
.result-box{margin-bottom:0;background:#14120f;color:#fff}
.result-box label{color:#e7c883}
.result-box strong{display:block;font-size:20px;line-height:1.25;letter-spacing:-.02em}
.compliance-panel .section-head{max-width:900px}
.compliance-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:34px;
}
.compliance-grid article{
  padding:24px;
  border-radius:28px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(12px);
}
.compliance-grid span{
  display:inline-grid;
  place-items:center;
  width:46px;height:46px;
  border-radius:16px;
  background:rgba(232,201,141,.16);
  color:#ffe0a0;
  font-weight:950;
  margin-bottom:56px;
}
.compliance-grid h3{
  margin:0 0 10px;
  color:#fff;
  font-size:24px;
  letter-spacing:-.035em;
}
.compliance-grid p{margin:0;color:rgba(255,255,255,.68)}
.legal-note{
  position:relative;
  z-index:1;
  margin-top:20px;
  padding:16px 18px;
  border-radius:22px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.74);
  font-weight:750;
}
.legal-note strong{color:#ffe0a0}
.report-phone .phone-card strong{font-size:46px}
.report-screen .phone-list span{font-size:14px}
.clean-check-list span{background:#fffdf8}
.simple-pricing-grid .price-card{min-height:420px}
.cta-phone-box{
  display:inline-grid;
  gap:4px;
  margin-top:22px;
  padding:16px 18px;
  border-radius:22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}
.cta-phone-box span{color:rgba(255,255,255,.62);font-weight:850;font-size:13px}
.cta-phone-box a{color:#ffe0a0;font-weight:950;font-size:24px;letter-spacing:-.03em}


@media (max-width:1080px){
  .phone-pill,.login-pill{display:none}
  .main-feature-grid,.compliance-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:720px){
  .promo-inner{min-height:auto;padding:10px 0;flex-wrap:wrap;line-height:1.25}
  .promo-inner a{width:100%;max-width:260px}
  .hero-actions-wide .btn{width:100%}
  .bank-table .row,.money-row{grid-template-columns:1fr}
  .main-feature-grid,.compliance-grid{grid-template-columns:1fr}
  .compliance-grid span{margin-bottom:34px}
  .cta-phone-box{width:100%}
  .cta-phone-box a{font-size:22px}
}


/* Kobaküs banka entegrasyonları */
.bank-partners{
  padding:24px 0 78px;
  position:relative;
  overflow:hidden;
}
.bank-partner-panel{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  padding:16px 0;
  background:linear-gradient(135deg, rgba(255,253,248,.98), rgba(245,238,226,.95));
  border:1px solid rgba(20,18,15,.08);
  box-shadow:var(--soft-shadow);
}
.bank-partner-panel:before,
.bank-partner-panel:after{
  content:"";
  position:absolute;
  border-radius:999px;
  pointer-events:none;
}
.bank-partner-panel:before{
  width:320px;
  height:320px;
  right:-140px;
  top:-170px;
  background:radial-gradient(circle, rgba(205,166,107,.18), rgba(205,166,107,0) 70%);
}
.bank-partner-panel:after{
  width:240px;
  height:240px;
  left:-100px;
  bottom:-120px;
  background:radial-gradient(circle, rgba(0,0,0,.05), rgba(0,0,0,0) 72%);
}
.bank-marquee{
  position:relative;
  z-index:1;
  overflow:hidden;
  padding:8px 0;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.bank-marquee-track{
  display:flex;
  align-items:center;
  width:max-content;
  gap:18px;
  animation:bankMarquee 42s linear infinite;
  will-change:transform;
}
.bank-logo-set{
  display:flex;
  align-items:center;
  gap:18px;
  flex-shrink:0;
  flex-wrap:nowrap;
}
.bank-logo-card{
  position:relative;
  flex:0 0 182px;
  width:182px;
  height:86px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 20px;
  border-radius:24px;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(20,18,15,.08);
  box-shadow:0 12px 28px rgba(31,24,14,.07);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.bank-logo-card:hover{
  transform:translateY(-6px) scale(1.03);
  border-color:rgba(205,166,107,.4);
  background:#fff;
  box-shadow:0 22px 36px rgba(31,24,14,.14);
}
.bank-logo-card img{
  display:block;
  max-width:132px;
  max-height:48px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.bank-logo-card img.logo-load-failed{
  display:none;
}
.bank-logo-fallback{
  display:none;
  color:#17120a;
  font-weight:950;
  font-size:15px;
  letter-spacing:-.02em;
  text-align:center;
}
.bank-logo-card img.logo-load-failed + .bank-logo-fallback{
  display:block;
}
@keyframes bankMarquee{
  from{transform:translateX(0)}
  to{transform:translateX(calc(-50% - 9px))}
}
@media (max-width:860px){
  .bank-partners{padding:20px 0 62px}
  .bank-partner-panel{border-radius:26px;padding:12px 0}
  .bank-marquee{-webkit-mask-image:none;mask-image:none}
  .bank-marquee-track{gap:14px;animation-duration:34s}
  .bank-logo-set{gap:14px}
  .bank-logo-card{
    flex:0 0 148px;
    width:148px;
    height:72px;
    padding:14px 16px;
    border-radius:20px;
  }
  .bank-logo-card img{max-width:108px;max-height:38px}
}


/* 26+ banka entegrasyon şeridi */
.integration-strip{
  position:relative;
}
.integration-strip-inner{
  justify-content:center;
}
.integration-badge{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:auto;
  min-width:min(100%, 360px);
  padding:14px 28px !important;
  border-radius:999px;
  color:#17120a !important;
  font-weight:950 !important;
  font-size:clamp(16px, 2.2vw, 22px) !important;
  letter-spacing:-.02em;
  text-transform:none !important;
  background:linear-gradient(135deg, var(--gold-2), var(--gold));
  border:1px solid rgba(141,106,49,.22);
  box-shadow:0 18px 42px rgba(205,166,107,.24), inset 0 1px 0 rgba(255,255,255,.55);
}
.integration-badge:before{
  content:"";
  width:9px;
  height:9px;
  border-radius:999px;
  background:#17120a;
  box-shadow:0 0 0 6px rgba(23,18,10,.08);
}
@media (max-width:640px){
  .integration-badge{
    min-width:0;
    width:100%;
    padding:13px 18px !important;
    font-size:16px !important;
  }
}
