/* =========================================================
   ASTRA DIGITAL
   GLOBAL DESIGN SYSTEM
========================================================= */

:root {
  --bg: #050505;
  --surface: #0f0f0f;
  --surface-2: #131313;
  --surface-3: #181818;

  --text: #f5f5f5;
  --text-soft: #c2c2c8;
  --text-muted: #8b8b95;
  --text-dim: #66666f;

  --blue: #558dff;
  --blue-bright: #6b98ff;
  --purple: #8b5cf6;

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);

  --green: #25d366;

  --container: 1280px;
  --gutter: 32px;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;

  background: var(--bg);
  color: var(--text);

  font-family: "Inter", sans-serif;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  overflow-x: hidden;
}

body,
button,
input,
textarea {
  font-family: "Inter", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  border: 0;
  outline: 0;
}

button {
  cursor: pointer;
}

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

::selection {
  background: rgba(85, 141, 255, 0.35);
  color: #fff;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 80px 0;
  background: var(--bg);
}

.section-label {
  display: inline-block;

  color: #a6a6af;

  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 25px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 18px;

  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;

  letter-spacing: -0.045em;
  font-weight: 700;
}

.section-heading h2 span {
  display: block;

  color: #7d7d86;
}

.section-heading p {
  max-width: 680px;

  margin-top: 22px;

  color: var(--text-muted);

  font-size: 17px;
  line-height: 1.7;
}


/* =========================================================
   NAVBAR
========================================================= */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  background: rgba(5, 5, 5, 0.78);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav {
  height: 82px;

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

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

  gap: 12px;

  flex-shrink: 0;
}

.logo-mark {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  border-radius: 14px;

  background: #558DFF;
  box-shadow: 0 0 25px rgba(85, 141, 255, 0.06);

  overflow: hidden;
}

.logo-mark img {
  width: 46px;
  height: 46px;

  display: block;

  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.logo-text strong {
  font-size: 15px;
  font-weight: 700;

  letter-spacing: -0.02em;
}

.logo-text small {
  color: var(--text-muted);

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

  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;

  gap: 36px;

  margin-left: auto;
  margin-right: 55px;
}

.nav-links a {
  color: #a5a5ad;

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

  transition:
    color 0.3s ease;
}

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

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  min-height: 44px;

  padding: 0 18px;

  border-radius: 12px;

  background: var(--blue);

  color: #fff;

  font-size: 12px;
  font-weight: 600;

  transition:
    transform 0.3s var(--ease),
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-button:hover {
  transform: translateY(-2px);

  background: var(--blue-bright);

  box-shadow:
    0 12px 30px rgba(85, 141, 255, 0.2);
}

.nav-button span {
  font-size: 16px;
}

.mobile-menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid var(--border);
  border-radius: 12px;

  background: var(--surface);

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 4px;
}

.mobile-menu-toggle span {
    display: block;

    width: 18px;
    height: 2px;

    border-radius: 10px;

    background: #fff;

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}



/* =========================================================
   BUTTONS
========================================================= */

.button {
  min-height: 54px;

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

  gap: 10px;

  padding: 0 23px;

  border-radius: 12px;

  font-size: 14px;
  font-weight: 600;

  transition:
    transform 0.3s var(--ease),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.button-primary {
  background:
    linear-gradient(
      100deg,
      var(--blue),
      var(--purple)
    );

  color: #fff;

  box-shadow:
    0 14px 35px rgba(85, 141, 255, 0.16);
}

.button-primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 45px rgba(85, 141, 255, 0.25);
}

.button-secondary {
  border: 1px solid var(--border);

  background: rgba(255, 255, 255, 0.015);

  color: #fff;
}

.button-secondary:hover {
  transform: translateY(-3px);

  border-color: var(--border-hover);

  background: rgba(255, 255, 255, 0.04);
}


/* =========================================================
   HERO — ASTRA DIGITAL
========================================================= */

.hero {
  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;

  padding-top: 82px;

  overflow: hidden;

  background:
    radial-gradient(
      900px 500px at 50% 0%,
      rgba(52, 72, 170, 0.18),
      transparent 72%
    ),
    radial-gradient(
      700px 500px at 90% 28%,
      rgba(104, 65, 170, 0.10),
      transparent 72%
    ),
    #050505;
}


/* =========================================================
   HERO ATMOSPHERE
========================================================= */

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(
      800px 420px at 50% -5%,
      rgba(72, 92, 220, 0.16),
      transparent 72%
    ),
    radial-gradient(
      600px 420px at 82% 30%,
      rgba(122, 73, 190, 0.08),
      transparent 72%
    );

  z-index: 0;
}


/* Soft concentrated glow */

.hero-bg-glow {
  position: absolute;

  width: 1000px;
  height: 560px;

  top: -260px;
  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse at center,
      rgba(67, 89, 210, 0.20) 0%,
      rgba(67, 89, 210, 0.10) 32%,
      rgba(67, 89, 210, 0.035) 52%,
      transparent 74%
    );

  filter: blur(42px);

  pointer-events: none;

  z-index: 0;
}


/* Subtle purple atmosphere on the right */

.hero::after {
  content: "";

  position: absolute;

  width: 700px;
  height: 500px;

  top: 100px;
  right: -320px;

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse,
      rgba(126, 76, 190, 0.075),
      transparent 70%
    );

  filter: blur(55px);

  pointer-events: none;

  z-index: 0;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {
  position: relative;
  z-index: 2;

  width: min(
    calc(100% - 64px),
    1180px
  );

  min-height: calc(100vh - 82px);

  margin: 0 auto;

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

  padding: 70px 0 100px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  width: 100%;

  max-width: 1050px;

  margin: 0 auto;

  text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.hero-eyebrow {
  width: fit-content;

  margin: 0 auto 28px;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding: 8px 13px;

  border: 1px solid rgba(120, 135, 255, 0.20);

  border-radius: 999px;

  background:
    rgba(65, 78, 170, 0.075);

  color: #a4add2;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 0.17em;

  box-shadow:
    inset 0 0 20px rgba(80, 100, 255, 0.025);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;

  flex-shrink: 0;

  border-radius: 50%;

  background: #718bff;

  box-shadow:
    0 0 12px rgba(113, 139, 255, 0.8);
}


/* =========================================================
   HEADLINE
========================================================= */

.hero-title {
  max-width: 1050px;

  margin: 0 auto;

  color: #f7f7f8;

  font-size: clamp(58px, 5.35vw, 82px);

  font-weight: 700;

  line-height: 1.02;

  letter-spacing: -0.055em;
}

.hero-title .hero-accent {
  display: inline;

  background:
    linear-gradient(
      90deg,
      #628cff 0%,
      #7284ff 35%,
      #8875f7 68%,
      #9a6de8 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;

  color: transparent;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {
  max-width: 900px;

  margin: 30px auto 0;

  color: #a6a6b0;

  font-size: 18px;

  line-height: 1.65;

  text-align: center;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  margin-top: 34px;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.hero-btn {
  min-height: 52px;

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

  gap: 9px;

  padding: 0 21px;

  border-radius: 11px;

  font-size: 12px;
  font-weight: 600;

  transition:
    transform 0.3s var(--ease),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* Primary */

.hero-btn-primary {
  border:
    1px solid rgba(112, 130, 255, 0.55);

  background:
    linear-gradient(
      135deg,
      #587dff 0%,
      #6675ff 50%,
      #7568ef 100%
    );

  color: #fff;

  box-shadow:
    0 12px 32px rgba(76, 100, 255, 0.18);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);

  box-shadow:
    0 16px 38px rgba(76, 100, 255, 0.27);
}

.hero-btn-primary span {
  font-size: 16px;
}


/* Secondary */

.hero-btn-secondary {
  border:
    1px solid rgba(255, 255, 255, 0.10);

  background:
    rgba(255, 255, 255, 0.018);

  color: #d5d5da;
}

.hero-btn-secondary:hover {
  transform: translateY(-2px);

  border-color:
    rgba(255, 255, 255, 0.18);

  background:
    rgba(255, 255, 255, 0.045);
}


/* =========================================================
   TRUST
========================================================= */

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  margin-top: 22px;

  color: #66666f;

  font-size: 10px;
}

.hero-trust-dot {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #4fbb79;

  box-shadow:
    0 0 8px rgba(79, 187, 121, 0.35);
}


/* =========================================================
   HERO MOBILE
========================================================= */

@media (max-width: 768px) {

  .hero {
    min-height: auto;

    padding-top: 30px;

    background:
      radial-gradient(
        500px 350px at 50% 0%,
        rgba(52, 72, 170, 0.14),
        transparent 72%
      ),
      #050505;
  }

  .hero-container {
    width:
      calc(100% - 40px);

    min-height:
      calc(100vh - 70px);

    padding:
      80px 0
      70px;
  }

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

  .hero-eyebrow {
    margin-bottom: 22px;

    padding: 7px 11px;

    font-size: 8px;

    letter-spacing: 0.14em;
  }

  .hero-title {
    font-size:
      clamp(43px, 12vw, 58px);

    line-height: 0.99;

    letter-spacing: -0.055em;
  }

  .hero-title span {
    margin-top: 3px;
  }

  .hero-description {
    max-width: 500px;

    margin-top: 23px;

    font-size: 14px;

    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;

    width: 100%;

    margin-top: 28px;
  }

  .hero-btn {
    width: 100%;

    min-height: 52px;
  }

  .hero-trust {
    margin-top: 20px;

    font-size: 9px;
  }

  .hero-bg-glow {
    width: 650px;
    height: 400px;

    top: -180px;
  }

  .hero::after {
    width: 450px;
    height: 350px;

    right: -280px;
    top: 180px;
  }
}


@media (max-width: 420px) {

  .hero-container {
    width:
      calc(100% - 32px);

    padding-top: 65px;
  }

  .hero-title {
    font-size: 43px;
  }

  .hero-description {
    font-size: 13px;
  }
}


/* =========================================================
   PARTNERS
========================================================= */

.partners-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.platform-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;
}

.platform-card {
  position: relative;

  min-height: 290px;

  padding: 30px;

  display: flex;
  flex-direction: column;

  border:
    1px solid var(--border);

  border-radius: var(--radius-lg);

  background: var(--surface);

  transition:
    transform 0.4s var(--ease),
    border-color 0.4s ease,
    background 0.4s ease;
}

.platform-card:hover {
  transform: translateY(-6px);

  border-color: var(--border-hover);

  background: #111115;
}

.platform-logo {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  margin-bottom: 42px;

  border-radius: 15px;

  font-size: 20px;
  font-weight: 700;
}

.shopify-logo {
  background: rgba(149, 191, 71, 0.12);
  color: #95bf47;
}

.google-logo {
  background: rgba(66, 133, 244, 0.12);
  color: #7da8ff;
}

.meta-logo {
  background: rgba(24, 119, 242, 0.12);
  color: #5b9cff;
}

.platform-content {
  max-width: 330px;
}

.platform-content > span {
  color: var(--text-dim);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.16em;
}

.platform-content h3 {
  margin-top: 10px;

  font-size: 28px;
  font-weight: 600;

  letter-spacing: -0.03em;
}

.platform-content p {
  margin-top: 10px;

  color: var(--text-muted);

  font-size: 13px;
  line-height: 1.6;
}

.card-arrow {
  position: absolute;

  right: 25px;
  bottom: 25px;

  color: #55555d;

  font-size: 18px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.platform-card:hover .card-arrow {
  color: #fff;

  transform: translate(3px, -3px);
}


/* =====================================================
   SERVICES SECTION
===================================================== */

.services-section {
    width: 100%;
    padding: 120px 0;
    background: #050505;
    color: #f5f5f7;
}

.services-container {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.services-header {
    max-width: 900px;
    margin-bottom: 70px;
}

.services-eyebrow {
    display: block;
    margin-bottom: 18px;

    color: #7fa8ff;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.services-title {
    margin: 0 0 22px;

    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 650;
}

.services-description {
    max-width: 820px;
    margin: 0;

    color: #9b9ba5;

    font-size: 20px;
    line-height: 1.6;
}


/* =====================================================
   SERVICES GRID
===================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {
    position: relative;

    min-height: 310px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    background: #101010;

    border: 1px solid #292929;
    border-radius: 18px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    background: #121212;

    border-color: #393939;
}


/* =====================================================
   SERVICE NUMBER
===================================================== */

.service-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 28px;

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

    background: #1d2536;

    border-radius: 14px;

    color: #86adff;
}

.service-icon span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}


/* Individual accents */

.service-icon-build {
    color: #91b5ff;
}

.service-icon-grow {
    color: #8faeff;
}

.service-icon-retain {
    color: #a394ff;
}

.service-icon-operate {
    color: #8aaeff;
}

.service-icon-presence {
    color: #91b5ff;
}

.service-icon-marketplace {
    color: #a18fff;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.service-content {
    height: 100%;

    display: flex;
    flex-direction: column;
}

.service-category {
    margin-bottom: 11px;

    color: #73737f;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-content h3 {
    margin: 0 0 13px;

    color: #f1f1f3;

    font-size: 23px;
    line-height: 1.25;
    font-weight: 600;

    letter-spacing: -0.5px;
}

.service-content p {
    max-width: 430px;

    margin: 0;

    color: #9b9ba5;

    font-size: 16px;
    line-height: 1.55;
}


/* =====================================================
   LEARN MORE
===================================================== */

.service-link {
    width: fit-content;

    margin-top: auto;
    padding-top: 25px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #82aaff;

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

    text-decoration: none;

    transition:
        gap 0.25s ease,
        color 0.25s ease;
}

.service-link span {
    font-size: 21px;
    line-height: 1;
}

.service-link:hover {
    gap: 13px;
    color: #a5c1ff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .services-section {
        padding: 80px 0 90px;
    }

    .services-container {
        width: calc(100% - 40px);
    }

    .services-header {
        margin-bottom: 45px;
    }

    .services-eyebrow {
        margin-bottom: 15px;

        font-size: 12px;
        letter-spacing: 3px;
    }

    .services-title {
        margin-bottom: 18px;

        font-size: 44px;
        line-height: 1.02;
        letter-spacing: -2px;
    }

    .services-description {
        font-size: 17px;
        line-height: 1.6;
    }

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

    .service-card {
        min-height: 285px;
        padding: 24px;

        border-radius: 16px;
    }

    .service-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 24px;

        border-radius: 13px;
    }

    .service-content h3 {
        font-size: 21px;
    }

    .service-content p {
        font-size: 16px;
    }

    .service-link {
        padding-top: 22px;
    }

}

/* =====================================================
   SERVICES — DESKTOP CARD LAYOUT
===================================================== */

.service-card {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    column-gap: 20px;
}


/* NUMBER */

.service-icon {
    grid-column: 1;
    grid-row: 1;

    margin: 0;
}


/* CATEGORY + HEADING */

.service-content {
    grid-column: 2;
    grid-row: 1;

    min-width: 0;
}


/* CATEGORY */

.service-category {
    margin: 0 0 12px;
}


/* HEADING */

.service-card h3 {
    margin: 0;
}


/* PARAGRAPH — FULL WIDTH */

.service-card > p {
    grid-column: 1 / -1;
    grid-row: 2;

    margin: 25px 0 0;
}

.service-card h3 {
    margin: 0;
    min-height: 60px;
}

/* LEARN MORE — FULL WIDTH */

.service-card > .service-link {
    grid-column: 1 / -1;
    grid-row: 3;

    margin-top: 0px;
}


/* =====================================================
   SELECTED WORK
===================================================== */

.work-section {
    width: 100%;
    padding: 120px 0 80px;

    background: #050505;
    color: #f5f5f7;
}

.work-container {
    width: min(1440px, calc(100% - 80px));
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.work-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 80px;

    align-items: end;

    margin-bottom: 70px;
}

.work-eyebrow {
    display: block;

    margin-bottom: 20px;

    color: #6f96ff;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;

    text-transform: uppercase;
}

.work-heading h2 {
    max-width: 800px;

    margin: 0;

    color: #f5f5f7;

    font-size: clamp(52px, 5vw, 78px);
    line-height: 0.98;

    letter-spacing: -4px;
    font-weight: 650;
}

.work-heading h2 span {
    display: block;
    color: #6f96ff;
}


.work-intro {
    margin: 0;

    color: #a0a0aa;

    font-size: 17px;
    line-height: 1.55;
}


/* =====================================================
   WORK GRID
===================================================== */

.work-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


/* =====================================================
   WORK CARD
===================================================== */

.work-card {
    display: block;

    overflow: hidden;

    background: #101010;

    border: 1px solid #272727;
    border-radius: 20px;

    color: inherit;
    text-decoration: none;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.work-card:hover {
    transform: translateY(-6px);

    border-color: #3a3a3a;
}


/* =====================================================
   WEBSITE SHOWCASE IMAGE
===================================================== */

.work-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #111;

    line-height: 0;
}

.work-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    transition: transform 0.5s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.02);
}


/* =====================================================
   IMAGE OVERLAY
   Optional — keep subtle
===================================================== */

.work-image-overlay {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.04) 55%,
            rgba(0, 0, 0, 0.20) 100%
        );
}


/* =====================================================
   BRAND NAME OVERLAY
   Optional
===================================================== */

.work-brand {
    position: absolute;

    inset: 0;

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

    color: #ffffff;

    font-size: 28px;
    font-weight: 650;

    letter-spacing: -1px;

    text-shadow:
        0 2px 20px rgba(0, 0, 0, 0.35);

    pointer-events: none;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.work-card-content {
    min-height: 128px;

    padding: 25px 27px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.work-category {
    display: block;

    margin-bottom: 10px;

    color: #686871;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.work-card-content h3 {
    margin: 0 0 5px;

    color: #eeeeef;

    font-size: 23px;
    line-height: 1.2;

    font-weight: 600;
}

.work-card-content p {
    margin: 0;

    color: #777780;

    font-size: 13px;
}

.work-arrow {
    flex-shrink: 0;

    color: #777780;

    font-size: 28px;
    font-weight: 300;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.work-card:hover .work-arrow {
    color: #9ab8ff;

    transform: translate(3px, -3px);
}


/* =====================================================
   TRUSTED BRANDS
===================================================== */

.trusted-brands {
    margin-top: 75px;
    padding-top: 28px;

    border-top: 1px solid #202020;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.trusted-label {
    flex-shrink: 0;

    color: #686871;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2.5px;
    text-transform: uppercase;

    white-space: nowrap;
}


/* =====================================================
   TRUSTED BRANDS — LOGO STRIP
===================================================== */

.trusted-logo-strip {
    flex: 1;

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

    gap: 55px;
}

.trusted-logo {
    width: 140px;
    height: 55px;

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

    flex-shrink: 0;
}

.trusted-logo img {
    display: block;

    width: auto;
    height: auto;

    object-fit: contain;

    opacity: 0.7;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


/* =====================================================
   DESKTOP — INDIVIDUAL LOGO SIZES
===================================================== */

.trusted-logo img[alt="Noah Sports"] {
    max-width: 155px;
    max-height: 40px;
}

.trusted-logo img[alt="Specton"] {
    max-width: 150px;
    max-height: 38px;
}

.trusted-logo img[alt="Ishika"] {
    max-width: 115px;
    max-height: 40px;
}

.trusted-logo img[alt="Dharitri"] {
    max-width: 95px;
    max-height: 48px;
}


/* Desktop hover */

.trusted-logo:hover img {
    opacity: 1;
    transform: scale(1.03);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .trusted-logo-strip {
        width: 100%;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 22px 18px;

        align-items: center;
        justify-content: center;

        flex: none;
    }

    .trusted-logo {
        width: 100%;
        height: 55px;

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

        min-width: 0;
    }

    /* Mobile sizes */

    .trusted-logo img[alt="Noah Sports"] {
        max-width: 125px;
        max-height: 34px;
    }

    .trusted-logo img[alt="Specton"] {
        max-width: 120px;
        max-height: 32px;
    }

    .trusted-logo img[alt="Ishika"] {
        max-width: 85px;
        max-height: 25px;
    }

    .trusted-logo img[alt="Dharitri"] {
        max-width: 75px;
        max-height: 45px;
    }

    /* Touch feedback */

    .trusted-logo:active img {
        opacity: 1;
        transform: scale(1.04);
    }

}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .work-header {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .work-intro {
        max-width: 600px;
    }

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

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .work-section {
        padding: 85px 0 60px;
    }

    .work-container {
        width: calc(100% - 40px);
    }


    /* HEADER */

    .work-header {
        margin-bottom: 45px;

        gap: 20px;
    }

    .work-eyebrow {
        margin-bottom: 15px;

        font-size: 11px;
        letter-spacing: 2.5px;
    }

    .work-heading h2 {
        font-size: 45px;
        line-height: 1;

        letter-spacing: -2.5px;
    }

    .work-intro {
        font-size: 16px;
        line-height: 1.55;
    }


    /* WORK GRID */

    .work-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    /* WORK CARD */

    .work-card {
        border-radius: 17px;
    }


    /* IMPORTANT:
       Do NOT force a fixed height on the image.
       Our showcase images already contain the
       desktop + mobile website composition.
    */

    .work-image {
        height: auto;
    }

    .work-image img {
        width: 100%;
        height: auto;

        object-fit: contain;
    }


    /* CARD CONTENT */

    .work-card-content {
        min-height: 120px;

        padding: 22px;
    }

    .work-category {
        margin-bottom: 8px;

        font-size: 9px;
    }

    .work-card-content h3 {
        font-size: 21px;
    }

    .work-card-content p {
        font-size: 12px;
    }

    .work-arrow {
        font-size: 25px;
    }


    /* TRUSTED BRANDS */

    .trusted-brands {
        margin-top: 55px;

        padding-top: 25px;

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .trusted-label {
        margin: 0;

        font-size: 10px;
        letter-spacing: 2px;
    }


    /* LOGOS */

    .trusted-logos {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 20px;
    }

    .trusted-logos img {
        max-width: 90px;
        max-height: 30px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .work-container {
        width: calc(100% - 28px);
    }

    .work-heading h2 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .work-intro {
        font-size: 15px;
    }

    .work-card-content {
        padding: 19px;
    }

    .trusted-logos {
        gap: 12px;
    }

    .trusted-logos img {
        max-width: 78px;
        max-height: 26px;
    }

}


/* =========================================================
   WHY ASTRA
========================================================= */

.why-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;
}

.why-card {
  min-height: 330px;

  padding: 30px;

  border:
    1px solid var(--border);

  border-radius: var(--radius-lg);

  background: var(--surface);

  transition:
    transform 0.4s var(--ease),
    border-color 0.4s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(111, 150, 255, 0.32);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.why-number {
    display: block;

    color: #6f96ff;

    font-size: 38px;
    font-weight: 500;
    line-height: 1;

    letter-spacing: -0.04em;
}

.why-card h3 {
  max-width: 260px;

  margin-top: 35px;

  font-size: 25px;

  line-height: 1.15;

  letter-spacing: -0.035em;
}

.why-card p {
  margin-top: 14px;

  color: var(--text-muted);

  font-size: 13px;
  line-height: 1.65;
}

/* =====================================================
   WHY ASTRA — ASTRA STYLE
===================================================== */

.why-section .section-label {
    color: #6f96ff;
}

.why-section .section-heading h2 {
    color: #f5f5f7;
}

.why-section .section-heading h2 span {
    color: #6f96ff;
}

.why-section .section-heading h2 span {
    display: inline;
}

/* =====================================================
   WHY ASTRA — CARD FOOTER
===================================================== */

.why-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 28px;
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card-tag {
    color: #6f96ff;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.4;
}

.why-card-icon {
    width: 38px;
    height: 38px;

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

    border: 1px solid rgba(111, 150, 255, 0.35);
    border-radius: 50%;

    color: #6f96ff;

    background: rgba(111, 150, 255, 0.04);

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.why-card-icon svg {
    width: 21px;
    height: 21px;
}

.why-card:hover .why-card-icon {
    border-color: rgba(111, 150, 255, 0.7);
    background: rgba(111, 150, 255, 0.08);
    transform: translateY(-2px);
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
  border-top:
    1px solid rgba(255, 255, 255, 0.05);

  padding-top: 80px;
}

.faq-grid {
  display: grid;

  grid-template-columns: 0.75fr 1.25fr;

  gap: 100px;

  align-items: start;
}

.faq-list {
  border-top:
    1px solid rgba(255, 255, 255, 0.08);
}

.faq-section .section-heading h2 span {
    color: #6f96ff;
}

.faq-item {
  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  min-height: 75px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  cursor: pointer;

  list-style: none;

  color: #e9e9ed;

  font-size: 14px;
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  color: #66666f;

  font-size: 22px;
  font-weight: 300;

  transition:
    transform 0.3s ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 700px;

  padding-bottom: 25px;

  color: var(--text-muted);

  font-size: 13px;
  line-height: 1.7;
}

.faq-section .section-label {
    color: #6f96ff;
}

/* =====================================================
   FAQ — SMOOTH ACCORDION
===================================================== */

.faq-item {
    overflow: hidden;
}

.faq-item p {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;

    transition:
        max-height 0.45s ease,
        opacity 0.3s ease,
        margin-top 0.45s ease;
}

.faq-item[open] p {
    max-height: 200px;
    opacity: 1;
    margin-top: 0px;
}

.faq-item summary span {
    display: inline-block;
    transition: transform 0.35s ease;
}

.faq-item[open] summary span {
    transform: rotate(45deg);
}

/* =====================================================
   FAQ — ACTIVE STATE
===================================================== */

.faq-item summary {
    color: #f5f5f7;
    transition: color 0.3s ease;
}

.faq-item[open] summary {
    color: #6f96ff;
}

.faq-item summary span {
    color: #777780;
    transition:
        color 0.3s ease,
        transform 0.35s ease;
}

.faq-item[open] summary span {
    color: #6f96ff;
    transform: rotate(45deg);
}

/* =====================================================
   FAQ — MOBILE SPACING
===================================================== */

@media (max-width: 768px) {

    .faq-section {
        padding-top: 40px !important;
        padding-bottom: 70px;
    }

}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  position: relative;

  padding-top: 50px;
  padding-bottom: 60px;

  background:
    radial-gradient(
      ellipse 75% 55% at 30% 0%,
      rgba(42, 65, 135, 0.42),
      rgba(20, 28, 55, 0.20) 38%,
      transparent 72%
    ),
    #050608;

  overflow: hidden;
}

.contact-section::before {
  content: "";

  position: absolute;

  top: -180px;
  left: 8%;

  width: 850px;
  height: 500px;

  background:
    radial-gradient(
      ellipse,
      rgba(71, 101, 190, 0.22),
      transparent 68%
    );

  pointer-events: none;

  filter: blur(20px);
}

.contact-wrapper {
  display: grid;

  grid-template-columns: 0.95fr 1.05fr;

  gap: 70px;

  padding: 50px 70px;

  overflow: visible;

  border: 0;

  border-radius: 0;

  background: transparent;
}
.contact-intro h2 {
  margin-top: 18px;

  font-size: clamp(42px, 5vw, 64px);

  line-height: 1;

  letter-spacing: -0.05em;
}

.contact-intro h2 span {
  display: block;

  color: #7b7b85;
}

.contact-intro p {
  max-width: 450px;

  margin-top: 22px;

  color: var(--text-muted);

  font-size: 14px;
  line-height: 1.7;
}

.contact-form {
  display: flex;

  flex-direction: column;

  gap: 22px;

  padding: 40px;

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

  border-radius: 20px;

  background: rgba(18, 18, 21, 0.72);

  box-shadow:
    inset 0 0 40px rgba(255, 255, 255, 0.015);
}

.form-field label {
  color: #a6a6b0;

  font-size: 11px;

  font-weight: 500;

  letter-spacing: 0.04em;

  text-transform: uppercase;
}

.form-row {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 15px;
}

.form-field {
  display: flex;
  flex-direction: column;

  gap: 8px;
}


.form-field input,
.form-field textarea {
  width: 100%;

  padding: 15px 16px;

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

  border-radius: 10px;

  background: #0b0c10;

  color: #f5f5f7;

  font-size: 13px;

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.form-field input {
  height: 48px;
}

.form-field textarea {
  resize: vertical;

  min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #55555e;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(111, 150, 255, 0.65);

  background: #0d0f14;

  box-shadow:
    0 0 0 3px rgba(111, 150, 255, 0.06);
}

.form-submit {
  width: 100%;

  height: 58px;

  margin-top: 2px;

  border: 0;

  border-radius: 30px;

  background: #6f96ff;

  color: #08090d;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.form-submit:hover {
  background: #82a4ff;

  transform: translateY(-2px);

  box-shadow:
    0 10px 30px rgba(111, 150, 255, 0.18);
}

.form-submit span {
  margin-left: 8px;

  font-size: 18px;

  transition: transform 0.3s ease;
}

.form-submit:hover span {
  transform: translateX(4px);
}

.form-note {
  color: #5e5e67;

  font-size: 9px;

  text-align: center;
}

/* =====================================================
   CONTACT DETAILS ICONS
===================================================== */

.contact-detail svg {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

    color: #6f96ff;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;

    color: #a6a6b0;

    font-size: 14px;
    line-height: 1.4;

    text-decoration: none;

    transition: color 0.3s ease;
}

.contact-detail svg {
    width: 22px;
    height: 22px;

    flex-shrink: 0;

    color: #6f96ff;
}

.contact-detail:hover {
    color: #f5f5f7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;

    margin-top: 28px;
}

/* =====================================================
   CONTACT — ASTRA ACCENT
===================================================== */

.contact-section .section-label {
    color: #6f96ff;
}

.contact-intro h2 span {
    color: #6f96ff;
}

/* ================================
   PHONE INPUT
================================ */

.phone-input {
    display: grid;

    grid-template-columns: 80px minmax(0, 1fr);

    width: 100%;
    height: 48px;

    box-sizing: border-box;

    overflow: hidden;

    background: #0b0c10;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* COUNTRY CODE */

.phone-input select {
    width: 100%;
    height: 100%;

    padding: 0 28px 0 10px;

    border: 0;
    border-right: 1px solid rgba(255,255,255,0.08);

    outline: none;

    background: transparent;

    color: #f5f5f7;

    font-family: inherit;
    font-size: 13px;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}

.phone-input {
    position: relative;
}

.phone-input::after {
    content: "⌄";

    position: absolute;

    left: 55px;
    top: 40%;

    transform: translateY(-55%);

    color: #f5f5f7;

    font-size: 18px;
    line-height: 1;

    pointer-events: none;
}


/* PHONE NUMBER */

.phone-input input {
    width: 100%;
    height: 100%;

    min-width: 0;

    box-sizing: border-box;

    padding: 0 16px;

    border: 0 !important;
    border-radius: 0 !important;

    outline: none;

    background: transparent !important;

    color: #f5f5f7;

    font-family: inherit;
    font-size: 13px;

    box-shadow: none !important;
}


/* PLACEHOLDER */

.phone-input input::placeholder {
    color: #55555e;
}


/* FOCUS */

.phone-input:focus-within {
    border-color: rgba(111, 150, 255, 0.65);

    background: #0d0f14;

    box-shadow:
        0 0 0 3px rgba(111, 150, 255, 0.06);
}


/* DROPDOWN */

.phone-input select option {
    background: #111216;
    color: #ffffff;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 55px 0 25px;

  border-top:
    1px solid rgba(255, 255, 255, 0.07);

  background: #030303;
}

.footer-top {
  display: grid;

  grid-template-columns: 1.6fr repeat(3, 1fr);

  gap: 60px;

  padding-bottom: 20px;
}

.footer-brand p {
  max-width: 270px;

  margin-top: 20px;

  color: var(--text-muted);

  font-size: 12px;
  line-height: 1.6;
}

.footer-column {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 13px;
}

.footer-column > span {
  margin-bottom: 7px;

  color: #6f96ff;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.15em;
}

.footer-column a {
  color: #9696a0;

  font-size: 11px;

  transition:
    color 0.3s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;

  padding-top: 23px;

  border-top:
    1px solid rgba(255, 255, 255, 0.06);

  color: #55555d;

  font-size: 9px;
}

.footer-bottom a {
    color: #55555d;
    font-size: 9px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #6f96ff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  :root {
    --gutter: 24px;
  }

  .nav-links {
    gap: 22px;

    margin-right: 25px;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    padding-top: 100px;
  }

  .hero-content {
    max-width: 750px;
  }

  .hero-visual {
    min-height: 580px;

    margin-top: 15px;
  }

  .commerce-window {
    right: 0;
  }

  .faq-grid {
    gap: 50px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  :root {
    --gutter: 20px;
  }

  .section {
    padding: 45px 0;
  }


  /* NAV */

  .nav {
    height: 70px;
  }

  .nav-links,
  .nav-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    transition:
    border-color 0.25s ease,
    background 0.25s ease;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;

    max-height: 0;
    opacity: 0;

    overflow: hidden;

    padding: 0 20px;

    background: rgba(5, 5, 5, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.06);

    transform: translateY(-10px);

    pointer-events: none;

    transition:
        max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.4s ease;
}

.mobile-menu.active {
    max-height: 520px;

    opacity: 1;

    padding: 10px 20px 20px;

    transform: translateY(0);

    pointer-events: auto;
}

  .mobile-menu a {
    padding: 14px 0;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.06);

    color: #aaaab3;

    font-size: 14px;
  }

  .mobile-menu-cta {
    margin-top: 15px;

    padding: 14px 16px !important;

    border: 0 !important;

    border-radius: 12px;

    background: var(--blue);

    color: #fff !important;

    text-align: center;
  }


  /* HERO */

  .hero {
    min-height: auto;

    padding-top: 70px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding-top: 65px;
    padding-bottom: 50px;
  }

  .eyebrow {
    margin-bottom: 20px;

    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(43px, 12vw, 60px);

    line-height: 0.99;
  }

  .hero-description {
    margin-top: 23px;

    font-size: 15px;

    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;

    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    margin-top: 20px;

    font-size: 10px;
  }

  .hero-visual {
    min-height: 420px;

    margin-top: 35px;
  }

  .orbit-one {
    width: 400px;
    height: 400px;
  }

  .orbit-two {
    width: 300px;
    height: 300px;
  }

  .commerce-window {
    width: 100%;

    right: 0;

    border-radius: 17px 17px 0 0;
  }

  .window-top {
    height: 42px;
  }

  .window-url {
    height: 25px;

    font-size: 8px;
  }

  .commerce-content {
    padding: 12px;
  }

  .commerce-banner {
    min-height: 135px;

    padding: 18px;
  }

  .banner-product {
    width: 90px;
    height: 90px;
  }

  .product-grid {
    gap: 7px;
  }

  .fake-product {
    padding: 6px;
  }

  .fake-product > div {
    height: 65px;
  }

  .floating-card {
    min-width: 145px;

    padding: 10px 11px;

    border-radius: 13px;

    gap: 8px;
  }

  .floating-card strong {
    font-size: 9px;
  }

  .floating-card span {
    font-size: 7px;
  }

  .floating-icon {
    width: 29px;
    height: 29px;

    border-radius: 8px;

    font-size: 9px;
  }

  .floating-shopify {
    top: 4%;
    left: -7px;
  }

  .floating-meta {
    top: 1%;
    right: -7px;
  }

  .floating-google {
    bottom: 14%;
    right: -3px;
  }

  .floating-whatsapp {
    bottom: 18%;
    left: -7px;
  }


  /* SECTION HEADINGS */

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .section-heading p {
    font-size: 14px;
  }


  /* PARTNERS */

  .platform-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .platform-card {
    min-height: 240px;

    padding: 24px;
  }

  .platform-logo {
    width: 45px;
    height: 45px;

    margin-bottom: 35px;
  }

  .platform-content h3 {
    font-size: 25px;
  }


/* =====================================================
   SERVICES — MOBILE
===================================================== */

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

.service-card {
    min-height: auto;

    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 18px;

    padding: 25px;
}


/* ================================
   NUMBER
================================ */

.service-icon {
    grid-column: 1;
    grid-row: 1;

    width: 52px;
    height: 52px;

    margin: 0;

    display: grid;
    place-items: center;
}


/* ================================
   CONTENT
================================ */

.service-content {
    grid-column: 2;
    grid-row: 1;

    min-width: 0;
}


/* CATEGORY */

.service-category {
    margin: 0 0 8px;

    font-size: 9px;
}


/* HEADING */

.service-card h3 {
    margin: 0;

    font-size: 29px;
    line-height: 1.05;
}


/* ================================
   PARAGRAPH
================================ */

/*
   Pull paragraph out to full card width
*/

.service-card p {
    grid-column: 1 / -1;

    margin: 24px 0 0;

    font-size: 14px;
    line-height: 1.6;
}


/* ================================
   LEARN MORE
================================ */

.service-card .service-link {
    grid-column: 1 / -1;

    display: inline-flex;

    margin-top: 24px;
}

  /* WORK */

  .work-heading {
    display: block;
  }

  .work-heading > p {
    margin-top: 20px;
  }

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

  .work-image {
    height: 260px;
  }

  .trusted-line {
    display: block;

    margin-top: 45px;
  }

  .trusted-items {
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 17px;
  }


  /* PROCESS */

  .process-step {
    grid-template-columns: 55px 1fr;

    gap: 15px;

    padding: 30px 0;
  }

  .process-content h3 {
    font-size: 23px;
  }

  .process-content p {
    font-size: 13px;
  }

  .process-closing {
    margin-top: 50px;

    padding: 25px;
  }

  .process-closing p {
    font-size: 15px;
  }


 /* WHY */

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

.why-card {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    column-gap: 15px;

    padding: 38px 24px 30px;
}


/* NUMBER */

.why-card-number {
    grid-column: 1;
    grid-row: 1;

    margin: 0;
}


/* HEADING */

.why-card h3 {
    grid-column: 2;
    grid-row: 1;

    margin: 0;

    font-size: 30px;
    line-height: 1.05;
}


/* PARAGRAPH */

.why-card p {
    grid-column: 1 / -1;
    grid-row: 2;

    margin: 32px 0 0;

    font-size: 14px;
    line-height: 1.65;
}


/* BOTTOM ROW */

.why-card-footer {
    grid-column: 1 / -1;
    grid-row: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    margin-top: 32px;
}

.why-card-footer span {
    display: block;
    max-width: none;
}

.why-card-footer a {
    flex-shrink: 0;
}


  /* FAQ */

  .faq-grid {
    grid-template-columns: 1fr;

    gap: 0px;
  }

  .faq-item summary {
    min-height: 70px;

    font-size: 13px;
  }


  /* CONTACT */

  .contact-form {
  padding: 30px 24px;
}

  .contact-section {
    padding-bottom: 90px;
  }

  .contact-wrapper {
    padding: 30px 0px;

    border-radius: 20px;
  }

  .contact-intro h2 {
    font-size: 44px;
  }

  .contact-intro p {
    font-size: 13px;
  }

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

  /* ================================
   CONTACT CTA — MOBILE
================================ */

.contact-form button,
.contact-submit {
    width: 100%;
    min-height: 64px;

    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 14px;

    font-size: 16px;
    font-weight: 600;
    line-height: 1;

    white-space: nowrap;
}


/* Arrow */

.contact-form button::after,
.contact-submit::after {
    margin-left: 20px;
    font-size: 22px;
}


  /* =====================================================
   FOOTER — MOBILE
  ===================================================== */

@media (max-width: 768px) {

  .site-footer {
    padding: 50px 0 22px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);

    gap: 45px 30px;

    padding-bottom: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 290px;

    margin-top: 16px;

    font-size: 12px;
  }

  .footer-column {
    gap: 12px;
  }

  .footer-column > span {
    margin-bottom: 6px;

    font-size: 9px;
  }

  .footer-column a {
    font-size: 11px;
  }

  /* CONNECT takes the full width */

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: row;

    align-items: center;

    gap: 20px;

    padding-top: 20px;

    font-size: 9px;
  }

}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  :root {
    --gutter: 16px;
  }

  .logo-text small {
    display: none;
  }

  .hero-grid {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-description {
    font-size: 14px;
  }

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

  .floating-card {
    min-width: 130px;
  }

  .floating-shopify {
    left: -8px;
  }

  .floating-meta {
    right: -8px;
  }

  .floating-google {
    right: -8px;
  }

  .floating-whatsapp {
    left: -8px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

}
/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal-element {
  opacity: 0;
  transform: translateY(25px);

  transition:
    opacity 0.7s ease,
    transform 0.7s var(--ease);
}

.reveal-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   NAVBAR SCROLL
========================================================= */

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.09);
}


/* =========================================================
   DISABLED BUTTON
========================================================= */

button:disabled {
  opacity: 0.7;
  cursor: default;
}


/* =========================================================
   ASTRA DIGITAL — PARTNERS / PLATFORMS
   LOVABLE REFERENCE MATCH
========================================================= */

.partners-section {
  padding-top: 110px;
  padding-bottom: 125px;

  border-top: 0;

  background: #050505;
}


/* ---------------------------------------------------------
   CONTAINER
--------------------------------------------------------- */

.partners-container {
  width: min(
    calc(100% - 64px),
    1280px
  );

  margin: 0 auto;
}


/* ---------------------------------------------------------
   INTRO
--------------------------------------------------------- */

.partners-intro {
  max-width: 850px;

  text-align: left;
}


/* Small label */

.partners-label {
  display: block;

  margin-bottom: 18px;

  color: #7ea8ff;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.20em;

  text-transform: uppercase;
}


/* Main heading */

.partners-title {
  max-width: 850px;

  margin: 0;

  color: #f5f5f7;

  font-size: clamp(48px, 4.2vw, 64px);

  font-weight: 700;

  line-height: 1.02;

  letter-spacing: -0.055em;
}


/*
   IMPORTANT:
   This overrides the GLOBAL:
   .section-heading h2 span
*/

.partners-title span {
  display: inline;

  color: inherit;
}


/* Description */

.partners-description {
  max-width: 800px;

  margin-top: 25px;

  color: #a3a3ad;

  font-size: 17px;

  font-weight: 400;

  line-height: 1.65;

  letter-spacing: -0.01em;
}


/* ---------------------------------------------------------
   PLATFORM GRID
--------------------------------------------------------- */

.partners-section .platform-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 28px;

  margin-top: 68px;
}


/* ---------------------------------------------------------
   CARD
--------------------------------------------------------- */

.partners-section .platform-card {
  position: relative;

  min-height: 305px;

  padding: 38px 40px;

  overflow: hidden;

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

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.018)
    );

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}


.partners-section .platform-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(255, 255, 255, 0.16);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.022)
    );
}


/* ---------------------------------------------------------
   LOGOS
--------------------------------------------------------- */

.partners-section .platform-logo {
  width: 190px;
  height: 55px;

  display: flex;
  align-items: center;

  margin-bottom: 38px;

  background: transparent;
}

.partners-section .platform-logo img {
  display: block;

  width: auto;
  height: 48px;

  max-width: 190px;

  object-fit: contain;
  object-position: left center;
}


/* Shopify */
.partners-section .platform-card:nth-child(1) .platform-logo img {
  height: 48px;
  max-width: 190px;
}


/* Google */
.partners-section .platform-card:nth-child(2) .platform-logo img {
  height: 50px;
  width: auto;
}


/* Meta */
.partners-section .platform-card:nth-child(3) .platform-logo img {
  height: 48px;
  max-width: 190px;
}


/* Mobile */
@media (max-width: 768px) {

  .partners-section .platform-logo {
    width: 160px;
    height: 45px;

    margin-bottom: 30px;
  }

  .partners-section .platform-logo img {
    max-width: 160px;
    height: 40px;
  }

}


/* ---------------------------------------------------------
   CARD CONTENT
--------------------------------------------------------- */

.partners-section .platform-content {
  max-width: 390px;
}


/* Category */

.partners-section .platform-content .platform-category {
  display: block;

  margin: 0 0 17px;

  color: #666670;

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 0.17em;

  line-height: 1.2;
}


/* Title */

.partners-section .platform-content h3 {
  margin: 0 0 9px;

  color: #f1f1f3;

  font-size: 27px;

  font-weight: 600;

  line-height: 1.15;

  letter-spacing: -0.035em;
}


/* Description */

.partners-section .platform-content p {
  max-width: 390px;

  margin: 0;

  color: #a1a1aa;

  font-size: 14px;

  line-height: 1.6;
}


/* ---------------------------------------------------------
   CARD ARROW
--------------------------------------------------------- */

.partners-section .card-arrow {
  position: absolute;

  right: 27px;
  bottom: 24px;

  color: #55555e;

  font-size: 17px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.partners-section .platform-card:hover .card-arrow {
  color: #fff;

  transform: translate(3px, -3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .partners-section {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .partners-container {
    width: min(
      calc(100% - 48px),
      900px
    );
  }

  .partners-section .platform-grid {
    gap: 16px;
  }

  .partners-section .platform-card {
    padding: 30px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .partners-section {
    padding-top: 85px;
    padding-bottom: 90px;
  }

  .partners-container {
    width: calc(100% - 40px);
  }


  /* Intro */

  .partners-intro {
    max-width: 100%;
  }

  .partners-label {
    margin-bottom: 16px;

    font-size: 9px;

    letter-spacing: 0.17em;
  }

  .partners-title {
    max-width: 100%;

    font-size: 42px;

    line-height: 1.04;

    letter-spacing: -0.05em;
  }

  .partners-title span {
    display: inline;
  }

  .partners-description {
    margin-top: 20px;

    font-size: 15px;

    line-height: 1.65;
  }


  /* Cards */

  .partners-section .platform-grid {
    grid-template-columns: 1fr;

    gap: 14px;

    margin-top: 45px;
  }

  .partners-section .platform-card {
    min-height: 270px;

    padding: 28px;

    border-radius: 18px;
  }


  /* Logos */

  .partners-section .platform-logo {
    height: 38px;

    margin-bottom: 30px;
  }

  .shopify-bag {
    width: 27px;
    height: 31px;
  }

  .shopify-word {
    font-size: 22px;
  }

  .google-g {
    font-size: 36px;
  }

  .meta-symbol {
    font-size: 38px;
  }

  .meta-word {
    font-size: 22px;
  }


  /* Content */

  .partners-section .platform-content h3 {
    font-size: 23px;
  }

  .partners-section .platform-content .platform-category {
    font-size: 8px;

    margin-bottom: 13px;
  }

  .partners-section .platform-content p {
    font-size: 14px;

    line-height: 1.6;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .partners-container {
    width: calc(100% - 32px);
  }

  .partners-title {
    font-size: 38px;
  }

  .partners-description {
    font-size: 14px;
  }

}

/* =====================================================
   ASTRA DIGITAL — PROCESS
   CLEAN VERSION
===================================================== */

.process-section {
    width: 100%;
    padding: 10px 0 10px;
    background: #050505;
    color: #f5f5f7;
    overflow: hidden;
}

.process-container {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
}


/* =====================================================
   PROCESS HEADER
===================================================== */

.process-header {
    text-align: center;
    margin: 0 auto 70px;
}

.process-eyebrow {
    display: block;
    margin-bottom: 18px;

    color: #6f96ff;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.process-header h2 {
    margin: 0;

    color: #f5f5f7;

    font-size: clamp(52px, 6vw, 82px);
    line-height: 0.95;
    letter-spacing: -4px;
    font-weight: 650;
}

.process-header h2 span {
    color: #6f96ff;
}

.process-header p {
    max-width: 620px;
    margin: 24px auto 0;

    color: #85858f;

    font-size: 17px;
    line-height: 1.6;
}


/* =====================================================
   PROCESS STEPS
===================================================== */

.process-steps {
    position: relative;

    display: flex;
    flex-direction: column;

    gap: 22px;
}


/* vertical connecting line */

.process-steps::before {
    content: "";

    position: absolute;

    left: 46px;
    top: 45px;
    bottom: 45px;

    width: 1px;

    background: linear-gradient(
        to bottom,
        rgba(111,150,255,0.7),
        rgba(111,150,255,0.12)
    );
}


/* =====================================================
   PROCESS STEP
===================================================== */

.process-step {
    position: relative;

    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);

    align-items: center;

    gap: 22px;

    min-height: 190px;
}


/* =====================================================
   NUMBER
===================================================== */

.process-number {
    position: relative;
    z-index: 2;

    width: 64px;
    height: 64px;

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

    margin: 0 auto;

    border: 1px solid rgba(111,150,255,0.65);
    border-radius: 50%;

    background: #050505;

    color: #6f96ff;

    font-size: 15px;
    font-weight: 600;
}


/* =====================================================
   PROCESS CARD
===================================================== */

.process-card {
    position: relative;

    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);

    align-items: center;

    gap: 20px;

    min-height: 60px;

    padding: 28px;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(111,150,255,0.045),
            transparent 32%
        ),
        #090909;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 28px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.process-card:hover {
    transform: translateY(-4px);

    border-color: rgba(111,150,255,0.38);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        0 0 40px rgba(79,120,255,0.05);
}


/* =====================================================
   PROCESS ICON
===================================================== */

.process-icon {
    width: 110px;
    height: 110px;

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

    flex-shrink: 0;
}

.process-icon span {
    width: 76px;
    height: 76px;

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

    border: 2px solid #6f96ff;
    border-radius: 50%;

    color: #6f96ff;

    box-shadow:
        0 0 30px rgba(111,150,255,0.12);
}

.process-icon span svg {
    width: 34px;
    height: 34px;

    stroke-width: 1.7;
}


/* =====================================================
   CONTENT
===================================================== */

.process-content {
    min-width: 0;
}

.process-content h3 {
    margin: 0 0 14px;

    color: #f5f5f7;

    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.05;

    letter-spacing: -1.8px;

    font-weight: 650;
}

.process-content h3 span {
    color: #6f96ff;
}

.process-content p {
    max-width: 760px;

    margin: 0;

    color: #85858f;

    font-size: 16px;
    line-height: 1.65;
}


/* =====================================================
   REMOVE ARROWS
===================================================== */

.process-arrow {
    display: none !important;
}


/* =====================================================
   ASTRA DIFFERENCE
===================================================== */

.astra-difference {
    display: grid;
    grid-template-columns: 90px minmax(280px, 1fr) 1px minmax(280px, 0.8fr);

    align-items: center;

    gap: 35px;

    margin-top: 70px;
    padding: 35px 40px;

    border: 1px solid rgba(111,150,255,0.22);
    border-radius: 26px;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(111,150,255,0.07),
            transparent 30%
        ),
        #080808;
}

.difference-mark {
    width: 64px;
    height: 64px;

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

    border: 1px solid rgba(111,150,255,0.55);
    border-radius: 50%;

    color: #6f96ff;

    font-size: 25px;
}

.difference-eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #6f96ff;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.difference-main h3 {
    margin: 0;

    color: #f5f5f7;

    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.15;

    letter-spacing: -1.5px;
}

.difference-main h3 span {
    color: #6f96ff;
}

.difference-divider {
    width: 1px;
    height: 70px;

    background: rgba(255,255,255,0.12);
}

.astra-difference > p {
    margin: 0;

    color: #85858f;

    font-size: 15px;
    line-height: 1.65;
}

.astra-difference > p strong {
    color: #f5f5f7;
    font-weight: 600;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .process-section {
        padding: 100px 0 80px;
    }

    .process-container {
        width: calc(100% - 50px);
    }

    .process-card {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 28px;

        padding: 24px;
    }

    .process-icon {
        width: 120px;
        height: 120px;
    }

    .process-icon span {
        width: 58px;
        height: 58px;
        font-size: 25px;
    }

    .astra-difference {
        grid-template-columns: 70px 1fr;
    }

    .difference-divider {
        display: none;
    }

    .astra-difference > p {
        grid-column: 2;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .process-section {
        padding: 20px 0 60px;
    }

    .process-container {
        width: calc(100% - 32px);
    }


    /* HEADER */

    .process-header {
        margin-bottom: 45px;
    }

    .process-eyebrow {
        margin-bottom: 14px;

        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .process-header h2 {
        font-size: 48px;
        letter-spacing: -2.8px;
    }

    .process-header p {
        margin-top: 18px;

        font-size: 15px;
    }


    /* STEPS */

    .process-steps {
        gap: 18px;
    }

    .process-steps::before {
        left: 31px;
        top: 31px;
        bottom: 31px;
    }

    .process-step {
        grid-template-columns: 62px minmax(0, 1fr);

        gap: 12px;

        min-height: auto;

        align-items: start;
    }


    /* NUMBER */

    .process-number {
        width: 62px;
        height: 62px;

        margin: 0;

        font-size: 13px;
    }


    /* CARD */

    .process-card {
        display: block;

        min-height: auto;

        padding: 18px;

        border-radius: 20px;
    }


    /* ICON */

    .process-icon {
        width: 100%;
        height: 110px;

        margin-bottom: 20px;

        border-radius: 16px;
    }

    .process-icon span {
        width: 54px;
        height: 54px;

        font-size: 23px;
    }


    /* CONTENT */

    .process-content h3 {
        margin-bottom: 10px;

        font-size: 25px;
        line-height: 1.1;

        letter-spacing: -1px;
    }

    .process-content p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* DIFFERENCE */

    .astra-difference {
        display: block;

        margin-top: 45px;
        padding: 28px 22px;

        border-radius: 20px;
    }

    .difference-mark {
        margin-bottom: 22px;
    }

    .difference-main h3 {
        font-size: 26px;
    }

    .astra-difference > p {
        margin-top: 22px;

        font-size: 14px;
    }
}
/* =====================================================
   PROCESS — FINAL SPACING POLISH
===================================================== */

.process-section {
    padding-top: 10px;
}

.process-steps {
    gap: 18px;
}

.process-card {
    min-height: 150px;
    padding: 20px 28px;
}

.process-icon {
    width: 100px;
    height: 100px;
}

.process-icon span {
    width: 70px;
    height: 70px;
}

.process-content h3 {
    font-size: clamp(28px, 3vw, 38px);
}

.process-content p {
    max-width: 850px;
}


/* =====================================================
   PROCESS — MOBILE REDESIGN
===================================================== */

@media (max-width: 650px) {

    .process-section {
        padding: 70px 0 60px;
    }

    .process-container {
        width: calc(100% - 32px);
    }


    /* ================================
       HEADER
    ================================= */

    .process-header {
        margin-bottom: 45px;
        text-align: left;
    }

    .process-eyebrow {
        margin-bottom: 14px;

        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .process-header h2 {
        font-size: 46px;
        line-height: 0.98;
        letter-spacing: -2.5px;
    }

    .process-header p {
        max-width: 100%;

        margin-top: 18px;

        font-size: 14px;
        line-height: 1.6;
    }


    /* ================================
       PROCESS STEPS
    ================================= */

    .process-steps {
        gap: 22px;
    }

    .process-steps::before {
        left: 20px;

        top: 24px;
        bottom: 24px;

        width: 1px;
    }


    /* ================================
       STEP
    ================================= */

    .process-step {
    position: relative;
    display: block;
    min-height: auto;
}

.process-steps::before {
    left: 20px;

    top: 20px;
    bottom: 20px;

    width: 1px;
}


    /* ================================
       NUMBER
    ================================= */

    .process-number {
    position: absolute;

    left: 0;
    top: 50%;

    width: 40px;
    height: 40px;

    margin: 0;

    transform: translateY(-50%);

    z-index: 3;

    border-color: rgba(111, 150, 255, 0.7);

    font-size: 11px;

    background: #050505;
}


    /* ================================
       CARD
    ================================= */

    .process-card {
    display: grid;

    grid-template-columns: 60px minmax(0, 1fr);

    column-gap: 17px;

    margin-left: 54px;

    width: calc(100% - 54px);

    min-height: auto;

    padding: 40px 22px 30px;

    border-radius: 20px;
}


    /* ================================
       ICON
    ================================= */

    .process-icon {
    grid-column: 1;
    grid-row: 1;

    width: 60px;
    height: 60px;

    margin: 0;
}

.process-icon span {
    width: 60px;
    height: 60px;

    border-width: 1.5px;
}

.process-icon span svg {
    width: 30px;
    height: 30px;
}


    /* ================================
       CONTENT
    ================================= */

    .process-content {
    display: contents;
}

.process-content h3 {
    grid-column: 2;
    grid-row: 1;

    align-self: center;

    margin: 0;

    font-size: 30px;

    line-height: 1.05;

    letter-spacing: -1.3px;
}

.process-content p {
    grid-column: 1 / -1;
    grid-row: 2;

    max-width: 100%;

    margin: 0px 0 0;

    font-size: 14px;

    line-height: 1.65;
}

}

 /* ================================
       DIFFERENCE
    ================================= */

@media (max-width: 650px) {

  .astra-difference {
    display: grid;

    grid-template-columns: 72px 1fr;
    column-gap: 20px;

    align-items: start;

    padding: 40px 24px;

    border-radius: 22px;
  }


  /* ICON */

  .difference-mark {
    width: 72px;
    height: 72px;

    margin: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;
  }


  /* CONTENT */

  .difference-main {
    min-width: 0;
  }

  .difference-main .eyebrow {
    margin: 0 0 24px;
  }

  .difference-main h3 {
    margin: 0;

    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -1.2px;
  }


  /* DESCRIPTION */

  .astra-difference > p {
    grid-column: 1 / -1;

    margin: 10px 0 0;

    font-size: 15px;
    line-height: 1.65;
}

}

/* =====================================================
   MOBILE MENU — FINAL DISPLAY CONTROL
===================================================== */

/* DESKTOP */
@media (min-width: 769px) {

    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }

}

/* MOBILE */
@media (max-width: 768px) {

    .mobile-menu-toggle {
        display: flex !important;
    }

}

/* =====================================================
   UNIVERSAL DIAGONAL ARROW
   CSS DRAWN — IOS SAFE
===================================================== */

.arrow-diagonal {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;

    flex-shrink: 0;

    transition:
        transform 0.3s ease;
}

/* Arrow head */
.arrow-diagonal::before {
    content: "";

    position: absolute;

    width: 10px;
    height: 10px;

    top: 2px;
    right: 2px;

    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
}

/* Arrow shaft */
.arrow-diagonal::after {
    content: "";

    position: absolute;

    width: 16px;
    height: 1.5px;

    top: 10px;
    left: 1px;

    background: currentColor;

    transform: rotate(-45deg);
    transform-origin: center;
}

/* =====================================================
   WHATSAPP FLOATING BUTTON — ASTRA STYLE
===================================================== */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;

    z-index: 9999;

    width: 58px;
    height: 58px;

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

    border: 1px solid rgba(111, 150, 255, 0.35);
    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #6f96ff 0%,
        #7666f5 100%
    );

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(111, 150, 255, 0.18);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;

    display: block;

    filter: brightness(0) invert(1);
}

.whatsapp-float:hover {
    transform: translateY(-4px);

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.4),
        0 0 32px rgba(111, 150, 255, 0.3);
}


/* =====================================================
   WHATSAPP — MOBILE
===================================================== */

@media (max-width: 768px) {

    .whatsapp-float {
        right: 18px;
        bottom: 18px;

        width: 54px;
        height: 54px;
    }

    .whatsapp-float img {
        width: 25px;
        height: 25px;
    }

}