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

body {
  font-family: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  background-color: #ffffff;
  color: #020b2a;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  padding: 24px 0 40px;
  background-color: #000d33;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  max-width: 250px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 28px;
  border-radius: 999px;
  background-color: #000d33;
}

.nav-link {
  color: #c4c7f5;
  text-decoration: none;
  font-size: 14px;
}

.nav-link.active {
  color: #ffffff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #c4c7f5;
  font-size: 14px;
}

.phone-icon {
  font-size: 16px;
}

.phone-number {
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-outline {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  margin-top: 32px;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.hero {
  padding: 40px 0 80px;
  background-color: #000d33;
  color: #ffffff;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 56px;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: #c4c7f5;
  max-width: 520px;
  line-height: 1.6;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-bg {
  width: 500px;
  height: 500px;
  border-radius: 20px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.steps {
  background-color: #e8f1ff;
  padding: 56px 0 72px;
  color: #020b2a;
}

.steps-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.step {
  flex: 1;
  text-align: center;
  padding-top: 40px;
}

.step-icon-pill {
  width: 125px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background-color: #ffe46b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  position: relative;
  top: -40px;
}

.step-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-text {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}

.step-arrow span {
  font-size: 28px;
  color: #9ca3af;
}

.step-arrow img {
  width: 72px;
  height: auto;
  opacity: 0.15;
}

.services {
  background-color: #000d33;
  color: #ffffff;
  padding: 80px 0 96px;
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
}

.services-header p {
  font-size: 18px;
  color: #c4c7f5;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.service-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
  padding: 30px;
  backdrop-filter: blur(5px);
  box-shadow:
    0px 0.6px 1.6px -1px rgba(0, 0, 0, 0.15),
    0px 2.3px 6px -2px rgba(0, 0, 0, 0.14),
    0px 10px 26px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
}

.service-icon svg {
  width: 50px;
  height: 50px;
  fill: #ffffff;
}

/* Service icon renkleri */
.service-card:nth-child(1) .service-icon svg {
  fill: #38bdf8; /* açık mavi */
}

.service-card:nth-child(2) .service-icon svg {
  fill: #4ade80; /* yeşil */
}

.service-card:nth-child(3) .service-icon svg {
  fill: #fb923c; /* turuncu */
}

.service-card:nth-child(4) .service-icon svg {
  fill: #a855f7; /* mor */
}

.service-card:nth-child(5) .service-icon svg {
  fill: #f97373; /* kırmızımsı */
}

.service-card:nth-child(6) .service-icon svg {
  fill: #facc15; /* sarı */
}

.service-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 16px;
  color: #c4c7f5;
  line-height: 1.6;
}

.services-cta {
  text-align: center;
}

.services-cta p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* About Section */
.about {
  background-color: #ffffff;
  color: #020b2a;
  padding: 100px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-content > p {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
}

.check-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #22c55e;
}

.check-icon svg {
  width: 100%;
  height: 100%;
}

/* Footer */
.footer {
  background-color: #000d33;
  color: #c4c7f5;
  padding: 40px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer p {
  font-size: 14px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .top-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    order: 3;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero {
    padding: 0px 0 40px;
  }

  .hero .btn {
    display: none;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .hero-image-bg {
    width: 100%;
    height: 360px;
  }

  .hero-image {
    width: 100%;
  }

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

  .step-arrow {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }
}
