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

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #f3f5f7;
  color: #111827;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #f9a01d;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #f08a00;
}

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

/* Header */

header {
  background-color: #ffffff;
  border-bottom: 2px solid rgba(7, 186, 219, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 220px;
  height: auto;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(7, 186, 219, 0.06);
  color: #1f2933;
  font-size: 0.8rem;
}

.nav-pill span {
  font-weight: 600;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.35);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #07badb, #1095b5);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 118, 143, 0.55);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #07badb, #1095b5);
  color: #f9a01d;
  box-shadow: 0 12px 30px rgba(15, 118, 143, 0.7);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: #07badb;
  border: 1px solid rgba(7, 186, 219, 0.6);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.btn-outline:hover {
  background-color: rgba(249, 160, 29, 0.12);
  border-color: #f9a01d;
  color: #f9a01d;
}

.btn-icon {
  font-size: 1rem;
}

/* Layout */

main {
  max-width: 1200px;
  margin: 26px auto 40px;
  padding: 0 5%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 32px;
}

/* Right column first visually on desktop (blocks swapped from original) */

.hero-card {
  order: 2;
  align-self: flex-start;
}

.content-column {
  order: 1;
}

@media (max-width: 960px) {
  main {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card,
  .content-column {
    order: initial;
  }
}

/* Hero Card */

.hero-inner {
  background: radial-gradient(circle at 0 0, #ffffff, #e6f8ff);
  border-radius: 28px;
  padding: 26px 24px 24px;
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.18);
}

.hero-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-badge {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #0f172a;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.04);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #374151;
}

.star {
  color: #f9a01d;
}

.hero-title {
  font-family: "Oswald", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #0f172a;
}

.hero-title span {
  color: #07badb;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.hero-chip {
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(16, 149, 181, 0.06);
  border: 1px solid rgba(7, 186, 219, 0.4);
  font-size: 0.82rem;
  color: #0f172a;
}

.hero-chip strong {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 3px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.hero-notice {
  font-size: 0.75rem;
  color: #6b7280;
}

.hero-notice span {
  color: #f97316;
  font-weight: 600;
}

.hero-float {
  width: 210px;
  margin: 18px auto 0;
}

.hero-float img {
  filter: drop-shadow(0 24px 60px rgba(15, 23, 42, 0.45));
}

@media (max-width: 960px) {
  .hero-inner {
    padding: 22px 18px 20px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-float {
    width: 170px;
  }
}

/* Content Column */

.content-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 22px 20px 20px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 4px;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
}

.section-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 149, 181, 0.08);
  color: #0f172a;
  font-weight: 600;
}

.section-body p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 12px;
  text-align: justify;
}

.section-body p:last-child {
  margin-bottom: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 4px;
}

.pill {
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: rgba(249, 160, 29, 0.08);
  color: #7c2d12;
  font-weight: 500;
}

.two-column-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 10px;
}

.bullet {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  color: #374151;
}

.bullet-marker {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background-color: rgba(7, 186, 219, 0.12);
  border: 1px solid rgba(7, 186, 219, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #036981;
  flex-shrink: 0;
}

.steps {
  margin-top: 4px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.step-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background-color: #07badb;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content {
  font-size: 0.93rem;
  color: #374151;
}

.highlight-box {
  margin-top: 14px;
  padding: 11px 12px;
  border-radius: 18px;
  background: rgba(16, 149, 181, 0.05);
  border: 1px dashed rgba(16, 149, 181, 0.6);
  font-size: 0.87rem;
  color: #0f172a;
}

.highlight-box strong {
  color: #036981;
}

.faq-item {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  padding-top: 10px;
  margin-top: 10px;
}

.faq-q {
  font-weight: 600;
  font-size: 0.96rem;
  color: #111827;
  margin-bottom: 4px;
}

.faq-a {
  font-size: 0.9rem;
  color: #4b5563;
}

@media (max-width: 768px) {
  .section {
    border-radius: 20px;
    padding: 18px 16px 16px;
  }
  .two-column-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Footer */

footer {
  margin-top: 40px;
  background-color: #1095b5;
  color: #e5f6ff;
  padding: 26px 5% 18px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand img {
  width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.55));
}
/* footer için beyaz outline buton */
.btn-outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.footer-text {
  max-width: 720px;
  font-size: 0.88rem;
}

.footer-text strong {
  color: #ffffff;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 0.78rem;
  opacity: 0.9;
}

.footer-meta a {
  color: #ffe7b5;
}

.footer-meta a:hover {
  color: #ffd37e;
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .brand-logo {
    width: 140px;
  }
  .header-cta-group {
    width: auto;
    gap: 8px;
  }
  .header-cta-group .btn {
    padding: 9px 16px;
    font-size: 0.85rem;
  }
  .footer-cta {
    flex-direction: column;
  }
}

