/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* =========================
   ROOT VARIABLES
========================= */
:root {
  --bg: #ffffff;
  --bg-2: #ecebe8;
  --text: #101722;
  --muted: #8f918f;
  --line: #252b35;
  --accent: #ff7b22;
  --dark: #0b1420;
  --white: #ffffff;
  --header-h: 104px;
  --qiro: #14637b;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Body base style */
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Remove default underline */
a {
  text-decoration: none;
}

/* =========================================
   MOBILE APP HERO SECTION
========================================= */

.app-hero-section {
  min-height: 280px;
  margin-top: 60px;
  padding: 30px 40px 20px;
  margin-bottom: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  font-family: 'Outfit', sans-serif;
}

.app-hero-inner {
  width: 100%;
  max-width: 1680px;
}

.app-hero-kicker {
  margin: 0 0 18px;

  color: #14637b;

  font-size: 18px;
  line-height: 1;

  font-weight: 400;
}

.app-hero-title {
  margin: 0;

  color: #081826;

  font-size: clamp(78px, 10vw, 148px);

  line-height: .9;

  letter-spacing: -6px;

  font-weight: 500;
}

.app-hero-text {
  margin: 34px auto 0;

  max-width: 980px;

  color: #18232e;

  font-size: clamp(22px, 1.8vw, 36px);

  line-height: 1.12;

  font-weight: 300;
}

.app-hero-text span {
  color: #7f8a93;
}

/* =========================================
   APP PURPOSE SECTION
========================================= */

.app-purpose-section {
  position: relative;

  min-height: 100vh;

  background: #f7f9fc;

  overflow: hidden;

  padding: 100px 46px 60px;

  font-family: 'Outfit', sans-serif;
}

/* GLOW */

.app-purpose-glow {
  position: absolute;

  right: -8%;
  bottom: -12%;

  width: 980px;
  height: 420px;

  border-radius: 50%;

  background:
    radial-gradient(ellipse at center,
      rgba(20, 99, 123, .55) 0%,
      rgba(20, 99, 123, .24) 28%,
      rgba(96, 176, 198, .12) 52%,
      rgba(255, 255, 255, .04) 70%,
      transparent 82%);

  filter: blur(78px);

  transform: rotate(-14deg);

  pointer-events: none;
}

/* PILL */

.app-purpose-pill {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;

  padding: 0 16px;

  border: 1.4px solid #91a0aa;

  border-radius: 999px;

  color: #6c7982;

  font-size: 16px;
  font-weight: 300;

  margin-bottom: 30px;

  background: rgba(255, 255, 255, .45);

  backdrop-filter: blur(12px);
}

/* GRID */

.app-purpose-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1.05fr .95fr;

  gap: 40px;

  min-height: calc(100vh - 180px);
}

/* LEFT */

.app-purpose-left {
  align-self: start;
}

.app-purpose-title {
  margin: 0;

  color: #081826;

  font-size: clamp(72px, 7vw, 140px);

  line-height: .92;

  letter-spacing: -4px;

  font-weight: 300;
}

.app-purpose-title span {
  color: #14637b;
  font-weight: 600;
}

/* RIGHT */

.app-purpose-right {
  align-self: end;

  justify-self: end;

  max-width: 470px;

  padding-bottom: 110px;
}

.app-purpose-right p {
  margin: 0 0 36px;

  color: #2f3c47;

  font-size: clamp(21px, 1.3vw, 28px);

  line-height: 1.15;

  font-weight: 300;
}

/* FEATURES */

.app-purpose-features {
  display: flex;
  flex-direction: column;

  gap: 18px;
}

.app-feature {
  display: flex;
  align-items: center;

  gap: 14px;

  color: #081826;

  font-size: 18px;

  font-weight: 400;
}

.app-feature-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #14637b;

  box-shadow: 0 0 16px rgba(20, 99, 123, .4);
}

/* ==========================================================
   MOBILE APP PAGE RESPONSIVE
   (Paste below your existing CSS)
========================================================== */

/* ==========================
   LAPTOP (1200px)
========================== */
@media (max-width:1200px) {

  .app-hero-section {
    padding: 30px 32px 20px;
    min-height: 280px;
  }

  .app-hero-title {
    font-size: clamp(64px, 8vw, 110px);
    letter-spacing: -4px;
  }

  .app-hero-text {
    max-width: 850px;
    font-size: 20px;
  }

  .app-purpose-section {
    padding: 90px 36px 50px;
  }

  .app-purpose-grid {
    gap: 30px;
  }

  .app-purpose-title {
    font-size: clamp(60px, 6vw, 100px);
    letter-spacing: -3px;
  }

  .app-purpose-right {
    max-width: 420px;
    padding-bottom: 80px;
  }

  .app-purpose-right p {
    font-size: 20px;
  }

  .app-purpose-glow {
    width: 760px;
    height: 320px;
  }

}


/* ==========================
   TABLET (992px)
========================== */
@media (max-width:992px) {

  .app-hero-section {
    padding: 28px 28px 20px;
    min-height: auto;
  }

  .app-hero-kicker {
    font-size: 16px;
  }

  .app-hero-title {
    font-size: 60px;
    letter-spacing: -3px;
  }

  .app-hero-text {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.4;
  }

  .app-purpose-section {
    min-height: auto;
    padding: 80px 28px;
  }

  .app-purpose-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    min-height: auto;
  }

  .app-purpose-title {
    font-size: 60px;
    letter-spacing: -2px;
  }

  .app-purpose-right {
    max-width: 100%;
    justify-self: start;
    align-self: start;
    padding-bottom: 0;
  }

  .app-purpose-right p {
    font-size: 18px;
    line-height: 1.5;
  }

  .app-feature {
    font-size: 17px;
  }

  .app-purpose-glow {
    width: 550px;
    height: 240px;
    right: -20%;
    bottom: -10%;
  }

}


/* ==========================
   MOBILE (768px)
========================== */
@media (max-width:768px) {

  .app-hero-section {
    margin-top: 40px;
    padding: 24px 20px;
  }

  .app-hero-kicker {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .app-hero-title {
    font-size: 46px;
    line-height: 1;
    letter-spacing: -2px;
  }

  .app-hero-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .app-purpose-section {
    padding: 70px 20px;
  }

  .app-purpose-pill {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
    margin-bottom: 24px;
  }

  .app-purpose-grid {
    gap: 35px;
  }

  .app-purpose-title {
    font-size: 46px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .app-purpose-right {
    max-width: 100%;
  }

  .app-purpose-right p {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .app-purpose-features {
    gap: 14px;
  }

  .app-feature {
    font-size: 15px;
    gap: 12px;
  }

  .app-feature-dot {
    width: 8px;
    height: 8px;
  }

  .app-purpose-glow {
    width: 360px;
    height: 160px;
    filter: blur(50px);
  }

}


/* ==========================
   SMALL MOBILE (576px)
========================== */
@media (max-width:576px) {

  .app-hero-section {
    margin-top: 30px;
    padding: 20px 16px;
  }

  .app-hero-kicker {
    font-size: 14px;
  }

  .app-hero-title {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .app-hero-text {
    font-size: 15px;
    margin-top: 18px;
  }

  .app-purpose-section {
    padding: 60px 16px;
  }

  .app-purpose-pill {
    font-size: 12px;
    min-height: 34px;
  }

  .app-purpose-title {
    font-size: 36px;
  }

  .app-purpose-right p {
    font-size: 15px;
  }

  .app-feature {
    font-size: 14px;
  }

  .app-purpose-glow {
    width: 260px;
    height: 120px;
  }

}


/* ==========================
   EXTRA SMALL (400px)
========================== */
@media (max-width:400px) {

  .app-hero-section {
    padding: 50px 14px 25px;
    margin-top: 50px;
  }

  .app-hero-kicker {
    font-size: 13px;
  }

  .app-hero-title {
    font-size: 30px;
    letter-spacing: 0;
  }

  .app-hero-text {
    font-size: 14px;
  }

  .app-purpose-section {
    padding: 50px 14px;
  }

  .app-purpose-pill {
    min-height: 32px;
    padding: 0 12px;
    font-size: 11px;
  }

  .app-purpose-title {
    font-size: 30px;
  }

  .app-purpose-right p {
    font-size: 14px;
  }

  .app-feature {
    font-size: 13px;
    gap: 10px;
  }

  .app-feature-dot {
    width: 7px;
    height: 7px;
  }

  .app-purpose-glow {
    width: 200px;
    height: 90px;
    filter: blur(35px);
  }

}