/* ==================================================================
   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;
}

/* ==================================================================
   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;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.line-primary,
.line-tertiary {
  background-image: linear-gradient(90deg, #ffffff 0%, #c5f7ff 52%, #77e9ff 100%);
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.45),
    0 0 24px rgba(53, 214, 255, 0.36),
    0 0 48px rgba(53, 214, 255, 0.18);
}

.line-secondary {
  background-image: linear-gradient(90deg, var(--color-green) 0%, var(--color-cyan) 70%, #ffffff 100%);
  text-shadow:
    0 0 8px rgba(0, 229, 168, 0.5),
    0 0 30px rgba(53, 214, 255, 0.42),
    0 0 62px rgba(53, 214, 255, 0.24);
}

.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);
}

/* ==================================================================
   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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.download-card .section-title,
.download-card .section-subtitle {
  margin-bottom: 0;
}

.download-card .section-subtitle {
  max-width: 700px;
}

.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;
}

.beta-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.beta-modal.active {
  display: flex;
}

.beta-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 22, 0.78);
  backdrop-filter: blur(10px);
}

.beta-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100vh - 2.4rem);
  overflow-y: auto;
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft), var(--shadow-cyan);
}

.beta-modal-x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(53, 214, 255, 0.35);
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(10, 36, 41, 0.72);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.beta-modal .section-title {
  padding-right: 3rem;
}

.beta-modal .section-subtitle {
  margin-bottom: 1.2rem;
}

/* ==================================================================
   Footer
================================================================== */
.site-footer {
  padding: 2rem 0;
  background: 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-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 {
  margin-top: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 800;
}

.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-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  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;
}

/* ==================================================================
   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;
  }
}

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

  .faq-card {
    padding: 1.2rem;
  }
}

@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;
  }
  
  .beta-modal {
    padding: 0.8rem;
  }

  .beta-modal-card {
    border-radius: 22px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    justify-items: center;
  }

  .footer-nav {
    justify-content: center;
  }
  
  .footer-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  margin-inline: auto;
}
}
