/* GEL App Styles */

/* =================== */
/* Typography Classes */
/* =================== */

.h1Bold {
    font-family: Orbitron;
    font-weight: 700;
    font-size: 52px;
    line-height: 64px;
}

.h1SemiBold {
    font-family: Orbitron;
    font-weight: 600;
    font-size: 52px;
    line-height: 72px;
}

.h1Medium {
    font-family: Orbitron;
    font-weight: 500;
    font-size: 52px;
    line-height: 64px;
}

.h1Regular {
    font-family: Orbitron;
    font-weight: 400;
    font-size: 52px;
    line-height: 64px;
}

.h2Bold, .h2SemiBold, .h2Medium, .h2Regular {
    font-family: Orbitron;
    font-size: 44px;
    line-height: 56px;
}

.h2Bold { font-weight: 700; }
.h2SemiBold { font-weight: 600; }
.h2Medium { font-weight: 500; }
.h2Regular { font-weight: 400; }

.h3Bold, .h3SemiBold, .h3Medium, .h3Regular {
    font-family: Orbitron;
    font-size: 40px;
    line-height: 52px;
}

.h3Bold { font-weight: 700; }
.h3SemiBold { font-weight: 600; }
.h3Medium { font-weight: 500; }
.h3Regular { font-weight: 400; }

/* =================== */
/* Theme Variables */
/* =================== */

/* Dark/Light Mode Variables */
:root[data-theme="dark"], [data-theme="dark"] {
    --faq-text: var(--white20);
  --faq-border: var(--gray70);
  --faq-hover-bg: var(--gray90);
  --faq-panel-bg:
    radial-gradient(120% 120% at 0% 0%, var(--gray90), transparent 48%),
    linear-gradient(180deg, var(--black), var(--black)),
    repeating-linear-gradient(0deg,var(--gray90) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, var(--gray90) 0 1px, transparent 1px 24px);
  --bg-color: var(--black);
  --text-color: var(--white);
  --heading-color: var(--white);
  --navbar-bg: var(--black);
  --accent-color: var(--secondary70);
  --surface-1: var(--black);
  --surface-2: var(--black);

  --bs-body-bg: var(--bg-color);
  --bs-body-color: var(--text-color);
  --contract-bg: var(--black);
}
html, body { background: var(--bg-color); color: var(--text-color); }
[data-theme="light"] {
    --bg-color: var(--white);
    --text-color: var(--gray70);
    --navbar-bg: var(--white);
    --accent-color: var(--secondary70);
    --form-bg: var(--white);
    --form-border: var(--white);
    --section-bg: var(--white);
    --card-text: var(--gray70);
    --heading-color: var(--gray70);
}
html[data-theme="dark"] {
  /* ...existing code... */
  --footer-bg: var(--black);
  --footer-text: var(--white);
  --footer-muted: var(--gray20);
  --footer-border: var(--black);
}

/* Global Styles */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

html, body { overflow-x: clip; }
/* Örnek CSS - Gerçek CSS dosyalarınızı buraya taşıyın */

.navbar.bg-white,
.navbar.bg-light,
.bg-white,
.bg-light {
  background-color: var(--navbar-bg) !important;
  color: var(--text-color) !important;
}
.navbar .nav-link,
.navbar .navbar-brand {
  color: var(--text-color) !important;
}

[data-theme="dark"] .navbar-brand img {
    filter: brightness(0) invert(1);
}

.logo {
    height: 40px;
}

.hero-section {
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../resimler/background.png'); */
	background-image:
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Content Styles */
.content-wrapper {
    z-index: 2;
}

.h1SemiBold {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.Display-xlRegular {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* App Store Buttons */
.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 160px;
}

[data-theme="light"] .store-button {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

.store-button:hover {
    background: rgba(29, 181, 132, 0.9);
    border-color: var(--secondary50);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 181, 132, 0.3);
    color: white;
}

.store-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.store-button .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-button .text small {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1;
}

.store-button .text strong {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
}

.mockup-frame {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Responsive */
@media (max-width: 768px) {
    .h1SemiBold {
        font-size: 2.5rem;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .store-button {
        min-width: 140px;
    }
}

/* Agreements Section Styles */

/* Agreements – başlıklar */
.contracts-section { padding: 48px 0; }
.contracts-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--heading-color); /* #333 yerine */
    margin-bottom: 15px;
}

.contracts-desc {
    font-size: 1.2rem;
    color: var(--text-color);    /* #666 yerine */
    opacity: .8;
}
.contract-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--heading-color); /* #333 yerine */
    margin-bottom: 10px;
    text-align: center; 
}

.contract-desc {
    color: var(--text-color);    /* #666 yerine */
    opacity: .85;
    margin-bottom: 15px;
    line-height: 1.5;
    align-self:stretch;
}

/* Kart ızgarası */
.contracts-cards { position: relative; }


/* Kart görünümü */
.contract-card.img-bg{
  position: relative;
  border-radius: 1px;
  border: 1px solid rgba(29,181,132,.25);
  background: var(--contract-bg);
  box-shadow: var(--black), var(--black);
  padding: 50px 22px 50px;
  overflow: hidden;
  isolation: isolate;
}

/* Üst ve alt yeşil oval parıltılar (görsel kullanmadan) */
.contract-card.img-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;                 /* arka planda kalsın */
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}
.contract-card::after{
  bottom: -30%;
  background: var(--contract-bg);
}

/* İçerik katmanı üstte kalsın */
.contract-card > * { position: relative; z-index: 1; }

/* İkon rozeti */
.contract-icon-container{
  width: 100px; height: 100px;
  margin: 2px auto 12px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 20%, rgba(29,181,132,.22), rgba(0,0,0,.35));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.contract-icon{ max-width: 150px; max-height: 150px; }

/* Başlık ve açıklama */
.contract-title{
  color: var(--heading-color, var(--primary50));
  font-weight: 700;
  margin: 8px 0 10px;
}
.contract-desc{
  color: var(--white);
  margin: 0 0 14px;
}

/* Alt buton/bağlantı */
.contract-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--secondary50);
  background: var(--black);
  box-shadow: inset 0 0 0 1px var(--secondary90);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.contract-link:hover{
  background: rgba(29,181,132,.16);
  color: var(--secondary50);
  transform: translateY(-1px);
}
.contract-arrow{ transition: transform .2s ease; }
.contract-link:hover .contract-arrow{ transform: translateX(4px); }

/* Mobil düzen */
@media (max-width: 991.98px){
  .contracts-section{ padding: 40px 0; }
}
.about-section {
    min-height: 50vh;
    padding: 48px 0;
    overflow: hidden;
    
    transition: background-color 0.3s ease;
}
@media (min-width: 992px) {
  .about-section .container { height: 100%; }
  .about-section .row {
    min-height: calc(100vh - 96px); /* padding telafisi */
    align-items: center;            /* dikey ortalama */
  }

/* About Section Styles */
.about-visuals {
    position: relative;
    padding: 40px 0;
}
  .about-left,
  .about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;       /* içerikleri dikey ortala */
  }

  .about-phone-mockup {
    max-height: 72vh;
    width: auto;
    max-width: 100%;
    align-self: center;  
  }
  .about-dock-img {
    max-height: 56vh;
    width: auto;
    max-width: 100%;
    margin-top: 12px;
    align-self: flex-start;        /* solda hizala */
  }


  .about-mini-header {
    display: flex;
    align-items: center;
  }
}
  .about-small-logo { width: clamp(20px, 2vw, 30px); height: auto; }
  .about-mini-title { font-size: clamp(14px, 1.2vw, 16px); }

@media (max-width: 991.98px) {
  .about-section { min-height: auto; padding: 40px 0; }
  .about-right, .about-left { align-items: center; }
  .about-phone-mockup, .about-dock-img { max-height: 48vh; width: 100%; height: auto; }
}
.small-screens {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: flex-start;
}

.app-image { 
   display: block;
   width: 100%; 
   height: auto; 
   object-fit: contain;
   border-radius: 12px; }
.app-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.app-screen {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.main-logo-section {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
}

.big-g-logo {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-letter {
    font-size: 80px;
    font-weight: 700;
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
}

.green-dot {
    width: 20px;
    height: 20px;
    background: var(--secondary50);
    border-radius: 50%;
    position: absolute;
    top: 45px;
    right: 35px;
}

.about-content {
    padding-left: 40px;
}

.about-text {
    margin-bottom: 40px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary50);
    margin-bottom: 20px;
}
.about-title-desc {
  padding-left: 50px;
  padding-right: 50px;
}


.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

.about-phone {
    display: flex;
    justify-content: center;
}

.phone-mockup-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .small-screens {
        justify-content: center;
    }
    
    .main-logo-section {
        justify-content: center;
    }
    
    .g-letter {
        font-size: 60px;
    }
    
    .about-title {
        font-size: 2rem;
    }
}

.how-it-works-section {
    padding: 80px 0;
}
/* ========== SPIRAL + how-it-works-section ========== */
/* Spiral arka planı section'ın arkasına sabitle */
.spiral-how-it-works-section { 
    position: relative;    
    overflow: hidden;
    padding: clamp(60px, 8vw, 120px) 0; }
.how-it-works-content {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 560px) 1fr; /* merkez sütunu büyüt */
  z-index: 1;

  align-items: center;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.spiral-how-it-works-section .phone-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(520px, 58vh, 700px);
  overflow: visible;
}
.spiral-how-it-works-section::before {
  content: "";
  position: absolute;
  inset: 0;                 /* tüm alanı kapla */
  /* background-image: url('../resimler/how-it-works-background-circle.png'); */
  background-image: var(--how-it-works-bg-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: clamp(720px, 85vw, 1600px); /* ekrana göre ölçekle */
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;     /* tıklamayı engelleme */
}
.spiral-how-it-works-section .mockup-frame {
  width: clamp(320px, 32vw, 520px); /* telefon artık küçük kalmaz */
  max-width: none;
  height: auto;
  object-fit: contain;
  z-index: 2;
}

.contracts-section {
    padding: 80px 0;
    background-color: var(--section-bg);
}

.contracts-header {
    margin-bottom: 50px;
}

.contracts-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gray80);
    margin-bottom: 15px;
}

.contracts-desc {
    font-size: 1.2rem;
    color: var(--gray40);
}

.contract-icon-container {
    flex-shrink: 0;
}

.contract-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.contract-content {
    flex-grow: 1;
}

.contract-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--gray80);
    margin-bottom: 10px;
}

.contract-desc {
    color: var(--gray40);
    margin-bottom: 15px;
    line-height: 1.5;
}

.contract-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.contract-link:hover {
    color: var(--blue20);
    text-decoration: none;
}

.contract-arrow {
    transition: transform 0.3s ease;
}

.contract-link:hover .contract-arrow {
    transform: translateX(3px);
}

/* Theme switch styles */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: var(--white40);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: var(--white);
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
}

input:checked + .slider {
    background-color: var(--secondary50);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
/* Contact */
.contact-section { padding: 56px 0; }
.contact-heading { color:var(--secondary50); margin: 0 0 4px; text-align:center; }
.contact-subtitle { color: var(--white40); text-align:center; margin-bottom: 18px; }

.contact-card{
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--gray80);
  background: var(--black);
  box-shadow: 0 10px 30px var(--black), inset 0 0 0 1px var(--black);
  overflow: visible;
}

/* Sol kart üst bilgi alanı */
.contact-left .contact-info { padding: 20px 22px; }
.contact-info-title{ color:var(--secondary50); margin: 0 0 14px; font-weight: 700; }
.contact-list{ list-style:none; margin:0; padding:0; display:grid; gap:14px; }
.contact-list li{ display:flex; align-items:center; gap:10px; color:var(--white); }
.ci-icon{ width:28px; height:28px; border-radius:8px; display:grid; place-items:center; background:var(--black) }

/* Sol kart alt görsel alanı */
.contact-visual{
  position: relative;
  height: clamp(240px, 38vh, 360px);
  background:
    linear-gradient(0deg, var(--black), var(--black) 40%);
  --ov-left: 72%;
  --ov-bottom: 4%;
  --ov-rotate: 0deg;
  --ov-width: clamp(320px, 42%, 420px);

}
.contact-phone{
  position: absolute;
  left: 10%;
  bottom: 50px;  
  height: auto;
  filter: drop-shadow(0 20px 40px var(--black));
  z-index: 1; 
}


/* Sağ kart (form) */
.contact-right{ padding: 22px; }
.contact-form-title{ color:var(--secondary50); text-align:center; margin-bottom: 16px; font-weight:700; }
.form-label{ color: var(--white40); margin-bottom: 6px; }

.input-wrap{ position: relative; }
.input-icon{
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; display:grid; place-items:center;
  background: var(--black); border-radius: 6px;
}
.contact-input{
  background: var(--black); border: 1px solid var(--gray80);
  color: var(--white); border-radius: 10px; padding: 10px 12px 10px 46px;
}
.contact-input:focus{ outline: none; border-color: var(--secondary80); box-shadow: 0 0 0 2px var(--gray80) }

.contact-textarea{
  background: var(--gray80); border: 1px solid var(--gray80);
  color: var(--white); border-radius: 10px; padding: 12px;
  min-height: 140px;
}
.contact-textarea:focus{ outline: none; border-color: var(--secondary80); box-shadow: 0 0 0 2px var(--gray80); }

.contact-submit{
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 18px; border: 0; border-radius: 12px; cursor: pointer;
  color: var(--black); font-weight: 700;
  background: linear-gradient(90deg, var(--secondary50), var(--secondary50));
  box-shadow: 0 10px 24px var(--secondary80), inset 0 0 0 1px var(--gray80);
  transition: transform .12s ease, filter .12s ease;
}
.contact-submit:hover{ transform: translateY(-1px); filter: brightness(1.05); }
.submit-icon{ width: 18px; height: 18px; object-fit: contain; }

@media (max-width: 1199.98px) and (min-width: 992px){
  .contact-visual{
    --ov-left: 62%;
    --ov-bottom: 0%;
    --ov-width: clamp(300px, 46%, 380px);
  }
}
@media (max-width: 991.98px){
  .contact-visual{
    --ov-left: 50%;
    --ov-bottom: -28px;
    --ov-rotate: -16deg;
    --ov-width: clamp(240px, 70vw, 340px);
    height: clamp(300px, 44vh, 420px); /* döndürmeden kaynaklı taşmayı engeller */
  }
  .contact-phone{ left: 50%; transform: translateX(-50%); }
}
@media (max-width: 575.98px){
  .contact-visual{
    --ov-bottom: -16px;
    --ov-rotate: -12deg;
    --ov-width: clamp(220px, 82vw, 320px);
  }
}
/* Mobil */
@media (max-width: 991.98px){
  .contact-visual{
    --ov-left: 50%;
    --ov-bottom: 0%;
    --ov-rotate: -16deg;
    --ov-width: clamp(220px, 60%, 320px);
  }
  .contact-phone{ left: 50%; transform: translateX(-50%);  }  .contact-phone-overlay{ left: 50%; transform: translateX(-50%)rotate(var(--ov-rotate)); bottom: -50px;  }

}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--form-border);
    background: var(--form-bg);
    color: var(--text-color);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--secondary90);
}

.form-input::placeholder {
    color: var(--gray20);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 15px 20px;
    background: var(--secondary50);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    background: var(--secondary50);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--secondary80);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .contact-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
}
@media (max-width: 768px) {
  .contact-section { padding: 60px 0; }
  .contact-form { padding: 32px 20px; min-height: 520px; }
}
/* Footer */

/* Footer (consolidated) */
.site-footer{

  padding: 36px 0 16px;
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  color: var(--footer-text);
}

.footer-top{ align-items: flex-start; }

.footer-brand .brand-name{ color:var(--footer-text); font-weight:700; font-size:22px; }
.footer-brand .brand-desc{ color:var(--foter-muted); margin:6px 0 0; }

.footer-title{ color:var(--secondary50); font-weight:700; font-size:18px; margin:0 0 10px; }

/* Link ve liste stilleri (Bootstrap’ı geçersiz kılar) */
.site-footer .footer-links{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.site-footer .footer-links li{ margin:0; }
.site-footer .footer-links a,
.site-footer .footer-links a:visited{
  color: var(--footer-text) !important;
  opacity: .86;
  text-decoration: none !important;
}
.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus{
  color:var(--accent-color) !important;
  opacity: 1;
  text-decoration: none !important;
}

.footer-social{ display:flex; gap:10px; }
.social-btn{
  width:34px; height:34px; border-radius:8px; display:grid; place-items:center;
  background: var(--gray80);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  transition: transform .12s, background-color .12s;
}
.social-btn:hover{ transform: translateY(-1px); background: var(--gray80); }
.social-btn img{ width:18px; height:18px; object-fit:contain; }

.footer-sep{
  height:1px; margin:18px 0;
  background: linear-gradient(90deg, transparent, var(--gray80), transparent);
}
.footer-bottom{ text-align:center; color: var(--gray20); }

/* Responsive */
@media (max-width: 991.98px){
  .site-footer{ padding: 28px 0 14px; }
}

/* Responsive */
@media (max-width: 991.98px){
  .site-footer{ padding: 28px 0 14px; }
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #2d2d2d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary50);
    transform: translateY(-2px);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--black);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    color: var(--gray20);
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-footer {
        padding: 40px 0 20px 0;
    }
}
.flex-container {
  display: flex;
  justify-content: center; /* Yatay ortalama */
  align-items: center; /* Dikey ortalama */
  height: 100vh; /* Tam ekran yüksekliği */
}
.phone-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px; /* telefon ve çizgiler için alan */
}

.flex-container {
  display: flex;
  justify-content: center; /* Yatay ortalama */
  align-items: center; /* Dikey ortalama */
  height: 100%; /* Sadece kol resminin bulunduğu alan */
}

.mockup-frame {
  max-width: 340px;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 2;
}
.info-box { max-width: 360px; gap: 28px; }
.info-box.left  { align-items: flex-end; text-align: right; }
.info-box.right { align-items: flex-start; text-align: left; }

.info-item h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--secondary50); /* Başlık rengi */
}

.info-item p {
  font-size: 1rem;
  color: var(--white); /* Metin rengi */
  opacity: 0.8;
}

.dotted-line {
  width: 2px;
  height: 100px; /* Çizgi uzunluğu */
  background: repeating-linear-gradient(
    0deg,
    var(--secondary50),
    var(--secondary50) 5px,
    transparent 5px,
    transparent 10px
  );
  margin: 0 auto;
}
.connection-line {
  position: absolute;
  height: 2px;
  width: 0;             /* başlangıçta gizli */
  opacity: 0;
  transition: width .3s ease, opacity .2s ease;
  background: repeating-linear-gradient(
    90deg,
    var(--secondary50),
    var(--secondary50) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 1;
  opacity: .9;
}
.connection-line.line-1 { left: 0; top: 22%; transform: translateX(-100%); }
.connection-line.line-2 { left: 0; top: 62%; transform: translateX(-100%); }
.connection-line.line-3 { left: 100%; transform: none;}
.connection-line.line-4 { left: 100%; transform: none;}
@media (max-width: 992px) {
  .how-it-works-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .connection-line { display: none; } /* mobilde çizgileri gizle */
}


/* Agreements kartlarının arka plan görseli */
.contract-card {
  position: relative;
  background: transparent !important;   /* düz rengi siyah-şeffaf */
  border-radius: 18px;
  border: 1px solid var(--secondary90);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--black), 0 12px 30px var(--black);
}

.contract-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit; /* kart köşeleriyle uyumluysa bırakın */
 /* background-image: url('../resimler/kulanim_kosullari.png');  kendi görseliniz */ 
  background-repeat: no-repeat,no-repeat;
  background-position: center,center;
  background-size: 100% 100%, 100% 100%;; /* kartı doldursun */
  z-index: 0;
  pointer-events: none;
}


.contract-card > * { position: relative; z-index: 1; }

.contract-card > * {
  position: relative;
  z-index: 1; /* metin/görseller üstte kalsın */
}
.contracts-title,
.contract-title { color: var(--secondary50) !important; font-weight: 700; }
.contract-link {
  color: var(--secondary50) !important;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.contract-link:hover { color: var(--secondary50) !important; }
.contract-arrow { transition: transform .25s ease; }
.contract-link:hover .contract-arrow { transform: translateX(4px); }
/*
.contract-card .card,
.contract-card .card-body,
.contract-card [class*="bg-"] { background: transparent !important; } */
.logo-background {
    background-color: var(--black);
    width: 100%;
    height: 100%;
}
  .about-big-logo {
    width: clamp(200px, 50vw, 300px);
    height: auto;
    margin-top: 12px;
    align-self: flex-start;
  }
/* App Gallery */
.app-gallery-section { padding: 48px 0; }
.app-gallery-title { color: var(--heading-color); }

.app-image {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--black);
}

/* Swiper için küçük boşluklar */
.app-gallery-swiper { padding-bottom: 24px; }
.app-gallery-swiper .swiper-slide { padding: 8px; }

/* FAQ – gridli koyu panel ve akordeon görünümü */
.faq-section { padding: 60px 0; }
.faq-title   { color:var(--secondary50); margin-bottom: 6px; }
.faq-section h2{
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.3;
  margin: 0 0 14px;
  font-weight: 700;
}
.faq-section .faq-question h3{
  color: var(--faq-text);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.35;
  margin: 0;
  font-weight: 500;
}
.faq-question:hover{
  background: var(--faq-hover-bg);
}
.faq-answer p{
  color: var(--faq-text);
  opacity: .9;
}

/* Panel */
.faq-container{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--faq-border);
  background:
  var(--faq-panel-bg)
}

/* Satırlar */
.faq-item { border-bottom: 1px solid var(--faq-border); }
.faq-item:last-child { border-bottom: 0; }

/* Soru satırı */
.faq-question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px;
}
.faq-question h3{
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
  font-weight: 500;
}
.faq-question:hover{ background: var(--black); }

/* Sağdaki yuvarlak ikon */
.faq-icon-btn{
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;          /* PNG’nin kendisi görünecek */
  display: grid;
  place-items: center;
  cursor: pointer;
  outline: none;
}
.faq-icon-img{
  width: 100%;
  height: 100%;
  object-fit: contain;              /* daire PNG bozulmasın */
  transition: transform .25s ease;
}
/* Cevap: gizle/göster animasyonu */
.faq-answer{
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-answer{
  max-height: 300px;
  padding: 0 24px 18px;
}
/* + ikonunu döndür */
.faq-item.open .faq-icon-img{ transform: rotate(180deg); }

@media (max-width: 992px){
  .faq-section{ padding: 40px 0; }
  .faq-question{ padding: 18px 16px; }
  .faq-answer{ padding: 0 16px; }
  .faq-item.open .faq-answer{ padding: 0 16px 14px; }
}
/* === Neon Corner (top-right) === */
/* === Neon Corner (top-right & bottom-right) === */
.neon-corner{
  position: absolute;
  right: clamp(10px, 1.6vw, 20px);
  z-index: 2000;
  pointer-events: none;

  --c-offset: 12px;
  --c-color: var(--secondary50);
  --c-thickness: 3px;
  --c-lx: 64px;   /* yatay parça uzunluğu */
  --c-ly: 40px;   /* dikey parça uzunluğu */

  filter:
    drop-shadow(0 0 6px var(--secondary80))
    drop-shadow(0 0 14px var(--secondary90));
}

/* ÜST-SOL */
.neon-corner--tl{ top: var(--c-offset); left: var(--c-offset); }
.neon-corner--tl::before,
.neon-corner--tl::after{ content:""; position:absolute; display:block; top:0; left:0; }
.neon-corner--tl::before{
  height: var(--c-thickness); width: var(--c-lx);
  background: linear-gradient(90deg, transparent 0%, var(--c-color) 45%, transparent 90%);
  background-size: 220% 100%;
  animation: cornerSweepX 1.8s linear infinite, cornerPulse 2.6s ease-in-out infinite;
}
.neon-corner--tl::after{
  width: var(--c-thickness); height: var(--c-ly);
  background: linear-gradient(180deg, transparent 0%, var(--c-color) 45%, transparent 90%);
  background-size: 100% 220%;
  animation: cornerSweepY 1.8s linear infinite, cornerPulse 2.6s ease-in-out infinite;
}

/* ALT-SAĞ */
/* ALT-SAĞ */
.neon-corner--br{ right: var(--c-offset); bottom: var(--c-offset); }
.neon-corner--br::before,
.neon-corner--br::after{ content:""; position:absolute; display:block; right:0; bottom:0; } /* düzeltme: bottom:0 */
.neon-corner--br::before{
  height: var(--c-thickness); width: var(--c-lx);
  background: linear-gradient(90deg, transparent 0%, var(--c-color) 45%, transparent 90%);
  background-size: 220% 100%;
  animation: cornerSweepX 1.8s linear infinite, cornerPulse 2.6s ease-in-out infinite;
}
.neon-corner--br::after{
  width: var(--c-thickness); height: var(--c-ly);
  background: linear-gradient(0deg, transparent 0%, var(--c-color) 45%, transparent 90%);
  background-size: 100% 220%;
  animation: cornerSweepYRev 1.8s linear infinite, cornerPulse 2.6s ease-in-out infinite;
}

/* Animasyonlar */
@keyframes cornerSweepX { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@keyframes cornerSweepY { from { background-position: 0 200%; } to { background-position: 0 -200%; } }
@keyframes cornerSweepYRev { from { background-position: 0 -200%; } to { background-position: 0 200%; } }
@keyframes cornerPulse { 0%,100% { opacity:.85 } 50% { opacity:1 } }

/* Küçük ekranlarda isterseniz gizleyin */
@media (max-width: 991.98px){
  .neon-corner{ display:none; }
}
/* Renk değişkeni */
:root {
  --faq-text: var(--gray70);
  --faq-border: var(--black);
  --faq-hover-bg: var(--black);
  --faq-panel-bg:
    radial-gradient(120% 120% at 0% 0%, rgba(0,120,90,.06), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,1), var(--white)),
    repeating-linear-gradient(0deg,  rgba(0,0,0,.04) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.04) 0 1px, transparent 1px 24px);
  --footer-bg:var(--white);
  --footer-text:var(--black);
  --footer-muted:var(--gray30);
  --footer-border: var(--black);
  --neon: var(--neon);
  --contract-bg: var(--white);
}

/* Çerçeve ve köşeler */
.navbar .neon-frame {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  overflow: visible;
}
.navbar .neon-frame .neon-corner{
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid var(--neon);
  border-radius: 6px;
  pointer-events: none;
  filter: drop-shadow(0 0 6px var(--neon)) drop-shadow(0 0 14px var(--neon));
  left: auto; right: auto; top: auto; bottom: auto; /* global .neon-corner sağ/bottom’u sıfırla */
  opacity: 1;
  transition: transform .25s ease, opacity .2s ease;
  z-index: 4;
}
.navbar .neon-frame > :not(.neon-corner):not(.neon-line) { position: relative; z-index: 2; }
.navbar .neon-corner--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; transform: translate(-6px,-6px); }
.navbar .neon-corner--br { bottom: 0; right: 0; border-left: 0; border-top: 0; transform: translate(6px,6px); }

/* Hover hedef çizgileri */
.navbar .neon-frame .neon-line,
.navbar .neon-frame .neon-line--top,
.navbar .neon-frame .neon-line--bottom{
  position:absolute; left:0; top:0;
  height:2px; width:0;
  background: linear-gradient(90deg, rgba(29,181,132,.05), var(--secondary50), var(--black));
  box-shadow: 0 0 8px var(--secondary80);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-9999px,-9999px);
  transition: transform .25s ease, width .25s ease, opacity .15s ease;
  will-change: transform, width, opacity;
  z-index: 3;
}
.navbar .neon-frame.is-targeting .neon-line { opacity: 1; }
.navbar .neon-frame > :not(.neon-corner):not(.neon-line):not(.neon-line--top):not(.neon-line--bottom){
  position: relative; z-index: 2;
}
/* Küçük ekran uyarlaması */
@media (max-width: 576px) {
  .navbar .neon-frame { padding: 6px 10px; }
  .navbar .neon-corner { width: 16px; height: 16px; }
}

/* Agreements – kart yüksekliği ve kartlar arası boşluk (scoped) */


@media (min-width: 1200px) {
  .contracts-section .contracts-cards { --bs-gutter-x: 1.25rem; }
}
.navbar .neon-corner::before,
.navbar .neon-corner::after {
  display: none !important;
  content: "" !important;
  width: 0 !important;
  height: 0 !important;
  animation: none !important;
}

.contracts-section .contract-card {
  min-height: 300px;      /* kartı uzat */
  display: flex;
  width:100%;
  flex-direction: column;
}
.contracts-section .contract-body{
  margin: auto 0;               /* dikeyde tam orta */
 
  gap: .5rem;
}

/* Link en altta dursun */
.contracts-section .contract-link { margin-top: auto;
    margin-top: auto;        /* altta kalsın */
  align-self: center;      /* öğeyi kart içinde ortala */
  display: inline-flex;    /* ikon/ok ile hizalama */
  gap: .4rem;
  /* alternatif olarak: margin-left/right:auto da kullanabilirsiniz */
  /* margin-left: auto; margin-right: auto; */
 }
.contracts-section .contract-content{
 flex: 1 1 auto;                 /* linkten arta kalan alanı kapla */
  display: flex;
  flex-direction: column;
  justify-content: center;        /* Dikey ortalama */
  align-items: center;            /* Yatay ortalama (bloğun kendisi) */
  gap: .75rem;
  width: 100%;
  max-width: 720px;               /* isteğe bağlı sınır */
  margin: 0 auto;
}
 .contracts-section .contract-body,
.contracts-section .contract-title{
  text-align: left !important; /* row’da text-center olsaydı bile ezilsin */
  align-self: stretch;
}
.contracts-section .contract-desc{
  text-align: justify;            /* iki yana yasla (çok satırda görünür) */
  text-justify: inter-word;
  hyphens: auto;
  overflow-wrap: anywhere;
}
.contracts-section .contract-card{ position: relative; }
.contracts-section .contract-content{
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(100%, 720px);
}
.contracts-section .contract-link{ position: relative; margin-top: auto; }
hr {
  border: none;
  border-top: 1px dotted var(--black);
}
.contract-card.fancy-box{
  width: 100%;
  min-height: 300px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse at top,    var(--fancy-glow-top),    transparent 70%),
    radial-gradient(ellipse at bottom, var(--fancy-glow-bottom), transparent 70%),
    var(--contract-bg) !important;
  border: 1px solid var(--secondary90);
  box-shadow: 0 0 0 1px var(--black), 0 16px 40px var(--black);
  overflow: hidden;
  isolation: isolate;
}
