* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background:
    radial-gradient(circle at 78% 32%, rgba(140, 13, 34, 0.32), transparent 18%),
    linear-gradient(180deg, #090a0f 0%, #04050a 100%);
  color: #fff;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 16px 18px 56px;
}

/* NAVBAR */
.nav {
  position: sticky;
  top: 14px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(10, 12, 19, 0.92);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 14px 40px rgba(0, 0, 0, 0.25);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.brand-logo img {
  width: auto;
  max-width: 146px;
  height: 34px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #eef2fb;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.nav-links a {
  color: #d2d7e2;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

.nav-right {
  display: flex;
  gap: 18px;
  align-items: center;
  white-space: nowrap;
  color: #ebeff7;
  font-size: 13px;
  font-weight: 600;
}

.btn-outline {
  padding: 11px 18px;
  border: 1px solid rgba(130, 151, 220, 0.28);
  border-radius: 999px;
  background: rgba(14, 18, 32, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn-outline:hover {
  transform: translateY(-1px);
  border-color: rgba(168, 185, 239, 0.4);
  background: rgba(18, 24, 41, 0.92);
}

.btn-outline a,
.nav-right>a {
  color: inherit;
  text-decoration: none;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 56px;
}

.hero-left {
  flex: 0 0 46%;
  max-width: 560px;
}

.badge {
  background: rgba(22, 17, 22, 0.94);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 22px rgba(255, 44, 85, 0.55),
    0 0 48px rgba(255, 44, 85, 0.24);
}

.badge span {
  color: #edf1fa;
  letter-spacing: normal;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(50px, 5.3vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin: 28px 0 20px;
}

.highlight {
  color: #ff3b5c;
}

.hero p {
  max-width: 620px;
  color: #afb6c4;
  font-size: 17px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #e9edf5 100%);
  color: #1d2430;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

/* TRUST */
.trusted {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8d96a8;
  font-size: 15px;
}

.avatars {
  display: flex;
  padding-left: 10px;
}

.avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid #d8dde8;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* RIGHT SIDE */
.hero-right {
  position: relative;
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow {
  position: absolute;
  inset: 3% 8%;
  background: radial-gradient(circle, rgba(133, 18, 36, 0.78), transparent 62%);
  filter: blur(84px);
}

.mockup {
  position: relative;
  width: 100%;
}

.mockup img {
  width: min(100%, 610px);
  border-radius: 14px;
  display: block;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 80px rgba(0, 0, 0, 0.52);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  body {
    /* padding-top: 88px; */
  }

  .container {
    padding-top: 18px;
  }

  .nav {
    top: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    gap: 0px;
    padding: 14px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links,
  .nav-right {
    display: flex;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
  }

  .nav.is-open .nav-links,
  .nav.is-open .nav-right {
    max-height: 240px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav.is-open .nav-links {
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

  .nav.is-open .nav-right {
    order: 4;
    justify-content: flex-start;
    padding-top: 10px;
  }

  .nav.is-open .menu-toggle {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .nav.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 26px;
    margin-top: 42px;
  }

  .hero-left {
    flex: none;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero p {
    margin: 0;
    max-width: 100%;
  }

  .trusted {
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
  }

  .hero-right {
    flex: none;
  }

  .mockup img {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  body {
    /* padding-top: 84px; */
  }

  .container {
    padding: 8px 10px 40px;
  }

  .nav {
    border-radius: 16px;
  }

  .brand-logo img {
    max-width: 128px;
    height: 30px;
  }

  .badge {
    font-size: 11px;
    padding: 7px 12px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.1;
    margin: 26px 0 18px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.75;
  }

  .btn {
    margin-top: 24px;
  }

  .trusted {
    font-size: 14px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .avatars {
    padding-left: 8px;
  }

  .avatars img {
    width: 32px;
    height: 32px;
  }

  .glow {
    inset: 8% 4%;
    filter: blur(70px);
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 46px;
  }

  .trusted {
    align-items: flex-start;
  }
}


/* logo section */
/* Section */
.logo-section {
  text-align: center;
  padding: 100px 20px;
}

/* Slider */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  -webkit-mask-image: linear-gradient(to right, transparent, white 8%, white 92%, transparent);
  mask-image: linear-gradient(to right, transparent, white 8%, white 92%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  will-change: transform;
  animation: logo-marquee var(--logo-duration, 14s) linear infinite;
}

.logo-track img {
  width: 150px;
  flex: 0 0 auto;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-track img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Animation */
@keyframes logo-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--logo-loop-width, 0px)));
  }
}

/* Text */
.hero-text h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero-text p {
  color: #aaa;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 26px;
  }

  .logo-track img {
    width: 100px;
  }

  .logo-section {
    text-align: center;
    padding: 50px 20px;
  }
}

/* FEATURES  start */
.features {
  margin-top: 80px;
}

/* TOP CARD */
.feature-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #222;
  overflow: hidden;
  background: #0a0a0f;
}

/* 🔥 mouse gradient glow */
.feature-top::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: var(--y, 50%);
  left: var(--x, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(158, 49, 83, 0.5), transparent 60%);
  filter: blur(100px);
  transition: all 0.15s ease;
  pointer-events: none;
}

/* extra soft ambient glow */
.feature-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 0, 80, 0.15), transparent 60%);
  pointer-events: none;
}

/* content layer */
.feature-top * {
  position: relative;
  z-index: 2;
}

.ft-left h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.ft-left p {
  color: #aaa;
  max-width: 32ch;
  line-height: 1.7;
}

.ft-right span {
  display: block;
  margin-bottom: 10px;
  color: #aaa;
  font-size: 13px;
}

/* avatar box */
.avatars-box {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.avatars-box img {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  object-fit: cover;
  transition: 0.3s;
}

.avatars-box img:hover {
  transform: scale(1.1);
}

/* GRID */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #07080c;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #1a1a1a;
  transition: 0.3s;
  overflow: hidden;
}

.card:hover {
  border-color: #333;
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.2;
}

.card p {
  color: #aaa;
  line-height: 1.7;
  max-width: 34ch;
}

/* image area */
.card-img {
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  border-radius: 15px;
  display: block;
  transition: 0.4s;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

/* purple glow */
.card-img.purple {
  background: radial-gradient(circle, #6a00ff55, transparent);
  padding: 20px;
}

/* responsive */
@media(max-width:900px) {
  .features {
    margin-top: 56px;
  }

  .feature-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 22px;
    border-radius: 24px;
    text-align: left;
  }

  .ft-left,
  .ft-right {
    width: 100%;
  }

  .ft-left h3 {
    font-size: 28px;
  }

  .ft-left p {
    max-width: none;
    font-size: 15px;
  }

  .ft-right span {
    margin-bottom: 12px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }

  .card {
    padding: 24px 20px 20px;
    border-radius: 24px;
  }

  .card h3 {
    font-size: 22px;
    max-width: 16ch;
  }

  .card p {
    max-width: none;
    font-size: 15px;
  }

  .card-img {
    margin-top: 18px;
  }

  .avatars-box img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 560px) {
  .features {
    margin-top: 48px;
  }

  .feature-top {
    gap: 18px;
    padding: 18px 16px;
    border-radius: 22px;
  }

  .feature-top::before {
    width: 420px;
    height: 420px;
    top: 76%;
    left: 72%;
    background: radial-gradient(circle, rgba(166, 47, 84, 0.46), transparent 58%);
    filter: blur(72px);
  }

  .ft-left h3 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .ft-left p {
    font-size: 14px;
    line-height: 1.65;
  }

  .ft-right {
    border-radius: 16px;
  }

  .ft-right span {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .avatars-box {
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
    width: fit-content;
    max-width: 100%;
  }

  .avatars-box img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .feature-grid {
    gap: 14px;
    margin-top: 14px;
  }

  .card {
    padding: 18px 14px 14px;
    border-radius: 22px;
  }

  .card h3 {
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .card-img {
    margin-top: 16px;
    border-radius: 16px;
  }

  .card-img img {
    border-radius: 16px;
  }

  .card-img.purple {
    padding: 14px;
  }
}

/* FEATURES  end */


/* Exprience section start */
.experience {
  margin-top: 100px;
  position: relative;
  padding-bottom: 32px;
}

/* gradient bg glow */
.experience::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(117, 25, 46, 0.4), transparent);
  filter: blur(120px);
  top: 200px;
  left: 0;
}

/* heading */
.exp-head {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.exp-head span {
  display: inline-block;
  margin-bottom: 10px;
  color: #9ea6b7;
  font-size: 14px;
}

.exp-head h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin: 10px 0 14px;
  line-height: 1.1;
}

.exp-head p {
  color: #8d96a8;
  line-height: 1.7;
}

/* slider */
.slider {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.cards {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
}

/* card */
.exp-card {
  min-width: 300px;
  min-height: 220px;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.96), rgba(7, 8, 12, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 26px;
  border-radius: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.exp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.icon {
  width: fit-content;
  min-width: 52px;
  height: 52px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #ff5478;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.exp-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.25;
}

.exp-card p {
  color: #93a0b3;
  line-height: 1.7;
}

/* arrows */
.arrows {
  display: flex;
  justify-content: end;
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 14, 21, 0.92);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.arrows button:hover {
  background: rgba(20, 24, 36, 0.96);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.arrows button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* responsive */
@media(max-width:768px) {
  .exp-card {
    min-width: 260px;
    min-height: auto;
  }

  .exp-head h2 {
    font-size: 28px;
  }

  .experience {
    margin-top: 72px;
  }

  .slider {
    margin-top: 34px;
  }
}

/* exprience section end */

/* WHY CHOOSE US */
.why {
  margin-top: 10px;
  position: relative;
}

/* red glow background */
.why::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 60, 0.35), transparent);
  filter: blur(120px);
  top: 0;
  left: 0;
}

.why-head {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
}

.why-head h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 14px;
  line-height: 1.1;
}

.why-head p {
  color: #8d96a8;
  line-height: 1.75;
}

/* rows */
.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  padding: 0;
  border-bottom: none;
  margin-bottom: 18px;
}

.why-row:last-child {
  margin-bottom: 0;
}

/* item */
.why-item {
  padding: 24px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.94), rgba(7, 8, 12, 0.92));
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-item h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.why-item p {
  color: #8f98aa;
  font-size: 14px;
  line-height: 1.7;
}

/* hover subtle */
.why-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

/* responsive */
@media(max-width:900px) {
  .why {
    margin-top: 84px;
  }

  .why-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-head h2 {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .experience {
    margin-top: 56px;
    padding-bottom: 8px;
  }

  .experience::before {
    width: 280px;
    height: 280px;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(84px);
  }

  .exp-head {
    max-width: 100%;
    text-align: center;
  }

  .exp-head span {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .exp-head h2 {
    font-size: 22px;
    margin: 8px 0 10px;
  }

  .exp-head p {
    font-size: 14px;
    line-height: 1.6;
  }

  .slider {
    margin-top: 24px;
  }

  .cards {
    gap: 14px;
  }

  .exp-card {
    min-width: calc(100vw - 28px);
    min-height: 170px;
    padding: 16px 14px;
    border-radius: 22px;
  }

  .exp-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .exp-card p {
    font-size: 12px;
    line-height: 1.6;
  }

  .icon {
    min-width: 28px;
    height: 28px;
    padding: 0 10px;
    margin-bottom: 12px;
    font-size: 9px;
  }

  .arrows {
    justify-content: flex-end;
    margin-top: 14px;
  }

  .arrows button {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    font-size: 14px;
    padding: 0;
  }

  .why {
    margin-top: 52px;
  }

  .why-head {
    margin-bottom: 18px;
    text-align: left;
  }

  .why-head h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .why-head p {
    font-size: 12px;
    line-height: 1.65;
  }

  .why-row {
    gap: 0;
    margin-bottom: 0;
  }

  .why-item {
    padding: 12px 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    box-shadow: none;
  }

  .why-item h4 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .why-item p {
    font-size: 11px;
    line-height: 1.6;
  }

  .why-item:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }
}

@media (max-width: 420px) {
  .exp-card {
    min-width: calc(100vw - 20px);
  }
}

/* why choce end */

/* CTA SECTION */
.cta-section {
  position: relative;
  margin-top: 96px;
  padding: 110px 24px 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(188, 42, 77, 0.5), transparent 58%);
  filter: blur(120px);
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  left: 8%;
  bottom: -180px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(153, 47, 74, 0.24), transparent 60%);
  filter: blur(120px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.cta-inner p {
  color: #a3aab8;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #e5e8ef 100%);
  color: #151b25;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

/* AUTH */
.auth-section {
  padding: 68px 0 24px;
}

.auth-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(188, 42, 77, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(10, 12, 18, 0.96), rgba(7, 8, 12, 0.94));
}

.auth-eyebrow {
  margin: 0 0 10px;
  color: #ff6b8a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.auth-copy p {
  color: #9ea6b7;
  line-height: 1.75;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-form-grid {
  grid-template-columns: 1fr 1fr;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: #dbe2ee;
  font-size: 14px;
}

.auth-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  outline: none;
}

.auth-form input::placeholder {
  color: #798396;
}

.auth-form input:focus {
  border-color: rgba(255, 90, 125, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 90, 125, 0.08);
}

.auth-submit {
  border: none;
  cursor: pointer;
}

.auth-form-grid .auth-submit,
.auth-form-grid .auth-switch {
  grid-column: 1 / -1;
}

.auth-switch {
  color: #9ea6b7;
  font-size: 14px;
}

.auth-switch a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .cta-section {
    margin-top: 72px;
    padding: 86px 18px 92px;
  }

  .cta-inner h2 {
    font-size: 44px;
  }

  .cta-inner p {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .cta-section {
    margin-top: 56px;
    padding: 72px 10px 76px;
  }

  .cta-section::before {
    top: -120px;
    width: 320px;
    height: 320px;
    filter: blur(80px);
  }

  .cta-section::after {
    width: 220px;
    height: 220px;
    left: -40px;
    bottom: -120px;
    filter: blur(90px);
  }

  .cta-inner {
    max-width: 100%;
  }

  .cta-inner h2 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .cta-inner p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .cta-btn {
    padding: 11px 18px;
    font-size: 14px;
  }

  .auth-section {
    padding: 44px 0 8px;
  }

  .auth-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px 14px;
    border-radius: 22px;
  }

  .auth-copy h1 {
    font-size: 26px;
  }

  .auth-copy p,
  .auth-switch {
    font-size: 13px;
  }

  .auth-form-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.footer {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 48px;
  padding: 42px 0 18px;
}

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

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

.footer-logo img {
  width: auto;
  max-width: 152px;
  height: 36px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  color: #9ba3b3;
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  color: #f2f5fb;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-col h4 {
  margin-bottom: 18px;
  font-size: 16px;
}

.footer-col a {
  display: block;
  margin-bottom: 14px;
  color: #a0a8b8;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .footer {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 22px;
  }
}

@media (max-width: 560px) {
  .footer {
    gap: 26px;
    padding: 30px 0 12px;
  }

  .footer-brand {
    gap: 16px;
  }

  .footer-logo img {
    max-width: 138px;
    height: 32px;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-col h4 {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .footer-col a {
    margin-bottom: 10px;
    font-size: 14px;
  }
}