/* ==================================================================
   Pocket Freight Landing Page
================================================================== */

:root {
  --color-teal: #0e2f36;
  --color-teal-light: #18444c;
  --color-teal-dark: #0a2429;
  --color-teal-soft: #2e5e66;
  --color-orange: #f7931e;
  --color-orange-light: #ffa73a;
  --color-orange-dark: #e67e00;
  
  --color-cyan: #35d6ff;
--color-cyan-dark: #0fa3c5;
--color-green: #00e5a8;

--color-electric-blue: #35d6ff;
--color-electric-blue-dark: #0fa3c5;
--color-electric-green: #00e5a8;

--headline-gradient-1-start: #e8fbff;
--headline-gradient-1-end: #aef3ff;
--headline-gradient-2-start: #00e5a8;
--headline-gradient-2-end: #35d6ff;
--headline-gradient-3-start: #e8fbff;
--headline-gradient-3-end: #aef3ff;
  
  --color-purple: #7b61ff;
  --color-purple-dark: #5b45d6;
  --color-gold-light: #fff3c4;
  --color-gold-medium: #ffd27a;
  --color-gold: #ffb347;
  --color-gold-dark: #ff8c00;
  --color-white: #ffffff;
  --color-black: #000000;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 80px;
  --max-width: 1200px;
  --max-width-wide: 1400px;
  --glass-bg: rgba(14, 67, 80, 0.2);
  --glass-border: rgba(53, 214, 255, 0.22);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-cyan: 0 0 24px rgba(53, 214, 255, 0.26);
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-height: 100%;
  font-family: var(--font-body);
  color: var(--color-white);
  background:
    radial-gradient(circle at 72% 12%, rgba(53, 214, 255, 0.22), transparent 30%),
    radial-gradient(circle at 18% 26%, rgba(247, 147, 30, 0.16), transparent 28%),
    radial-gradient(circle at 52% 86%, rgba(0, 229, 168, 0.13), transparent 28%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 60px),
    linear-gradient(135deg, var(--color-teal-soft) 0%, var(--color-teal) 45%, var(--color-teal-dark) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.site-wrapper {
  min-height: 100vh;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.page-section {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  scroll-margin-top: var(--header-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.4rem);
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
}

.section-subtitle {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
}

/* ==================================================================
   Header
================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(10, 36, 41, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.nav-bar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  flex: 0 0 auto;
}

.logo {
  width: auto;
  height: 80px;
  filter:
    drop-shadow(0 0 34px rgba(255, 255, 255, 1))
    drop-shadow(0 0 70px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 120px rgba(255, 255, 255, 0.82))
    drop-shadow(0 0 170px rgba(255, 255, 255, 0.5))
    drop-shadow(0 0 58px rgba(53, 214, 255, 0.85))
    drop-shadow(0 0 110px rgba(53, 214, 255, 0.55))
    drop-shadow(0 18px 38px rgba(0, 0, 0, 0.42));
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.nav-links a {
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-cyan);
  text-shadow: 0 0 12px rgba(53, 214, 255, 0.58);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(53, 214, 255, 0.22);
  border-radius: 14px;
  background: rgba(14, 67, 80, 0.32);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--color-white);
}

/* ==================================================================
   Buttons and pills
================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.55rem;
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.54rem 1rem;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 0.88rem 1.8rem;
  font-size: 0.96rem;
}

.btn-primary {
  color: var(--color-teal-dark);
  background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
  box-shadow: 0 12px 28px rgba(0, 229, 168, 0.22), 0 0 22px rgba(53, 214, 255, 0.28);
}

.btn-secondary {
  background: linear-gradient(145deg, var(--color-orange-light), var(--color-orange-dark));
  box-shadow: 0 12px 28px rgba(247, 147, 30, 0.25), 0 0 18px rgba(247, 147, 30, 0.2);
}

.btn-outline {
  color: var(--color-cyan);
  border: 1px solid rgba(53, 214, 255, 0.65);
  background: rgba(53, 214, 255, 0.07);
  box-shadow: 0 0 18px rgba(53, 214, 255, 0.14);
}

.pill,
.hero-pill,
.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 800;
}

.pill-dev,
.hero-pill {
  color: var(--color-gold-medium);
  border: 1px solid rgba(255, 179, 71, 0.46);
  background: rgba(247, 147, 30, 0.16);
}

.pill-dev {
  padding: 0.34rem 0.72rem;
  font-size: 0.72rem;
}

.pill-beta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.34rem 0.72rem;
  border: 1px solid rgba(0, 229, 168, 0.42);
  border-radius: 999px;
  color: var(--color-green);
  background: rgba(0, 229, 168, 0.12);
  box-shadow: 0 0 16px rgba(0, 229, 168, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
}

/* ==================================================================
   Hero
================================================================== */
.hero {
  width: min(100% - 2rem, var(--max-width-wide));
  padding-top: clamp(1.1rem, 2.5vw, 2rem);
  padding-bottom: clamp(1.3rem, 2.5vw, 2.2rem);
  overflow: visible;
}

.hero-main {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  color: var(--color-cyan);
  border: 1px solid rgba(53, 214, 255, 0.42);
  background: rgba(53, 214, 255, 0.13);
  box-shadow: 0 0 18px rgba(53, 214, 255, 0.2);
  padding: 0.38rem 0.95rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.9rem, 5.1vw, 5.15rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.055em;
  margin-bottom: 1rem;
}

.hero-title .line {
  display: block;
  width: fit-content;
}

.line-primary,
.line-tertiary {
  background-image: none;
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.55),
    0 0 24px rgba(53, 214, 255, 0.28);
}

.line-secondary {
  background-image: none;
  color: var(--color-cyan);
  -webkit-text-fill-color: var(--color-cyan);
  text-shadow:
    0 0 12px rgba(53, 214, 255, 0.68),
    0 0 48px rgba(53, 214, 255, 0.34);
}

.hero-subtitle {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.12vw, 1.05rem);
  line-height: 1.62;
  margin-bottom: 1.15rem;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-pill {
  margin-top: 0.9rem;
  padding: 0.34rem 0.88rem;
  font-size: 0.78rem;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
}

.benefit-item i {
  color: var(--color-green);
  filter: drop-shadow(0 0 8px rgba(0, 229, 168, 0.6));
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 8% 0 0 12%;
  background: radial-gradient(circle, rgba(53, 214, 255, 0.42), transparent 62%);
  filter: blur(42px);
  z-index: 0;
}

.mascot-container {
  position: absolute;
  left: -5%;
  bottom: 8%;
  z-index: 3;
  width: clamp(170px, 21vw, 280px);
  transform: translateX(-70px);
}

.mascot-container::before {
  content: '';
  position: absolute;
  top: 62%;
  left: 50%;
  width: 118%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(247, 147, 30, 1) 0%,
    rgba(247, 147, 30, 0.72) 34%,
    rgba(247, 147, 30, 0.34) 58%,
    rgba(247, 147, 30, 0.12) 74%,
    transparent 86%
  );
  filter: blur(42px);
  z-index: -1;
}

.hero-mascot-static {
  position: relative;
  z-index: 2;
  width: 100%;
  filter:
    drop-shadow(0 16px 26px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 34px rgba(247, 147, 30, 0.42))
    drop-shadow(0 0 22px rgba(53, 214, 255, 0.2));
}

.phone-group {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  height: 430px;
}

.phone-frame {
  position: absolute;
  width: 205px;
  height: 405px;
  top: 50%;
  left: 50%;
  border-radius: 34px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, var(--color-teal-light), var(--color-teal-dark));
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(53, 214, 255, 0.22);
  overflow: hidden;
}

.phone-left {
  transform: translate(-86%, -50%) rotate(-12deg);
  z-index: 1;
}

.phone-right {
  transform: translate(5%, -50%) rotate(12deg);
  z-index: 2;
}

.phone-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: transparent;
}

.phone-screen-inset {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-process {
  width: 100%;
  margin-top: clamp(0.8rem, 2vw, 1.4rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.process-card,
.feature-item,
.comparison-panel,
.coin-card,
.pricing-card,
.business-item,
.policy-container,
.download-card,
.contact-form-wrap {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft), var(--shadow-cyan);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.process-card {
  position: relative;
  isolation: isolate;
  min-height: 122px;
  border-radius: 22px;
  padding: 0.85rem 0.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.process-card::before {
  content: '';

  position: absolute;

  inset: -60% -35%;

  background:
    radial-gradient(
      circle,
      rgba(53, 214, 255, 0.26) 0%,
      rgba(53, 214, 255, 0.16) 28%,
      rgba(53, 214, 255, 0.08) 48%,
      rgba(53, 214, 255, 0.02) 68%,
      transparent 82%
    );

  filter: blur(28px);

  opacity: 0.9;

  pointer-events: none;

  z-index: 0;
}

.process-card:hover,
.feature-item:hover,
.coin-card:hover,
.pricing-card:hover,
.business-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.42), 0 0 32px rgba(53, 214, 255, 0.36);
}

.process-icon {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--color-cyan);
  background:
    linear-gradient(
      180deg,
      rgba(8, 28, 36, 0.96),
      rgba(10, 40, 48, 0.92)
    );
  border: 1px solid rgba(53, 214, 255, 0.28);
  box-shadow:
    0 0 14px rgba(53, 214, 255, 0.22),
    inset 0 0 14px rgba(53, 214, 255, 0.06);
  margin-bottom: 0.6rem;
}

.process-icon i {
  font-size: 1.35rem;
  line-height: 1;
}

.process-text {
  position: relative;
}

.process-text h2 {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  line-height: 1.1;
  margin-bottom: 0.28rem;
}

.process-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  line-height: 1.35;
}

/* ==================================================================
   Features
================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.feature-item {
  border-radius: 24px;
  padding: 1.15rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.icon-circle {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: radial-gradient(
    circle,
    var(--color-orange-light) 0%,
    var(--color-orange) 58%,
    var(--color-orange-dark) 100%
  );
  box-shadow:
    0 0 18px rgba(247, 147, 30, 0.6),
    0 0 34px rgba(247, 147, 30, 0.24);
}

.icon-circle i {
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1;
}

.feature-item h3,
.coin-card h3,
.pricing-card h3,
.comparison-panel h3 {
  font-family: var(--font-heading);
  font-weight: 800;
}

.feature-item h3 {
  font-size: 1rem;
  line-height: 1.15;
  margin-bottom: 0.55rem;
}

.feature-item p,
.coin-card p,
.pricing-desc,
.business-item p,
.policy-content p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.feature-item p {
  font-size: 0.84rem;
}

.comparison-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.comparison-panel {
  position: relative;
  isolation: isolate;
  border-radius: 24px;
  padding: 1.3rem;
  overflow: hidden;
}

.comparison-panel h3,
.comparison-panel ul {
  position: relative;
  z-index: 3;
}

.comparison-bg-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;

  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 18%,
    rgba(0, 0, 0, 0.55) 42%,
    black 100%
  );

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.08) 18%,
    rgba(0, 0, 0, 0.55) 42%,
    black 100%
  );
}

.panel-old .comparison-bg-image {
  object-position: center;
}

.panel-new .comparison-bg-image {
  object-position: right center;
}

.comparison-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.panel-old {
  background: rgba(50, 28, 32, 0.68);
  border-color: rgba(180, 64, 72, 0.42);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.28),
    0 0 14px rgba(180, 64, 72, 0.12);
}

.panel-old::after {
  background:
    linear-gradient(
      135deg,
      rgba(50, 28, 32, 0.98) 0%,
      rgba(50, 28, 32, 0.94) 38%,
      rgba(50, 28, 32, 0.68) 62%,
      rgba(50, 28, 32, 0.18) 100%
    );
}

.panel-new {
  background: rgba(11, 62, 55, 0.68);
  border-color: rgba(0, 180, 135, 0.38);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.28),
    0 0 14px rgba(0, 180, 135, 0.12);
}

.panel-new::after {
  background:
    linear-gradient(
      135deg,
      rgba(11, 62, 55, 0.98) 0%,
      rgba(11, 62, 55, 0.94) 38%,
      rgba(11, 62, 55, 0.64) 62%,
      rgba(11, 62, 55, 0.14) 100%
    );
}

.comparison-panel h3 {
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.comparison-panel ul,
.operations-bullets,
.pricing-bullets {
  list-style: none;
}

.comparison-panel li,
.operations-bullets li,
.pricing-bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.35;
}

.comparison-panel li::before,
.operations-bullets li::before,
.pricing-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 10px rgba(53, 214, 255, 0.6);
}

.panel-old li::before {
  background: var(--color-orange);
  box-shadow: 0 0 10px rgba(247, 147, 30, 0.6);
}

.pricing-free-coins {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.25rem;
  padding: clamp(1.1rem, 2.4vw, 1.55rem);
  border: 1px solid rgba(0, 229, 168, 0.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 229, 168, 0.32), transparent 34%),
    radial-gradient(circle at 86% 22%, rgba(53, 214, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(2, 26, 32, 0.96), rgba(10, 56, 66, 0.9));
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.38),
    0 0 32px rgba(0, 229, 168, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.pricing-free-coins::before {
  content: '';
  position: absolute;
  inset: -55% -20%;
  background: radial-gradient(circle, rgba(0, 229, 168, 0.18), transparent 60%);
  filter: blur(28px);
  opacity: 0.95;
  pointer-events: none;
  z-index: -1;
}

.pricing-free-coins-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--color-teal-dark);
  background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
  box-shadow:
    0 0 24px rgba(0, 229, 168, 0.48),
    0 0 38px rgba(53, 214, 255, 0.28);
}

.pricing-free-coins-icon i {
  font-size: 2rem;
  line-height: 1;
}

.pricing-free-coins-content span {
  display: inline-flex;
  margin-bottom: 0.4rem;
  color: var(--color-green);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-free-coins-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.08;
  margin-bottom: 0.45rem;
  color: var(--color-white);
}

.pricing-free-coins-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pricing-free-coins-button {
  white-space: nowrap;
}


/* ==================================================================
   Industries and Work Model
================================================================== */
.section-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 auto 0.9rem;
  padding: 0.42rem 0.9rem;
  border: 1px solid rgba(0, 229, 168, 0.42);
  border-radius: 999px;
  color: var(--color-green);
  background: rgba(0, 229, 168, 0.1);
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.industry-groups {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 1rem;
  align-items: stretch;
}

.industry-group {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  border: 1px solid rgba(53, 214, 255, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 214, 255, 0.18), transparent 38%),
    rgba(8, 35, 45, 0.76);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.industry-group-trades {
  background:
    radial-gradient(circle at 88% 0%, rgba(247, 147, 30, 0.17), transparent 36%),
    radial-gradient(circle at 10% 100%, rgba(0, 229, 168, 0.12), transparent 38%),
    rgba(8, 35, 45, 0.76);
}

.industry-group-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.85rem;
}

.industry-group-icon,
.work-model-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--color-teal-dark);
  background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
  box-shadow: 0 0 24px rgba(53, 214, 255, 0.26);
}

.industry-group-icon {
  width: 58px;
  height: 58px;
  border-radius: 19px;
}

.industry-group-icon i,
.work-model-icon i {
  font-size: 1.75rem;
}

.industry-group-heading span,
.work-model-card article > div:last-child > span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.industry-group-heading h3,
.work-model-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
}

.industry-group-heading h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.industry-group > p {
  margin-bottom: 1.05rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.6;
}

.industry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.industry-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.58rem 0.82rem;
  border: 1px solid rgba(53, 214, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(14, 67, 80, 0.42);
  font-size: 0.76rem;
  line-height: 1.25;
  font-weight: 800;
}

.industry-group-trades .industry-chips span:nth-child(3n + 1) {
  border-color: rgba(0, 229, 168, 0.28);
}

.industry-group-trades .industry-chips span:nth-child(3n + 2) {
  border-color: rgba(247, 147, 30, 0.3);
}

.work-model-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 1rem;
  margin-top: 1rem;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  border: 1px solid rgba(0, 229, 168, 0.3);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(0, 229, 168, 0.08), rgba(53, 214, 255, 0.08)),
    rgba(8, 35, 45, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.work-model-card article {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.work-model-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
}

.work-model-card h3 {
  margin-bottom: 0.28rem;
  font-size: 1rem;
  line-height: 1.2;
}

.work-model-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.5;
}

.work-model-divider {
  width: 1px;
  background: linear-gradient(transparent, rgba(53, 214, 255, 0.42), transparent);
}

@media (max-width: 900px) {
  .industry-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .work-model-card {
    grid-template-columns: 1fr;
  }

  .work-model-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(53, 214, 255, 0.42), transparent);
  }

  .industry-chips span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ==================================================================
   Operations
================================================================== */
.operations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
}

.operations-left,
.operations-right {
  min-width: 0;
}

.operations-left {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 1.4rem;
  align-items: center;
}

.operations-info .section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.operations-subtitle {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.operations-bullets {
  margin-bottom: 1.2rem;
}

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

.phone-vertical {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 215px;
  height: 430px;
}

.operations-right {
  display: grid;
  gap: 1rem;
}

.operations-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.operations-van-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 240px;
  padding: 0.45rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(14, 67, 80, 0.32);
  border: 1px solid rgba(53, 214, 255, 0.34);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(53, 214, 255, 0.22);
}

.operations-van-wrap::before {
  content: '';
  position: absolute;
  inset: 0.45rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 2;
}

.operations-van {
  width: 100%;
  height: 100%;
  min-height: 230px;
  border-radius: 22px;
  object-fit: cover;
  filter: brightness(1.22) contrast(1.12) saturate(1.18);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.business-item {
  border-radius: 20px;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.business-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: radial-gradient(
    circle,
    var(--color-orange-light) 0%,
    var(--color-orange) 58%,
    var(--color-orange-dark) 100%
  );
  box-shadow:
    0 0 18px rgba(247, 147, 30, 0.6),
    0 0 34px rgba(247, 147, 30, 0.24);
}

.business-icon i {
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1;
}

.business-item p {
  font-size: 0.86rem;
  font-weight: 800;
}

/* ==================================================================
   Coins and Pricing
================================================================== */
.coins-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

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

.coin-card {
  border-radius: 26px;
  padding: 1.45rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.big-coin {
  position: relative;
  width: 82px;
  height: 82px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, var(--color-gold-light) 0%, var(--color-gold-medium) 33%, var(--color-gold) 62%, var(--color-gold-dark) 100%);
  border: 2px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 22px rgba(255, 179, 71, 0.42), inset 0 -8px 14px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.big-coin::before {
  content: '';
  position: absolute;
  inset: 14px;
  background-image: url('images/pocket_freight_mascot_head_new.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.42));
}

.coin-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.pricing-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pricing-card {
  border-radius: 24px;
  padding: 1.1rem 0.8rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.55rem;
}

.pricing-price {
  color: var(--color-gold-medium);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.42rem;
  text-shadow: 0 0 14px rgba(255, 179, 71, 0.34);
}

.pricing-desc {
  font-size: 0.78rem;
}

.pricing-note {
  color: rgba(255, 255, 255, 0.84);
  margin-top: 1.1rem;
  text-align: center;
  font-weight: 700;
}

.pricing-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.9rem;
}

.pricing-bullets li {
  margin-bottom: 0;
  font-weight: 700;
}

/* ==================================================================
   Download, Policy and Contact
================================================================== */
.download-card,
.policy-container,
.contact-form {
  border-radius: 28px;
  padding: clamp(1.35rem, 3vw, 2.4rem);
}

.download-card {
  gap: 1.4rem;
}

.download-card-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.2rem;
}

.download-platform-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  background: rgba(14, 67, 80, 0.18);
}

.download-platform-card .section-title {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
}

.download-platform-card .section-subtitle {
  flex: 1;
  max-width: none;
  margin-bottom: 0;
}

.download-platform-pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.34rem 0.8rem;
  color: var(--color-cyan);
  border: 1px solid rgba(53, 214, 255, 0.42);
  background: rgba(53, 214, 255, 0.13);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-actions-vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.download-actions-vertical .btn,
.download-actions-vertical .google-play-link {
  width: 280px;
  max-width: 100%;
}

.download-actions-vertical .google-play-badge {
  width: 280px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.policy-container {
  width: min(100%, 1100px);
  height: calc(100vh - var(--header-height) - 4rem);
  margin-inline: auto;
  text-align: center;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(53, 214, 255, 0.7) rgba(10, 36, 41, 0.55);
}

.privacy-section,
.delete-section {
  justify-content: center;
}

.policy-container::-webkit-scrollbar {
  width: 10px;
}

.policy-container::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(10, 36, 41, 0.55);
}

.policy-container::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(53, 214, 255, 0.9),
    rgba(0, 229, 168, 0.65)
  );
}

.policy-content {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.1rem;
  padding-right: 0.8rem;
  text-align: left;
}

.policy-content h3 {
  width: fit-content;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 0.75rem;
  padding: 0.55rem 1rem;
  color: var(--color-cyan);
  border: 1px solid rgba(53, 214, 255, 0.42);
  border-radius: 999px;
  background: rgba(53, 214, 255, 0.13);
  box-shadow: none;
}

.policy-content ul {
  padding-left: 1.4rem;
  display: grid;
  gap: 0.55rem;
}

.policy-content li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.policy-content p {
  font-size: 0.96rem;
  line-height: 1.75;
}

.faq-section {
  justify-content: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

.faq-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  padding: 1.35rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft), var(--shadow-cyan);
}

.faq-card::before {
  content: '';
  position: absolute;
  inset: -60% -35%;
  background:
    radial-gradient(
      circle,
      rgba(53, 214, 255, 0.24) 0%,
      rgba(53, 214, 255, 0.14) 30%,
      rgba(53, 214, 255, 0.06) 52%,
      transparent 78%
    );
  filter: blur(28px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.faq-card h3,
.faq-card p {
  position: relative;
  z-index: 1;
}

.faq-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.6rem;
  color: var(--color-cyan);
  text-shadow: 0 0 14px rgba(53, 214, 255, 0.34);
}

.faq-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(53, 214, 255, 0.36);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.contact-form-wrap {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft), var(--shadow-cyan);
  border-radius: 28px;
  padding: clamp(1.35rem, 3vw, 2.4rem);
}

.contact-form {
  display: grid;
  gap: 0.82rem;
}

.contact-form label {
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(53, 214, 255, 0.22);
  border-radius: 16px;
  padding: 0.82rem 0.95rem;
  color: var(--color-white);
  background: rgba(10, 36, 41, 0.55);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(53, 214, 255, 0.68);
  box-shadow: 0 0 0 3px rgba(53, 214, 255, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.thank-you-message {
  display: none;
  border-radius: 18px;
  padding: 1rem;
  background: rgba(0, 229, 168, 0.12);
  border: 1px solid rgba(0, 229, 168, 0.28);
}

.thank-you-message h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}


/* ==================================================================
   Footer
================================================================== */
.site-footer {
  padding: 2rem 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(53, 214, 255, 0.10), transparent 32%),
    radial-gradient(circle at 82% 82%, rgba(247, 147, 30, 0.08), transparent 34%),
    rgba(10, 36, 41, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

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

.footer-logo {
  width: auto;
  height: 70px;
  filter:
    drop-shadow(0 0 34px rgba(255, 255, 255, 1))
    drop-shadow(0 0 70px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 120px rgba(255, 255, 255, 0.82))
    drop-shadow(0 0 170px rgba(255, 255, 255, 0.5))
    drop-shadow(0 0 58px rgba(53, 214, 255, 0.85))
    drop-shadow(0 0 110px rgba(53, 214, 255, 0.55))
    drop-shadow(0 18px 38px rgba(0, 0, 0, 0.42));
}

.footer-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.55),
    0 0 24px rgba(53, 214, 255, 0.28);
}

.footer-tagline .footer-add,
.footer-tagline .footer-deliver {
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.55),
    0 0 24px rgba(53, 214, 255, 0.28);
}

.footer-tagline .footer-plan {
  color: var(--color-electric-blue);
  text-shadow:
    0 0 8px rgba(53, 214, 255, 0.75),
    0 0 24px rgba(53, 214, 255, 0.45);
}

.footer-copy {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.footer-right {
  display: grid;
  gap: 1rem;
  justify-items: end;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
  list-style: none;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--color-cyan);
}

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-teal-dark);
  background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  color: var(--color-teal-dark);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(53, 214, 255, 0.22);
}

.paddymdev-credit {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.paddymdev-credit > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.paddymdev-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 17px;
  background: #ffffff;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.paddymdev-link:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(255, 255, 255, 0.28);
}

.paddymdev-link img {
  display: block;
  width: auto;
  height: 38px;
  max-width: 150px;
  object-fit: contain;
  filter: none;
}

/* ==================================================================
   Animation
================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.visible,
  .btn,
  .process-card,
  .feature-item,
  .coin-card,
  .pricing-card,
  .business-item {
    transition: none;
    transform: none;
  }
}

/* ==================================================================
   Responsive
================================================================== */
@media (max-width: 1180px) {
  .nav-cta {
    display: none;
  }

  .hero-main {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  }

  .process-grid,
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  html {
    scroll-behavior: auto;
  }

  body {
    background-attachment: scroll;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .site-header {
    position: sticky;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .logo {
  height: 52px;
  filter:
    drop-shadow(0 0 24px rgba(255, 255, 255, 1))
    drop-shadow(0 0 46px rgba(255, 255, 255, 0.85))
    drop-shadow(0 0 70px rgba(255, 255, 255, 0.55))
    drop-shadow(0 0 34px rgba(53, 214, 255, 0.75))
    drop-shadow(0 0 62px rgba(53, 214, 255, 0.42));
}

  .nav-links {
    position: absolute;
    top: var(--header-height);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(53, 214, 255, 0.22);
    border-radius: 22px;
    background: rgba(10, 36, 41, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 0.6rem 0.4rem;
    font-size: 0.95rem;
  }

  .hero-main,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    overflow: hidden;
  }

  .hero-text {
    max-width: none;
  }

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

  .hero-visual::before,
  .mascot-container::before {
    display: none;
  }

  .hero-mascot-static {
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
  }

  .phone-group {
    height: 390px;
  }

  .phone-frame {
    width: 178px;
    height: 356px;
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.45),
      0 0 18px rgba(53, 214, 255, 0.18);
  }

  .phone-left {
    transform: translate(-88%, -50%) rotate(-10deg);
  }

  .phone-right {
    transform: translate(0%, -50%) rotate(10deg);
  }

  .mascot-container {
    left: -4%;
    bottom: 6%;
    width: clamp(160px, 24vw, 250px);
    transform: translateX(-50px);
  }

  .process-card,
  .feature-item,
  .comparison-panel,
  .coin-card,
  .pricing-card,
  .business-item,
  .policy-container,
  .download-card,
  .contact-form-wrap {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .operations-left {
    grid-template-columns: 1fr;
  }

  .operations-phone {
    justify-content: flex-start;
  }

  .comparison-wrapper,
  .coins-grid,
  .download-card {
    grid-template-columns: 1fr;
  }

  .download-card {
    display: grid;
  }
  
  .pricing-free-coins {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .pricing-free-coins-content p {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-card {
    padding: 1.2rem;
  }
  
  .download-card-platforms {
    grid-template-columns: 1fr;
  }

  .download-actions-vertical {
    align-items: center;
  }

  .download-actions-vertical .btn,
  .download-actions-vertical .google-play-link {
    width: 280px;
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 74px;
  }

  .container,
  .hero {
    width: min(100% - 1.2rem, var(--max-width));
  }

  .logo {
    height: 50px;
  }

  .page-section {
    min-height: auto;
    padding-block: 3rem;
  }

  .hero-title {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-actions,
  .download-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .download-actions .btn {
    width: 100%;
  }

  .hero-benefits {
    gap: 0.6rem;
  }

  .benefit-item {
    font-size: 0.82rem;
  }

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

  .phone-group {
    height: 315px;
  }

  .phone-frame {
    width: 145px;
    height: 290px;
    border-radius: 28px;
    padding: 8px;
  }

  .phone-inner {
    border-radius: 22px;
  }
  
  .phone-group {
  position: relative;
  left: 20px;
}

  .mascot-container {
  left: -2%;
  bottom: 6%;
  width: 135px;
  transform: translateX(-5px);
}

  .process-grid,
  .features-grid,
  .pricing-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 96px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 0.85rem;
  }

  .process-icon {
  margin: 0 0.8rem 0 0;
  flex: 0 0 38px;
}

  .comparison-panel,
  .coin-card,
  .pricing-card,
  .policy-container,
  .download-card,
  .contact-form-wrap {
    border-radius: 22px;
  }

  .pricing-bullets {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
    text-align: center;
  }

  .footer-left {
    width: 100%;
    align-items: center;
  }

  .footer-logo {
    height: 62px;
    margin-inline: auto;
  }

  .footer-tagline {
    justify-content: center;
    gap: 0.25rem;
  }

  .footer-right {
    width: 100%;
    justify-items: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
  }

  .footer-social {
    width: 100%;
    justify-content: center;
  }

  .paddymdev-credit {
    flex-direction: column;
  }

  .paddymdev-link img {
    width: auto;
    height: 34px;
    max-width: 140px;
  }
}

/* ==================================================================
   Footer Tablet and Mobile
================================================================== */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.15rem;
  }

  .footer-left {
    width: 100%;
    align-items: center;
  }

  .footer-right {
    width: 100%;
    justify-items: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
  }

  .footer-social {
    width: 100%;
    justify-content: center;
  }

  .paddymdev-credit {
    flex-direction: column;
  }

  .paddymdev-link img {
    width: auto;
    height: 34px;
    max-width: 140px;
  }
}

.hero-cta-status-row {
  display: grid;
  grid-template-columns: 280px minmax(330px, 430px);
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  max-width: 760px;
  margin-top: 0.9rem;
}

.hero-actions-side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 280px;
}

.google-play-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: auto;
  text-decoration: none;
}

.google-play-badge {
  display: block;
  width: 280px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.hero-see-app-button {
  width: 280px;
  min-height: 30px;
  justify-content: center;
}

.hero-ios-status.compact {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  min-height: 100%;
  margin-top: 0;
  padding: 0.85rem 1rem;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 229, 168, 0.28), transparent 42%),
    linear-gradient(135deg, rgba(2, 26, 32, 0.96), rgba(10, 56, 66, 0.92));
  border: 1px solid rgba(0, 229, 168, 0.66);
  box-shadow:
    0 0 34px rgba(0, 229, 168, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-ios-status.compact::before {
  content: '';
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle, rgba(0, 229, 168, 0.16), transparent 58%);
  filter: blur(24px);
  opacity: 0.95;
  pointer-events: none;
  z-index: -1;
}

.ios-status-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--color-teal-dark);
  background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
  box-shadow: 0 0 22px rgba(0, 229, 168, 0.3);
}

.ios-status-icon i {
  font-size: 1.75rem;
}

.ios-status-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.ios-status-copy span {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--color-green);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ios-status-copy strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.15;
  font-weight: 800;
}

.ios-status-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  line-height: 1.4;
}

.ios-status-dot {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 6px rgba(0, 229, 168, 0.1), 0 0 18px rgba(0, 229, 168, 0.75);
}

.hero-free-coins-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.45rem 1rem;
  color: var(--color-white);
  text-decoration: none;
  border: 1px solid rgba(0, 229, 168, 0.78);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(0, 229, 168, 0.28), rgba(53, 214, 255, 0.18)),
    rgba(10, 36, 41, 0.78);
  box-shadow:
    0 0 20px rgba(0, 229, 168, 0.42),
    0 0 36px rgba(53, 214, 255, 0.25);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-free-coins-badge i {
  color: var(--color-green);
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(0, 229, 168, 0.8));
}

.hero-free-coins-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 168, 1);
  box-shadow:
    0 0 26px rgba(0, 229, 168, 0.58),
    0 0 46px rgba(53, 214, 255, 0.34);
}

@media (max-width: 900px) {
  .hero-cta-status-row {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .hero-actions-side {
    align-items: center;
    width: 100%;
  }

  .google-play-link {
    width: 280px;
    max-width: 100%;
  }

  .google-play-badge {
    width: 280px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-see-app-button {
    width: 280px;
    max-width: 100%;
  }

  .hero-ios-status.compact {
    width: 100%;
    min-height: auto;
    padding: 0.75rem 0.9rem;
  }
}

@media (max-width: 620px) {
  .hero-cta-status-row {
    max-width: 100%;
  }

  .hero-actions-side {
    align-items: center;
  }

  .google-play-link {
    width: 280px;
    max-width: 100%;
  }

  .google-play-badge {
    width: 280px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-see-app-button {
    width: 280px;
    max-width: 100%;
  }

  .hero-ios-status.compact {
    width: 100%;
    min-height: auto;
  }

  .hero-ios-status.compact {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .ios-status-dot {
    display: none;
  }
}


/* ==================================================================
   July 2026 layout refinements
================================================================== */
.nav-portal-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  min-height: 46px;
  padding: 0.42rem 0.62rem 0.42rem 0.48rem;
  border: 1px solid rgba(53, 214, 255, 0.55);
  border-radius: 15px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 229, 168, 0.23), transparent 42%),
    linear-gradient(135deg, rgba(14, 67, 80, 0.92), rgba(7, 36, 46, 0.96));
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.26),
    0 0 20px rgba(53, 214, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-portal-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.12) 48%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
  pointer-events: none;
}

.nav-portal-button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 168, 0.86);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.3),
    0 0 26px rgba(0, 229, 168, 0.22),
    0 0 18px rgba(53, 214, 255, 0.18);
}

.nav-portal-button:hover::before {
  transform: translateX(120%);
}

.nav-portal-icon {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--color-teal-dark);
  background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
  box-shadow: 0 0 16px rgba(53, 214, 255, 0.28);
}

.nav-portal-button > span:nth-child(2),
.nav-portal-arrow {
  position: relative;
  z-index: 1;
}

.nav-portal-arrow {
  color: var(--color-cyan);
  font-size: 0.95rem;
}

.features-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature-item {
  min-height: 270px;
  padding: 1.25rem 0.82rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item .icon-circle {
  flex: 0 0 auto;
}

.feature-item h3 {
  min-height: 2.3em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item p {
  margin-top: 0.05rem;
}

.download-card-platforms {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.download-platform-card {
  min-height: 445px;
  padding: clamp(1.35rem, 2vw, 1.8rem);
}

.download-platform-card .section-title {
  font-size: clamp(1.55rem, 2.25vw, 2.05rem);
  line-height: 1.08;
}

.download-actions-vertical {
  width: 100%;
}

.download-actions-vertical .btn,
.download-actions-vertical .google-play-link {
  width: 100%;
  max-width: none;
}

.download-actions-vertical .google-play-badge {
  width: 100%;
  max-width: 280px;
}

.paddymdev-credit {
  gap: 0;
}

@media (max-width: 1080px) {
  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-item {
    min-height: 230px;
  }

  .download-card-platforms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .features-grid,
  .download-card-platforms {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .download-platform-card {
    min-height: 0;
  }
}


/* ==================================================================
   July 2026 mobile presentation fixes
   These rules intentionally apply only to tablet/mobile layouts.
================================================================== */
.mobile-portal-item {
  display: none;
}

@media (max-width: 900px) {
  .mobile-portal-item {
    display: block;
    margin-top: 0.35rem;
  }

  .mobile-portal-button {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 50px;
    padding: 0.75rem 1rem !important;
    border: 1px solid rgba(0, 229, 168, 0.62);
    border-radius: 16px;
    color: var(--color-white) !important;
    background:
      linear-gradient(135deg, rgba(0, 229, 168, 0.2), rgba(53, 214, 255, 0.14)),
      #0a3039;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28), 0 0 20px rgba(53, 214, 255, 0.14);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-portal-button i:first-child {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--color-teal-dark);
    background: linear-gradient(145deg, var(--color-green), var(--color-cyan));
  }

  .mobile-portal-button i:last-child {
    color: var(--color-cyan);
  }
}

@media (max-width: 760px) {
  /* Keep the iOS beta panel as a real card on mobile. */
  .hero-ios-status.compact {
    position: relative;
    isolation: auto;
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) !important;
    align-items: center;
    gap: 0.8rem;
    width: 100% !important;
    max-width: 100%;
    min-height: 122px !important;
    padding: 0.95rem !important;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 168, 0.62) !important;
    border-radius: 20px !important;
    background-color: #0a3039 !important;
    background-image:
      radial-gradient(circle at 12% 0%, rgba(0, 229, 168, 0.24), transparent 46%),
      linear-gradient(135deg, #071e25, #0c3b45) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32), 0 0 22px rgba(0, 229, 168, 0.16) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-ios-status.compact::before {
    display: none !important;
  }

  .ios-status-icon {
    display: grid !important;
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .ios-status-copy,
  .ios-status-copy span,
  .ios-status-copy strong,
  .ios-status-copy p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .ios-status-copy strong {
    font-size: 1rem;
  }

  .ios-status-copy p {
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.45;
  }

  /* Preserve the full supported-work design instead of flattening it. */
  .industries-section {
    width: min(100% - 1.2rem, var(--max-width));
  }

  .industries-section .section-heading {
    margin-bottom: 1.35rem;
  }

  .industry-groups {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.9rem;
  }

  .industry-group {
    display: block !important;
    padding: 1.1rem !important;
    overflow: hidden;
    border: 1px solid rgba(53, 214, 255, 0.34) !important;
    border-radius: 24px !important;
    background-color: #092b34 !important;
    background-image:
      radial-gradient(circle at 10% 0%, rgba(53, 214, 255, 0.18), transparent 42%),
      linear-gradient(145deg, #0a3039, #071f27) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .industry-group-trades {
    background-image:
      radial-gradient(circle at 92% 0%, rgba(247, 147, 30, 0.18), transparent 40%),
      radial-gradient(circle at 8% 100%, rgba(0, 229, 168, 0.12), transparent 42%),
      linear-gradient(145deg, #0a3039, #071f27) !important;
  }

  .industry-group-heading {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
  }

  .industry-group-icon {
    display: grid !important;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: linear-gradient(145deg, var(--color-green), var(--color-cyan)) !important;
    box-shadow: 0 0 18px rgba(53, 214, 255, 0.22) !important;
  }

  .industry-group-icon i,
  .work-model-icon i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .industry-chips {
    gap: 0.5rem;
  }

  .industry-chips span {
    width: auto !important;
    max-width: 100%;
    min-height: 36px;
    justify-content: flex-start !important;
    padding: 0.55rem 0.72rem;
    text-align: left !important;
    background: rgba(14, 67, 80, 0.62) !important;
  }

  .work-model-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
    margin-top: 0.9rem;
    padding: 1rem !important;
    border: 1px solid rgba(0, 229, 168, 0.38) !important;
    border-radius: 24px !important;
    background-color: #092f37 !important;
    background-image: linear-gradient(145deg, rgba(0, 229, 168, 0.1), rgba(53, 214, 255, 0.07)) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28) !important;
  }

  .work-model-card article {
    display: flex !important;
    align-items: center;
    gap: 0.8rem;
  }

  .work-model-icon {
    display: grid !important;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .work-model-divider {
    width: 100%;
    height: 1px;
  }

  /* Keep PaddyMDev in the same white rounded badge used on desktop. */
  .paddymdev-credit {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .paddymdev-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    min-height: 66px !important;
    padding: 0.55rem 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.96) !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.16) !important;
  }

  .paddymdev-link img {
    display: block !important;
    width: auto !important;
    height: 46px !important;
    max-width: 150px !important;
    object-fit: contain;
    filter: none !important;
  }
}

/* Keep a direct Portal action visible in the compact header as well as the menu. */
@media (max-width: 900px) {
  .nav-cta {
    display: flex !important;
    margin-left: auto;
  }

  .nav-cta .nav-portal-button {
    min-height: 44px;
    padding: 0.36rem 0.55rem 0.36rem 0.4rem;
    border-radius: 14px;
  }

  .nav-cta .nav-portal-icon {
    width: 29px;
    height: 29px;
    border-radius: 9px;
  }
}

@media (max-width: 420px) {
  .nav-bar {
    gap: 0.55rem;
  }

  .nav-cta .nav-portal-button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
  }

  .nav-cta .nav-portal-button > span:nth-child(2),
  .nav-cta .nav-portal-arrow {
    display: none;
  }
}

/* Self-contained mobile icon fallbacks for the newly added panels. */
@media (max-width: 760px) {
  .hero-ios-status.compact .ios-status-icon i,
  .industry-group .industry-group-icon i,
  .work-model-card .work-model-icon i {
    display: none !important;
  }

  .hero-ios-status.compact .ios-status-icon::after,
  .industry-group .industry-group-icon::after,
  .work-model-card .work-model-icon::after {
    content: '';
    display: block;
    width: 27px;
    height: 27px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .hero-ios-status.compact .ios-status-icon::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2429' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E");
  }

  .industry-group-freight .industry-group-icon::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2429' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 6h11v10H3z'/%3E%3Cpath d='M14 10h4l3 3v3h-7z'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3C/svg%3E");
  }

  .industry-group-trades .industry-group-icon::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2429' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0-5-5l2.1 2.1-2.4 2.4-2.1-2.1a4 4 0 0 0 5 5L19 15.4 21.6 18 18 21.6 15.4 19l-6.7-6.7a4 4 0 0 0-5 5l2.1-2.1 2.4 2.4-2.1 2.1a4 4 0 0 0 5-5z'/%3E%3C/svg%3E");
  }

  .work-model-card article:first-child .work-model-icon::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2429' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 8l-9-5-9 5 9 5z'/%3E%3Cpath d='M3 8v8l9 5 9-5V8'/%3E%3Cpath d='M12 13v8'/%3E%3C/svg%3E");
  }

  .work-model-card article:last-child .work-model-icon::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a2429' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0-5-5l2.1 2.1-2.4 2.4-2.1-2.1a4 4 0 0 0 5 5L19 15.4 21.6 18 18 21.6 15.4 19l-6.7-6.7a4 4 0 0 0-5 5l2.1-2.1 2.4 2.4-2.1 2.1a4 4 0 0 0 5-5z'/%3E%3C/svg%3E");
  }
}

/* Compact Pocket Freight logo container — same portal-style treatment. */
.logo-link,
.pocket-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: fit-content;
  max-width: max-content;
  align-self: flex-start;
  justify-self: start;
  padding: 2px 4px;
  line-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  background: #d9dde0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.logo,
.footer-logo {
  width: auto;
  object-fit: contain;
  filter: none !important;
}

.logo {
  height: 58px;
}

.footer-logo {
  height: 52px;
}

@media (max-width: 760px) {
  .logo-link,
  .pocket-logo-shell {
    width: fit-content !important;
    max-width: max-content !important;
    padding: 2px 3px;
    border-radius: 10px;
  }

  .logo {
    height: 44px !important;
  }

  .footer-logo {
    height: 46px !important;
  }
}


/* Final Pocket Freight logo alignment. */
.logo-link {
  align-self: center;
}

@media (max-width: 760px) {
  .pocket-logo-shell {
    align-self: center !important;
    justify-self: center !important;
    margin-inline: auto !important;
  }
}

/* ==================================================================
   Pocket Freight & Trade Pricing Experience
================================================================== */
.pricing-section {
  width: min(100% - 2rem, var(--max-width-wide));
  gap: clamp(2.5rem, 6vw, 5.5rem);
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 1rem -5vw auto;
  height: 34rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(247, 147, 30, 0.2), transparent 34%),
    radial-gradient(circle at 78% 20%, rgba(53, 214, 255, 0.2), transparent 38%);
  filter: blur(8px);
  z-index: -1;
}

.pricing-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: .8rem;
  padding: .48rem .8rem;
  border: 1px solid rgba(247, 147, 30, .46);
  border-radius: 999px;
  background: rgba(247, 147, 30, .1);
  color: var(--color-orange-light);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pricing-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(101, 183, 224, .28);
  border-radius: 32px;
  background:
    linear-gradient(120deg, rgba(5, 27, 44, .97), rgba(10, 51, 70, .88)),
    url("images/pocket_freight_van.png") center right / cover no-repeat;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.pricing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 24, 40, .98) 0%, rgba(4, 24, 40, .9) 48%, rgba(4, 24, 40, .48) 100%),
    radial-gradient(circle at 90% 12%, rgba(247, 147, 30, .22), transparent 32%);
}

.pricing-hero > * { position: relative; z-index: 1; }

.pricing-hero-copy h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
  color: #fff;
}

.pricing-hero-copy p {
  max-width: 670px;
  color: rgba(235, 247, 252, .82);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.7rem;
}

.pricing-hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.pricing-hero-points > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  backdrop-filter: blur(14px);
}

.pricing-hero-points i {
  margin-bottom: auto;
  color: var(--color-orange);
  font-size: 1.8rem;
}

.pricing-hero-points strong {
  font-family: var(--font-heading);
  font-size: 1.03rem;
}

.pricing-hero-points span {
  margin-top: .3rem;
  color: rgba(229, 244, 249, .68);
  font-size: .84rem;
  line-height: 1.45;
}

.pricing-heading-compact { margin-bottom: 2rem; }

.pricing-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-steps article {
  position: relative;
  min-height: 260px;
  padding: 1.45rem;
  border: 1px solid rgba(53, 214, 255, .18);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(24, 68, 76, .92), rgba(7, 33, 43, .92));
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}

.pricing-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -.72rem;
  width: .46rem;
  height: .46rem;
  border-top: 2px solid var(--color-orange);
  border-right: 2px solid var(--color-orange);
  transform: rotate(45deg);
  z-index: 2;
}

.pricing-steps article > span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255,255,255,.16);
  font: 800 2rem/1 var(--font-heading);
}

.pricing-steps i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.15rem;
  border-radius: 16px;
  background: rgba(247,147,30,.13);
  color: var(--color-orange);
  font-size: 1.7rem;
}

.pricing-steps h3 { margin-bottom: .6rem; font: 800 1.1rem/1.25 var(--font-heading); }
.pricing-steps p { color: rgba(235,247,252,.7); line-height: 1.65; font-size: .9rem; }

.pricing-included {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(247,147,30,.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 20%, rgba(247,147,30,.16), transparent 34%),
    linear-gradient(135deg, rgba(8,35,47,.96), rgba(14,62,73,.9));
}

.pricing-included-copy h2,
.ftcoin-explainer h2,
.pricing-comparison h2 {
  margin-bottom: .8rem;
  font: 800 clamp(1.9rem, 3.3vw, 3.25rem)/1.05 var(--font-heading);
  letter-spacing: -.035em;
}

.pricing-included-copy p,
.ftcoin-explainer p,
.pricing-comparison p { color: rgba(235,247,252,.72); line-height: 1.75; }

.pricing-included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .72rem;
}

.pricing-included-grid span {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-height: 48px;
  padding: .7rem .85rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 13px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.9);
  font-weight: 700;
  font-size: .88rem;
}

.pricing-included-grid i { color: var(--color-orange); font-size: 1.1rem; }

.ftcoin-explainer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(320px, .75fr);
  gap: 1.7rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(53,214,255,.24);
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(22,75,91,.82), rgba(6,31,43,.96));
}

.ftcoin-mark {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  padding: 5px;
  overflow: hidden;
  border: 3px solid #ffd27d;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffbf58 0%, #f7941d 55%, #c75b00 100%);
  box-shadow:
    0 0 0 5px rgba(247,147,30,.34),
    0 0 0 10px rgba(255,210,125,.12),
    0 15px 30px rgba(0,0,0,.25),
    inset 0 2px 3px rgba(255,255,255,.5);
}

.ftcoin-mark img,
.ftcoin-card-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.25));
}

.ftcoin-card-mark {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 3px;
  overflow: hidden;
  border: 2px solid #ffd27d;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffbf58 0%, #f7941d 55%, #c75b00 100%);
  box-shadow:
    0 0 0 3px rgba(247,147,30,.22),
    0 8px 18px rgba(0,0,0,.24),
    inset 0 1px 2px rgba(255,255,255,.45);
}

.ftcoin-actions { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .8rem; }
.ftcoin-actions > div { padding: 1rem; border-radius: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); }
.ftcoin-actions i { color: var(--color-orange); font-size: 1.35rem; }
.ftcoin-actions span,.ftcoin-actions strong { display: block; }
.ftcoin-actions span { margin-top: .55rem; color: rgba(235,247,252,.65); font-size: .78rem; }
.ftcoin-actions strong { margin-top: .15rem; font: 800 1rem/1.2 var(--font-heading); }

.ftcoin-packs { scroll-margin-top: calc(var(--header-height) + 1rem); }
.pricing-grid-coins { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.pricing-grid-coins .pricing-card {
  position: relative;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.45rem;
  overflow: hidden;
  border: 1px solid rgba(53,214,255,.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53,214,255,.15), transparent 36%),
    linear-gradient(150deg, rgba(25,72,82,.93), rgba(7,30,41,.98));
}

.pricing-grid-coins .pricing-card-featured {
  border-color: rgba(247,147,30,.62);
  background:
    radial-gradient(circle at 100% 0%, rgba(247,147,30,.24), transparent 40%),
    linear-gradient(150deg, rgba(33,80,89,.98), rgba(9,34,45,.98));
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0,0,0,.32), 0 0 32px rgba(247,147,30,.12);
}

.pack-label { width: fit-content; margin-bottom: auto; padding: .36rem .58rem; border-radius: 999px; background: rgba(247,147,30,.13); color: var(--color-orange-light); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.pricing-grid-coins .pricing-card h3 { margin-top: 2.8rem; font-size: 1.3rem; }
.pricing-grid-coins .pricing-price { margin: .35rem 0; color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.pricing-grid-coins .pricing-desc { color: rgba(235,247,252,.65); }
.pricing-pack-note { display:flex; justify-content:center; align-items:center; gap:.5rem; margin-top:1.2rem; color:rgba(235,247,252,.58); text-align:center; font-size:.82rem; }
.pricing-pack-note i { color:var(--color-orange); }

.pricing-comparison {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.comparison-table { overflow:hidden; border:1px solid rgba(255,255,255,.12); border-radius:22px; background:rgba(5,28,39,.76); box-shadow:0 22px 50px rgba(0,0,0,.24); }
.comparison-table > div { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); }
.comparison-table > div:not(:last-child) { border-bottom:1px solid rgba(255,255,255,.08); }
.comparison-table span,.comparison-table strong { padding:1rem 1.15rem; }
.comparison-table strong { color:#fff; background:rgba(247,147,30,.06); }
.comparison-table span { color:rgba(235,247,252,.66); }
.comparison-head { background:linear-gradient(90deg, rgba(247,147,30,.18), rgba(53,214,255,.12)); font-family:var(--font-heading); font-weight:800; }
.comparison-head span:first-child { color:var(--color-orange-light); }

.pricing-faq-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1rem; }
.pricing-faq-grid article { padding:1.35rem; border:1px solid rgba(255,255,255,.1); border-radius:18px; background:rgba(8,36,47,.72); }
.pricing-faq-grid h3 { margin-bottom:.55rem; font:800 1rem/1.3 var(--font-heading); color:#fff; }
.pricing-faq-grid p { color:rgba(235,247,252,.68); line-height:1.65; font-size:.9rem; }

@media (max-width: 1050px) {
  .pricing-hero,.pricing-included,.pricing-comparison { grid-template-columns:1fr; }
  .pricing-steps { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .pricing-steps article:nth-child(2)::after { display:none; }
  .ftcoin-explainer { grid-template-columns:auto 1fr; }
  .ftcoin-actions { grid-column:1/-1; }
}

@media (max-width: 720px) {
  .pricing-section { width:min(100% - 1rem, var(--max-width-wide)); gap:3.2rem; }
  .pricing-hero { grid-template-columns:1fr; padding:1.4rem; border-radius:24px; }
  .pricing-hero-points,.pricing-steps,.pricing-included-grid,.pricing-grid-coins,.pricing-faq-grid { grid-template-columns:1fr; }
  .pricing-hero-points > div { min-height:125px; }
  .pricing-steps article:not(:last-child)::after { display:none; }
  .pricing-included,.ftcoin-explainer { padding:1.35rem; border-radius:22px; }
  .ftcoin-explainer { grid-template-columns:1fr; }
  .ftcoin-mark { width:76px; height:76px; }
  .ftcoin-actions { grid-template-columns:1fr; grid-column:auto; }
  .pricing-grid-coins .pricing-card-featured { transform:none; }
  .comparison-table span,.comparison-table strong { padding:.85rem .7rem; font-size:.78rem; }
}
