@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root{
  --bg: #f8f9fa;
  --panel: rgba(0,0,0,.06);
  --panel2: rgba(0,0,0,.10);
  --text: rgba(0,0,0,.93);
  --muted: rgba(0,0,0,.72);
  --muted-soft: rgba(0,0,0,.75);
  --muted-soft2: rgba(0,0,0,.70);
  --muted-soft3: rgba(0,0,0,.85);
  --brand: #ffb400;
  --brand2: #ff7a00;
  --border: rgba(0,0,0,.15);
}

*{ box-sizing: border-box; }

html{
  overflow-x: clip;
}

body{
  margin: 0;
  padding-top: 71px;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: radial-gradient(1100px 600px at 10% 0%, rgba(255,180,0,.08), transparent 60%),
              radial-gradient(900px 520px at 90% 20%, rgba(255,122,0,.07), transparent 55%),
              var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover {
  color: var(--brand2);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text);
}

h1 {
  background: linear-gradient(135deg, var(--text) 0%, var(--brand2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.container{
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-inline: 24px;
}

main{
  padding: 0;
}

header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(248,249,250,.97);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1360px;
  margin: 0 auto;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo{
  display: grid;
  place-items: center;
  overflow: hidden;
}
.logo img{
  width: 150px;
  height: auto;
  object-fit: contain;
}

.brand strong{
  font-size: 15px;
  letter-spacing: .2px;
}
.brand span{
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}
.nav-links a:hover{
  color: var(--brand2);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

@media (max-width: 850px) {
  .menu-toggle {
    display: block;
    z-index: 100;
  }
  
  .nav-links {
    position: fixed;
    top: 71px;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: calc(100vh - 71px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1.5px solid rgba(255,180,0,.15);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.10);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    gap: 12px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
    overflow-y: auto;
  }
  
  .nav-links.is-open {
    transform: translateX(0);
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Mobile menu item cards */
  .nav-links > a:not(.btn),
  .nav-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(0,0,0,0.88);
    background: rgba(0, 0, 0, 0.04);
    border: 1.5px solid rgba(255,180,0,.12);
    transition: all 0.2s ease;
  }

  .nav-links > a:not(.btn):hover,
  .nav-item > a:hover {
    background: rgba(255,180,0,.08);
    border-color: rgba(255,180,0,.25);
    transform: translateY(-1px);
    color: var(--brand2);
  }

  /* Dropdown container */
  .nav-item .dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    display: none;
    padding: 6px 0 6px 14px;
    margin-top: 0;
  }
  
  .nav-item.is-open .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: slideDown 0.3s ease;
  }

  /* Dropdown links */
  .dropdown-menu a {
    padding: 10px 14px;
    border-radius: 10px;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: rgba(0,0,0,0.78);
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
  }

  .dropdown-menu a:hover {
    background: rgba(255,180,0,.08);
    color: var(--brand2);
    border-left-color: var(--brand2);
  }

  /* Call to action & theme toggle container spacing */
  .nav-links > .btn {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }

  .nav-links > button#themeToggle {
    margin-top: auto; /* Push to bottom */
  }

  /* Light Theme overrides for mobile menu */
  html[data-theme="light"] .nav-links {
    background: rgba(255, 255, 255, 0.95);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
  }

  html[data-theme="light"] .nav-links > a:not(.btn),
  html[data-theme="light"] .nav-item > a {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.85);
  }

  html[data-theme="light"] .nav-links > a:not(.btn):hover,
  html[data-theme="light"] .nav-item > a:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
    color: #000;
  }

  html[data-theme="light"] .dropdown-menu a {
    color: rgba(0, 0, 0, 0.65);
  }
  
  html[data-theme="light"] .dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--brand2);
    border-left-color: var(--brand2);
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-item{
  position: relative;
}

.nav-item > a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-caret{
  font-size: 11px;
  opacity: .8;
}

.dropdown-menu{
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1.5px solid rgba(255,180,0,.20);
  border-radius: 12px;
  padding: 8px;
  margin-top: 6px;
  display: none;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  z-index: 40;
}

.nav-item .dropdown-menu::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}

.dropdown-menu a{
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: rgba(0,0,0,.85);
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover{
  background: rgba(255,180,0,.12);
  color: var(--brand2);
}

@media (min-width: 851px) {
  .nav-item:hover .dropdown-menu {
    display: block;
  }
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,180,0,.18);
  background: rgba(255,255,255,.92);
  color: rgba(0,0,0,.92);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .05s ease, background .15s ease, border-color .15s ease, box-shadow 0.2s ease;
}

.btn:hover{
  background: rgba(255,255,255,.98);
  border-color: rgba(255,180,0,.30);
  box-shadow: 0 4px 12px rgba(255,180,0,.15);
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: rgba(255,180,0,.35);
  color: rgba(0,0,0,.92);
}
.btn-primary:hover{
  background: linear-gradient(135deg, #ffc941, #ff8b1f);
  border-color: rgba(255,180,0,.55);
}

.hero{
  padding: 32px 0 28px;
}

.hero-grid{
  display: flex;
  gap: 26px;
  align-items: start;
}
.hero-grid > *:first-child { flex: 1.2; min-width: 0; }
.hero-grid > aside         { flex: 0.8; min-width: 0; }

.eyebrow{
  color: var(--brand2);
  font-weight: 800;
  letter-spacing: .3px;
  font-size: 12px;
  text-transform: uppercase;
}

h1{
  margin: 10px 0 12px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
}

.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.88));
  border: 1px solid rgba(255,180,0,.25);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.hero-card h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(0,0,0,.93);
}
.hero-card p{
  margin: 0 0 16px;
  color: rgba(0,0,0,.75);
  line-height: 1.6;
  font-size: 14px;
  font-weight: 500;
}

.bullets{
  display: grid;
  gap: 10px;
}
.bullet{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(0,0,0,.80);
  font-size: 14px;
  font-weight: 500;
}
.dot{
  margin-top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 4px rgba(255,180,0,.14);
}

.section{
  padding: 26px 0 60px;
}

.section-title{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-title h2{
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}
.section-title p{
  margin: 0;
  color: rgba(0,0,0,.70);
  font-size: 14px;
  font-weight: 500;
}

.grid-4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.plan{
  background: rgba(255,255,255,.96);
  border: 1.5px solid rgba(255,180,0,.20);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 250px;
  box-shadow: 0 6px 20px rgba(0,0,0,.07);
  transition: all 0.3s ease;
}

.plan:hover{
  border-color: rgba(255,180,0,.35);
  box-shadow: 0 10px 32px rgba(0,0,0,.12);
  transform: translateY(-2px);
}

.plan-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.plan h3{
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: rgba(0,0,0,.93);
}

.badge{
  font-size: 12px;
  font-weight: 750;
  color: rgba(0,0,0,.9);
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan p{
  margin: 0;
  color: rgba(0,0,0,.75);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

.price{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(0,0,0,.95);
}
.plan-price{
  display:flex;
  flex-direction:column;
  gap: 3px;
}
.price-original{
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,.65);
  text-decoration: line-through;
  letter-spacing: 0;
}
.price-discounted{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--brand2);
}
.price small{
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(0,0,0,.68);
  margin-top: 4px;
}

.plan.plan-featured{
  background: linear-gradient(135deg, rgba(255,180,0,.15), rgba(255,122,0,.10));
  border: 2px solid rgba(255,180,0,.35);
  box-shadow: 0 8px 32px rgba(255,180,0,.18);
  transform: scale(1.05);
  position: relative;
}

.plan.plan-featured::before{
  content: '★';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(255,180,0,.3);
}

.plan ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(0,0,0,.78);
  font-size: 13.5px;
  line-height: 1.6;
  flex: 1;
  font-weight: 500;
}

.plan li{ margin: 6px 0; }

.form-wrap{
  background: rgba(255,255,255,.96);
  border: 1.5px solid rgba(255,180,0,.18);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label{
  display: block;
  font-size: 13px;
  color: rgba(0,0,0,.80);
  margin-bottom: 6px;
  font-weight: 600;
}

input, textarea, select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,180,0,.20);
  background: rgba(0,0,0,.03);
  color: var(--text);
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

input:focus, textarea:focus, select:focus{
  border-color: var(--brand2);
  background: rgba(255,255,255,.98);
  box-shadow: 0 0 0 4px rgba(255,180,0,.18);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 36px;
}

select option {
  background: #ffffff;
  color: rgba(0,0,0,.92);
  padding: 8px 12px;
}

select option:hover {
  background: rgba(255,180,0,.2);
}

textarea{ resize: vertical; min-height: 90px; }

.full{ grid-column: 1 / -1; }

.form-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.note{
  margin-top: 12px;
  color: rgba(0,0,0,.72);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
}

.alert{
  border: 1.5px solid rgba(255,180,0,.30);
  background: rgba(255,180,0,.10);
  border-radius: 14px;
  padding: 12px;
  color: rgba(0,0,0,.88);
  font-weight: 500;
}

.check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 8px;
  color: rgba(0,0,0,.75);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
}
.check input{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--brand);
}

.footer{
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding: 22px 24px 40px;
  color: rgba(0,0,0,.70);
  font-size: 13px;
  font-weight: 500;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 560px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-section {
    text-align: left !important;
  }
}

.divider{
  height: 1px;
  background: rgba(0,0,0,.12);
  margin: 18px 0;
}

/* Hero slider */

.hero-with-slider{
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}

.hero-slider{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  width: 100%;
  user-select: none;
  touch-action: pan-y;
}

.hero-slider-track{
  position: relative;
  display: grid;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-slide{
  position: relative;
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}

.hero-slide img{
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  position: static;
  -webkit-user-drag: none;
  user-drag: none;
  max-width: 100%;
}

.hero-slide.is-active{
  opacity: 1;
  pointer-events: auto;
}

.hero-slider-dots{
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.hero-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255,255,255,.4);
}

.hero-dot.is-active{
  width: 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

.hero-content{}

@media (max-width: 980px){
  .container{ padding-inline: 18px; }
  .footer{ padding-inline: 18px; }
  .nav{ padding-inline: 18px; }
  .hero-grid{ flex-direction: column; grid-template-columns: 1fr !important; }
  h1{ font-size: 34px; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px){
  .container{ padding-inline: 14px; }
  .footer{ padding-inline: 14px; }
  .nav{ padding-inline: 14px; }
  .grid-4{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
}

.integration-wrap{
  padding: 16px;
}

.integration-slider-wrap{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.integration-slider{
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  height: 220px;
  padding: 6px 4px;
}

.integration-slider::-webkit-scrollbar{
  height: 0;
}

.integration-track{
  display: flex;
  gap: 16px;
  padding: 8px 4px;
}

.integration-card{
  flex: 0 0 220px;
  height: 160px;
  border-radius: 18px;
  border: 1.5px solid rgba(255,180,0,.18);
  background: rgba(255,255,255,.94);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-snap-align: center;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  transition: all 0.3s ease;
}

.integration-card:hover{
  border-color: rgba(255,180,0,.30);
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
  transform: translateY(-1px);
}

html[data-theme="light"] .integration-card{
  background: rgba(0,0,0,.03);
}

.integration-mark{
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.integration-name{
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .2px;
  color: rgba(0,0,0,.92);
}

.integration-nav{
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 20px;
  line-height: 1;
}

html[data-theme="light"] .integration-nav{
  background: rgba(0,0,0,.04);
}

.integration-nav:active{
  transform: translateY(1px);
}

html[data-theme="light"]{
  --bg: #f7f8fb;
  --text: rgba(0,0,0,.88);
  --muted: rgba(0,0,0,.62);
  --muted-soft: rgba(0,0,0,.68);
  --muted-soft2: rgba(0,0,0,.62);
  --muted-soft3: rgba(0,0,0,.78);
  --border: rgba(0,0,0,.12);
}

html[data-theme="light"] body{
  background: radial-gradient(1100px 600px at 10% 0%, rgba(255,180,0,.22), transparent 60%),
              radial-gradient(900px 520px at 90% 20%, rgba(255,122,0,.16), transparent 55%),
              var(--bg);
}

html[data-theme="light"] header{
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

html[data-theme="light"] .logo{
  background: none;
  border: none;
}

html[data-theme="light"] .btn{
  border-color: rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
}
html[data-theme="light"] .btn:hover{
  background: rgba(0,0,0,.07);
  border-color: rgba(0,0,0,.18);
}

html[data-theme="light"] .dropdown-menu{
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}

html[data-theme="light"] .dropdown-menu a:hover{
  background: rgba(0,0,0,.06);
}

html[data-theme="light"] .hero-card{
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.02));
  border: 1px solid rgba(0,0,0,.08);
}

html[data-theme="light"] .plan{
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.08);
}

html[data-theme="light"] .plan.plan-featured{
  background: linear-gradient(135deg, rgba(255,180,0,.08), rgba(255,122,0,.04));
  border: 2px solid rgba(255,180,0,.2);
  box-shadow: 0 0 40px rgba(255,180,0,.08);
}

html[data-theme="light"] .plan ul{
  color: rgba(0,0,0,.74);
}

html[data-theme="light"] .form-wrap{
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.08);
}

html[data-theme="light"] .bullet{
  color: rgba(0,0,0,.76);
}

html[data-theme="light"] input, 
html[data-theme="light"] textarea, 
html[data-theme="light"] select{
  background-color: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.12);
  color: var(--text);
}

html[data-theme="light"] select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

html[data-theme="light"] select option {
  background: white;
  color: rgba(0,0,0,.88);
}

html[data-theme="light"] .divider{
  background: rgba(0,0,0,.08);
}

html[data-theme="light"] .alert{
  border: 1px solid rgba(255,180,0,.35);
  background: rgba(255,180,0,.14);
  color: rgba(0,0,0,.92);
}

.theme-icon{
  width: 18px;
  height: 18px;
  display: none;
  color: currentColor;
}

html[data-theme="light"] .theme-icon-sun{
  display: inline-block;
}

html[data-theme="dark"] .theme-icon-moon{
  display: inline-block;
}

/* Ultra promo modal */
.promo-modal{
  position: fixed;
  inset: 0;
  z-index
      : 1200;
}

.promo-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
}

.promo-modal-card{
  position: relative;
  width: min(92vw, 840px);
  margin: 8vh auto 0;
  background: #ffffff;
  border: 1.5px solid rgba(255,180,0,.20);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.15);
  overflow: hidden;
}

.promo-modal-layout {
  display: flex;
  gap: 24px;
  align-items: center;
}

.promo-modal-visual {
  flex: 0 0 35%;
  min-width: 200px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-modal-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.promo-modal-content {
  flex: 1;
}

@media (max-width: 768px) {
  .promo-modal-layout {
    flex-direction: column;
  }
  .promo-modal-visual {
    flex: 0 0 auto;
    width: 100%;
    max-height: 200px;
  }
}

.promo-modal-card h3{
  margin: 8px 0 10px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: rgba(0,0,0,.93);
}

.promo-modal-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,180,0,.15);
  background: rgba(0,0,0,.04);
  color: rgba(0,0,0,.88);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.promo-modal-close:hover{
  background: rgba(255,180,0,.10);
  border-color: rgba(255,180,0,.25);
}

.promo-modal-text{
  color: rgba(0,0,0,.75);
  margin: 0 0 10px;
  font-weight: 500;
}

.promo-modal-price-wrap{
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin: 12px 0 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,180,0,.12);
  border: 1px solid rgba(255,180,0,.55);
  box-shadow: 0 10px 24px rgba(255,140,0,.22);
  position: relative;
  overflow: visible;
}

.promo-modal-discount{
  position: absolute;
  top: -12px;
  right: -10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .35px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(0,0,0,.92);
  background: linear-gradient(135deg, #ffe27d, #ff9f2f);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 8px 18px rgba(255,160,0,.38);
  animation: pulsePromo 1.8s ease-in-out infinite;
}

.promo-modal-price-old{
  font-size: 13px;
  color: rgba(0,0,0,.68);
  text-decoration: line-through;
  font-weight: 700;
}

.promo-modal-price-new{
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
  color: #ffd27a;
}

.promo-modal-tags{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0 12px;
}

.promo-tag{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(0,0,0,.9);
  background: linear-gradient(135deg, #ffc94b, #ff9b33);
}

.promo-tag-strong{
  font-size: 13px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #ffe07a, #ff9a1a);
  box-shadow: 0 8px 18px rgba(255,156,26,.32);
}

.promo-tag-icon{
  font-size: 14px;
  line-height: 1;
}

.promo-modal-points{
  display: grid;
  gap: 6px;
  color: rgba(0,0,0,.78);
  font-size: 14px;
  font-weight: 500;
}

.promo-modal-actions{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

html[data-theme="light"] .promo-modal-card{
  background: #ffffff;
}

html[data-theme="light"] .promo-modal-close{
  background: rgba(0,0,0,.05);
}

html[data-theme="light"] .promo-modal-points{
  color: rgba(0,0,0,.78);
}

html[data-theme="light"] .promo-modal-price-wrap{
  background: rgba(255,180,0,.18);
}

html[data-theme="light"] .promo-modal-price-new{
  color: #9a4f00;
}

html[data-theme="light"] .promo-modal-discount{
  border-color: rgba(0,0,0,.18);
}

@keyframes pulsePromo{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.06); }
  100%{ transform: scale(1); }
}

.plan-img-wrap{
  width: 100%;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,180,0,.10), rgba(255,122,0,.07));
  border: 1px solid rgba(255,180,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.plan:hover .plan-img{
  transform: scale(1.04);
}

.plan-desc{
  margin: 0;
  color: rgba(0,0,0,.72);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

.plan-features{
  margin: 0;
  padding-left: 18px;
  color: rgba(0,0,0,.78);
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
  font-weight: 500;
}

.plan-features li{ margin: 5px 0; }

.logo-slogan {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.btn-primary:hover{
      text-decoration: none;  
      color:white;
}
.nav .btn-primary:hover{
      text-decoration: none;  
      color:white;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 28px 24px;
}

.feature-card-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand2);
    text-transform: uppercase;
    letter-spacing: .3px;
    margin: 0 0 6px;
}

.feature-card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 12px;
    line-height: 1.25;
}

.feature-card-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    font-weight: 500;
}

.feature-card-divider {
    width: 40px;
    height: 3px;
    border-radius: 3px;
    margin-bottom: 16px;
}

@media (max-width: 980px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ── FAQ / Sıkça Sorulan Sorular ─────────────────── */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: start;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(255,180,0,.4);
}

.faq-item.is-open {
  background: white;
  border-color: var(--brand);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-item.is-open .faq-question {
  color: #000;
  font-weight: 700;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: transform 0.3s, color 0.2s;
}

.faq-icon::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s, border-color 0.2s;
}

.faq-item.is-open .faq-icon {
  color: #000;
}

.faq-item.is-open .faq-icon::before {
  transform: rotate(-135deg) translate(-2px, 2px);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 14px 20px 20px;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(0,0,0,.80);
  border-top: 1px solid rgba(0,0,0,.15);
}

html[data-theme="light"] .faq-item {
  background: #fff;
  border-color: rgba(0,0,0,.10);
}

html[data-theme="light"] .faq-item.is-open {
  background: #fff;
  border-color: var(--brand);
}

html[data-theme="light"] .faq-answer-inner {
  border-top-color: rgba(0,0,0,.12);
}

@media (max-width: 700px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
  .faq-question {
    font-size: 14px;
    padding: 16px;
  }
  .faq-answer-inner {
    padding: 12px 16px 18px;
  }
}
