/* Page: Corporate Home | Version: v2 */

/* Start: Root Variables */
:root {
  --bg: #050505;
  --bg-soft: #0d0b08;
  --surface: rgba(22, 18, 11, 0.84);
  --surface-strong: #16120b;
  --line: rgba(223, 190, 108, 0.18);
  --text: #fff7e6;
  --text-soft: #d9c8a0;
  --primary: #d6b15a;
  --primary-strong: #f1d692;
  --secondary: #b88938;
  --accent: #f0c677;
  --success: #77d49a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --transition: 220ms ease;
}
/* End: Root Variables */

/* Start: Font Faces */
@font-face {
  font-family: "Shabnam";
  src: url("../font/Shabnam-Light.woff2") format("woff2"), url("../font/Shabnam-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Shabnam";
  src: url("../font/Shabnam.woff2") format("woff2"), url("../font/Shabnam.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Shabnam";
  src: url("../font/Shabnam-Medium.woff2") format("woff2"), url("../font/Shabnam-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Shabnam";
  src: url("../font/Shabnam-Bold.woff2") format("woff2"), url("../font/Shabnam-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* End: Font Faces */

/* Start: Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(214, 177, 90, 0.18), transparent 28%),
    radial-gradient(circle at 10% 50%, rgba(184, 137, 56, 0.1), transparent 24%),
    linear-gradient(180deg, #060606 0%, #050505 100%);
  font-family: "Shabnam", Tahoma, Arial, sans-serif;
  line-height: 1.8;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.site-glow {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.22;
}

.site-glow--one {
  top: 15%;
  right: -120px;
  width: 330px;
  height: 330px;
  background: rgba(214, 177, 90, 0.48);
}

.site-glow--two {
  bottom: 5%;
  left: -90px;
  width: 260px;
  height: 260px;
  background: rgba(184, 137, 56, 0.38);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* End: Base Styles */

/* Start: Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(223, 190, 108, 0.28);
  border-radius: 18px;
  color: white;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 1.08rem;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark--logo {
  padding: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #c9d2e6;
  font-size: 0.92rem;
}

.primary-nav a {
  position: relative;
  transition: color var(--transition);
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  content: "";
  transition: width var(--transition);
}

.primary-nav a:hover {
  color: white;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(223, 190, 108, 0.2);
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, rgba(214, 177, 90, 0.18), rgba(214, 177, 90, 0.08));
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: white;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
/* End: Header */

.hero-logo-badge {
  position: absolute;
  top: 12px;
  left: 20px;
  z-index: 3;
  width: 94px;
  height: 94px;
  padding: 10px;
  border: 1px solid rgba(223, 190, 108, 0.28);
  border-radius: 26px;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.hero-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Start: Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), #825eff 55%, var(--accent));
  box-shadow: 0 16px 38px rgba(108, 92, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 20px 48px rgba(108, 92, 255, 0.42);
}

.btn-secondary {
  border-color: var(--line);
  color: white;
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(214, 177, 90, 0.08);
}
/* End: Buttons */

/* Start: Hero */
.hero {
  min-height: 860px;
  padding-top: 165px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c9d4ef;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.eyebrow {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(77, 230, 163, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(77, 230, 163, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(77, 230, 163, 0); }
  100% { box-shadow: 0 0 0 0 rgba(77, 230, 163, 0); }
}

.hero h1 {
  max-width: 720px;
  margin: 26px 0 22px;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 1.13;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, #a999ff 48%, #5fe7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 670px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stats div {
  padding: 20px 18px;
  border-left: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-left: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  margin-bottom: 5px;
  color: white;
  font-size: 1.35rem;
}

.hero-stats span {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(214, 177, 90, 0.08);
  border-radius: 50%;
}

.visual-orbit--outer {
  width: 500px;
  height: 500px;
  animation: rotate 22s linear infinite;
}

.visual-orbit--inner {
  width: 360px;
  height: 360px;
  border-style: dashed;
  animation: rotateReverse 15s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes rotateReverse {
  to { transform: rotate(-360deg); }
}

.dashboard-card {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  overflow: hidden;
  border: 1px solid rgba(223, 190, 108, 0.24);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(19, 27, 51, 0.98), rgba(11, 16, 32, 0.96));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.48), 0 0 80px rgba(108, 92, 255, 0.15);
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
}

.dashboard-topbar,
.project-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.dashboard-topbar span,
.project-window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.dashboard-topbar span:first-child,
.project-window-bar span:first-child { background: #ff6e72; }
.dashboard-topbar span:nth-child(2),
.project-window-bar span:nth-child(2) { background: #ffcc58; }
.dashboard-topbar span:nth-child(3),
.project-window-bar span:nth-child(3) { background: #55d68c; }

.dashboard-body {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 350px;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  border-left: 1px solid var(--line);
}

.dashboard-sidebar span {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(214, 177, 90, 0.08);
}

.dashboard-sidebar span.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.dashboard-content {
  padding: 28px;
}

.mini-label {
  color: var(--secondary);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.mock-title,
.mock-subtitle,
.phone-title,
.phone-text,
.phone-btn {
  display: block;
  border-radius: 999px;
  background: rgba(214, 177, 90, 0.1);
}

.mock-title {
  width: 52%;
  height: 18px;
  margin-top: 16px;
}

.mock-subtitle {
  width: 75%;
  height: 9px;
  margin-top: 12px;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.mock-panel {
  min-height: 95px;
  border: 1px solid rgba(214, 177, 90, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.mock-panel--large {
  grid-column: 1 / -1;
  min-height: 130px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(108, 92, 255, 0.12), transparent),
    rgba(255, 255, 255, 0.035);
}

.mock-chart-line {
  display: block;
  width: 130%;
  height: 50px;
  margin: 42px -10px 0;
  border-top: 2px solid var(--secondary);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.mock-chart-line.second {
  margin-top: -28px;
  border-color: var(--accent);
  transform: rotate(5deg);
  opacity: 0.75;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid rgba(223, 190, 108, 0.24);
  border-radius: 13px;
  color: white;
  background: rgba(15, 22, 42, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-chip--ui { top: 78px; right: 10px; }
.floating-chip--code { bottom: 105px; left: 0; }
.floating-chip--speed { bottom: 42px; right: 85px; }
/* End: Hero */

/* Start: Trusted Strip */
.trusted-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.trusted-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
  overflow-x: auto;
  color: #a6b2c9;
  scrollbar-width: none;
}

.trusted-inner::-webkit-scrollbar {
  display: none;
}

.trusted-inner span {
  position: relative;
  flex: 0 0 auto;
  padding: 0 18px;
  font-size: 0.86rem;
}

.trusted-inner span::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-strong);
  content: "";
  transform: translateY(-50%);
}
/* End: Trusted Strip */

/* Start: Section Heading */
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}

.section-heading h2,
.process-intro h2,
.about-content h2,
.contact-copy h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.section-heading p,
.process-intro p,
.about-content p,
.contact-copy p {
  margin: 0;
  color: var(--text-soft);
}

.section-kicker {
  color: var(--secondary);
}
/* End: Section Heading */

/* Start: Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.service-card::before {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(108, 92, 255, 0.14);
  filter: blur(24px);
  content: "";
}

.service-card:hover {
  z-index: 2;
  border-color: rgba(138, 124, 255, 0.4);
  background: linear-gradient(180deg, rgba(108, 92, 255, 0.11), rgba(255, 255, 255, 0.025));
  transform: translateY(-8px);
}

.service-number {
  position: absolute;
  top: 20px;
  left: 22px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  border: 1px solid rgba(214, 177, 90, 0.1);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(108, 92, 255, 0.35), rgba(0, 208, 255, 0.12));
  font-size: 1.35rem;
}

.service-card h3 {
  margin: 0 0 13px;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.service-card a {
  position: absolute;
  right: 28px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9d4ff;
  font-size: 0.84rem;
  font-weight: 700;
}
/* End: Services */

/* Start: Portfolio */
.portfolio-section {
  background: linear-gradient(180deg, transparent, rgba(108, 92, 255, 0.04), transparent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  transition: transform var(--transition), border-color var(--transition);
}

.project-card:hover {
  border-color: rgba(138, 124, 255, 0.35);
  transform: translateY(-7px);
}

.project-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.project-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  overflow: hidden;
}

.project-visual::before {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  content: "";
  filter: blur(55px);
  opacity: 0.4;
}

.project-visual--store {
  min-height: 470px;
  background: linear-gradient(145deg, #16133a, #101d3a 55%, #092033);
}

.project-visual--store::before {
  background: var(--primary);
}

.project-visual--dashboard {
  background: linear-gradient(145deg, #13241f, #0d1921);
}

.project-visual--dashboard::before {
  background: var(--success);
}

.project-visual--landing {
  background: linear-gradient(145deg, #2a1530, #17132a);
}

.project-visual--landing::before {
  background: var(--accent);
}

.project-window {
  position: relative;
  z-index: 2;
  width: 78%;
  overflow: hidden;
  border: 1px solid rgba(214, 177, 90, 0.16);
  border-radius: 18px;
  background: #0b1020;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(-3deg);
}

.project-window.compact {
  width: 74%;
  transform: rotate(3deg);
}

.store-layout {
  padding: 18px;
}

.store-banner {
  height: 115px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(108, 92, 255, 0.85), rgba(255, 79, 154, 0.6));
}

.store-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.store-products span {
  height: 90px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(214, 177, 90, 0.18), rgba(214, 177, 90, 0.08));
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 50px 1fr;
  min-height: 220px;
}

.preview-side {
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.preview-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
}

.preview-main div {
  min-height: 78px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(214, 177, 90, 0.18), rgba(214, 177, 90, 0.08));
}

.preview-main div:first-child {
  grid-column: 1 / -1;
}

.landing-phone {
  position: relative;
  z-index: 2;
  width: 170px;
  min-height: 300px;
  padding: 16px 13px;
  border: 7px solid #080b14;
  border-radius: 34px;
  background: #11182c;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  transform: rotate(-5deg);
}

.phone-notch {
  width: 62px;
  height: 14px;
  margin: -8px auto 24px;
  border-radius: 0 0 10px 10px;
  background: #080b14;
}

.phone-title {
  width: 75%;
  height: 13px;
}

.phone-text {
  width: 100%;
  height: 8px;
  margin-top: 12px;
}

.phone-btn {
  width: 58%;
  height: 28px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.phone-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.phone-cards span {
  min-height: 78px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(214, 177, 90, 0.18), rgba(214, 177, 90, 0.08));
}

.project-info {
  padding: 30px;
}

.project-card--featured .project-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.project-info h3 {
  margin: 15px 0 10px;
  font-size: 1.55rem;
}

.project-card--featured h3 {
  font-size: 2.15rem;
}

.project-info p {
  margin: 0;
  color: var(--text-soft);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.tech-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c7d0e6;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
}
/* End: Portfolio */

/* Start: Process */
.process-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 70px;
}

.process-intro {
  position: sticky;
  top: 125px;
}

.process-intro .btn {
  margin-top: 28px;
}

.process-list {
  display: grid;
  gap: 15px;
}

.process-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: start;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.process-item > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--secondary);
  background: rgba(0, 208, 255, 0.08);
  font-weight: 800;
}

.process-item h3 {
  margin: 0 0 7px;
}

.process-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}
/* End: Process */

/* Start: About */
.about-section {
  background: linear-gradient(180deg, transparent, rgba(0, 208, 255, 0.03), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.about-visual {
  position: relative;
  min-height: 440px;
}

.team-card {
  position: absolute;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.team-card--main {
  top: 40px;
  right: 30px;
  left: 80px;
  min-height: 290px;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(108, 92, 255, 0.22), rgba(17, 24, 44, 0.88));
  transform: rotate(2deg);
}

.team-card--main strong,
.team-card--main p {
  display: block;
}

.team-label {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--secondary);
  font-size: 0.8rem;
}

.team-card--main strong {
  font-size: 2rem;
}

.team-card--main p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.team-card--small {
  display: grid;
  place-items: center;
  min-width: 120px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 16px;
  color: #e9ecff;
  background: rgba(11, 16, 32, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
}

.team-card--one { top: 10px; left: 8px; transform: rotate(-5deg); }
.team-card--two { bottom: 55px; right: 0; transform: rotate(5deg); }
.team-card--three { bottom: 12px; left: 45px; transform: rotate(-2deg); }

.about-content p {
  margin-top: 22px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #d5dcef;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.85rem;
}

.about-points span {
  color: var(--success);
  font-weight: 800;
}
/* End: About */

/* Start: Contact */
.contact-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  padding: 58px;
  border: 1px solid rgba(214, 177, 90, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(108, 92, 255, 0.14), rgba(0, 208, 255, 0.04) 45%, rgba(255, 79, 154, 0.08)),
    rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.contact-copy p {
  margin-top: 18px;
}

.contact-methods {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.contact-methods a {
  color: #cfc8ff;
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-methods span {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: #d7deef;
  font-size: 0.8rem;
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  color: white;
  background: rgba(7, 11, 22, 0.68);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-row input,
.form-row select {
  min-height: 52px;
  padding: 0 16px;
}

.form-row textarea {
  resize: vertical;
  min-height: 130px;
  padding: 14px 16px;
}

.form-row select option {
  color: white;
  background: #11182c;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #75809a;
}
html[dir="rtl"] input:not([dir="ltr"]):not(.ltr),
html[dir="rtl"] textarea:not([dir="ltr"]):not(.ltr),
html[dir="rtl"] select:not([dir="ltr"]):not(.ltr) {
  text-align: right;
}

html[dir="rtl"] input:not([dir="ltr"]):not(.ltr)::placeholder,
html[dir="rtl"] textarea:not([dir="ltr"]):not(.ltr)::placeholder {
  text-align: right;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(138, 124, 255, 0.65);
  background: rgba(7, 11, 22, 0.9);
  box-shadow: 0 0 0 4px rgba(108, 92, 255, 0.1);
}

.form-submit {
  justify-self: start;
  min-width: 170px;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--success);
  font-size: 0.82rem;
}
/* End: Contact */

/* Start: Footer */
.site-footer {
  padding: 30px 0 18px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 50px;
  padding: 48px 0;
}

.brand--footer {
  margin-bottom: 18px;
}

.footer-grid p {
  max-width: 410px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 4px;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.84rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #7f8aa2;
  font-size: 0.75rem;
}
/* End: Footer */

/* Start: Responsive Styles */
@media (max-width: 1050px) {
  .primary-nav {
    gap: 18px;
    font-size: 0.84rem;
  }

  .hero-grid,
  .about-grid,
  .process-layout,
  .contact-card {
    gap: 46px;
  }

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

  .project-card--featured {
    grid-template-columns: 1fr;
  }

  .project-card--featured .project-info {
    padding: 34px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 84px 0;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    display: grid;
    align-content: start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 20px;
    background: rgba(7, 11, 22, 0.96);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(-12px);
    transition: max-height 350ms ease, opacity var(--transition), transform var(--transition), border-color var(--transition), padding var(--transition);
  }

  .primary-nav.is-open {
    max-height: 500px;
    padding: 10px;
    border-color: var(--line);
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 135px;
  }

  .hero-grid,
  .about-grid,
  .process-layout,
  .contact-card,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    gap: 18px;
  }

  .process-intro {
    position: static;
  }

  .about-grid {
    gap: 32px;
  }

  .about-visual {
    order: 2;
  }

  .contact-card {
    padding: 40px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .primary-nav {
    top: 75px;
    right: 11px;
    left: 11px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 116px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(2.25rem, 14vw, 3.6rem);
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-stats div {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

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

  .visual-orbit--outer {
    width: 360px;
    height: 360px;
  }

  .visual-orbit--inner {
    width: 260px;
    height: 260px;
  }

  .dashboard-card {
    width: 96%;
    transform: none;
  }

  .dashboard-body {
    grid-template-columns: 48px 1fr;
    min-height: 290px;
  }

  .dashboard-content {
    padding: 20px;
  }

  .floating-chip--ui { top: 34px; right: 0; }
  .floating-chip--code { bottom: 62px; left: 0; }
  .floating-chip--speed { bottom: 10px; right: 32px; }

  .services-grid,
  .portfolio-grid,
  .form-grid,
  .about-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 300px;
  }

  .project-card--featured {
    grid-column: auto;
  }

  .project-visual--store {
    min-height: 330px;
  }

  .project-window {
    width: 88%;
  }

  .store-products span {
    height: 65px;
  }

  .project-card--featured .project-info,
  .project-info {
    padding: 25px;
  }

  .project-card--featured h3 {
    font-size: 1.65rem;
  }

  .process-item {
    grid-template-columns: 52px 1fr;
    padding: 20px;
  }

  .process-item > span {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

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

  .team-card--main {
    top: 45px;
    right: 16px;
    left: 28px;
    min-height: 250px;
    padding: 30px;
  }

  .team-label {
    margin-bottom: 48px;
  }

  .team-card--main strong {
    font-size: 1.5rem;
  }

  .team-card--small {
    min-width: 96px;
    min-height: 50px;
    font-size: 0.72rem;
  }

  .contact-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .form-submit {
    justify-self: stretch;
  }

  .footer-grid {
    gap: 28px;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* End: Responsive Styles */


@media (max-width: 640px) {
  .hero-logo-badge {
    width: 74px;
    height: 74px;
    top: 10px;
    left: 12px;
    border-radius: 20px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }
}


/* Start: Fan30Tech Django Integration v3 */
.project-card-link { display: contents; color: inherit; text-decoration: none; }
.project-cover-image { width: 100%; height: 100%; min-height: 260px; object-fit: cover; display: block; }
.portfolio-more { display: flex; justify-content: center; margin-top: 32px; }
.portfolio-status { display: inline-flex; align-items: center; width: max-content; padding: 6px 11px; border-radius: 999px; border: 1px solid rgba(255,255,255,.11); font-size: .75rem; line-height: 1; white-space: nowrap; }
.portfolio-status--active { color: #73e5a4; background: rgba(36, 167, 94, .12); border-color: rgba(77, 230, 163, .25); }
.portfolio-status--development { color: #f2ca68; background: rgba(213, 166, 61, .11); border-color: rgba(213, 166, 61, .28); }
.portfolio-status--archived { color: #aeb4c2; background: rgba(150, 158, 174, .10); border-color: rgba(150, 158, 174, .22); }
.form-status--server { display: block; margin: 0 0 12px; }
.form-status--server.success { color: #4de6a3; }
.form-status--server.error { color: #ff8ca9; }
.form-status--server.info { color: #f2ca68; }
/* End: Fan30Tech Django Integration v3 */

/* Start: Account Navigation v4 */
.primary-nav {
  gap: 15px;
  font-size: 0.82rem;
}

.nav-divider {
  width: 1px;
  height: 24px;
  margin-inline: 2px;
  background: var(--line);
}

.primary-nav .nav-account {
  padding: 8px 10px;
  border: 1px solid rgba(223, 190, 108, 0.14);
  border-radius: 10px;
  color: #eee2c4;
  background: rgba(223, 190, 108, 0.04);
}

.primary-nav a.nav-account::after {
  display: none;
}

.primary-nav .nav-account:hover {
  border-color: rgba(223, 190, 108, 0.34);
  background: rgba(223, 190, 108, 0.1);
}

.primary-nav .nav-account--manager {
  border-color: rgba(119, 212, 154, 0.28);
  color: #9ce5b7;
  background: rgba(119, 212, 154, 0.07);
}

.primary-nav .nav-account--logout {
  color: #e5b1b1;
}

.primary-nav .nav-account--signup {
  color: #171108;
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  font-weight: 700;
}

@media (max-width: 1160px) and (min-width: 861px) {
  .brand-copy small {
    display: none;
  }

  .primary-nav {
    gap: 9px;
    font-size: 0.76rem;
  }

  .primary-nav a {
    white-space: nowrap;
  }
}

@media (max-width: 860px) {
  .primary-nav.is-open {
    max-height: min(78vh, 720px);
    overflow-y: auto;
  }

  .nav-divider {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }

  .primary-nav .nav-account {
    margin-top: 4px;
    text-align: center;
  }
}
/* End: Account Navigation v4 */
