/* ===== RESET & BASE ===== */
*, ::after, ::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, .12) 50%, transparent);
  margin: 0;
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #00c8ff;
  border: 1px solid rgba(0, 200, 255, .3);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 18px;
}

/* ===== HIGHLIGHT ===== */
.highlight {
  color: #00c8ff;
}

/* ===== TOP BAR ===== */
.topbar {
  background: rgba(10, 10, 10, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-logo {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.topbar-logo span {
  color: #00c8ff;
}

.topbar-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  font-weight: 500;
}

/* ===== HERO ===== */
.hero {
  padding: 64px 0 56px;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: url('assets/fef541e4-35cf-4550-8eb2-72a99c830dc8.jfif') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 20, .88) 0%, rgba(6, 6, 20, .92) 50%, rgba(6, 6, 20, .97) 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-text {
  text-align: center;
  width: 100%;
}

.hero h1 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.hero-checks {
  list-style: none;
  margin-bottom: 36px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-checks li {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 14px 18px;
}

.hc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 200, 255, .1);
  border: 1px solid rgba(0, 200, 255, .2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c8ff;
}

.hc-icon svg {
  width: 18px;
  height: 18px;
}

.hero-visual {
  display: none;
}

.hero-product-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(0, 200, 255, .15);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .6);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #00c8ff, #0060ff);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, filter .25s;
  box-shadow: 0 6px 32px rgba(0, 140, 255, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 140, 255, .5);
  filter: brightness(1.1);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00c853, #00a844);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, filter .25s;
  box-shadow: 0 4px 24px rgba(0, 200, 100, .2);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 200, 100, .35);
  filter: brightness(1.1);
}

.btn-green svg {
  width: 20px;
  height: 20px;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  background: #0d0d0d;
}

.problem h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.problem-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.problem-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 24px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color .25s, background .25s;
}

.problem-card:hover {
  border-color: rgba(0, 200, 255, .12);
  background: rgba(255, 255, 255, .06);
}

.pcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcard-icon svg {
  width: 22px;
  height: 22px;
}

.pcard-icon--orange {
  background: rgba(100, 120, 255, .1);
  border: 1px solid rgba(100, 120, 255, .2);
  color: #7b8cff;
}

.pcard-icon--blue {
  background: rgba(100, 120, 255, .1);
  border: 1px solid rgba(100, 120, 255, .2);
  color: #7b8cff;
}

.pcard-icon--yellow {
  background: rgba(100, 120, 255, .1);
  border: 1px solid rgba(100, 120, 255, .2);
  color: #7b8cff;
}

.pcard-content h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.pcard-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, .42);
  line-height: 1.65;
}

/* ===== UV SHOWCASE IMAGE ===== */
.uv-showcase {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid rgba(255, 255, 255, .06);
  position: relative;
}

.uv-showcase img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.uv-showcase-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 30, 10, .7);
  border: 1px solid rgba(0, 200, 80, .3);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #00e05a;
}

.uv-showcase-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00e05a;
  flex-shrink: 0;
}

/* ===== TAGLINE ===== */
.tagline-section {
  text-align: left;
  padding-bottom: 8px;
}

.tagline {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  font-style: normal;
  margin-bottom: 0;
  padding-left: 16px;
  border-left: 3px solid #00c8ff;
}

.tagline-arrow {
  display: none;
}

/* ===== PRODUCT / SOLUTION SECTION ===== */
.product {
  background: #0a0a0a;
  text-align: center;
}

.product h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
}

.product .desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-bottom: 36px;
}

.product-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, .06);
}

.product-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ===== STEPS ===== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}

.step-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 24px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color .25s, background .25s;
}

.step-card:hover {
  border-color: rgba(0, 200, 255, .12);
  background: rgba(255, 255, 255, .06);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(100, 120, 255, .12);
  border: 1px solid rgba(100, 120, 255, .2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #8b9aff;
}

.step-content h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.step-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
}

/* ===== RESULT BADGE ===== */
.result-badge {
  display: inline-block;
  border: 1px solid rgba(0, 150, 255, .2);
  border-radius: 50px;
  padding: 14px 32px;
  background: linear-gradient(135deg, rgba(0, 80, 180, .2), rgba(0, 160, 255, .1));
  margin-bottom: 36px;
}

.result-badge span {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

.product-image--bottom {
  margin-bottom: 0;
}

/* ===== NEDEN (WHY) SECTION ===== */
.neden {
  background: #0d0d0d;
  text-align: left;
}

.neden h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 32px;
}

.reasons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.reason-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: left;
  transition: border-color .25s, background .25s;
}

.reason-card:hover {
  border-color: rgba(0, 200, 255, .12);
  background: rgba(255, 255, 255, .06);
}

.reason-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 120, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #3b8eff;
}

.reason-icon svg {
  width: 22px;
  height: 22px;
}

.reason-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.reason-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6;
}

/* ===== REVIEWS SUMMARY ===== */
.reviews-summary {
  display: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.testimonials::-webkit-scrollbar {
  display: none;
}

.tcard {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 24px;
  min-width: 260px;
  max-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tcard-stars {
  color: #3b8eff;
  font-size: 16px;
  letter-spacing: 3px;
}

.tcard-text {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  flex: 1;
}

.tcard-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.tcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #3b8eff;
  border: 1px solid rgba(59, 142, 255, .2);
}

.tcard-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.tcard-role {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
}

/* ===== PRICING SECTION ===== */
.pricing {
  text-align: center;
  background: #0a0a0a;
  padding-bottom: 40px;
  position: relative;
}

.pricing h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
}

.pricing-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 32px;
  position: relative;
}

/* ===== PACKAGES ===== */
.packages-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
}

.package-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.package-card--small {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.package-card--small .package-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.package-card--small .package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card-bottom {
  padding: 16px;
  text-align: left;
}

.package-card-bottom h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.package-price-row-sm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-price {
  font-size: 20px;
  font-weight: 800;
  color: #00c8ff;
}

.btn-add {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}

.btn-add:hover {
  background: rgba(0, 200, 255, .15);
  border-color: rgba(0, 200, 255, .3);
}

/* Featured package */
.package-card--featured {
  border-color: rgba(0, 200, 255, .15);
  background: rgba(0, 200, 255, .04);
  padding: 0;
  margin-top: 2px;
}

.package-featured-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 18px;
}

.package-featured-inner .package-img {
  width: 90px;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.package-featured-inner .package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-featured-info {
  text-align: left;
  flex: 1;
}

.package-featured-info h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
}

.package-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 10px;
}

.package-badge-row {
  margin-bottom: 14px;
}

.made-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50px;
  padding: 6px 14px;
}

.package-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.package-price-row .old-price {
  font-size: 14px;
  color: rgba(255, 255, 255, .3);
  text-decoration: line-through;
}

.shipping-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  margin-left: auto;
}

.package-final-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.package-final-row .new-price {
  font-size: 24px;
  font-weight: 900;
  color: #00c8ff;
}

.btn-buy {
  display: inline-block;
  background: #00c8ff;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.btn-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 200, 255, .35);
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: #0a0a0a;
  text-align: center;
}

.footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, .25);
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== TABLET (min 600px) ===== */
@media (min-width: 600px) {
  .container {
    max-width: 600px;
    padding: 0 32px;
  }

  .section {
    padding: 80px 0;
  }

  /* Topbar */
  .topbar-logo {
    font-size: 16px;
  }

  .topbar-sub {
    font-size: 12px;
  }

  /* Hero */
  .hero {
    padding: 80px 0 72px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero .subtitle {
    font-size: 16px;
    max-width: 440px;
  }

  .hero-checks {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-primary {
    width: auto;
    display: inline-block;
    padding: 18px 56px;
  }

  /* Problem */
  .problem h2 {
    font-size: 38px;
  }

  .problem-subtitle {
    font-size: 15px;
  }

  .uv-showcase {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Product */
  .product h2 {
    font-size: 32px;
  }

  .product-image {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  /* Neden */
  .neden h2 {
    font-size: 34px;
  }

  .reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .reason-card:last-child {
    grid-column: 1 / -1;
  }

  .testimonials {
    margin: 0 -32px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .tcard {
    min-width: 280px;
    max-width: 300px;
  }

  /* Pricing */
  .pricing h2 {
    font-size: 32px;
  }

  .packages-top {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .package-card--featured {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== DESKTOP (min 900px) ===== */
@media (min-width: 900px) {
  .container {
    max-width: 860px;
    padding: 0 40px;
  }

  .section {
    padding: 100px 0;
  }

  /* Topbar */
  .topbar {
    padding: 18px 0;
  }

  .topbar-logo {
    font-size: 18px;
  }

  .topbar-sub {
    font-size: 13px;
  }

  /* Hero */
  .hero {
    padding: 100px 0 90px;
  }

  .hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
  }

  .hero .subtitle {
    font-size: 17px;
    max-width: 520px;
  }

  .hero-checks {
    flex-direction: row;
    gap: 12px;
    max-width: 100%;
  }

  .hero-checks li {
    flex: 1;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 18px 14px;
    font-size: 13px;
  }

  .btn-primary {
    padding: 20px 64px;
    font-size: 17px;
  }

  /* Problem */
  .problem h2 {
    font-size: 44px;
    text-align: center;
  }

  .problem-subtitle {
    font-size: 16px;
    text-align: center;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .problem-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }

  .problem-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .uv-showcase {
    max-width: 560px;
  }

  .tagline-section {
    text-align: center;
  }

  .tagline {
    border-left: none;
    padding-left: 0;
    font-size: 22px;
  }

  /* Product */
  .product h2 {
    font-size: 36px;
  }

  .product .desc {
    font-size: 15px;
  }

  .product-image {
    max-width: 560px;
  }

  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }

  .step-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Neden */
  .neden {
    text-align: center;
  }

  .neden h2 {
    font-size: 40px;
  }

  .reasons {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .reason-card:last-child {
    grid-column: auto;
  }

  .reason-card {
    text-align: center;
    align-items: center;
  }

  .reason-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials {
    justify-content: center;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    overflow-x: visible;
  }

  .tcard {
    min-width: 240px;
    max-width: 260px;
  }

  /* Pricing */
  .pricing h2 {
    font-size: 36px;
  }

  .packages-top {
    max-width: 520px;
    gap: 20px;
    margin-bottom: 24px;
  }

  .package-card--featured {
    max-width: 520px;
  }

  .package-featured-inner {
    padding: 28px 24px;
    gap: 24px;
  }

  .package-featured-inner .package-img {
    width: 110px;
    height: 130px;
  }

  .package-featured-info h3 {
    font-size: 19px;
  }

  .new-price {
    font-size: 26px;
  }

  /* Footer */
  .footer {
    padding: 48px 0;
  }

  .footer p {
    font-size: 14px;
  }
}

/* ===== LARGE DESKTOP (min 1200px) ===== */
@media (min-width: 1200px) {
  .container {
    max-width: 1040px;
    padding: 0 48px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero .subtitle {
    font-size: 18px;
    max-width: 580px;
  }

  .hero-checks li {
    padding: 20px 18px;
    font-size: 14px;
  }

  .problem h2 {
    font-size: 48px;
  }

  .product h2 {
    font-size: 40px;
  }

  .neden h2 {
    font-size: 44px;
  }

  .pricing h2 {
    font-size: 40px;
  }

  .packages-top {
    max-width: 580px;
  }

  .package-card--featured {
    max-width: 580px;
  }
}

.animate {
  animation: .6s ease-out both fadeInUp;
}

/* ===== TABLET (768px+) ===== */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 32px;
  }

  .section {
    padding: 96px 0;
  }

  .topbar-logo { font-size: 16px; }
  .topbar-sub { font-size: 12px; }

  .hero { padding: 100px 0 72px; }
  .hero h1 { font-size: 44px; }
  .hero .subtitle { font-size: 17px; max-width: 520px; }
  .hero-checks li { font-size: 15px; }
  .btn-primary { font-size: 16px; padding: 18px 48px; }

  .problem h2 { font-size: 40px; }
  .problem-subtitle { font-size: 16px; }

  .product h2, .neden h2 { font-size: 34px; }

  .reasons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .testimonials {
    flex-direction: row;
    gap: 16px;
  }

  .tcard {
    flex: 1;
  }

  .pricing h2 { font-size: 34px; }
  .pricing .new-price { font-size: 48px; }
}

/* ===== DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
    padding: 0 40px;
  }

  .section {
    padding: 120px 0;
  }

  .topbar { padding: 18px 0; }
  .topbar-logo { font-size: 18px; }
  .topbar-sub { font-size: 13px; }

  .hero { padding: 130px 0 90px; }
  .hero-inner {
    flex-direction: row;
    gap: 72px;
    align-items: center;
  }
  .hero-text { text-align: left; }
  .hero-visual {
    display: block;
    flex: 0 0 440px;
  }
  .hero h1 { font-size: 52px; }
  .hero .subtitle {
    font-size: 18px;
    max-width: 540px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 36px;
  }
  .hero-checks li { font-size: 16px; }
  .btn-primary { font-size: 17px; padding: 20px 56px; }

  .problem h2, .product h2, .neden h2 { font-size: 40px; }
  .problem-subtitle { font-size: 16px; max-width: 600px; }

  .problem-cards {
    flex-direction: row;
    gap: 20px;
  }
  .problem-card {
    flex: 1;
    flex-direction: column;
    gap: 16px;
  }
  .pcard-content h3 { font-size: 16px; }
  .pcard-content p { font-size: 14px; }

  .uv-showcase {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps {
    flex-direction: row;
    gap: 20px;
  }
  .step-card {
    flex: 1;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .reasons {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
  .reason-card { padding: 28px; }
  .reason-card p, .step-content p, .tcard-text { font-size: 14px; }

  .packages-top {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .package-card--featured {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== WIDE DESKTOP (1280px+) ===== */
@media (min-width: 1280px) {
  .container {
    max-width: 1120px;
  }

  .hero-visual {
    flex: 0 0 500px;
  }

  .hero h1 { font-size: 64px; }
  .hero .subtitle { font-size: 19px; max-width: 580px; }
}