/* Geliştirici: Enes - www.ixirpos.com.tr */
:root {
  --blue-1: #0a4fb8;
  --blue-2: #1569dc;
  --blue-3: #0f3d95;
  --blue-4: #eaf3ff;
  --blue-5: #d8ebff;
  --text: #0d2c68;
  --muted: #5b6f95;
  --orange: #f6a21a;
  --orange-2: #ffb02c;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(12, 56, 134, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(120, 187, 255, 0.35), transparent 25%),
    radial-gradient(circle at 100% 15%, rgba(59, 130, 246, 0.25), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 40%, #f8fbff 100%);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(5, 45, 117, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.logo .site-logo {
  display: block;
  max-height: 100px;
  width: auto;
  height: auto;
  vertical-align: middle;
}

.logo .accent { color: var(--orange); }
.logo small {
  font-size: 0.65em;
  font-weight: 700;
  opacity: 0.95;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

.nav-links a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--orange-2), #ef9811);
  box-shadow: 0 14px 32px rgba(246, 162, 26, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(246, 162, 26, 0.42);
}

.btn-secondary-nav {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.btn-secondary-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
  color: #fff;
}

.hero {
  position: relative;
  padding: 54px 0 70px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.10), transparent 20%),
    linear-gradient(140deg, #0d5fd8 0%, #0b49ae 46%, #08388a 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  bottom: -220px;
  height: 360px;
  background: rgba(255,255,255,0.14);
  transform: rotate(-4deg);
}

.hero::after {
  bottom: -275px;
  height: 420px;
  background: rgba(255,255,255,0.18);
  opacity: 0.75;
  transform: rotate(3deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  color: #fff;
  padding-top: 24px;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  max-width: 640px;
}

.hero-copy p {
  margin: 0 0 28px;
  max-width: 640px;
  font-size: 1.22rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
}

.platform-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 720px;
  padding: 16px;
  background: rgba(255,255,255,0.92);
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin: 0 0 28px;
}

.platform-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(24, 86, 187, 0.06);
  text-align: center;
  padding: 12px;
}

.platform-logo {
  max-height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  min-height: 340px;
}

.hero-visual-img {
  max-width: min(100%, 1280px);
  margin-left: auto;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 34px 80px rgba(1, 16, 52, 0.42);
}

.hero-visual-img img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.app-topbar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 6px 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d2def5;
}

.app-layout {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
}

.side-mini {
  background: linear-gradient(180deg, #165ac2, #0d49aa);
  border-radius: 16px;
  padding: 12px;
  min-height: 270px;
}

.side-mini span,
.mini-row,
.app-row,
.app-chip { border-radius: 10px; }

.side-mini span {
  display: block;
  height: 12px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 10px;
}

.dashboard {
  display: grid;
  gap: 12px;
}

.mini-toolbar,
.app-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(23, 74, 156, 0.08);
}

.mini-toolbar {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.app-chip { height: 28px; background: #edf4ff; }

.app-card { padding: 14px; }

.rows { display: grid; gap: 10px; }

.app-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr 0.7fr 0.6fr;
  gap: 8px;
  align-items: center;
}

.bar {
  height: 14px;
  border-radius: 999px;
  background: #e7effd;
}

.bar.blue { background: #cfe0ff; }
.bar.orange { background: #ffdca5; }
.bar.green { background: #cbeeda; }

.monitor-stand {
  width: 160px;
  height: 24px;
  margin: 0 auto;
  background: linear-gradient(180deg, #b3bfd0, #8d98aa);
  border-radius: 0 0 16px 16px;
}

.monitor-base {
  width: 280px;
  height: 18px;
  margin: 0 auto;
  background: linear-gradient(180deg, #c8d3e0, #9fa9b8);
  border-radius: 999px;
  transform: translateY(-1px);
}

.phone {
  position: absolute;
  left: 40px;
  bottom: 20px;
  width: 210px;
  background: linear-gradient(180deg, #111723, #0d121a);
  border-radius: 34px;
  padding: 12px;
  box-shadow: 0 24px 50px rgba(2, 18, 49, 0.42);
}

.phone-inner {
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f8ff, #eef5ff);
  min-height: 410px;
  position: relative;
}

.notch {
  width: 94px;
  height: 22px;
  background: #0f1520;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
}

.caller {
  min-height: 520px;
  background: linear-gradient(180deg, #112131, #0c1826);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 20px 22px;
}

.caller .name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  margin-top: 30px;
}

.caller .number {
  text-align: center;
  color: rgba(255,255,255,0.84);
  margin-top: 12px;
  font-weight: 500;
}

.call-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.call-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.decline { background: #ef4444; }
.accept { background: #22c55e; }

/* Phone caller variant - hero */
.phone .caller {
  min-height: 408px;
  padding-top: 20px;
  align-items: center;
}

.caller-avatar {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 1;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.phone .caller .caller-avatar {
  max-width: 88px;
  margin-bottom: 12px;
}

.phone .caller .name {
  font-size: 1.2rem;
}

.phone .caller .app-card {
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  color: #13315a;
}

.phone .caller .app-card .title {
  font-weight: 800;
  margin-bottom: 10px;
}

.phone .caller .app-card .bar-placeholder {
  height: 10px;
  background: #e7effd;
  border-radius: 999px;
  margin-bottom: 8px;
}

.phone .caller .app-card .bar-placeholder.w82 { width: 82%; background: #d2e2ff; }
.phone .caller .app-card .bar-placeholder.w65 { width: 65%; background: #ffdca5; }

section {
  position: relative;
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.section-subtitle {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.08rem;
}

.caller-id .section-title.left {
  text-align: left;
  margin-bottom: 16px;
}

.features {
  background:
    radial-gradient(circle at 0% 100%, rgba(76, 140, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #f9fcff 0%, #eef6ff 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.feature-card {
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(23, 92, 203, 0.07);
}

.icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #edf5ff, #dbeaff);
  font-size: 2rem;
  box-shadow: inset 0 0 0 1px rgba(23, 92, 203, 0.06);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.pricing {
  background: linear-gradient(180deg, #f9fcff 0%, #eef6ff 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.price-card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(23, 92, 203, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-card.highlight {
  border-color: rgba(10, 79, 184, 0.35);
  box-shadow: 0 18px 40px rgba(10, 79, 184, 0.15);
}

.price-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.price-card .price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-2);
  margin-bottom: 18px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
  width: 100%;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.price-card ul li {
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.price-card ul li::before {
  content: "•";
  color: var(--blue-2);
  position: absolute;
  left: 0;
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
  max-width: 200px;
  text-align: center;
}

.price-card .btn-secondary {
  background: rgba(255,255,255,0.9);
  color: var(--text);
  border: 2px solid var(--blue-2);
}

.price-card .btn-secondary:hover {
  background: var(--blue-4);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.integration-card {
  min-height: 130px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.integration-logo {
  max-height: 96px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.integration-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.integration-partner-item {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.caller-id {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 50%, rgba(69, 127, 255, 0.14), transparent 18%),
    linear-gradient(180deg, #f4f9ff 0%, #e9f2ff 100%);
}

.caller-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.caller-box {
  background: rgba(255,255,255,0.92);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px 34px 28px;
}

.checklist {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.6;
}

.check-item .tick {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff0c9, #ffd98b);
  color: #9a5c00;
  font-weight: 900;
  margin-top: 2px;
}

.phone-showcase {
  display: flex;
  justify-content: center;
}

.phone-large {
  width: min(100%, 360px);
  background: linear-gradient(180deg, #111723, #0d121a);
  border-radius: 40px;
  padding: 14px;
  box-shadow: 0 28px 62px rgba(2, 18, 49, 0.32);
}

.phone-large .phone-inner {
  min-height: 650px;
  background: linear-gradient(180deg, #13273a, #0d1d30);
}

.phone-large .caller .caller-avatar {
  max-width: 110px;
  margin-bottom: 16px;
}

.cta {
  padding: 72px 0;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(135deg, #0d5fd8 0%, #0a46a8 50%, #063784 100%);
  overflow: hidden;
}

.cta h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: -0.04em;
}

.cta p {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.9);
  font-size: 1.08rem;
}

.site-footer {
  background: #f8fbff;
  padding: 28px 0 42px;
  border-top: 1px solid rgba(15, 61, 149, 0.08);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.footer-group {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.socials {
  display: flex;
  gap: 10px;
}

.social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf2ff;
  color: var(--blue-2);
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(15, 61, 149, 0.08);
  padding-top: 16px;
  margin-top: 8px;
}

.footer-bottom .container p {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--blue-2);
  font-weight: 600;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .caller-layout,
  .integrations-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-visual-img {
    margin-right: auto;
  }
}

@media (max-width: 820px) {
  .nav {
    min-height: 78px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .integrations-grid,
  .caller-layout,
  .platform-strip {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 26px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p,
  .hero-copy h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 30px;
  }

  .hero-visual-img {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-card,
  .caller-box {
    padding: 24px 20px;
  }

  section {
    padding: 72px 0;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
