/* Yonca Lex Note - Premium LegalTech Landing */

:root{
  --ll-green-900:#1B5E20;
  --ll-green-700:#2E7D32;
  --ll-green-600:#43A047;
  --ll-green-500:#25D366;
  --ll-ink:#0B1220;
  --ll-muted:#4B5563;
  --ll-border:rgba(15,23,42,.10);
  --ll-surface:#FFFFFF;
  --ll-hero:#191F2A; /* antrasit */
  --ll-hero-2:#0F1520;
  --ll-white:#FFFFFF;
  --ll-header-offset: 120px;
}

html{ scroll-behavior:smooth; }
body{
  background: var(--ll-surface);
  color: var(--ll-ink);
}

/* Sticky header */
.ll-header{
  position:sticky;
  top:0;
  z-index:60;
  background: #fff;
}
.ll-nav{
  transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
  background: #fff !important;
  border-bottom:1px solid rgba(15,23,42,.06) !important;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.ll-header.is-scrolled .ll-nav{
  background: #fff !important;
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
  border-bottom:1px solid rgba(15,23,42,.10) !important;
}

.ll-brand{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:900;
  color: var(--ll-ink) !important;
  letter-spacing:.2px;
}
.ll-logo{
  height:60px;
  display:block;
  object-fit:contain;
}

.ll-link{
  color: rgba(11,18,32,.78) !important;
  font-weight:650;
}
.ll-link:hover{ color: var(--ll-green-700) !important; }

.btn-ll-primary{
  background: linear-gradient(135deg, var(--ll-green-700), var(--ll-green-600));
  border: 1px solid rgba(46,125,50,.30);
  color: #fff;
  font-weight:800;
  padding: .7rem 1.1rem;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(46,125,50,.18);
}
.btn-ll-primary:hover{ filter:brightness(1.03); color:#fff; }

.btn-ll-outline{
  background:#fff;
  border:1px solid rgba(46,125,50,.28);
  color: var(--ll-green-700);
  font-weight:850;
  padding: .7rem 1.1rem;
  border-radius: 14px;
}
.btn-ll-outline:hover{
  background: rgba(46,125,50,.06);
  color: var(--ll-green-700);
}

/* Hero */
.ll-hero{
  background: radial-gradient(900px 380px at 10% 10%, rgba(67,160,71,.20), transparent 60%),
              radial-gradient(760px 320px at 90% 0%, rgba(37,211,102,.12), transparent 55%),
              linear-gradient(180deg, var(--ll-hero), var(--ll-hero-2));
  color:#fff;
  padding: 78px 0 50px;
}
.ll-hero-kicker{
  display:inline-flex;
  gap:.55rem;
  align-items:center;
  padding:.45rem .9rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight:800;
  color: rgba(255,255,255,.88);
}
.ll-hero-kicker-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--ll-green-600), var(--ll-green-500));
  box-shadow: 0 0 0 6px rgba(67,160,71,.18);
  animation: ll-kicker-blink 1.4s ease-in-out infinite;
}
@keyframes ll-kicker-blink{
  0%, 100%{ opacity: 1; box-shadow: 0 0 0 6px rgba(67,160,71,.22); }
  50%{ opacity: .35; box-shadow: 0 0 0 3px rgba(67,160,71,.08); }
}
@media (prefers-reduced-motion: reduce){
  .ll-hero-kicker-dot{ animation: none; }
}

.ll-hero-title{
  margin-top: 18px;
  font-weight: 950;
  letter-spacing: -1px;
  font-size: clamp(2.2rem, 4.3vw, 3.5rem);
  line-height: 1.05;
}
.ll-hero-lead{
  margin-top: 16px;
  max-width: 60ch;
  color: rgba(255,255,255,.78);
  font-weight: 650;
  line-height: 1.7;
  font-size: 1.06rem;
}

.ll-hero-actions{
  margin-top: 26px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.ll-hero-visual{
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 18px;
  position:relative;
  overflow:hidden;
  min-height: 360px;
}
.ll-hero-visual::after{
  content:"";
  position:absolute;
  inset:-80px -120px auto auto;
  width:260px;
  height:260px;
  background: radial-gradient(circle at 30% 30%, rgba(67,160,71,.55), transparent 55%);
  pointer-events:none;
}
.ll-visual-row{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.ll-visual-icons{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
.ll-visual-icon{
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding: 14px;
}
.ll-visual-icon svg{
  width:34px;
  height:34px;
}
.ll-visual-icon .ll-vi-accent{ color: var(--ll-green-600); }

.ll-hero-values{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.ll-value{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 14px;
}
.ll-value-top{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:950;
}
.ll-value-ico{
  width:34px; height:34px;
  border-radius: 14px;
  background: rgba(67,160,71,.14);
  border:1px solid rgba(67,160,71,.22);
  display:flex;
  align-items:center;
  justify-content:center;
}
.ll-value-ico svg{ width:18px; height:18px; color: var(--ll-green-600); }
.ll-value-text{
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  font-weight:650;
  line-height:1.6;
}

/* Sections */
.ll-section{
  padding: 70px 0;
  scroll-margin-top: var(--ll-header-offset);
}
.ll-section-alt{
  background: linear-gradient(135deg, rgba(241,248,233,.95) 0%, rgba(255,255,255,1) 60%, rgba(67,160,71,.04) 100%);
  border-top: 1px solid rgba(46,125,50,.10);
  border-bottom: 1px solid rgba(46,125,50,.10);
}
.ll-section-alt2{
  background: linear-gradient(135deg, rgba(67,160,71,.08) 0%, rgba(255,255,255,1) 55%, rgba(37,211,102,.05) 100%);
  border-top: 1px solid rgba(46,125,50,.10);
  border-bottom: 1px solid rgba(46,125,50,.10);
}
#ozellikler,
#nasil-calisir,
#kimler-icin,
#avantajlar,
#sss,
#iletisim,
#hakkimizda,
#yonca-ik{
  scroll-margin-top: var(--ll-header-offset);
}
.ll-section-title{
  font-weight: 950;
  letter-spacing: -0.6px;
  font-size: 2.05rem;
  line-height:1.1;
  color: var(--ll-ink);
  display:block;
  visibility:visible;
  opacity:1;
}
.ll-section-subtitle{
  margin-top: 10px;
  color: var(--ll-muted);
  font-weight: 650;
  line-height: 1.7;
}
.ll-section-head{ margin-bottom: 26px; }

.ll-ecosystem-card{
  display:grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 0;
  border:1px solid rgba(46,125,50,.18);
  border-radius: 24px;
  overflow:hidden;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15,23,42,.08);
}
.ll-ecosystem-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 14px;
  padding: 28px 22px;
  background:
    radial-gradient(420px 220px at 30% 20%, rgba(164,230,57,.18), transparent 60%),
    linear-gradient(180deg, #0B1220 0%, #111827 100%);
  text-align:center;
}
.ll-ecosystem-logo{
  width: min(240px, 100%);
  height: auto;
  display:block;
  object-fit:contain;
}
.ll-ecosystem-brand-note{
  margin:0;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.5;
  max-width: 22ch;
}
.ll-ecosystem-copy{
  padding: 28px 26px;
  background: linear-gradient(135deg, #F1F8E9 0%, #FFFFFF 58%, rgba(67,160,71,.05) 100%);
}
.ll-ecosystem-badge{
  display:inline-flex;
  padding:6px 12px;
  border-radius:999px;
  background: rgba(46,125,50,.10);
  border:1px solid rgba(46,125,50,.18);
  color: var(--ll-green-700);
  font-weight: 900;
  font-size: .9rem;
}
.ll-ecosystem-title{
  margin-top: 14px;
  font-weight: 950;
  font-size: 1.45rem;
  color: var(--ll-ink);
}
.ll-ecosystem-text{
  margin-top: 10px;
  color: var(--ll-muted);
  font-weight: 650;
  line-height: 1.7;
  max-width: 70ch;
}
.ll-ecosystem-text a{
  color: var(--ll-green-700);
  font-weight: 850;
  text-decoration: underline;
}
.ll-ecosystem-list{
  margin: 14px 0 0;
  padding-left: 1.15rem;
  color: var(--ll-muted);
  font-weight: 700;
  line-height: 1.7;
}
.ll-ecosystem-outline{
  background:#fff;
}
@media (max-width: 991px){
  .ll-ecosystem-card{
    grid-template-columns: 1fr;
  }
  .ll-ecosystem-brand{
    padding: 24px 18px;
  }
}

.ll-grid-8{
  display:grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: 14px;
}
.ll-card{
  grid-column: span 3;
  border-radius: 20px;
  border:1px solid var(--ll-border);
  background:#fff;
  padding: 18px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow: 0 10px 30px rgba(15,23,42,.03);
}
.ll-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15,23,42,.06);
  border-color: rgba(46,125,50,.28);
}
.ll-card-ico{
  width:44px;
  height:44px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(46,125,50,.08);
  border: 1px solid rgba(46,125,50,.20);
}
.ll-card-ico svg{ width:22px; height:22px; color: var(--ll-green-700); }
.ll-card-title{
  margin-top: 14px;
  font-weight: 950;
  font-size: 1.05rem;
}
.ll-card-text{
  margin-top: 10px;
  color: var(--ll-muted);
  font-weight: 650;
  line-height:1.7;
}

.ll-steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.ll-step{
  border-radius: 22px;
  border:1px solid var(--ll-border);
  background:#fff;
  padding: 18px;
}
.ll-step-num{
  font-weight: 980;
  color: var(--ll-green-600);
  font-size: 1.6rem;
  letter-spacing:-.5px;
}
.ll-step-title{
  margin-top: 10px;
  font-weight: 950;
}
.ll-step-text{
  margin-top: 10px;
  color: var(--ll-muted);
  font-weight:650;
  line-height:1.7;
}

.ll-group-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.ll-group-card{
  border-radius: 22px;
  border:1px solid var(--ll-border);
  background:#fff;
  padding: 18px;
}
.ll-group-title{ font-weight: 950; font-size:1.1rem; }
.ll-group-text{ margin-top: 10px; color: var(--ll-muted); font-weight:650; line-height:1.7; }

.ll-advantages{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 18px;
}
.ll-badge-adv{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius: 999px;
  padding: 10px 14px;
  border:1px solid rgba(46,125,50,.22);
  background: rgba(46,125,50,.06);
  font-weight: 800;
  color: rgba(27,94,32,.95);
}
.ll-badge-adv svg{ width:18px; height:18px; color: var(--ll-green-700); }

.ll-cta{
  background: linear-gradient(180deg, var(--ll-hero), var(--ll-hero-2));
  color:#fff;
  padding: 70px 0;
}
.ll-cta-box{
  border-radius: 26px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.ll-cta-title{ font-weight: 980; font-size: 2rem; letter-spacing:-.6px; }
.ll-cta-text{ margin-top: 12px; color: rgba(255,255,255,.78); font-weight:650; line-height:1.7; }
.ll-cta-note{ margin-top: 10px; color: rgba(255,255,255,.62); font-weight:650; }

/* Accordion */
.ll-accordion .accordion-item{
  border: none;
  background: transparent;
  margin-bottom: 12px;
}
.ll-accordion .accordion-button{
  border-radius: 18px !important;
  background: rgba(46,125,50,.06);
  border:1px solid rgba(46,125,50,.20);
  color: var(--ll-ink);
  font-weight: 900;
  box-shadow:none;
}
.ll-accordion .accordion-button:not(.collapsed){
  color: var(--ll-ink);
  background: rgba(46,125,50,.10);
}
.ll-accordion .accordion-body{
  color: var(--ll-muted);
  font-weight: 650;
  line-height: 1.7;
}

/* Footer */
.ll-footer{
  padding: 36px 0 10px 0;
  border-top: 1px solid var(--ll-border);
  background: #fff;
}
.ll-footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.ll-footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 950;
}
.ll-footer-brand img{ height:60px; object-fit:contain; }
.ll-footer-slogan{
  margin-top: 10px;
  color: var(--ll-muted);
  font-weight: 650;
  line-height:1.7;
}
.ll-footer-nav{
  display:grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 22px 40px;
  align-items:start;
}
.ll-footer-group{
  display:flex;
  flex-direction:column;
  gap: 8px;
  min-width: 0;
}
.ll-footer-group-title{
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ll-muted);
  margin-bottom: 4px;
}
.ll-footer-link{
  color: rgba(11,18,32,.78);
  font-weight:700;
  text-decoration:none;
  line-height: 1.45;
}
.ll-footer-link:hover{ color: var(--ll-green-700); text-decoration:underline; }
.ll-footer-link-btn{
  appearance:none;
  background:transparent;
  border:0;
  padding:0;
  margin:0;
  text-align:left;
  cursor:pointer;
  font:inherit;
}
.ll-footer-bottom{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--ll-border);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap: 10px 18px;
}
.ll-footer-copy,
.ll-footer-meta{
  margin: 0;
  color: var(--ll-muted);
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.5;
}
.ll-footer-meta a{
  color: var(--ll-green-700);
  font-weight: 750;
  text-decoration:none;
}
.ll-footer-meta a:hover{ text-decoration:underline; }

.ll-legal-modal .modal-content{
  border:1px solid rgba(46,125,50,.16);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
}
.ll-legal-modal .modal-header{
  border-bottom:1px solid rgba(46,125,50,.12);
  padding: 1rem 1.25rem;
}
.ll-legal-modal .modal-title{
  font-size: 1.25rem;
  font-weight: 950;
  color: var(--ll-ink);
}
.ll-legal-modal .modal-body{
  padding: 1.25rem;
  color: var(--ll-muted);
  font-weight: 650;
  line-height: 1.7;
}
.ll-legal-modal .ll-modal-lead{
  color: var(--ll-ink);
  font-weight: 800;
  margin-bottom: 1rem;
}
.ll-legal-content h3{
  margin-top: 1.15rem;
  margin-bottom: .45rem;
  font-size: 1rem;
  font-weight: 900;
  color: var(--ll-ink);
}
.ll-legal-content p,
.ll-legal-content li{
  margin-bottom: .55rem;
}
.ll-legal-content ul{
  padding-left: 1.15rem;
  margin-bottom: .75rem;
}
.ll-legal-content strong{
  color: var(--ll-ink);
  font-weight: 800;
}

/* Error page */
.ll-error{
  min-height: 52vh;
  display:flex;
  align-items:center;
}
.ll-error-card{
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 12px 0 28px;
}
.ll-error-code{
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  font-weight: 950;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, var(--ll-green-700), var(--ll-green-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ll-error-title{
  margin-top: 12px;
  font-weight: 950;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--ll-ink);
}
.ll-error-desc{
  margin-top: 12px;
  color: var(--ll-muted);
  font-weight: 650;
  line-height: 1.7;
}
.ll-error-actions{
  margin-top: 22px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:center;
}
.ll-error-meta{
  margin-top: 22px;
  font-size: .85rem;
  color: var(--ll-muted);
}
.ll-error-meta code{
  font-size: .8rem;
  color: rgba(11,18,32,.72);
}

@media (max-width: 991px){
  .ll-card{ grid-column: span 6; }
  .ll-group-cards{ grid-template-columns: 1fr; }
  .ll-steps{ grid-template-columns: 1fr; }
  .ll-hero-values{ grid-template-columns: 1fr; }
  .ll-footer-nav{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 28px; }
}

@media (max-width: 575px){
  .ll-footer-nav{ grid-template-columns: 1fr; }
  .ll-footer-inner{ flex-direction: column; }
}

/* Floating Action Buttons (yoncaik.com uyumlu) */
.floating-action-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}
.fab-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
.fab-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.fab-label {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateX(10px);
  pointer-events: none;
}
.fab-item:hover .fab-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.fab-item:hover .fab-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.fab-whatsapp .fab-icon { background-color: #25D366; }
.fab-email .fab-icon { background-color: #007bb5; }
.fab-phone .fab-icon { background-color: #0ea5e9; }
.fab-scroll .fab-icon { background-color: #4b5563; }
#scroll-to-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  padding: 0;
}
#scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fab-whatsapp .fab-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  z-index: -1;
  animation: fab-pulse 2s infinite;
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 768px) {
  .floating-action-buttons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  .fab-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .fab-label { display: none; }
}

