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

body {
  font-family: "Inter", sans-serif;
  color: white;
  background: #050505;
  overflow-x: hidden;
}

/* BACKGROUND */

.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, #1a1a2e, transparent 40%),
    radial-gradient(circle at 80% 70%, #0f3460, transparent 40%), #050505;
  z-index: -1;
}

/* HEADER */

.page-header {
  padding: 25px 20px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  color: white;
}

.cta-top {
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
}

/* HERO */

.hero-page {
  padding: 120px 20px 80px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HERO TEXT */

.hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.brand-title {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 14px;
  opacity: 0.6;
}
.hero-desc {
  opacity: 0.75;
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  font-size: 14px;
  flex-wrap: wrap;
}

/* BUTTON */

.btn {
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  color: white;
  background: #4285f4;
  display: inline-block;
  transition: 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

/* HERO IMAGE */

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

.hero-photo {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
}

.hero-ui {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  border-radius: 14px;
}

/* CLIENT LOGOS */

.client-logos {
  margin-top: 55px;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  position: relative;
}

/* fade */

.client-logos::before,
.client-logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.client-logos::before {
  left: 0;
  background: linear-gradient(to right, #050505, transparent);
}

.client-logos::after {
  right: 0;
  background: linear-gradient(to left, #050505, transparent);
}

/* slider */

.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: logoScroll 20s linear infinite;
}

/* logos */

.logo-track img {
  height: 60px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: 0.3s;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* animation */

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* SECTION */

.section {
  padding: 90px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* GRID */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  padding: 30px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* TOOLS */

.tool-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 100px;
}

.tool-detail.reverse {
  direction: rtl;
}

.tool-detail.reverse .tool-text {
  direction: ltr;
}

.tool-image img {
  width: 100%;
  border-radius: 14px;
}

.tool-text h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.tool-text p {
  opacity: 0.8;
  margin-bottom: 18px;
}

/* TOOL LIST */

.tool-text ul {
  list-style: none;
  text-align: left;
  padding: 0;
}

.tool-text li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  opacity: 0.9;
}

.tool-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4285f4;
  font-weight: bold;
}

/* FORM */

.cross-offer {
  padding: 120px 20px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.cross-box {
  max-width: 800px;
  width: 100%;

  padding: 60px 50px;

  text-align: center;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  backdrop-filter: blur(20px);
}

.cross-label {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.cross-box h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.cross-desc {
  opacity: 0.75;
  margin-bottom: 30px;
  font-size: 16px;
}

.cross-btn {
  display: inline-block;

  padding: 16px 32px;

  border-radius: 10px;

  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);

  color: white;
  text-decoration: none;

  font-weight: 500;
  font-size: 16px;

  transition: 0.25s;
}

.cross-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* FORM SECTION */

.form-section {
  padding: 120px 20px;
}

.form-box {
  max-width: 700px;
  margin: auto;

  padding: 60px 50px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  backdrop-filter: blur(20px);

  text-align: center;
}

.form-box h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.form-desc {
  opacity: 0.7;
  margin-bottom: 35px;
}

/* GRID */

.lead-form {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

/* INPUT */

.lead-form input {
  padding: 16px;

  border-radius: 8px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: #111;

  color: white;

  font-size: 15px;
}

/* BUTTON */

.lead-form button {
  grid-column: span 2;

  margin-top: 10px;
}

/* MOBILE */

@media (max-width: 700px) {
  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form button {
    grid-column: span 1;
  }

  .form-box {
    padding: 40px 25px;
  }
}

/* FOOTER */

footer {
  text-align: center;
  padding: 20px;
  opacity: 0.4;
  font-size: 14px;
}

/* TABLET */

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-ui {
    display: none;
  }

  .tool-detail {
    grid-template-columns: 1fr;
  }

  .tool-detail.reverse {
    direction: ltr;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .client-logos {
    max-width: 320px;
    margin: auto;
  }

  .logo-track {
    gap: 40px;
  }

  .logo-track img {
    height: 44px;
  }
}

@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .cta-top {
    width: 100%;
    text-align: center;
  }

  .hero-page {
    padding: 80px 20px 50px;
  }

  h1 {
    font-size: 30px;
  }

  .btn {
    width: 100%;
  }
}
.cross-offer {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.cross-box {
  max-width: 700px;
  width: 100%;
  text-align: center;
  padding: 50px 40px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;

  backdrop-filter: blur(20px);
}

.cross-label {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.cross-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.cross-desc {
  opacity: 0.75;
  margin-bottom: 30px;
  font-size: 16px;
}

.cross-btn {
  display: inline-block;
  padding: 14px 30px;

  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
  border-radius: 10px;

  color: white;
  text-decoration: none;
  font-weight: 500;

  transition: 0.25s;
}

.cross-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  animation: pulse 2s infinite;
}

.whatsapp-float img {
  width: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.15);
}

/* Pulse efekti */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
