@import url("theme.css");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t1);
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  background: var(--ac);
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--ac-rgb), 0.017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--ac-rgb), 0.017) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

h3 {
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
}

/* NAV */
.navbar {
  position: relative;
  z-index: 1000;
  height: var(--nav);
  border-bottom: 1px solid var(--brd);
  background: var(--bg);
  overflow: visible;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  position: relative;
  overflow: visible;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--t2);
  padding: 7px 13px;
  border-radius: var(--rs);
  transition: var(--tr);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ac);
  background: var(--ag);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  border-radius: var(--rs);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: var(--tr);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -15%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle, rgba(var(--ac-rgb), 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 36px;
  padding-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ag);
  border: 1px solid var(--bra);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font);
  color: var(--ac);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--ac);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.hero-title em {
  font-style: normal;
  color: var(--ac);
}

.hero-desc {
  color: #D7DEEC;
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 22px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ac);
  color: #fff;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--rs);
  transition: var(--tr);
}

.btn-primary:hover {
  background: var(--link-hover);
  transform: translateY(-2px);
  box-shadow: var(--sa);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--t1);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--rs);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: var(--tr);
}

.btn-secondary:hover {
  border-color: var(--bra);
  color: var(--ac);
  background: var(--ag);
}

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--font);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ac);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.78rem;
  color: #D0D7E8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 500px;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--brd);
  background: var(--bg3);
  content-visibility: visible;
}

/* COMMON */
section {
  padding: 96px 0;
  position: relative;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ac);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.sec-label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--ac);
  border-radius: 2px;
}

.sec-title {
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.sec-desc {
  color: #D7DEEC;
  font-size: 1rem;
  font-weight: 500;
  max-width: 520px;
}

/* PACKAGES */
.pkg-sec {
  background: var(--bg);
}

.hero + .pkg-sec {
  padding-top: 36px;
}

.pkg-head {
  text-align: center;
  margin-bottom: 40px;
}

.pkg-head .sec-label {
  justify-content: center;
}

.pkg-head .sec-desc {
  margin: 0 auto;
}

.pkg-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.pkg-gallery:last-child {
  margin-bottom: 0;
}

.pkg-thumb {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--tr);
}

.pkg-thumb:hover {
  transform: translateY(-4px);
}

.pkg-thumb-static {
  cursor: default;
}

.pkg-thumb-static:hover {
  transform: none;
}

.pkg-thumb-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--brd);
  background: var(--bg3);
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 500px;
  margin: 0 auto;
}

.pkg-thumb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pkg-thumb:hover .pkg-thumb-media {
  border-color: var(--bra);
  box-shadow: var(--sa);
}

.pkg-thumb:hover .pkg-thumb-media img {
  transform: scale(1.04);
}

.pkg-thumb-meta {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 12px 14px 13px;
  text-align: center;
  font-family: var(--font);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(var(--ac-rgb), 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--brd);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color var(--tr), box-shadow var(--tr);
}

.pkg-thumb:hover .pkg-thumb-meta {
  border-color: var(--bra);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 22px rgba(0, 0, 0, 0.22);
}

.pkg-thumb-line {
  display: block !important;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  white-space: normal;
  letter-spacing: 0.2px;
}

.pkg-thumb-line-1 {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--t1);
}

.pkg-thumb-line-2 {
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--t2);
}

.pkg-thumb-media-lg + .pkg-thumb-meta,
.pkg-thumb-media-lg ~ .pkg-thumb-meta {
  max-width: 1000px;
}

.pkg-sec-alt {
  background: var(--bg2);
}

.pkg-gallery-alt {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
}

.pkg-gallery-wide {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 0;
}

.pkg-thumb-media-lg {
  max-width: 1000px;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.pkg-thumb-alt {
  gap: 8px;
  padding: 12px;
  border-radius: 18px;
  background: var(--bg3);
  border: 1px solid var(--brd);
}

.pkg-thumb-alt:hover {
  border-color: var(--bra);
  box-shadow: var(--sa);
  transform: translateY(-4px);
}

.pkg-thumb-alt .pkg-thumb-media {
  border-radius: 12px;
  max-width: none;
}

.pkg-thumb-alt .pkg-thumb-meta {
  max-width: none;
  margin-top: 2px;
  padding: 10px 12px 11px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(var(--ac-rgb), 0.1) 0%, rgba(7, 9, 15, 0.35) 100%);
}

.pkg-thumb-alt .pkg-thumb-line-1 {
  font-size: 1.12rem;
  color: var(--t1);
}

.pkg-thumb-alt .pkg-thumb-line-2 {
  font-size: 0.86rem;
  color: var(--t2);
}

.how-sec {
  background: var(--bg2);
}

.how-sec .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.how-intro {
  margin-bottom: 44px;
}

.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 20px;
  padding-bottom: 26px;
}

.step:last-child {
  padding-bottom: 0;
}

.step-l {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--ag);
  border: 1px solid var(--bra);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ac);
}

.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--bra), transparent);
  margin-top: 7px;
  min-height: 26px;
}

.step:last-child .step-line {
  display: none;
}

.step-r h4 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 9px;
}

.step-r p {
  font-size: 0.84rem;
  color: var(--t2);
  line-height: 1.65;
}

.req-title {
  margin-bottom: 28px;
}

.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.req-card {
  background: var(--bg3);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  transition: var(--tr);
}

.req-card:hover {
  border-color: var(--bra);
}

.req-ico {
  width: 40px;
  height: 40px;
  background: var(--ag);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.req-t h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.req-t p {
  font-size: 0.79rem;
  color: var(--t2);
}

/* RESELLER */
.res-sec {
  background: var(--bg);
}

.res-sec .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.res-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}

.res-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg3);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  transition: var(--tr);
}

.res-item:hover {
  border-color: var(--bra);
  background: var(--bg3h);
}

.res-ico {
  width: 36px;
  height: 36px;
  background: var(--ag);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ac);
  font-size: 0.88rem;
  flex-shrink: 0;
}

.res-item p {
  font-size: 0.85rem;
  color: var(--t2);
  margin-top: 3px;
}

.res-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
}

.profit-box {
  background: var(--bg3);
  border: 1px solid var(--bra);
  border-radius: 22px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.profit-box::before {
  content: "";
  position: absolute;
  top: -35%;
  right: -15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--ag), transparent 68%);
  pointer-events: none;
}

.profit-lbl {
  font-size: 0.74rem;
  color: var(--t3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 9px;
}

.profit-pct {
  font-family: var(--font);
  font-size: 4.6rem;
  font-weight: 700;
  color: var(--ac);
  line-height: 1;
  margin-bottom: 7px;
}

.profit-desc {
  color: var(--t2);
  font-size: 0.9rem;
  margin-bottom: 26px;
}

.profit-ex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  background: var(--bg2);
  border-radius: var(--rs);
  font-size: 0.83rem;
  margin-bottom: 8px;
}

.profit-ex:last-child {
  margin-bottom: 0;
}

.pe-lbl {
  color: var(--t2);
}

.pe-val {
  font-family: var(--font);
  font-weight: 700;
  color: var(--ac);
  white-space: nowrap;
}

/* FAQ */
.faq-sec {
  background: var(--bg2);
}

.faq-sec .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.faq-cta {
  background: var(--bg3);
  border: 1px solid var(--brd);
  border-radius: 20px;
  padding: 26px;
  margin-top: 34px;
  text-align: center;
}

.faq-cta p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #D7DEEC;
  margin-bottom: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  background: var(--bg3);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--tr);
}

.faq-item.open {
  border-color: var(--bra);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 21px;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.faq-qn {
  width: 29px;
  height: 29px;
  background: #1B2438;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  color: #E8EDF8;
  flex-shrink: 0;
}

.faq-item.open .faq-qn {
  background: var(--ag);
  color: #7DD3F7;
}

.faq-q h3 {
  font-size: 0.92rem;
  font-weight: 700;
  flex: 1;
}

.faq-tog {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--t2);
  transition: var(--tr);
  font-size: 0.72rem;
  font-weight: 700;
}

.faq-item.open .faq-tog {
  background: var(--ag);
  border-color: var(--bra);
  color: var(--ac);
  transform: rotate(45deg);
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-ans {
  max-height: 240px;
}

.faq-ans-in {
  padding: 0 21px 17px 63px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #D7DEEC;
  line-height: 1.7;
}

/* CTA */
.cta-sec {
  padding: 70px 0;
  background: var(--bg);
}

.cta-box {
  background: linear-gradient(135deg, rgba(var(--ac-rgb), 0.055), var(--bg3) 48%);
  border: 1px solid var(--bra);
  border-radius: 28px;
  padding: 62px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ac), transparent);
}

.cta-box .sec-label {
  justify-content: center;
}

.cta-box h2 {
  margin-bottom: 13px;
  letter-spacing: -0.5px;
}

.cta-box p {
  color: var(--t2);
  font-size: 0.98rem;
  margin-bottom: 34px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.cta-acts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
}

/* FOOTER */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--brd);
  color: var(--t2);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 21px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.86rem;
  font-weight: 500;
  color: #D7DEEC;
}

/* Below-fold: paint maliyetini dusur */
.pkg-sec,
.faq-sec,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

/* Hero asla opacity:0 baslamasin (LCP) */
.hero .hero-content,
.hero .hero-visual,
.hero .hero-img {
  opacity: 1;
  transform: none;
}

/* anim */
[data-a] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease;
}

[data-a].vis {
  opacity: 1;
  transform: translateY(0);
}

[data-d="1"] {
  transition-delay: 0.1s;
}
[data-d="2"] {
  transition-delay: 0.2s;
}
[data-d="3"] {
  transition-delay: 0.3s;
}
[data-d="4"] {
  transition-delay: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: var(--nav);
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    max-height: min(70vh, 420px);
    background: rgba(7, 9, 15, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 16px 14px;
    gap: 2px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--tr), visibility var(--tr), transform var(--tr);
    border-bottom: 1px solid var(--brd);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
    max-width: 360px;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .hero .container,
  .faq-sec .container {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-visual {
    display: none;
  }

  .pkg-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pkg-gallery-alt {
    grid-template-columns: repeat(2, 1fr);
  }

  .pkg-gallery-wide {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  section {
    padding: 64px 0;
  }

  .faq-ans-in {
    padding-left: 21px;
  }

  .hero .container {
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .hero + .pkg-sec {
    padding-top: 24px;
  }
}

@media (max-width: 580px) {
  .pkg-gallery,
  .pkg-gallery-alt,
  .pkg-gallery-wide {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pkg-thumb-meta {
    padding: 11px 12px;
  }

  .pkg-thumb-line-1 {
    font-size: 1.08rem;
  }

  .pkg-thumb-line-2 {
    font-size: 0.84rem;
  }

  .hero-stats {
    gap: 16px;
    justify-content: space-between;
  }

  .stat-num {
    font-size: 1.45rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }

  .pkg-head {
    margin-bottom: 32px;
  }

  section {
    padding: 48px 0;
  }
}
