/* =============================================
   Vira Trade Development Path — Landing Page
   ============================================= */

/* --- Font Faces --- */
@font-face {
  font-family: "IRANYekanXFaNum";
  src: url("../fonts/IRANYekanXFaNum-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IRANYekanXFaNum";
  src: url("../fonts/IRANYekanXFaNum-UltraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IRANYekanXFaNum";
  src: url("../fonts/IRANYekanXFaNum-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IRANYekanXFaNum";
  src: url("../fonts/IRANYekanXFaNum-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IRANYekanXFaNum";
  src: url("../fonts/IRANYekanXFaNum-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IRANYekanXFaNum";
  src: url("../fonts/IRANYekanXFaNum-DemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IRANYekanXFaNum";
  src: url("../fonts/IRANYekanXFaNum-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IRANYekanXFaNum";
  src: url("../fonts/IRANYekanXFaNum-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IRANYekanXFaNum";
  src: url("../fonts/IRANYekanXFaNum-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  /* سبز — رنگ اصلی */
  --green-dark: #003F2D;
  --green-deep: #004B35;
  --green-main: #007A4D;
  --green-bright: #009B5A;
  --color-primary: var(--green-main);
  --color-primary-dark: var(--green-dark);
  --color-primary-deep: var(--green-deep);
  --color-primary-bright: var(--green-bright);

  /* نارنجی — رنگ مکمل */
  --orange-gold: #F5A400;
  --orange-bright: #FFB000;
  --color-accent: var(--orange-gold);
  --color-accent-bright: var(--orange-bright);

  --cream: #F7F3E8;
  --cream-light: #FBF7EC;
  --text-dark: #102B22;
  --text-muted: rgba(16, 43, 34, 0.65);
  --white: #ffffff;
  --glass-bg: rgba(247, 243, 232, 0.82);
  --glass-border: rgba(0, 63, 45, 0.08);
  --shadow-soft: 0 4px 24px rgba(0, 63, 45, 0.06);
  --shadow-card: 0 8px 40px rgba(0, 63, 45, 0.08);
  --shadow-primary: 0 4px 16px rgba(0, 122, 77, 0.28);
  --shadow-accent: 0 4px 16px rgba(245, 164, 0, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: min(1200px, 92vw);
  --header-h: 80px;
  --header-announce-h: 40px;
  --header-shell-h: calc(var(--header-announce-h) + var(--header-h) + 1.35rem);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "IRANYekanXFaNum", Tahoma, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.85;
  color: var(--text-dark);
  background-color: var(--cream);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Grid Background --- */
.grid-bg {
  position: relative;
}

.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 63, 45, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 63, 45, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.grid-bg > * {
  position: relative;
  z-index: 1;
}

/* --- Layout --- */
.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-label {
  display: inline-block;
  font-size: clamp(0.75rem, 1.2vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green-main);
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(0, 122, 77, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(0, 122, 77, 0.12);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.9;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-bright));
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 122, 77, 0.38);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-bright));
  color: var(--green-dark);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 164, 0, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid rgba(0, 63, 45, 0.2);
}

.btn-outline:hover {
  border-color: var(--green-main);
  background: rgba(0, 122, 77, 0.06);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--green-dark);
  border: 1px solid rgba(0, 63, 45, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--green-main);
}

/* --- Header Shell --- */
.header-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem clamp(0.75rem, 2.5vw, 1.5rem) 0;
  pointer-events: none;
}

.header-shell > * {
  pointer-events: auto;
}

/* Announcement strip */
.header-announce {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: 0.55rem;
  padding: 0.5rem 1.15rem;
  background: linear-gradient(120deg, rgba(0, 63, 45, 0.88) 0%, rgba(0, 107, 68, 0.82) 55%, rgba(0, 136, 90, 0.78) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  animation: announce-slide 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes announce-slide {
  from { transform: translateY(-120%); opacity: 0.5; }
  to { transform: translateY(0); opacity: 1; }
}

.header-announce-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-bright);
  flex-shrink: 0;
  animation: status-pulse 2s ease infinite;
}

.header-announce-tag {
  padding: 0.15rem 0.55rem;
  background: rgba(245, 164, 0, 0.15);
  border: 1px solid rgba(245, 164, 0, 0.35);
  border-radius: 100px;
  color: var(--color-accent-bright);
  font-weight: 700;
  font-size: 0.625rem;
}

.header-announce-link {
  color: var(--color-accent);
  font-weight: 600;
  transition: opacity var(--transition);
}

.header-announce-link:hover {
  opacity: 0.75;
}

/* Floating header bar — liquid glass, fixed size */
.header {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(22px) saturate(1.65);
  -webkit-backdrop-filter: blur(22px) saturate(1.65);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  animation: header-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(247, 243, 232, 0.12) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 155, 90, 0.45) 20%,
    rgba(255, 184, 0, 0.55) 50%,
    rgba(0, 155, 90, 0.45) 80%,
    transparent
  );
  z-index: 2;
  pointer-events: none;
}

@keyframes header-enter {
  from { transform: translateY(-110%); }
  to { transform: translateY(0); }
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.6);
}

.header-progress {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary-bright));
  transition: width 0.1s linear;
  z-index: 3;
  border-radius: 0 0 18px 18px;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding-inline: clamp(0.875rem, 2vw, 1.25rem);
}

.header-col--brand {
  display: flex;
  justify-content: flex-start;
  min-width: 0;
}

.header-col--nav {
  display: flex;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
}

.header-col--actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 0;
  transition: opacity var(--transition);
}

.header-brand:hover {
  opacity: 0.85;
}

.header-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.header-brand:hover .header-logo-wrap {
  background: rgba(255, 255, 255, 0.55);
}

.header-logo {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  object-fit: contain;
}

.header-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
  text-align: right;
  align-items: flex-end;
}

.header-brand-fa {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
  width: 100%;
}

.header-brand-en {
  font-size: 0.625rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  direction: ltr;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* Nav with sliding indicator */
.nav {
  display: flex;
  align-items: center;
}

.nav--pill {
  position: relative;
  gap: 0.1rem;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 100px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  max-width: 100%;
}

.nav-indicator {
  position: absolute;
  top: 0.35rem;
  bottom: 0.35rem;
  right: 0;
  width: 0;
  opacity: 0;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(0, 122, 77, 0.14) 0%, rgba(0, 155, 90, 0.1) 100%);
  border: 1px solid rgba(0, 122, 77, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition:
    right 0.38s cubic-bezier(0.34, 1.3, 0.64, 1),
    width 0.38s cubic-bezier(0.34, 1.3, 0.64, 1),
    opacity 0.2s ease;
  z-index: 0;
  pointer-events: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: clamp(0.6875rem, 1.05vw, 0.8125rem);
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  padding: 0.5rem 0.65rem;
  border-radius: 100px;
  transition: color 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link-num {
  font-size: 0.5625rem;
  font-weight: 700;
  color: rgba(0, 63, 45, 0.25);
  transition: color 0.25s ease;
  font-variant-numeric: tabular-nums;
}

.nav-link:hover {
  color: var(--green-dark);
}

.nav-link:hover .nav-link-num {
  color: var(--color-accent);
}

.nav-link.is-active {
  color: var(--green-dark);
  font-weight: 700;
}

.nav-link.is-active .nav-link-num {
  color: var(--color-accent);
}

/* Header actions */
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--green-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.header-phone:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.5);
}

.header-phone svg {
  color: var(--green-main);
  flex-shrink: 0;
}

.header-cta {
  flex-shrink: 0;
  padding: 0.65rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.header-cta:hover .btn-icon {
  transform: translateX(3px);
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 155, 90, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(0, 155, 90, 0.08); }
}

/* Menu toggle */
.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  height: 40px;
  padding: 0 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 63, 45, 0.12);
  background: var(--cream);
  flex-shrink: 0;
}

.menu-toggle-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-dark);
}

.menu-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.menu-toggle-bars span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.menu-toggle.is-open .menu-toggle-bars span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-bars span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

/* --- Trust Section (مجوزها و نمادها) --- */
.trust-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.trust-panel {
  padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-deep) 45%, var(--color-primary) 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 64px rgba(0, 63, 45, 0.18);
  position: relative;
  overflow: hidden;
}

.trust-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.trust-panel > * {
  position: relative;
  z-index: 1;
}

.trust-section-head {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.trust-section-head .section-label {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}

.trust-section-head .section-title {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.trust-section-desc {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(0.75rem, 2vw, 1rem);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all var(--transition);
  min-height: 100%;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  border-color: var(--color-accent);
}

.trust-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 10vw, 96px);
  height: clamp(72px, 10vw, 96px);
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border: 1px dashed rgba(0, 122, 77, 0.2);
  color: var(--color-primary);
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}

.trust-card:hover .trust-card-visual {
  border-style: solid;
  border-color: rgba(0, 122, 77, 0.35);
  background: rgba(0, 122, 77, 0.05);
}

.trust-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.trust-card-title {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}

.trust-card-desc {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.7;
}

.trust-section-note {
  margin-top: 1.5rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  line-height: 1.8;
}

/* --- Hero --- */
.hero {
  padding-top: calc(var(--header-shell-h) + clamp(2rem, 5vw, 4rem));
  padding-bottom: clamp(4rem, 8vw, 6rem);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(400px, 46vw, 520px);
  width: 100%;
}

/* --- Hero Scene --- */
.hero-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: clamp(320px, 42vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scene-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, rgba(255,255,255,0.92) 0%, rgba(247,243,232,0.5) 100%);
  border: 1px solid rgba(0, 63, 45, 0.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 20px 60px rgba(0, 63, 45, 0.08);
}

.hero-scene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 63, 45, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 63, 45, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-scene-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-scene-glow--green {
  width: 60%;
  height: 60%;
  top: 15%;
  right: 10%;
  background: rgba(0, 122, 77, 0.2);
  animation: glow-drift 8s ease-in-out infinite;
}

.hero-scene-glow--gold {
  width: 30%;
  height: 30%;
  bottom: 20%;
  left: 15%;
  background: rgba(245, 164, 0, 0.07);
  animation: glow-drift 10s ease-in-out infinite reverse;
}

@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8px, -10px) scale(1.08); }
}

/* SVG symbol layer */
.hero-scene-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-svg-ring {
  transform-origin: 210px 210px;
  animation: orbit-spin 50s linear infinite;
}

.hero-svg-ring--2 {
  animation-direction: reverse;
  animation-duration: 38s;
}

.hero-svg-ring--3 {
  animation-duration: 28s;
}

/* قوس‌های مسیر رشد */
.hero-svg-arc-group {
  transform-origin: 210px 210px;
}

.hero-svg-arc-group--1 {
  animation: orbit-spin 20s linear infinite;
}

.hero-svg-arc-group--2 {
  animation: orbit-spin 28s linear infinite reverse;
}

.hero-svg-arc-group--3 {
  animation: orbit-spin 36s linear infinite;
}

.hero-svg-arc {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  animation: svg-draw 2s ease forwards 0.4s, arc-pulse 3s ease-in-out infinite 2.4s;
  opacity: 0.55;
}

.hero-svg-arc-group--2 .hero-svg-arc {
  animation-delay: 0.7s, 2.7s;
  opacity: 0.4;
}

.hero-svg-arc-group--3 .hero-svg-arc {
  animation-delay: 1s, 3s;
}

.hero-svg-arc--accent {
  stroke: #009B5A;
}

@keyframes arc-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.85; }
}

@keyframes svg-draw {
  to { stroke-dashoffset: 0; }
}

.hero-svg-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: svg-draw 1.8s ease forwards 1.2s;
}

.hero-svg-line:nth-of-type(2) { animation-delay: 1.35s; }
.hero-svg-line:nth-of-type(3) { animation-delay: 1.5s; }
.hero-svg-line--accent { animation-delay: 1.65s; }

.hero-svg-node {
  opacity: 0;
  animation: node-blink 0.5s ease forwards 1.8s;
}

.hero-svg-node:nth-of-type(2) { animation-delay: 1.9s; }
.hero-svg-node:nth-of-type(3) { animation-delay: 2s; }
.hero-svg-node--accent { animation-delay: 2.1s; }
.hero-svg-node--soon { animation-delay: 2.2s; }
.hero-svg-node--soon:nth-of-type(6) { animation-delay: 2.35s; }

@keyframes node-blink {
  from { opacity: 0; transform: scale(0); }
  60% { transform: scale(1.4); }
  to { opacity: 1; transform: scale(1); }
}

/* Orbit rings */
.hero-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 122, 77, 0.18);
  animation: orbit-spin 35s linear infinite;
  z-index: 2;
  inset: 4%;
}

.hero-orbit-ring--2 {
  inset: 14%;
  border-color: rgba(0, 122, 77, 0.14);
  border-style: dotted;
  animation-direction: reverse;
  animation-duration: 26s;
}

.hero-orbit-ring--3 {
  inset: 24%;
  border-style: solid;
  border-color: rgba(0, 63, 45, 0.07);
  animation-duration: 20s;
}

.hero-orbit-ring--4 {
  inset: 34%;
  border: 1px dashed rgba(245, 164, 0, 0.12);
  animation-direction: reverse;
  animation-duration: 15s;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Satellite tracks */
.hero-satellite-track {
  position: absolute;
  inset: 0;
  z-index: 4;
  animation: orbit-spin 18s linear infinite;
  pointer-events: none;
}

.hero-satellite-track--2 {
  animation-duration: 24s;
  animation-direction: reverse;
}

.hero-satellite-track--3 {
  animation-duration: 30s;
}

.hero-satellite-track--4 {
  animation-duration: 22s;
  animation-direction: reverse;
}

.hero-satellite-track--5 {
  animation-duration: 27s;
}

.hero-satellite-track--6 {
  animation-duration: 33s;
  animation-direction: reverse;
}

.hero-satellite-track--4 .hero-satellite {
  animation-duration: 22s;
  animation-direction: reverse;
}

.hero-satellite-track--5 .hero-satellite {
  animation-duration: 27s;
}

.hero-satellite-track--6 .hero-satellite {
  animation-duration: 33s;
  animation-name: sat-counter-rev;
}

.hero-satellite {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  background: var(--white);
  border: 1px solid rgba(0, 122, 77, 0.15);
  border-radius: 100px;
  color: var(--green-main);
  box-shadow: 0 3px 12px rgba(0, 63, 45, 0.08);
  animation: sat-counter 18s linear infinite;
}

.hero-satellite-track--2 .hero-satellite {
  animation-duration: 24s;
  animation-direction: reverse;
}

.hero-satellite-track--3 .hero-satellite {
  animation-duration: 30s;
  top: auto;
  bottom: 8%;
}

.hero-satellite--gold {
  color: var(--color-accent);
  border-color: rgba(245, 164, 0, 0.3);
  background: rgba(255, 252, 245, 0.95);
}

.hero-satellite--soon {
  color: var(--text-muted);
  border-style: dashed;
  border-color: rgba(0, 63, 45, 0.12);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  opacity: 0.85;
}

/* Smart scan beam */
.hero-scene-scan {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0, 155, 90, 0.07) 24deg,
    rgba(245, 164, 0, 0.04) 36deg,
    transparent 60deg
  );
  animation: orbit-spin 10s linear infinite;
  -webkit-mask-image: radial-gradient(circle, black 55%, transparent 78%);
  mask-image: radial-gradient(circle, black 55%, transparent 78%);
}

@keyframes sat-counter {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(-360deg); }
}

.hero-satellite-track--2 .hero-satellite {
  animation-name: sat-counter-rev;
}

@keyframes sat-counter-rev {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

/* Core logo hub */
.hero-scene-core {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scene-pulse {
  position: absolute;
  width: clamp(185px, 24vw, 230px);
  height: clamp(185px, 24vw, 230px);
  border-radius: 50%;
  border: 1.5px solid rgba(0, 122, 77, 0.25);
  animation: pulse-ring 3.5s ease-out infinite;
}

.hero-scene-pulse--delay {
  animation-delay: 1.75s;
  border-color: rgba(0, 155, 90, 0.18);
}

@keyframes pulse-ring {
  0% { transform: scale(0.82); opacity: 0.65; }
  100% { transform: scale(1.3); opacity: 0; }
}

.hero-logo-card {
  position: relative;
  width: clamp(155px, 20vw, 200px);
  height: clamp(155px, 20vw, 200px);
  border-radius: clamp(24px, 3vw, 34px);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 20px 56px rgba(0, 63, 45, 0.16),
    0 0 0 1px rgba(0, 122, 77, 0.08);
  animation: hero-card-float 5s ease-in-out infinite;
}

.hero-logo-card img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

@keyframes hero-card-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}

/* Floating chips — 6 businesses */
.hero-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 63, 45, 0.1);
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(0, 63, 45, 0.07);
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-chip:hover {
  border-color: rgba(0, 122, 77, 0.22);
  box-shadow: 0 6px 20px rgba(0, 122, 77, 0.12);
}

.hero-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-main);
  opacity: 0.85;
}

.hero-chip--soon .hero-chip-icon {
  color: rgba(0, 122, 77, 0.45);
}

.hero-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-bright);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0, 155, 90, 0.45);
}

.hero-chip-dot--soon {
  background: var(--color-accent);
  box-shadow: 0 0 6px rgba(245, 164, 0, 0.35);
  animation: soon-pulse 2.5s ease infinite;
}

@keyframes soon-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero-chip--soon {
  opacity: 0.88;
  border-style: dashed;
  border-color: rgba(0, 63, 45, 0.1);
  color: var(--text-muted);
  font-weight: 600;
}

.hero-chip-spotlight {
  animation:
    chip-float-a 5s ease-in-out infinite,
    chip-spotlight 18s ease infinite;
  animation-delay: 0s, var(--spotlight-delay, 0s);
}

.hero-chip--2.hero-chip-spotlight {
  animation-name: chip-float-b, chip-spotlight;
}

.hero-chip--3.hero-chip-spotlight,
.hero-chip--6.hero-chip-spotlight {
  animation-name: chip-float-c, chip-spotlight;
}

.hero-chip--4.hero-chip-spotlight {
  animation-name: chip-float-a, chip-spotlight;
  animation-direction: normal, normal;
}

.hero-chip--5.hero-chip-spotlight {
  animation-name: chip-float-b, chip-spotlight;
}

@keyframes chip-spotlight {
  0%, 100% {
    border-color: rgba(0, 63, 45, 0.1);
    box-shadow: 0 4px 16px rgba(0, 63, 45, 0.07);
  }
  5%, 11% {
    border-color: rgba(0, 122, 77, 0.3);
    box-shadow: 0 8px 28px rgba(0, 122, 77, 0.16);
  }
}

.hero-chip--1 {
  top: 4%;
  left: -4%;
}

.hero-chip--2 {
  top: 20%;
  right: -8%;
}

.hero-chip--3 {
  bottom: 22%;
  left: -6%;
}

.hero-chip--4 {
  bottom: 6%;
  right: -5%;
}

.hero-chip--5 {
  top: 42%;
  right: -10%;
}

.hero-chip--6 {
  top: 6%;
  right: 14%;
}

@keyframes chip-float-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-5px, -7px); }
}

@keyframes chip-float-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, -5px); }
}

@keyframes chip-float-c {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-4px, 6px); }
}

/* Particles */
.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
}

.hero-particle--1 { top: 15%; left: 20%; background: var(--green-main); animation: particle-drift 7s ease infinite; }
.hero-particle--2 { top: 30%; right: 18%; background: var(--green-bright); animation: particle-drift 9s ease infinite 1s; }
.hero-particle--3 { bottom: 25%; left: 15%; background: var(--green-main); animation: particle-drift 8s ease infinite 2s; }
.hero-particle--4 { bottom: 35%; right: 22%; background: var(--color-accent); animation: particle-drift 6s ease infinite 0.5s; }
.hero-particle--5 { top: 50%; left: 8%; background: rgba(0,122,77,0.5); width: 3px; height: 3px; animation: particle-drift 10s ease infinite 1.5s; }
.hero-particle--6 { top: 60%; right: 10%; background: rgba(245,164,0,0.45); width: 3px; height: 3px; animation: particle-drift 11s ease infinite 3s; }

@keyframes particle-drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  25% { transform: translate(6px, -8px); opacity: 1; }
  50% { transform: translate(-4px, -14px); opacity: 0.6; }
  75% { transform: translate(8px, -6px); opacity: 0.9; }
}

/* Corner brackets */
.hero-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 3;
  pointer-events: none;
}

.hero-corner--tr {
  top: 12px;
  right: 12px;
  border-top: 2px solid rgba(0, 122, 77, 0.35);
  border-right: 2px solid rgba(0, 122, 77, 0.35);
}

.hero-corner--bl {
  bottom: 12px;
  left: 12px;
  border-bottom: 2px solid rgba(0, 122, 77, 0.2);
  border-left: 2px solid rgba(245, 164, 0, 0.25);
}

.hero-visual-caption {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1.35rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 63, 45, 0.08);
  box-shadow: 0 4px 20px rgba(0, 63, 45, 0.06);
}

.hero-visual-caption-stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-visual-caption-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-visual-caption-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, rgba(0, 122, 77, 0.25), transparent);
}

.hero-visual-caption-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: right;
}

.hero-visual-caption-active {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-main);
}

.hero-visual-caption-active::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-bright);
  margin-inline-end: 0.35rem;
  vertical-align: middle;
  box-shadow: 0 0 6px rgba(0, 155, 90, 0.4);
}

.hero-visual-caption-soon {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-visual-caption-soon::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-inline-end: 0.35rem;
  vertical-align: middle;
  opacity: 0.7;
}

.hero-visual-caption-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-main);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 122, 77, 0.07);
  border: 1px solid rgba(0, 122, 77, 0.14);
  border-radius: 100px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--green-main), var(--green-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 2.25rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 63, 45, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 63, 45, 0.08);
  box-shadow: var(--shadow-card);
}

.hero-stat {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  transition: background var(--transition);
}

.hero-stat:hover {
  background: var(--white);
}

.hero-stat-label {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.hero-stat-label span {
  color: var(--color-accent);
}

.hero-stat-desc {
  font-size: clamp(0.75rem, 1.3vw, 0.8125rem);
  font-weight: 500;
  color: var(--text-muted);
}

/* --- About --- */
.about {
  background: var(--white);
  border-block: 1px solid rgba(0, 63, 45, 0.06);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-text {
  font-size: clamp(1rem, 1.8vw, 1.0625rem);
  color: var(--text-muted);
  line-height: 2.1;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-main) 60%, var(--green-bright) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.about-visual-logo {
  width: clamp(100px, 20vw, 160px);
  opacity: 0.95;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.2));
}

.about-visual-tag {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

/* --- Businesses --- */
.businesses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.business-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 63, 45, 0.08);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.business-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 122, 77, 0.15);
}

.business-card--featured {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-deep) 100%);
  border-color: transparent;
  color: var(--white);
}

.business-card--featured:hover {
  border-color: transparent;
  box-shadow: 0 12px 48px rgba(0, 63, 45, 0.25);
}

.business-card--featured .business-card-title,
.business-card--featured .business-card-desc {
  color: var(--white);
}

.business-card--featured .business-card-desc {
  opacity: 0.85;
}

.business-card--featured .business-tag {
  background: rgba(245, 164, 0, 0.2);
  color: var(--color-accent-bright);
  border-color: rgba(245, 164, 0, 0.3);
}

.business-card--featured .business-status {
  background: rgba(0, 155, 90, 0.25);
  color: #7dffc4;
  border-color: rgba(0, 155, 90, 0.35);
}

.business-card--coming {
  opacity: 0.5;
  background: rgba(255, 255, 255, 0.45);
  border-style: dashed;
  border-color: rgba(0, 63, 45, 0.12);
  overflow: hidden;
}

.business-card--coming::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 60%
  );
  animation: shimmer 2.5s ease infinite;
  z-index: 2;
  pointer-events: none;
}

.business-card--coming .business-card-header,
.business-card--coming .business-card-desc,
.business-card--coming .business-status {
  position: relative;
  z-index: 3;
}

@keyframes shimmer {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Business card icons */
.business-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.business-card-icon--media {
  background: rgba(245, 164, 0, 0.18);
  color: var(--color-accent);
  animation: icon-float 3s ease-in-out infinite;
}

.business-card-icon--web {
  background: rgba(0, 122, 77, 0.1);
  color: var(--green-main);
  animation: icon-float 3.2s ease-in-out infinite 0.3s;
}

.business-card-icon--host {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  animation: icon-pulse-ring 2.5s ease infinite;
}

.business-card-icon--sms {
  background: rgba(0, 122, 77, 0.08);
  color: var(--green-main);
  animation: icon-float 3.5s ease-in-out infinite 0.5s;
}

.business-card-icon--call {
  background: rgba(245, 164, 0, 0.1);
  color: #b87a00;
  animation: icon-float 3.8s ease-in-out infinite 0.2s;
}

.business-card-icon--iot {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  animation: icon-float 4s ease-in-out infinite 0.4s;
}

.business-card--featured .business-card-icon--media {
  background: rgba(245, 164, 0, 0.22);
  color: var(--color-accent-bright);
}

.business-card--coming .business-card-icon {
  opacity: 0.65;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes icon-pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
}

.business-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.business-card-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--green-dark);
}

.business-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background: rgba(0, 122, 77, 0.08);
  color: var(--green-main);
  border: 1px solid rgba(0, 122, 77, 0.14);
  white-space: nowrap;
  flex-shrink: 0;
}

.business-card-desc {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--text-muted);
  line-height: 1.9;
  flex: 1;
}

.business-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  width: fit-content;
}

.business-status--active {
  background: rgba(0, 122, 77, 0.1);
  color: var(--green-main);
  border: 1px solid rgba(0, 122, 77, 0.18);
}

.business-status--active::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
}

.business-status--pending {
  background: rgba(245, 164, 0, 0.1);
  color: #b87a00;
  border: 1px solid rgba(245, 164, 0, 0.2);
}

.business-status--pending .loading-dots {
  display: flex;
  gap: 3px;
}

.loading-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: dot-bounce 1.4s ease infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* --- Timeline (Horizontal) --- */
.timeline-section {
  background: var(--white);
  border-block: 1px solid rgba(0, 63, 45, 0.06);
  overflow: hidden;
}

.timeline-wrapper {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.timeline-track {
  position: relative;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--green-main) transparent;
  padding-bottom: 1.5rem;
}

.timeline-track::-webkit-scrollbar {
  height: 4px;
}

.timeline-track::-webkit-scrollbar-thumb {
  background: var(--green-main);
  border-radius: 4px;
}

.timeline-line {
  position: absolute;
  top: 28px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary-bright));
  z-index: 0;
}

.timeline-item {
  flex: 1;
  min-width: clamp(180px, 18vw, 220px);
  scroll-snap-align: start;
  position: relative;
  z-index: 1;
  padding-top: 0;
  text-align: center;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green-main);
  margin: 20px auto 1.25rem;
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}

.timeline-item:hover .timeline-dot,
.timeline-item.is-active .timeline-dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(0, 122, 77, 0.2), 0 0 0 9px rgba(245, 164, 0, 0.12);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.timeline-item.is-active .timeline-year {
  color: var(--color-accent);
}

.timeline-title {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  padding-inline: 0.5rem;
}

.timeline-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-inline: 0.75rem;
}

.timeline-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: clamp(3rem, 6vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 63, 45, 0.06);
}

.timeline-detail-text {
  font-size: clamp(0.9375rem, 1.8vw, 1rem);
  color: var(--text-muted);
  line-height: 2;
}

.timeline-detail-text strong {
  color: var(--green-dark);
  font-weight: 700;
}

.timeline-detail-visual {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 55%, var(--green-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.timeline-detail-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.timeline-detail-visual img {
  width: clamp(80px, 15vw, 120px);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.15));
}

.timeline-detail-caption {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  z-index: 1;
}

/* --- Portfolio --- */
.portfolio-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 1rem 1.25rem;
  background: rgba(0, 122, 77, 0.05);
  border-radius: var(--radius-sm);
  border-right: 3px solid var(--green-main);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 63, 45, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.portfolio-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, rgba(0, 63, 45, 0.06) 0%, rgba(0, 122, 77, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 63, 45, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 63, 45, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.portfolio-thumb-icon {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-main);
  letter-spacing: 0.1em;
  opacity: 0.5;
}

.portfolio-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.portfolio-category {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.portfolio-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.portfolio-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* --- Founder / CEO --- */
.founder {
  background: var(--cream);
}

.founder-panel {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 122, 77, 0.1);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.founder-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green-bright), var(--green-dark));
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.founder-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.founder-photo {
  margin: 0;
  flex-shrink: 0;
  position: relative;
}

.founder-photo::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-md) + 3px);
  background: linear-gradient(160deg, var(--green-bright), var(--green-dark));
  z-index: 0;
  opacity: 0.9;
}

.founder-photo img {
  position: relative;
  z-index: 1;
  width: clamp(200px, 22vw, 260px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  border: 3px solid var(--white);
  box-shadow: 0 12px 40px rgba(0, 63, 45, 0.12);
  transition: transform 0.4s ease;
}

.founder-photo:hover img {
  transform: translateY(-3px);
}

.founder-content {
  text-align: right;
}

.founder-content .section-label {
  background: rgba(0, 122, 77, 0.08);
  border: 1px solid rgba(0, 122, 77, 0.12);
  color: var(--green-main);
}

.founder-content .section-title {
  margin-bottom: 1rem;
  color: var(--green-dark);
}

.founder-quote {
  margin: 0;
  padding: 0;
  padding-inline-start: 1.25rem;
  border: none;
  border-inline-start: 3px solid var(--green-main);
  background: linear-gradient(90deg, rgba(0, 122, 77, 0.06) 0%, transparent 100%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding-block: 0.5rem;
}

.founder-quote p {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  color: var(--text-muted);
  line-height: 2.1;
  margin-bottom: 0.875rem;
  text-align: right;
}

.founder-quote p:last-child {
  margin-bottom: 0;
}

.founder-signature {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 63, 45, 0.08);
}

.founder-name {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
}

.founder-role {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* --- CTA --- */
.cta-section {
  position: relative;
}

.cta-box {
  padding: clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-deep) 50%, var(--green-main) 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0, 63, 45, 0.2);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.cta-desc {
  font-size: clamp(1rem, 1.8vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 2;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.cta-box .btn-primary {
  background: var(--white);
  color: var(--color-primary-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.cta-box .btn-primary:hover {
  background: var(--cream-light);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.cta-box .btn-accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-bright));
  color: var(--green-dark);
}

.cta-box .btn-accent:hover {
  box-shadow: 0 8px 28px rgba(245, 164, 0, 0.35);
}

.cta-box .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-box .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.cta-contact-rows {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 960px;
  margin-inline: auto;
}

.cta-contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}

.cta-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: right;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.cta-contact-card:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.cta-contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  color: var(--white);
}

.cta-contact-card-icon--mobile {
  background: var(--green-main);
}

.cta-contact-card-icon--phone {
  background: #0ea5e9;
}

.cta-contact-card-icon--office {
  background: #64748b;
}

.cta-contact-card-icon--email {
  background: #059669;
}

.cta-contact-card-icon--telegram {
  background: #229ED9;
}

.cta-contact-card-icon--instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.cta-contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex: 1;
}

.cta-contact-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.cta-contact-value {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 700;
  color: var(--white);
  direction: ltr;
  text-align: left;
  letter-spacing: 0.02em;
}

.cta-contact-value--handle {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 600;
}

.cta-contact-value--email {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  font-weight: 600;
}

/* --- Footer --- */
.footer {
  position: relative;
  background: linear-gradient(180deg, #003528 0%, var(--green-dark) 100%);
  color: rgba(255, 255, 255, 0.85);
  padding-block: clamp(2.75rem, 5vw, 3.5rem) 1.75rem;
  overflow: hidden;
}

.footer-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 155, 90, 0.45) 30%,
    rgba(0, 155, 90, 0.55) 50%,
    rgba(0, 155, 90, 0.45) 70%,
    transparent
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.85fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 2.75rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-direction: row;
}

.footer-brand-titles {
  text-align: right;
  flex: 1;
  min-width: 0;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  text-align: right;
}

.footer-brand-en {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  direction: ltr;
  text-align: right;
  margin-top: 0.15rem;
}

.footer-desc {
  font-size: 0.8125rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  max-width: 380px;
  text-align: right;
  border-inline-start: 2px solid rgba(0, 155, 90, 0.45);
  padding-inline-start: 0.875rem;
}

.footer-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.footer-brand-tag {
  display: inline-flex;
  padding: 0.3rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition);
}

.footer-brand-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 155, 90, 0.35);
  color: var(--white);
}

.footer-brand-tag--soon {
  border-style: dashed;
  opacity: 0.65;
}

.footer-col--contact .footer-contact {
  gap: 0.4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.125rem;
}

.footer-heading-mark {
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--green-bright), var(--green-main));
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-links--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--transition), padding-inline-start var(--transition);
}

.footer-link::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.footer-links--inline .footer-link::before {
  display: none;
}

.footer-link:hover {
  color: var(--white);
  padding-inline-start: 0.25rem;
}

.footer-link:hover::before {
  background: var(--green-bright);
  transform: scale(1.3);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition), border-color var(--transition);
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-icon--mobile {
  background: rgba(0, 155, 90, 0.2);
}

.footer-contact-icon--phone {
  background: rgba(14, 165, 233, 0.2);
}

.footer-contact-icon--office {
  background: rgba(100, 116, 139, 0.25);
}

.footer-contact-icon--email {
  background: rgba(5, 150, 105, 0.22);
}

.footer-contact-icon--telegram {
  background: rgba(34, 158, 217, 0.22);
}

.footer-contact-icon--instagram {
  background: linear-gradient(135deg, rgba(240, 148, 51, 0.35), rgba(188, 24, 136, 0.35));
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.footer-contact-label {
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.footer-contact-value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  direction: ltr;
  text-align: left;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer-top-link::after {
  content: "↑";
  font-size: 0.875rem;
  line-height: 1;
  opacity: 0.7;
}

.footer-top-link:hover {
  color: var(--white);
  border-color: rgba(0, 155, 90, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

/* --- Mobile Nav Overlay --- */
/* --- Mobile Nav --- */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 63, 45, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(320px, 88vw);
  background: var(--white);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 63, 45, 0.15);
  border-left: 1px solid rgba(0, 63, 45, 0.08);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 63, 45, 0.08);
}

.mobile-nav-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--green-dark);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  padding: 0.875rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), transform 0.35s ease;
  transform: translateX(20px);
  opacity: 0.6;
}

.mobile-nav.is-open .mobile-nav-link {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav.is-open .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(7) { transition-delay: 0.35s; }

.mobile-nav-link::before {
  content: attr(data-index);
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--color-accent);
  min-width: 1.25rem;
}

.mobile-nav-link:hover {
  background: var(--cream);
  color: var(--green-main);
}

.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  margin-top: auto;
  border-top: 1px solid rgba(0, 63, 45, 0.08);
}

.mobile-nav-phone {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-dark);
  direction: ltr;
}

.mobile-nav-cta {
  width: 100%;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .header-phone-num {
    display: none;
  }

  .header-phone {
    padding: 0.5rem;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
  }

  .header-col--nav {
    max-width: 46vw;
  }

  .nav--pill {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav--pill::-webkit-scrollbar {
    display: none;
  }

  .nav-link-num {
    display: none;
  }

  .nav-link {
    padding: 0.4rem 0.5rem;
    font-size: 0.625rem;
  }
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-col--contact {
    grid-column: 1 / -1;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
    min-height: 280px;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --header-announce-h: 0px;
    --header-shell-h: calc(var(--header-h) + 1rem);
  }

  .header-shell {
    padding-top: 0.5rem;
  }

  .header-announce {
    display: none;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .header-col--nav,
  .header-col--actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-brand-en {
    display: none;
  }

  .about-grid,
  .timeline-detail {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-scene {
    max-width: min(360px, 85vw);
  }

  .hero-chip--1 { left: 2%; }
  .hero-chip--2 { right: 0; }
  .hero-chip--3 { left: 0; }
  .hero-chip--4 { right: 2%; }
  .hero-chip--5 { right: -2%; }
  .hero-chip--6 { right: 8%; top: 4%; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .timeline-item {
    min-width: 160px;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .founder-content {
    text-align: center;
  }

  .founder-panel {
    padding: 1.5rem;
  }

  .founder-photo img {
    width: min(220px, 70vw);
  }

  .founder-quote {
    padding-inline-start: 0;
    border-inline-start: none;
    border-top: 3px solid var(--green-main);
    padding-top: 1.25rem;
    background: none;
    border-radius: 0;
  }

  .founder-quote p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .cta-contact-row {
    grid-template-columns: 1fr;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .header {
    animation: none;
    transform: none;
  }

  .header-announce,
  .header-announce-pulse {
    animation: none;
  }

  .hero-scene-pulse,
  .hero-orbit-ring,
  .hero-satellite-track,
  .hero-satellite,
  .hero-scene-scan,
  .hero-particle,
  .hero-chip,
  .hero-logo-card,
  .hero-scene-glow,
  .hero-svg-ring,
  .hero-svg-arc-group {
    animation: none;
  }

  .hero-svg-arc,
  .hero-svg-line {
    stroke-dashoffset: 0;
    opacity: 0.6;
  }

  .hero-svg-node {
    opacity: 1;
  }
}
