/* =========================================================
   PROMO.COM CLONE — style.css
   ========================================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:       #ff4070;
  --pink-dark:  #e0304f;
  --blue:       #0080ff;
  --purple:     #9013fe;
  --green:      #00c48c;
  --orange:     #ff6b35;
  --dark:       #0e1114;
  --dark-2:     #1a1f2e;
  --dark-3:     #252b3b;
  --mid:        #6b7280;
  --light:      #f5f6fa;
  --lighter:    #f9f9f9;
  --white:      #ffffff;
  --border:     #e5e7eb;
  --border-dark: rgba(255,255,255,0.1);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill:500px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);

  --nav-h:      68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.35s ease;
}
body.loaded { opacity: 1; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.bg-dark  { background: var(--dark); color: var(--white); }
.bg-light { background: var(--lighter); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(144,19,254,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: transparent;
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-ghost:hover { background: var(--light); }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-ghost-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-xl { padding: 16px 36px; font-size: 17px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

.w-full { width: 100%; text-align: center; }

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}

.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
/* ── Services Dropdown ── */
.nav-dropdown {
  position: relative;
}
/* invisible bridge prevents gap between toggle and menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  user-select: none;
}
.nav-dropdown:hover .nav-dropdown-toggle { background: var(--light); color: var(--pink); }

.chevron {
  transition: transform 0.25s ease;
  opacity: 0.5;
  flex-shrink: 0;
}
.nav-dropdown:hover .chevron { transform: rotate(180deg); opacity: 1; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 520px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.06);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu-header {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mid);
  padding: 6px 10px 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  transition: background 0.15s;
  color: var(--dark);
}
.dropdown-item:hover { background: var(--light); }
.dropdown-item:hover .di-icon { transform: scale(1.1); }

.di-icon {
  font-size: 20px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.di-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}
.di-sub {
  font-size: 11.5px;
  color: var(--mid);
  line-height: 1.3;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--light); color: var(--pink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  box-shadow: var(--shadow-md);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  padding: 12px 16px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.mobile-menu a:hover { background: var(--light); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-top: calc(var(--nav-h) + 32px);
  padding-bottom: 40px;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%,   rgba(255, 210, 225, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 70% 55% at 100% 0%,  rgba(200, 215, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(215, 200, 255, 0.05) 0%, transparent 55%),
    linear-gradient(170deg, #ffffff 0%, #f9faff 55%, #fff8fc 100%);
  border-bottom: 1px solid rgba(200, 210, 230, 0.25);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
}

/* 2-column layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left column */
.hero-text { display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,64,112,0.08);
  border: 1px solid rgba(255,64,112,0.2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--pink);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  height: 3.6em;
  overflow: hidden;
}

.tw-cursor {
  display: inline-block;
  font-weight: 300;
  color: var(--pink);
  animation: tw-blink 0.75s step-end infinite;
  margin-left: 2px;
}

@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--mid);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
  height: 5em;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 13px;
  color: #9ca3af;
}

.hero-cloud-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.cloud-badge-label {
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  white-space: nowrap;
}

.cloud-logo {
  height: 28px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.cloud-logo:hover { opacity: 1; }

.cloud-divider {
  width: 1px;
  height: 20px;
  background: #e5e7eb;
}

/* Right column: hero-visual */
.hero-visual {
  position: relative;
}

.hero-img-wrap {
  width: 100%;
  max-width: 420px;
  height: 380px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.hero-studio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: var(--radius-lg);
}

/* UI mockup card */
.hero-ui-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.hui-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hui-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hui-dot.red    { background: #ff5f57; }
.hui-dot.yellow { background: #ffbd2e; }
.hui-dot.green  { background: #28ca41; }

.hui-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
  letter-spacing: 0.5px;
}

.hui-prompt { padding: 20px 20px 16px; }

.hui-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}

.hui-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 14px;
  min-height: 64px;
}

.hui-btn { width: 100%; }

.hui-preview {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hui-preview-inner {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 12px;
}

.hui-progress {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.hui-bar {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: 2px;
  animation: progress-pulse 2s ease-in-out infinite;
}
@keyframes progress-pulse {
  0%,100% { opacity:1; } 50% { opacity:0.6; }
}

.hui-gen-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.hui-clips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.clip {
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.clip-1 { background: linear-gradient(135deg, rgba(255,64,112,0.3), rgba(255,64,112,0.1)); }
.clip-2 { background: linear-gradient(135deg, rgba(0,128,255,0.3), rgba(0,128,255,0.1)); }
.clip-3 { background: linear-gradient(135deg, rgba(144,19,254,0.3), rgba(144,19,254,0.1)); }

.hui-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hui-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  background: var(--dark-2);
}

.hui-stat-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hui-stat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: float 4s ease-in-out infinite;
}

.card-1 { top: 40px; left: -52px; animation-delay: 0s; }
.card-2 { bottom: 100px; right: -52px; animation-delay: 1.5s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fc-icon { font-size: 22px; }
.fc-title { font-size: 13px; font-weight: 700; color: var(--dark); }
.fc-sub { font-size: 11px; color: var(--mid); margin-top: 2px; }
.stars-row { color: #f59e0b; font-size: 13px; margin-bottom: 4px; }

/* =========================================================
   CORE TECHNOLOGIES
   ========================================================= */
.tech-section {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tech-section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9ca3af;
  margin-bottom: 36px;
}

.tech-track {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.tech-track-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: scroll-logos 60s linear infinite;
}
.tech-track:hover .tech-track-inner {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 4px 0;
  font-size: 15px;
  font-weight: 600;
  color: #9ca3af;
  white-space: nowrap;
  cursor: default;
  transition: color 0.2s;
}
.tech-pill:hover {
  color: var(--dark);
}

.tech-pill svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: var(--tc, #9ca3af);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.tech-pill:hover svg {
  opacity: 1;
}

/* =========================================================
   SECTION HEADER
   ========================================================= */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.65); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 12px;
}
.eyebrow.pink { color: var(--pink); }

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto;
}

/* =========================================================
   AI CANVAS SECTION
   ========================================================= */
.ai-section {
  position: relative;
  width: 100%;
  height: 420px;
  background: #05070d;
  overflow: hidden;
}

.ai-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Content overlay */
.network-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.network-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,64,112,0.8);
  margin-bottom: 12px;
}

.network-title {
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.1;
}

.network-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

/* =========================================================
   ABOUT / EXPERT
   ========================================================= */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left Image ── */
.about-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.about-rotated-label {
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #d1d5db;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}

.about-img-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--dark-2) 0%, #2d1460 50%, #1a0a30 100%);
  box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 40% 35%, rgba(255,64,112,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(144,19,254,0.2) 0%, transparent 55%);
}

.about-ceo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,17,20,0.6) 0%, transparent 50%);
  pointer-events: none;
}

.about-stat-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.about-stat-lbl {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ── Right Content ── */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  margin-top: 12px;
}

.about-desc {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 16px;
}

.about-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: var(--lighter);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.author-link {
  font-size: 12px;
  color: var(--pink);
  font-weight: 600;
  transition: opacity 0.2s;
}
.author-link:hover { opacity: 0.7; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,64,112,0.1);
  line-height: 1;
  margin-bottom: 8px;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p { font-size: 15px; color: var(--mid); line-height: 1.65; }

/* =========================================================
   FEATURES
   ========================================================= */
/* =========================================================
   SERVICES SECTION (6-card grid)
   ========================================================= */
.svc-section {
  background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 40%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}

/* Soft ambient blobs */
.svc-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(144,19,254,0.07) 0%, transparent 70%);
  top: -120px; left: -120px;
  pointer-events: none;
}
.svc-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,128,255,0.06) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  pointer-events: none;
}
.svc-section .container { position: relative; z-index: 1; }

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

.svc-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 24px rgba(100, 100, 160, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Top accent bar */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--svc-accent, #0080ff), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Inner tint on hover */
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at top left, color-mix(in srgb, var(--svc-accent, #0080ff) 7%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.svc-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.75);
  border-color: color-mix(in srgb, var(--svc-accent, #0080ff) 30%, rgba(255,255,255,0.8));
  box-shadow: 0 20px 50px rgba(100,100,160,0.14), 0 0 0 1px color-mix(in srgb, var(--svc-accent, #0080ff) 18%, transparent), inset 0 1px 0 rgba(255,255,255,1);
}

.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after  { opacity: 1; }

.svc-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--svc-accent, #0080ff) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.svc-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(0,0,0,0.07);
  line-height: 1;
  letter-spacing: -2px;
  user-select: none;
}

.svc-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.svc-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 18px;
}

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}

.svc-list li {
  font-size: 13px;
  color: #374151;
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}

.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--svc-accent, #0080ff);
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--svc-accent, #0080ff);
  transition: gap 0.2s ease;
  margin-top: auto;
}

.svc-link:hover {
  gap: 8px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.services-grid .feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.services-grid .feature-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 64, 112, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   PROCESS HORIZONTAL STEPS
   ========================================================= */
.ph-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* ── Each step ── */
.ph-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
}

/* ── Top row: line · node · line ── */
.ph-top {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

.ph-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.08), rgba(255,255,255,0.14));
}

/* Reverse gradient on second line so it fades toward next node */
.ph-line:last-child {
  background: linear-gradient(to right, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
}

/* Hide outer edges */
.ph-step:first-child .ph-line:first-child,
.ph-step:last-child  .ph-line:last-child  { opacity: 0; }

/* ── Node circle ── */
.ph-node {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--ph-c, #ff4070) 50%, transparent);
  background: color-mix(in srgb, var(--ph-c, #ff4070) 10%, #05070d);
  color: var(--ph-c, #ff4070);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.ph-node::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--ph-c, #ff4070) 16%, transparent);
  pointer-events: none;
}

.ph-step:hover .ph-node {
  background: color-mix(in srgb, var(--ph-c, #ff4070) 22%, #05070d);
  box-shadow: 0 0 28px color-mix(in srgb, var(--ph-c, #ff4070) 45%, transparent);
}

/* ── Card body ── */
.ph-body {
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.ph-step:hover .ph-body {
  background: rgba(255,255,255,0.04);
  border-color: color-mix(in srgb, var(--ph-c, #ff4070) 22%, transparent);
  transform: translateY(-4px);
}

.ph-icon {
  font-size: 26px;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.ph-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 8px;
}

.ph-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin-bottom: 14px;
}

.ph-chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.ph-chips span {
  font-size: 10.5px;
  font-weight: 600;
  color: color-mix(in srgb, var(--ph-c, #ff4070) 90%, #fff);
  background: color-mix(in srgb, var(--ph-c, #ff4070) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--ph-c, #ff4070) 22%, transparent);
  border-radius: 100px;
  padding: 2px 9px;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .ph-track { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .ph-step:nth-child(2) .ph-line:last-child,
  .ph-step:nth-child(3) .ph-line:first-child { opacity: 0; }
  .ph-step:nth-child(odd) .ph-line:first-child { opacity: 0; }
}

@media (max-width: 400px) {
  .ph-track { grid-template-columns: 1fr; gap: 24px 0; }
  .ph-step .ph-line { display: none; }
}

.feature-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-card {
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(255,64,112,0.4);
  transform: translateY(-3px);
}

.feat-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  background: rgba(255,64,112,0.15);
  color: #ff8aaa;
}
.feat-tag.blue   { background: rgba(0,128,255,0.15); color: #6ab4ff; }
.feat-tag.purple { background: rgba(144,19,254,0.15); color: #bf80ff; }
.feat-tag.green  { background: rgba(0,196,140,0.15);  color: #4dffc0; }
.feat-tag.orange { background: rgba(255,107,53,0.15);  color: #ffaa80; }

.feat-content h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.feat-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card > p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 20px; }

.feat-icon {
  display: block;
  font-size: 32px;
  margin-bottom: 16px;
}

.feat-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
  text-decoration: none;
  transition: gap 0.2s, opacity 0.2s;
  opacity: 0.8;
}
.feat-link:hover { opacity: 1; letter-spacing: 0.5px; }

/* AI Prompt Demo */
.feat-visual { display: flex; align-items: center; justify-content: center; }

.ai-prompt-demo {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
}

.prompt-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 80px;
}

.cursor-blink::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: var(--pink);
  margin-left: 2px;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }

.ai-generating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.gen-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* =========================================================
   PROJECTS SECTION
   ========================================================= */
.projects {
  background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 40%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}

.projects::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(100,100,180,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* ── 3 × 2 Grid layout ── */
.proj-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

/* ── Base card ── */
.proj-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 4px 24px rgba(100,100,160,0.08), inset 0 1px 0 rgba(255,255,255,1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.proj-card:hover {
  transform: translateY(-10px);
  border-color: color-mix(in srgb, var(--pc,#ff4070) 40%, rgba(255,255,255,0.9));
  box-shadow: 0 28px 64px rgba(100,100,160,0.18),
              0 0 0 1px color-mix(in srgb, var(--pc,#ff4070) 25%, transparent),
              0 0 40px color-mix(in srgb, var(--pc,#ff4070) 12%, transparent);
}

/* ── Top accent bar — grows on hover ── */
.pj-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--pc,#ff4070), color-mix(in srgb, var(--pc,#ff4070) 55%, #fff));
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
  flex-shrink: 0;
}
.proj-card:hover .pj-accent-bar { transform: scaleX(1); }

/* ── Image wrapper ── */
.pj-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.pj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.proj-card:hover .pj-img { transform: scale(1.07); }

/* ── Hover overlay on image ── */
.pj-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--pc,#ff4070) 75%, #000) 0%,
    rgba(0,0,0,0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.proj-card:hover .pj-hover-overlay { opacity: 1; }

.pj-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  transform: translateY(12px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              background 0.2s;
}
.proj-card:hover .pj-view-btn { transform: translateY(0); }
.pj-view-btn:hover { background: rgba(255,255,255,0.32); }
.pj-view-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Mock UI placeholder ── */
.pj-mock { position: relative; }

.pp-ui {
  position: absolute;
  inset: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0.55;
}
.pp-topbar { display: flex; gap: 5px; padding: 0 4px; }
.pp-topbar span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.pp-sidebar {
  position: absolute;
  left: 0; top: 24px; bottom: 0;
  width: 28%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 6px;
}
.pp-sidebar div { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.2); }
.pp-main {
  position: absolute;
  left: 30%; right: 0; top: 24px; bottom: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pp-stat { height: 18px; border-radius: 6px; background: rgba(255,255,255,0.15); flex: 1; }
.pp-chart {
  flex: 3;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.pp-chart::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 8px; right: 8px;
  height: 60%;
  background: linear-gradient(to top, rgba(255,255,255,0.25), transparent);
  clip-path: polygon(0 100%, 15% 50%, 30% 70%, 50% 20%, 70% 55%, 85% 30%, 100% 45%, 100% 100%);
  border-radius: 4px;
}
.pp-chat {
  position: absolute;
  left: 0; right: 0; top: 24px; bottom: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pp-bubble { height: 20px; border-radius: 10px; background: rgba(255,255,255,0.2); width: 70%; }
.pp-b-out { align-self: flex-end; background: rgba(255,255,255,0.3); }
.pp-b-short { width: 45%; }
.pp-rows { display: flex; flex-direction: column; gap: 7px; padding: 4px; }
.pp-rows div { height: 9px; border-radius: 4px; background: rgba(255,255,255,0.18); }
.pp-graph {
  flex: 1;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.pp-graph::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(0,196,140,0.4), transparent);
  clip-path: polygon(0 100%, 0 60%, 20% 30%, 40% 55%, 60% 15%, 80% 40%, 100% 20%, 100% 100%);
}

/* ── Card body ── */
.pj-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

/* row: tag left, number right */
.pj-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pj-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pc,#ff4070);
  background: color-mix(in srgb, var(--pc,#ff4070) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--pc,#ff4070) 25%, transparent);
  padding: 3px 10px;
  border-radius: 999px;
}

.pj-num {
  font-size: 12px;
  font-weight: 800;
  color: rgba(100,100,160,0.28);
  letter-spacing: 0.02em;
}

.pj-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin: 0;
}

.pj-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pj-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pj-techs span {
  font-size: 11px;
  font-weight: 500;
  color: var(--mid);
  background: rgba(100,100,160,0.07);
  border: 1px solid rgba(100,100,160,0.13);
  padding: 2px 9px;
  border-radius: 999px;
}

.pj-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pc,#ff4070);
  text-decoration: none;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid rgba(100,100,160,0.10);
  transition: gap 0.2s;
}
.pj-link:hover { gap: 10px; }
.pj-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── CTA ── */
.proj-cta { text-align: center; margin-top: 52px; position: relative; z-index: 1; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .proj-layout { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 560px) {
  .proj-layout { grid-template-columns: 1fr; }
}

/* =========================================================
   STATS
   ========================================================= */
.bg-pink-grad {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  opacity: 0.8;
  font-weight: 500;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.review-card.featured-review {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px var(--pink), var(--shadow-md);
  transform: scale(1.03);
}
.review-card.featured-review:hover { transform: scale(1.03) translateY(-3px); }

.stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }

.review-text {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.av-1 { background: linear-gradient(135deg, var(--pink), #ff8c69); }
.av-2 { background: linear-gradient(135deg, var(--blue), #00d4ff); }
.av-3 { background: linear-gradient(135deg, var(--purple), #d53f8c); }

.rev-name { font-size: 14px; font-weight: 700; }
.rev-role { font-size: 12px; color: var(--mid); margin-top: 2px; }

/* =========================================================
   TEAM SECTION
   ========================================================= */
.team-section {
  background: linear-gradient(135deg, #fdf4ff 0%, #f5f3ff 40%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}

/* subtle dot texture */
.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(144,19,254,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

/* ── Base card ── */
.tm-card {
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 4px 24px rgba(100,100,160,0.09), inset 0 1px 0 rgba(255,255,255,0.95);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

.tm-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, color-mix(in srgb, var(--tm-c) 40%, transparent), transparent 60%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tm-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--tm-c) 45%, transparent);
  box-shadow: 0 20px 50px rgba(100,100,160,0.18), 0 0 28px color-mix(in srgb, var(--tm-c) 15%, transparent);
}
.tm-card:hover::before { opacity: 1; }

/* ── Featured card (CEO) ── */
.tm-featured {
  border-color: color-mix(in srgb, var(--tm-c) 30%, rgba(255,255,255,0.85));
}
.tm-featured .tm-photo { height: 220px; }

/* ── Photo area ── */
.tm-photo {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.tm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.tm-card:hover .tm-img { transform: scale(1.06); }

/* gradient avatar for members without photos */
.tm-avatar {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--tm-c) 80%, #fff), color-mix(in srgb, var(--tm-c) 50%, #eef2ff));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  font-weight: 900;
  color: rgba(255,255,255,0.90);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* glare sweep on hover */
.tm-photo::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.tm-card:hover .tm-photo::after { left: 150%; }

/* ── Color bar at bottom of photo ── */
.tm-photo-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tm-c), color-mix(in srgb, var(--tm-c) 50%, #fff));
}

/* ── Card body ── */
.tm-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tm-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tm-c);
  background: color-mix(in srgb, var(--tm-c) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--tm-c) 30%, transparent);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.tm-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.tm-bio {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mid);
  margin: 0;
}

/* ── Skill pills ── */
.tm-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.tm-skill {
  font-size: 11px;
  font-weight: 600;
  color: var(--mid);
  background: rgba(100,100,160,0.07);
  border: 1px solid rgba(100,100,160,0.14);
  padding: 3px 10px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.tm-card:hover .tm-skill {
  background: color-mix(in srgb, var(--tm-c) 10%, rgba(255,255,255,0.5));
  color: var(--dark);
}

/* ── Social row ── */
.tm-socials {
  display: flex;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(100,100,160,0.12);
}

.tm-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(100,100,160,0.06);
  border: 1px solid rgba(100,100,160,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.tm-social-btn:hover {
  background: color-mix(in srgb, var(--tm-c) 12%, rgba(255,255,255,0.6));
  border-color: color-mix(in srgb, var(--tm-c) 45%, transparent);
  color: var(--tm-c);
  transform: translateY(-2px);
}
.tm-social-btn svg { width: 15px; height: 15px; fill: currentColor; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #1e0a40 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,64,112,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(144,19,254,0.1) 0%, transparent 50%);
}

.cta-inner { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.cta-note { font-size: 13px; color: rgba(255,255,255,0.4); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--dark);
  color: var(--white);
  padding-top: 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.social-links { display: flex; gap: 8px; }

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--pink); color: white; border-color: var(--pink); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

.legal-links { display: flex; gap: 24px; }
.legal-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.legal-links a:hover { color: rgba(255,255,255,0.7); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .steps-grid { gap: 20px; }
  .step-card { padding: 28px 24px; }

  .feature-large {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }

  .reviews-grid { gap: 16px; }
  .review-card.featured-review { transform: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet small — 768px */
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  /* Nav */
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  /* Hero — stack to 1 col */
  .hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { align-items: center; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .floating-card { display: none; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-rotated-label { display: none; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }

  /* Templates */
  .templates-grid { grid-template-columns: repeat(2, 1fr); }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Testimonials */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons a { text-align: center; justify-content: center; }

  /* Footer */
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* Mobile — 480px */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-title { font-size: 34px; }
  .hero-sub { font-size: 15px; }

  .section-header h2 { font-size: 26px; }
  .section-header p { font-size: 15px; }

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

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

  /* Team */
  .team-grid { grid-template-columns: 1fr; }

  .footer-links { grid-template-columns: 1fr; }
  .legal-links { flex-direction: column; align-items: center; gap: 8px; }
}

/* =========================================================
   PROFESSIONAL EFFECTS
   ========================================================= */

/* ── 1. Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--pink), var(--purple), var(--blue));
  z-index: 10000;
  pointer-events: none;
  transition: width 0.12s linear;
}

/* ── 2. Custom Cursor (desktop only) ── */
@media (hover: hover) and (pointer: fine) {
  body, a, button { cursor: none; }
}
#cursor-dot {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.18s ease, height 0.18s ease, background 0.18s ease;
  will-change: left, top;
}
#cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255, 64, 112, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
  will-change: left, top;
}
#cursor-dot.is-hovering  { width: 10px; height: 10px; background: #fff; }
#cursor-ring.is-hovering { width: 46px; height: 46px; border-color: rgba(255,64,112,0.9); }
/* Hide on touch devices */
@media (hover: none) {
  #cursor-dot, #cursor-ring { display: none !important; }
}

/* ── 3. Gradient Text Shimmer ── */
.gradient-text {
  background: linear-gradient(
    135deg,
    var(--pink) 0%, var(--purple) 35%, var(--blue) 60%, var(--pink) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shimmer 5s linear infinite;
}
@keyframes gradient-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── 4. Hero Canvas + Ambient Blobs ── */
.hero { position: relative; overflow: hidden; }
.hero-canvas { display: none; }
.hero-inner { position: relative; z-index: 1; }

.hero-blob { display: none; }

/* ── 5. Floating Cards Bob ── */
.floating-card {
  animation: card-float 4s ease-in-out infinite;
}
.floating-card.card-2 {
  animation-delay: -2s;
}
@keyframes card-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ── 6. Button Glow & Ripple ── */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s, box-shadow 0.25s;
}
.btn-primary:hover {
  box-shadow: 0 0 0 4px rgba(255, 64, 112, 0.18), 0 8px 32px rgba(255, 64, 112, 0.35);
}
.btn-outline {
  position: relative;
  overflow: hidden;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.25s;
}
.btn-outline:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.btn-primary:active, .btn-outline:active { transform: scale(0.97); }

@keyframes ripple-expand {
  from { width: 0; height: 0; opacity: 0.5; }
  to   { width: 260px; height: 260px; opacity: 0; }
}
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%);
  animation: ripple-expand 0.55s ease-out forwards;
  pointer-events: none;
}

/* ── 7. Staggered entrance delays ── */
.svc-grid .svc-card:nth-child(1) { transition-delay: 0.0s; }
.svc-grid .svc-card:nth-child(2) { transition-delay: 0.08s; }
.svc-grid .svc-card:nth-child(3) { transition-delay: 0.16s; }
.svc-grid .svc-card:nth-child(4) { transition-delay: 0.24s; }
.svc-grid .svc-card:nth-child(5) { transition-delay: 0.32s; }
.svc-grid .svc-card:nth-child(6) { transition-delay: 0.40s; }

.ph-track .ph-step:nth-child(1) { transition-delay: 0.0s; }
.ph-track .ph-step:nth-child(2) { transition-delay: 0.10s; }
.ph-track .ph-step:nth-child(3) { transition-delay: 0.20s; }
.ph-track .ph-step:nth-child(4) { transition-delay: 0.30s; }

.reviews-grid .review-card:nth-child(1) { transition-delay: 0.0s; }
.reviews-grid .review-card:nth-child(2) { transition-delay: 0.08s; }
.reviews-grid .review-card:nth-child(3) { transition-delay: 0.16s; }

.team-grid .tm-card:nth-child(1) { transition-delay: 0.0s; }
.team-grid .tm-card:nth-child(2) { transition-delay: 0.10s; }
.team-grid .tm-card:nth-child(3) { transition-delay: 0.20s; }
.team-grid .tm-card:nth-child(4) { transition-delay: 0.30s; }

/* ── 8. Enhanced section header reveal ── */
.section-header {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-header.fade-in {
  opacity: 0;
  transform: translateY(24px);
}
.section-header.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* General scroll fade-in — defined in CSS so no flash before JS runs */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   FEATURES SECTION — BACKGROUND EFFECT
   ========================================================= */
.features {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%,   rgba(255, 64, 112, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%,  rgba(144, 19, 254, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 60% 40%,   rgba(0, 128, 255, 0.06)  0%, transparent 55%),
    var(--dark);
}

/* Animated grid lines */
.features::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: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 85% at center, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at center, black 30%, transparent 100%);
  pointer-events: none;
}

/* Floating orbs */
.features::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,64,112,0.08) 0%, transparent 70%);
  top: -80px; right: 10%;
  animation: features-orb 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes features-orb {
  0%   { transform: translate(0, 0)    scale(1);    opacity: 0.6; }
  50%  { transform: translate(-40px, 30px) scale(1.1); opacity: 1;   }
  100% { transform: translate(20px, -20px) scale(0.95); opacity: 0.7; }
}

.features .container { position: relative; z-index: 1; }

/* =========================================================
   AI-SECTION — SCROLL EFFECTS
   ========================================================= */

/* Section entrance: scale up as it scrolls into view */
.ai-section {
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.ai-section.ai-hidden {
  opacity: 0;
  transform: scale(0.96) translateY(24px);
}
.ai-section.ai-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Canvas parallax layer — slightly oversized to avoid edge gaps */
.ai-canvas {
  transform: scale(1.12);
  will-change: transform;
  transition: none;
}

/* Network content base */
.network-content {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.network-content.nc-hidden { opacity: 0; }
.network-content.nc-visible { opacity: 1; }

/* Child elements — each enters from a different direction */
.network-label,
.network-title,
.network-sub {
  will-change: opacity, transform;
}

.network-content.nc-hidden .network-label {
  opacity: 0;
  transform: translateX(-50px);
}
.network-content.nc-hidden .network-title {
  opacity: 0;
  transform: translateY(40px);
  clip-path: inset(0 0 100% 0);
}
.network-content.nc-hidden .network-sub {
  opacity: 0;
  transform: translateX(50px);
}

.network-content.nc-visible .network-label {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) 0.15s,
              transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.15s;
}
.network-content.nc-visible .network-title {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0% 0);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1) 0.30s,
              transform 0.8s cubic-bezier(0.16,1,0.3,1) 0.30s,
              clip-path 0.8s cubic-bezier(0.16,1,0.3,1) 0.30s;
}
.network-content.nc-visible .network-sub {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) 0.50s,
              transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.50s;
}

/* =========================================================
   ABOUT US PAGE — NAV ACTIVE
   ========================================================= */
.nav-active {
  color: var(--pink) !important;
  font-weight: 600;
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 24px);
  padding-bottom: 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 15% 0%,   rgba(255, 180, 200, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 85% 5%,   rgba(160, 190, 255, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 100%,  rgba(200, 160, 255, 0.14) 0%, transparent 60%),
    linear-gradient(175deg, #ffffff 0%, #f8f9ff 40%, #fdf8ff 100%);
  border-bottom: 1px solid rgba(200, 210, 230, 0.25);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--mid); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb svg { opacity: 0.5; }
.breadcrumb span:last-child { color: var(--dark); font-weight: 500; }

.page-hero-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
}

.page-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Decorative blobs */
.ph-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.ph-blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,64,112,0.10) 0%, transparent 70%);
  top: -160px; right: -80px;
}
.ph-blob-2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(144,19,254,0.08) 0%, transparent 70%);
  bottom: -60px; left: 40%;
}

/* =========================================================
   STORY SECTION
   ========================================================= */
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-visual {
  position: relative;
  display: flex;
  align-items: center;
}

.story-content .eyebrow { margin-bottom: 12px; }
.story-content h2 { margin-bottom: 20px; }

.story-desc {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Timeline milestones */
.story-milestones {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border);
  padding-left: 24px;
}

.milestone {
  display: grid;
  grid-template-columns: 48px 12px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.ms-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.5px;
}

.ms-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
  margin-left: -30px;
}
.ms-dot.active {
  background: var(--pink);
  box-shadow: 0 0 0 2px rgba(255,64,112,0.25);
}

.ms-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.5;
}

/* =========================================================
   CORE VALUES
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  border-color: var(--vc);
}

.vc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--vc) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.vc-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.vc-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* =========================================================
   WHY US SECTION
   ========================================================= */
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.whyus-card {
  padding: 36px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s;
}
.whyus-card:hover {
  background: rgba(255,255,255,0.07);
}

.wc-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 16px;
}

.wc-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.wc-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* =========================================================
   ABOUT PAGE — RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero-inner { align-items: center; text-align: center; }
  .breadcrumb { align-self: center; }
  .page-hero-sub { margin-left: auto; margin-right: auto; }
  .page-hero-cta { justify-content: center; }
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-visual { justify-content: center; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .whyus-grid  { grid-template-columns: 1fr; }
  .milestone   { grid-template-columns: 44px 10px 1fr; }
}

/* =========================================================
   SERVICE PAGES
   ========================================================= */

/* Hero badge */
.svc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: color-mix(in srgb, var(--svc-color) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--svc-color) 30%, transparent);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--svc-color);
  margin-bottom: 20px;
}

/* Gradient text with custom colors */
.gradient-text[style*="--g-from"] {
  background: linear-gradient(135deg, var(--g-from) 0%, var(--g-to) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Service Overview (old rules removed — see end of file) ── */

.svc-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 3px solid var(--svc-color);
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ssc-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--svc-color);
  line-height: 1;
}

.ssc-label {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.4;
}

/* ── Deliverables Grid ── */
.svc-del-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-del-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.svc-del-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--svc-color);
}

.sdc-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.svc-del-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.svc-del-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* ── Tech Section ── */
.svc-tech-groups {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}

.svc-tech-group {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.stg-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mid);
  white-space: nowrap;
  min-width: 130px;
}

.stg-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stg-pills span {
  padding: 6px 14px;
  background: var(--lighter);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.stg-pills span:hover {
  background: var(--white);
  border-color: var(--pink);
  color: var(--pink);
}

/* ── Benefits ── */
.svc-ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-ben-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background 0.25s;
}
.svc-ben-card:hover { background: rgba(255,255,255,0.08); }

.sbc-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.svc-ben-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.svc-ben-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */

/* ── Contact Header ── */
.contact-header {
  position: relative;
  padding-top: calc(var(--nav-h) + 52px);
  padding-bottom: 56px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 15% 0%, rgba(255,180,200,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 85% 5%, rgba(160,190,255,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(200,160,255,0.1) 0%, transparent 60%),
    linear-gradient(175deg, #ffffff 0%, #f8f9ff 40%, #fdf8ff 100%);
  border-bottom: 1px solid rgba(200,210,230,0.3);
}

.contact-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-top: 28px;
}

.contact-header-text { flex: 1; }
.contact-header-text .eyebrow { margin-bottom: 14px; }
.contact-header-text h1 { font-size: clamp(36px, 5vw, 54px); font-weight: 900; line-height: 1.1; margin-bottom: 18px; }

.contact-header-sub {
  font-size: 17px;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.cbadge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cbadge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  backdrop-filter: blur(8px);
}

.cbadge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

.contact-header-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
  padding: 32px 36px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  min-width: 200px;
}

.ch-stat { display: flex; flex-direction: column; gap: 2px; }
.ch-stat-num { font-size: 32px; font-weight: 900; color: var(--dark); line-height: 1; }
.ch-stat-label { font-size: 12.5px; color: var(--mid); font-weight: 500; }

/* ── Contact Main Grid ── */
.contact-main { background: var(--lighter); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

/* ── Form Card ── */
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.cform-header { margin-bottom: 32px; }
.cform-header h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.cform-header p { font-size: 15px; color: var(--mid); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
}

.req { color: var(--pink); }

.form-control {
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-control::placeholder { color: #b0b8c9; }
.form-control:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,64,112,0.08);
}

select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ba3b0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

.form-textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 16px;
  padding: 15px 28px;
}

.form-note {
  font-size: 12px;
  color: var(--mid);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-note a { color: var(--pink); }
.form-note a:hover { text-decoration: underline; }

/* ── Info Sidebar ── */
.contact-info-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cinfo-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}

.cinfo-block h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.cinfo-block-sub { font-size: 14px; color: var(--mid); margin-bottom: 20px; line-height: 1.5; }

.cinfo-cards { display: flex; flex-direction: column; gap: 10px; }

.cinfo-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.15s;
  color: var(--dark);
}

.cinfo-card:hover { border-color: var(--pink); background: var(--light); }

.cinfo-icon {
  font-size: 18px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cinfo-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--mid);
  margin-bottom: 3px;
}

.cinfo-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
}

/* ── Response Badge ── */
.cresponse-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
}

.crb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.08); }
}

.crb-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.crb-sub { font-size: 12.5px; color: var(--mid); line-height: 1.4; }
.crb-sub strong { color: var(--dark); }

/* ── Service Pills ── */
.cinfo-services {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.cservices-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cservice-pill {
  padding: 7px 13px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.18s;
}

.cservice-pill:hover {
  background: rgba(255,64,112,0.07);
  border-color: var(--pink);
  color: var(--pink);
}

/* ── What Happens Next ── */
.cnext-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.cnext-step {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}

.cnext-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.cnext-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.05em;
}

.cnext-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
}

.cnext-step h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cnext-step p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── Contact Responsive ── */
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr 360px; }
}

@media (max-width: 900px) {
  .contact-header-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .contact-header-stats { flex-direction: row; min-width: unset; width: 100%; padding: 24px 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-sticky { position: static; }
  .cnext-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 600px) {
  .contact-form-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-header-stats { flex-direction: column; gap: 16px; }
  .cnext-step { padding: 28px 22px; }
}

/* ── Service Pages Responsive ── */
@media (max-width: 1024px) {
  .svc-del-grid        { grid-template-columns: repeat(2, 1fr); }
  .svc-ben-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .svc-del-grid        { grid-template-columns: 1fr; }
  .svc-ben-grid        { grid-template-columns: 1fr; }
  .svc-tech-group      { flex-direction: column; gap: 10px; }
  .stg-label           { min-width: unset; }
}


/* =========================================================
   SERVICE OVERVIEW — Image Left / Text Right
   ========================================================= */
.svc-overview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* LEFT IMAGE CARD */
.svc-overview-img-col {
  position: relative;
}

.svc-overview-img-card {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  overflow: hidden;
  padding: 36px 28px 28px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.svc-ov-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--svc-color, #ff4070) 0%, transparent 70%);
  opacity: 0.18;
  pointer-events: none;
  border-radius: 50%;
}

.svc-ov-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 36px;
  margin: 0 auto 4px;
}

.svc-ov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
}

.svc-ov-mini {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}
.svc-ov-mini:hover { background: rgba(255,255,255,0.08); }
.svc-ov-mini span { font-size: 20px; flex-shrink: 0; }
.svc-ov-mini p {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
  margin: 0;
}

.svc-ov-stats {
  display: flex;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

.svc-ov-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  text-align: center;
}

.svc-ov-stat-num {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.svc-ov-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* RIGHT TEXT */
.svc-overview-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.svc-overview-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}

.svc-overview-desc {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Benefits bullet list */
.svc-overview-bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
}

.svc-overview-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.svc-bullet-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-overview-bullets strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.svc-overview-bullets p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.55;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-overview-inner { grid-template-columns: 1fr; gap: 48px; }
  .svc-overview-img-card { min-height: 360px; }
}
@media (max-width: 600px) {
  .svc-ov-grid { grid-template-columns: 1fr 1fr; }
  .svc-ov-stats { flex-direction: row; }
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 3px;
}
.lang-btn img {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 4px 6px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mid);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.lang-btn:hover {
  color: var(--light);
  background: rgba(255,255,255,0.08);
}
.lang-btn.lang-active {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,128,255,0.3);
}
.lang-switcher-mobile {
  border-radius: 12px;
  width: 100%;
  justify-content: center;
  margin: 4px 0;
}
.lang-switcher-mobile .lang-btn {
  flex: 1;
  justify-content: center;
  font-size: 14px;
  padding: 8px 12px;
}

/* Footer brand extras */
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social-btn:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   SERVICE PAGE v2 — FULL REDESIGN
═══════════════════════════════════════════ */

/* ── HERO ── */
/* ── HERO – Light gradient + glass ── */
.sv2-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 80px;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, color-mix(in srgb, var(--svc-color, #0080ff) 12%, transparent) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 0% 100%, color-mix(in srgb, var(--svc-color, #0080ff) 8%, transparent) 0%, transparent 55%),
    linear-gradient(160deg, #f0f4ff 0%, #ffffff 40%, #f8f0ff 100%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sv2-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(255,255,255,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 90% 10%, color-mix(in srgb, var(--svc-color, #0080ff) 6%, transparent) 0%, transparent 50%);
}
.sv2-hero-glow {
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--svc-color, #0080ff) 15%, transparent) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none; filter: blur(60px);
}
.sv2-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 2;
}
/* Glass card – light version */
.sv2-hero-content {
  display: flex; flex-direction: column; gap: 22px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 36px 36px 32px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07), 0 1px 0 rgba(255,255,255,1) inset;
}
.sv2-breadcrumb {
  font-size: 12px; color: #888;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.sv2-breadcrumb a { color: #888; text-decoration: none; transition: color 0.2s; }
.sv2-breadcrumb a:hover { color: #111; }
.sv2-breadcrumb svg path { stroke: #bbb; }
.sv2-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 50px;
  background: color-mix(in srgb, var(--svc-color, #0080ff) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--svc-color, #0080ff) 30%, transparent);
  font-size: 12px; font-weight: 700;
  color: var(--svc-color, #0080ff);
  width: fit-content; letter-spacing: 0.02em;
}
.sv2-badge-icon { font-size: 15px; }
.sv2-hero-title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800; line-height: 1.15;
  color: #0d0d1a; margin: 0;
}
.sv2-hero-tagline {
  font-size: 15px; color: #555;
  line-height: 1.65; margin: 0;
}
.sv2-hero-stats {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px; overflow: hidden;
}
.sv2-hstat {
  flex: 1; display: flex; flex-direction: column; gap: 2px;
  padding: 12px 16px; text-align: center;
  border-right: 1px solid rgba(0,0,0,0.07);
}
.sv2-hstat:last-child { border-right: none; }
.sv2-hstat-num { font-size: 20px; font-weight: 800; line-height: 1; color: var(--svc-color, #0080ff); }
.sv2-hstat-lbl { font-size: 10px; color: #888; text-transform: uppercase; letter-spacing: 0.07em; }
.sv2-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.sv2-trust-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.sv2-trust-pills span {
  font-size: 11px; font-weight: 500; color: #555;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.09);
  padding: 5px 11px; border-radius: 50px;
}

/* Hero Visual */
.sv2-hero-visual { position: relative; }
.sv2-img-frame {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.06);
}
.sv2-img-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--svc-color) 20%, transparent) 0%, transparent 60%);
  z-index: 0; pointer-events: none;
}
.sv2-hero-img {
  width: 100%; height: 420px;
  object-fit: cover; display: block;
  position: relative; z-index: 1;
}
.sv2-img-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(160deg, transparent 50%, rgba(0,0,0,0.35) 100%);
}
.sv2-floating-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.sv2-fc-tl { top: 20px; left: 20px; }
.sv2-fc-br { bottom: 20px; right: 20px; }
.sv2-fc-icon { font-size: 22px; }
.sv2-fc-label { font-size: 10px; color: #888; text-transform: uppercase; letter-spacing: 0.08em; margin: 0; }
.sv2-fc-val { font-size: 13px; font-weight: 700; color: #111; margin: 2px 0 0; }

/* ── OVERVIEW ── */
.sv2-overview { background: #fff; }
.sv2-overview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.sv2-ov-img-col { position: relative; }
.sv2-ov-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
}
.sv2-ov-photo { width: 100%; height: 480px; object-fit: cover; display: block; }
.sv2-ov-badge-row {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; gap: 1px;
  background: rgba(5,7,13,0.85); backdrop-filter: blur(12px);
}
.sv2-ov-stat {
  flex: 1; padding: 16px 20px; text-align: center;
  border-top: 2px solid;
}
.sv2-ov-stat-num { display: block; font-size: 24px; font-weight: 800; line-height: 1; }
.sv2-ov-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.sv2-ov-accent {
  position: absolute; top: 0; left: -6px;
  width: 6px; height: 80px; border-radius: 0 4px 4px 0;
}
.sv2-ov-text { display: flex; flex-direction: column; gap: 20px; }
.sv2-ov-desc { font-size: 17px; color: #444; line-height: 1.75; margin: 0; }
.sv2-ov-bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.sv2-ov-bullet { display: flex; gap: 16px; align-items: flex-start; }
.sv2-ob-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 20px;
}
.sv2-ov-bullet strong { display: block; font-size: 15px; color: #111; margin-bottom: 2px; }
.sv2-ov-bullet p { font-size: 14px; color: #666; margin: 0; line-height: 1.5; }

/* ── DELIVERABLES ── */
.sv2-del-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.sv2-del-card {
  background: #fff; border-radius: 16px;
  padding: 28px 24px 24px;
  border: 1px solid #eee;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column; gap: 12px;
}
.sv2-del-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: var(--svc-color);
}
.sv2-del-num {
  position: absolute; top: 16px; right: 20px;
  font-size: 36px; font-weight: 900; color: #f0f0f0;
  line-height: 1; font-style: italic;
}
.sv2-del-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.sv2-del-icon { font-size: 26px; }
.sv2-del-card h3 { font-size: 16px; font-weight: 700; color: #111; margin: 0; }
.sv2-del-card p { font-size: 14px; color: #666; margin: 0; line-height: 1.55; flex: 1; }
.sv2-del-bar {
  height: 3px; width: 40px; border-radius: 2px;
  margin-top: 8px; opacity: 0;
  transition: opacity 0.3s, width 0.3s;
}
.sv2-del-card:hover .sv2-del-bar { opacity: 1; width: 80px; }

/* ── TECH STACK ── */
.sv2-tech { background: #f8f9ff; }
.sv2-tech-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
}
.sv2-tech-group {
  background: #fff; border-radius: 16px;
  padding: 24px; border: 1px solid #eee;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.sv2-tech-group:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: var(--svc-color);
}
.sv2-tg-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 14px; display: block;
}
.sv2-tg-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.sv2-pill {
  font-size: 12px; font-weight: 600;
  background: #f3f4f8; color: #444;
  border: 1px solid #e8e9f0; border-radius: 6px;
  padding: 5px 10px; transition: all 0.2s;
}
.sv2-tech-group:hover .sv2-pill {
  background: var(--svc-color)0d;
  border-color: var(--svc-color)40;
  color: #222;
}

/* ── PROCESS ── */
.sv2-process { background: #05070d; }
.sv2-process-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.sv2-process-track::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5%); right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, #0080ff, #9013fe, #ff6b35, #00c48c);
  opacity: 0.4;
}
.sv2-proc-step {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 16px; position: relative;
}
.sv2-proc-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid; margin-bottom: 24px;
  position: relative; z-index: 2;
  backdrop-filter: blur(8px);
}
.sv2-proc-icon { font-size: 30px; }
.sv2-proc-connector { display: none; }
.sv2-proc-body { display: flex; flex-direction: column; gap: 8px; }
.sv2-proc-num {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.sv2-proc-step h3 { font-size: 17px; font-weight: 700; color: #fff; margin: 0; }
.sv2-proc-step p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }

/* ── BENEFITS ── */
.sv2-benefits { background: #fff; }
.sv2-ben-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.sv2-ben-card {
  position: relative; overflow: hidden;
  border-radius: 20px; padding: 36px 28px;
  background: #f8f9ff;
  border: 1px solid #eee;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.sv2-ben-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
  border-color: var(--svc-color);
}
.sv2-ben-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.sv2-ben-icon { font-size: 28px; }
.sv2-ben-card h3 { font-size: 18px; font-weight: 700; color: #111; margin: 0 0 10px; }
.sv2-ben-card p { font-size: 15px; color: #555; line-height: 1.65; margin: 0; }
.sv2-ben-glow {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0; transition: opacity 0.4s;
}
.sv2-ben-card:hover .sv2-ben-glow { opacity: 1; }

/* ── CTA ── */
.sv2-cta {
  position: relative; overflow: hidden;
  background: #05070d; padding: 100px 0;
}
.sv2-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, var(--svc-color)12 0%, transparent 65%);
}
.sv2-cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.sv2-cta-text { display: flex; flex-direction: column; gap: 20px; }
.sv2-cta-text h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: #fff; margin: 0; line-height: 1.15; }
.sv2-cta-text p { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }
.sv2-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.sv2-cta-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.sv2-cta-img { width: 100%; height: 380px; object-fit: cover; display: block; }
.sv2-cta-img-overlay { position: absolute; inset: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .sv2-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .sv2-hero-visual { display: none; }
  .sv2-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .sv2-del-grid { grid-template-columns: repeat(2, 1fr); }
  .sv2-tech-grid { grid-template-columns: repeat(2, 1fr); }
  .sv2-process-track { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .sv2-process-track::before { display: none; }
  .sv2-ben-grid { grid-template-columns: repeat(2, 1fr); }
  .sv2-cta-inner { grid-template-columns: 1fr; }
  .sv2-cta-img-wrap { display: none; }
}
@media (max-width: 640px) {
  .sv2-del-grid { grid-template-columns: 1fr; }
  .sv2-tech-grid { grid-template-columns: 1fr; }
  .sv2-process-track { grid-template-columns: 1fr; }
  .sv2-ben-grid { grid-template-columns: 1fr; }
  .sv2-hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* ── SERVICE PAGE HEADER (replaces hero) ── */
.sv2-page-header {
  background: linear-gradient(160deg, #f0f4ff 0%, #fff 50%, #f8f0ff 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.sv2-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, color-mix(in srgb, var(--svc-color) 10%, transparent) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, color-mix(in srgb, var(--svc-color) 6%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.sv2-page-header .container { position: relative; }
.sv2-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #666; margin-bottom: 24px;
}
.sv2-breadcrumb a { color: #666; text-decoration: none; }
.sv2-breadcrumb a:hover { color: var(--svc-color); }
.sv2-breadcrumb svg { opacity: .5; flex-shrink: 0; }
.sv2-ph-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px; border: 1px solid;
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.sv2-ph-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; color: #0d0d1a;
  line-height: 1.15; margin: 0 0 14px;
}
.sv2-ph-tagline {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #555; max-width: 560px; margin: 0 0 28px;
}
.sv2-ph-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   HOME — PORTFOLIO GRID
════════════════════════════════════════════ */
.home-proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.home-proj-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8eaf0;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.home-proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.hpc-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hpc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.home-proj-card:hover .hpc-img-wrap img { transform: scale(1.05); }
.hpc-overlay {
  position: absolute; inset: 0;
  transition: opacity .3s;
}
.hpc-tags {
  position: absolute; top: 12px; left: 12px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.hpc-tags span {
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hpc-body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.hpc-cat {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: #999;
}
.hpc-title {
  font-size: 18px; font-weight: 800;
  color: #0d0d1a; margin: 0;
  line-height: 1.25;
}
.hpc-tagline {
  font-size: 13px; color: #666;
  line-height: 1.5; margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hpc-link {
  font-size: 13px; font-weight: 700;
  margin-top: 8px;
  transition: gap .2s;
}

/* ════════════════════════════════════════════
   PROJECTS LIST PAGE
════════════════════════════════════════════ */
.pf-list-header {
  background: linear-gradient(160deg, #f0f4ff 0%, #fff 50%, #f8f0ff 100%);
  padding: 120px 0 60px;
}
.pf-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #666; margin-bottom: 24px;
}
.pf-breadcrumb a { color: #666; text-decoration: none; }
.pf-breadcrumb a:hover { color: #0080ff; }
.pf-breadcrumb svg { opacity: .45; flex-shrink: 0; }
.pf-list-header h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; color: #0d0d1a;
  line-height: 1.1; margin: 8px 0 16px;
}
.pf-list-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: #555; max-width: 620px; margin: 0;
}
.pf-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pf-list-card {
  display: flex; flex-direction: column;
  border-radius: 20px; overflow: hidden;
  background: #fff; border: 1px solid #e8eaf0;
  text-decoration: none; color: inherit;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.pf-list-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.13);
}
.pf-list-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.pf-list-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s;
}
.pf-list-card:hover .pf-list-img-wrap img { transform: scale(1.06); }
.pf-list-overlay { position: absolute; inset: 0; }
.pf-list-tags {
  position: absolute; top: 14px; left: 14px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.pf-list-tags span {
  background: rgba(0,0,0,.55); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.pf-list-body { padding: 28px 28px 30px; display: flex; flex-direction: column; gap: 8px; }
.pf-list-cat {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; color: #999;
}
.pf-list-body h2 {
  font-size: 22px; font-weight: 800; color: #0d0d1a;
  margin: 0; line-height: 1.2;
}
.pf-list-body p {
  font-size: 14px; color: #666; line-height: 1.6; margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pf-list-link { font-size: 14px; font-weight: 700; margin-top: 6px; }

/* ════════════════════════════════════════════
   PROJECT DETAIL PAGE
════════════════════════════════════════════ */
.pf-header {
  background: linear-gradient(160deg, #f0f4ff 0%, #fff 50%, #f8f0ff 100%);
  padding: 110px 0 0;
  overflow: hidden;
  position: relative;
}
.pf-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 90% 10%, color-mix(in srgb, var(--proj-color) 12%, transparent), transparent 70%),
    radial-gradient(ellipse 40% 40% at 5% 90%, color-mix(in srgb, var(--proj-color) 7%, transparent), transparent 70%);
  pointer-events: none;
}
.pf-header .container { position: relative; }
.pf-header-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 0;
}
.pf-header-text { padding-bottom: 48px; }
.pf-cat-badge {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 999px; border: 1px solid;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 20px;
}
.pf-header-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900; color: #0d0d1a;
  line-height: 1.1; margin: 0 0 14px;
}
.pf-header-tagline {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #555; line-height: 1.6;
  margin: 0 0 24px; max-width: 480px;
}
.pf-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pf-tag {
  background: #f1f3f8; color: #444;
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
}
.pf-header-img {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  align-self: flex-end;
  box-shadow: 0 -8px 40px rgba(0,0,0,.12);
}
.pf-header-img img {
  width: 100%; display: block;
  aspect-ratio: 16/10; object-fit: cover;
}
.pf-header-img-overlay { position: absolute; inset: 0; }

/* Main grid */
.pf-main-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.pf-content-col { display: flex; flex-direction: column; gap: 48px; }
.pf-section { display: flex; flex-direction: column; gap: 14px; }
.pf-section-title {
  font-size: 22px; font-weight: 800;
  color: #0d0d1a; margin: 0;
}
.pf-body-text {
  font-size: 16px; color: #444;
  line-height: 1.75; margin: 0;
}

/* Screenshots */
.pf-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pf-screen-wrap {
  border-radius: 10px; overflow: hidden;
  border: 1px solid #e8eaf0;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}
.pf-screen-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
}
.pf-screen-img { width: 100%; display: block; object-fit: cover; }

/* Sidebar */
.pf-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.pf-info-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.pf-info-title {
  font-size: 16px; font-weight: 800;
  color: #0d0d1a; margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f1f5;
}
.pf-info-list {
  list-style: none; margin: 0 0 20px; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.pf-info-list li { display: flex; flex-direction: column; gap: 3px; }
.pf-info-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; color: #aaa;
}
.pf-info-val { font-size: 14px; font-weight: 600; color: #0d0d1a; }
.pf-tech-block { margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.pf-tech-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.pf-tech-pill {
  font-size: 12px; font-weight: 600;
  padding: 4px 11px; border-radius: 999px; border: 1px solid;
}
.pf-cta-btn { width: 100%; text-align: center; }
.pf-back-link {
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 600; color: #666;
  text-decoration: none; padding: 10px 0;
  transition: color .2s;
}
.pf-back-link:hover { color: #0080ff; }

/* Other projects */
.pf-other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pf-other-card {
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  border: 1px solid #e8eaf0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.pf-other-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.pf-other-img-wrap {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.pf-other-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.pf-other-card:hover .pf-other-img-wrap img { transform: scale(1.05); }
.pf-other-overlay { position: absolute; inset: 0; }
.pf-other-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; }
.pf-other-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #999; }
.pf-other-body h3 { font-size: 16px; font-weight: 800; color: #0d0d1a; margin: 0; }
.pf-other-cta { font-size: 13px; font-weight: 700; }

/* CTA section */
.pf-cta-section {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a103a 100%);
  padding: 80px 0;
  text-align: center;
}
.pf-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pf-cta-inner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; color: #fff;
  margin: 0; line-height: 1.15;
}
.pf-cta-inner p { font-size: 16px; color: rgba(255,255,255,.65); max-width: 500px; margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .home-proj-grid { grid-template-columns: 1fr; }
  .pf-list-grid { grid-template-columns: 1fr; }
  .pf-header-inner { grid-template-columns: 1fr; }
  .pf-header-img { border-radius: 16px; }
  .pf-main-grid { grid-template-columns: 1fr; }
  .pf-sidebar { position: static; }
  .pf-other-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-screens { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pf-other-grid { grid-template-columns: 1fr; }
  .pf-screens { grid-template-columns: 1fr; }
  .home-proj-grid { gap: 18px; }
}



/* =========================================================
   BOOKING PAGE — MULTISTEP
   ========================================================= */

.nav-booking-btn {
  background: linear-gradient(135deg,#0057ff,#7c3aed);
  color:#fff !important; padding:7px 16px; border-radius:8px;
  font-weight:600; font-size:13px; white-space:nowrap; transition:opacity .2s;
}
.nav-booking-btn:hover { opacity:.88; }

/* Hero */
.bk-hero {
  background: linear-gradient(160deg,#0a0a0f 0%,#0e0e1f 60%,#0d0829 100%);
  padding:80px 0 52px; text-align:center;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.bk-hero-badge { display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(0,87,255,.35); background:rgba(0,87,255,.1); color:#7ba8ff; font-size:13px; font-weight:600; padding:6px 16px; border-radius:20px; margin-bottom:22px; }
.bk-hero-badge-sep { opacity:.35; }
.bk-hero-badge-price { background:linear-gradient(135deg,#0057ff,#7c3aed); color:#fff; font-weight:800; font-size:14px; padding:3px 11px; border-radius:12px; }
.bk-hero-title { font-size:clamp(30px,5vw,52px); font-weight:800; color:#fff; line-height:1.15; margin-bottom:16px; }
.bk-hero-sub   { color:rgba(255,255,255,.65); font-size:16px; max-width:520px; margin:0 auto; line-height:1.7; }

/* Wizard */
.bk-section { background:#f6f7fb; }
.bk-wizard-wrap { max-width:680px; margin:0 auto; }

/* Progress */
.bk-progress { margin-bottom:36px; }
.bk-progress-track { height:3px; background:#e2e6f0; border-radius:3px; margin-bottom:20px; }
.bk-progress-fill  { height:100%; background:linear-gradient(90deg,#0057ff,#7c3aed); border-radius:3px; width:0%; transition:width .45s cubic-bezier(.4,0,.2,1); }
.bk-steps-row { display:flex; justify-content:space-between; }
.bk-step-dot { display:flex; flex-direction:column; align-items:center; gap:6px; flex:1; }
.bk-dot-circle { width:38px; height:38px; border-radius:50%; background:#edf0f7; color:#b0b8cc; display:flex; align-items:center; justify-content:center; border:2px solid transparent; transition:all .3s; }
.bk-step-dot span { font-size:12px; font-weight:600; color:#b0b8cc; transition:color .3s; }
.bk-step-dot.active .bk-dot-circle { background:#0057ff; color:#fff; border-color:#0057ff; box-shadow:0 0 0 4px rgba(0,87,255,.15); }
.bk-step-dot.active span { color:#0057ff; }
.bk-step-dot.done   .bk-dot-circle { background:#10b981; color:#fff; border-color:#10b981; }
.bk-step-dot.done   span { color:#10b981; }

/* Panels */
.bk-step-panel { display:none; }
.bk-step-panel.active { display:block; animation:stepIn .3s ease; }
@keyframes stepIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }
.bk-step-panel { background:#fff; border-radius:20px; padding:36px; box-shadow:0 2px 24px rgba(0,0,0,.07); }

/* Panel head */
.bk-panel-head { margin-bottom:28px; }
.bk-panel-head h2 { font-size:21px; font-weight:800; color:#1a1a2e; margin-bottom:6px; }
.bk-panel-head > p { font-size:14px; color:#888; }
.bk-pills-row { display:flex; flex-wrap:wrap; gap:8px; }
.bk-selected-pill { display:inline-flex; align-items:center; gap:6px; background:#f0f4ff; border:1px solid #c7d7ff; color:#0057ff; font-size:13px; font-weight:600; padding:5px 12px; border-radius:20px; }

/* Alert */
.bk-alert-error { display:flex; align-items:flex-start; gap:12px; background:#fff5f5; border:1px solid #fca5a5; color:#991b1b; border-radius:12px; padding:16px 20px; margin-bottom:24px; font-size:14px; line-height:1.6; }

/* ── CALENDAR WIDGET ── */
.bk-cal-widget { background:#fafbff; border:1px solid #e8ecf5; border-radius:16px; overflow:hidden; }

.bk-cal-header {
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 20px; background:#fff; border-bottom:1px solid #e8ecf5;
}
.bk-cal-month-label { font-size:16px; font-weight:800; color:#1a1a2e; letter-spacing:-.01em; }
.bk-cal-nav {
  width:34px; height:34px; border-radius:9px; border:1.5px solid #e2e6f0;
  background:#fff; color:#555; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .18s;
}
.bk-cal-nav:hover:not(:disabled) { background:#0057ff; border-color:#0057ff; color:#fff; }
.bk-cal-nav:disabled { opacity:.3; cursor:not-allowed; }

.bk-cal-dow {
  display:grid; grid-template-columns:repeat(7,1fr);
  padding:10px 12px 8px; gap:0;
  text-align:center; font-size:11px; font-weight:700; color:#aab; text-transform:uppercase; letter-spacing:.05em;
  background:#fff; border-bottom:1px solid #e8ecf5;
}
.bk-cal-dow div { padding:2px 0; }

.bk-cal-grid {
  display:grid; grid-template-columns:repeat(7,1fr);
  padding:12px; gap:6px;
}
.bk-cal-day {
  aspect-ratio:1; display:flex; align-items:center; justify-content:center;
  border-radius:10px; font-size:14px; font-weight:500; user-select:none;
}
.bk-cal-empty   { }
.bk-cal-weekend { color:#d1d5e0; font-weight:400; }
.bk-cal-unavail { color:#d1d5e0; font-weight:400; }
.bk-cal-day-avail {
  background:#fff; color:#1a1a2e; font-weight:700;
  cursor:pointer; border:1.5px solid #e8ecf5;
  transition:all .15s;
}
.bk-cal-day-avail:hover { background:#0057ff; color:#fff; border-color:#0057ff; transform:scale(1.06); }
.bk-cal-today { border-color:#0057ff !important; color:#0057ff; }
.bk-cal-selected {
  background:#0057ff !important; color:#fff !important;
  border-color:#0057ff !important; box-shadow:0 2px 10px rgba(0,87,255,.35);
  transform:scale(1.06);
}

/* Selected date bar */
.bk-selected-date-bar {
  display:flex; align-items:center; gap:8px;
  background:#f0f4ff; border:1px solid #c7d7ff; border-radius:10px;
  padding:10px 14px; font-size:14px; font-weight:600; color:#0057ff;
  margin-top:14px;
}
.bk-selected-date-bar span { flex:1; }
.bk-clear-date { background:none; border:none; color:#8aadff; cursor:pointer; font-size:14px; padding:0 2px; line-height:1; }
.bk-clear-date:hover { color:#0057ff; }

/* Time slots */
.bk-slots-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.bk-slot { display:flex; flex-direction:column; align-items:center; gap:3px; padding:14px 8px; border-radius:12px; border:2px solid #e8ecf5; background:#fafbff; cursor:pointer; transition:all .15s; }
.bk-slot:hover:not(:disabled) { border-color:#0057ff; background:#f0f4ff; }
.bk-slot-time  { font-size:16px; font-weight:800; color:#1a1a2e; }
.bk-slot-label { font-size:11px; color:#aaa; font-weight:500; }
.bk-slot-selected { background:#0057ff !important; border-color:#0057ff !important; }
.bk-slot-selected .bk-slot-time,
.bk-slot-selected .bk-slot-label { color:#fff !important; }
.bk-slot-taken { opacity:.4; cursor:not-allowed; }
.bk-slot-taken .bk-slot-time { text-decoration:line-through; }

/* Form */
.bk-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.bk-field-full { grid-column:1/-1; }
.bk-field label { display:block; font-size:13px; font-weight:600; color:#444; margin-bottom:6px; }
.bk-field input {
  width:100%; padding:12px 14px; border-radius:10px;
  border:1.5px solid #e2e8f0; font-size:14px; color:#1a1a2e;
  background:#fff; transition:border-color .2s,box-shadow .2s; font-family:inherit;
}
.bk-field input:focus { outline:none; border-color:#0057ff; box-shadow:0 0 0 3px rgba(0,87,255,.1); }

/* Phone — unified input group */
.bk-phone-wrap {
  display:flex; align-items:stretch;
  border:1.5px solid #e2e8f0; border-radius:10px;
  overflow:hidden; background:#fff;
  transition:border-color .2s, box-shadow .2s;
}
.bk-phone-wrap:focus-within {
  border-color:#0057ff; box-shadow:0 0 0 3px rgba(0,87,255,.1);
}
.bk-phone-code {
  flex-shrink:0; padding:0 10px 0 12px;
  border:none; border-right:1.5px solid #e2e8f0;
  background:#f8f9ff; color:#1a1a2e;
  font-size:14px; font-weight:600; font-family:inherit;
  cursor:pointer; appearance:none; -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 8px center;
  padding-right:26px; min-width:0;
}
.bk-phone-code:focus { outline:none; }
.bk-phone-input {
  flex:1; min-width:0; padding:12px 14px;
  border:none; font-size:14px; color:#1a1a2e;
  background:transparent; font-family:inherit;
}
.bk-phone-input:focus { outline:none; }
.bk-phone-input::placeholder { color:#b0b8cc; }

/* Summary */
.bk-summary-box { background:#f8f9ff; border:1px solid #e8eaff; border-radius:16px; padding:24px; margin-bottom:20px; }
.bk-sum-service { display:flex; align-items:center; gap:16px; padding-bottom:18px; border-bottom:1px solid #e8eaff; margin-bottom:16px; }
.bk-sum-icon { width:48px; height:48px; border-radius:12px; background:#fff; border:1px solid #e8eaff; display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.bk-sum-service-name { font-size:16px; font-weight:700; color:#1a1a2e; }
.bk-sum-service-sub  { font-size:13px; color:#888; margin-top:2px; }
.bk-sum-price { margin-left:auto; font-size:22px; font-weight:800; color:#0057ff; }
.bk-sum-rows  { display:flex; flex-direction:column; }
.bk-sum-row { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px solid #eef0ff; font-size:14px; color:#666; }
.bk-sum-row span { display:flex; align-items:center; gap:6px; }
.bk-sum-row:last-child { border-bottom:none; }
.bk-sum-row strong { font-weight:700; color:#1a1a2e; }
.bk-sum-total-row { border-top:2px solid #dde1ff !important; margin-top:6px; padding-top:14px !important; }
.bk-sum-total-row span,.bk-sum-total-row strong { font-size:17px !important; color:#0057ff !important; font-weight:800 !important; }
.bk-stripe-note { display:flex; align-items:center; gap:8px; font-size:13px; color:#888; margin-bottom:24px; line-height:1.6; }

/* Nav buttons */
.bk-step-nav { display:flex; justify-content:space-between; align-items:center; margin-top:28px; gap:12px; }
.bk-btn-next, .bk-btn-back, .bk-btn-pay { display:inline-flex; align-items:center; gap:8px; padding:13px 22px; border-radius:12px; font-size:15px; font-weight:700; cursor:pointer; border:none; transition:all .18s; font-family:inherit; }
.bk-btn-next { background:linear-gradient(135deg,#0057ff,#7c3aed); color:#fff; margin-left:auto; }
.bk-btn-next:hover:not(:disabled) { opacity:.9; transform:translateY(-1px); }
.bk-btn-next:disabled { background:#e2e6f0; color:#aaa; cursor:not-allowed; }
.bk-btn-back { background:transparent; color:#666; border:1.5px solid #dde1e7; }
.bk-btn-back:hover { background:#f5f7fa; border-color:#bbb; }
.bk-btn-pay { background:linear-gradient(135deg,#0057ff,#7c3aed); color:#fff; padding:15px 28px; font-size:16px; margin-left:auto; box-shadow:0 4px 20px rgba(0,87,255,.3); }
.bk-btn-pay:hover { opacity:.9; transform:translateY(-2px); }
.bk-btn-pay:disabled { opacity:.7; cursor:not-allowed; transform:none; }
.bk-terms { font-size:12px; color:#aaa; text-align:center; margin-top:14px; line-height:1.6; }
.bk-terms a { color:#0057ff; }

/* =========================================================
   JOIN PAGES  (Sales Agents & Developers)
   ========================================================= */
.join-header {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--jc1,#ff6b35) 10%, #f0f4ff) 0%,
    color-mix(in srgb, var(--jc2,#ff4070)  8%, #f5f0ff) 50%,
    color-mix(in srgb, var(--jc1,#ff6b35)  6%, #eef6ff) 100%);
  padding: 56px 0 52px;
  position: relative;
  overflow: hidden;
}
/* dot grid */
.join-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(100,100,180,.10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}
/* glass card behind content */
.join-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
}
.join-header-inner {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 24px;
  padding: 40px 44px;
  box-shadow: 0 4px 32px rgba(100,100,180,.10), inset 0 1px 0 rgba(255,255,255,.9);
}
.join-breadcrumb { display:flex; align-items:center; gap:6px; font-size:13px; color:#6b7280; margin-bottom:24px; }
.join-breadcrumb a { color:#6b7280; }
.join-breadcrumb a:hover { color:#0057ff; }
.join-header-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.join-header h1 { font-size: clamp(26px,4vw,40px); font-weight:800; color:#1a1a2e; line-height:1.2; margin-bottom:12px; }
.join-header h1 span { background: linear-gradient(90deg, var(--jc1,#ff6b35), var(--jc2,#ff4070)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.join-header-sub { font-size:16px; color:#4b5563; max-width:560px; line-height:1.7; }

/* ── Page body layout ── */
.join-body { background:#f5f6fa; padding:56px 0 80px; }
.join-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

/* ── Left info panel ── */
.join-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.join-info-card h3 { font-size:16px; font-weight:700; color:#1a1a2e; margin-bottom:20px; }
.join-perk { display:flex; gap:14px; margin-bottom:20px; align-items:flex-start; }
.join-perk-icon {
  width:40px; height:40px; min-width:40px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:18px;
}
.join-perk-text h4 { font-size:14px; font-weight:700; color:#1a1a2e; margin-bottom:3px; }
.join-perk-text p  { font-size:13px; color:#6b7280; line-height:1.55; }
.join-info-divider { border:none; border-top:1px solid #f0f0f0; margin:20px 0; }
.join-open-badge { display:inline-flex; align-items:center; gap:6px; background:#f0fdf4; color:#16a34a; font-size:12px; font-weight:600; border-radius:999px; padding:5px 12px; margin-bottom:14px; }
.join-open-dot { width:7px; height:7px; background:#16a34a; border-radius:50%; }

/* ── Right form card ── */
.join-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.join-form-card h2 { font-size:20px; font-weight:800; color:#1a1a2e; margin-bottom:6px; }
.join-form-card > p { font-size:14px; color:#6b7280; margin-bottom:28px; }
.join-section-title { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:#9ca3af; margin:24px 0 14px; }
.join-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.join-grid.cols-1 { grid-template-columns:1fr; }
.join-field { display:flex; flex-direction:column; gap:6px; }
.join-field.full { grid-column:1/-1; }
.join-field label { font-size:13px; font-weight:600; color:#374151; }
.join-field label span { color:#ef4444; margin-left:2px; }
.join-input, .join-select, .join-textarea {
  width:100%;
  border:1.5px solid #e5e7eb;
  border-radius:10px;
  padding:11px 14px;
  font-size:14px;
  color:#1a1a2e;
  background:#fff;
  transition:border-color .2s, box-shadow .2s;
  font-family:inherit;
}
.join-input:focus, .join-select:focus, .join-textarea:focus {
  outline:none;
  border-color:#0057ff;
  box-shadow:0 0 0 3px rgba(0,87,255,.1);
}
.join-textarea { resize:vertical; min-height:110px; }
.join-select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; }

/* Phone row (reuse booking style) */
.join-phone-wrap {
  display:flex;
  border:1.5px solid #e5e7eb;
  border-radius:10px;
  overflow:hidden;
  transition:border-color .2s, box-shadow .2s;
}
.join-phone-wrap:focus-within { border-color:#0057ff; box-shadow:0 0 0 3px rgba(0,87,255,.1); }
.join-phone-code {
  border:none; outline:none;
  background:#f8f9ff;
  padding:11px 10px;
  font-size:13px; color:#374151;
  border-right:1.5px solid #e5e7eb;
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 8px center;
  padding-right:24px;
  cursor:pointer;
  font-family:inherit;
}
.join-phone-input { border:none; outline:none; flex:1; padding:11px 14px; font-size:14px; font-family:inherit; color:#1a1a2e; }

/* Checkboxes (industries / skills) */
.join-checks { display:flex; flex-wrap:wrap; gap:10px; }
.join-check-label { display:flex; align-items:center; gap:7px; font-size:13px; color:#374151; cursor:pointer; }
.join-check-label input[type=checkbox] { width:16px; height:16px; accent-color:#0057ff; cursor:pointer; }

/* Radio group */
.join-radios { display:flex; gap:12px; flex-wrap:wrap; }
.join-radio-label {
  display:flex; align-items:center; gap:8px;
  padding:9px 16px;
  border:1.5px solid #e5e7eb;
  border-radius:999px;
  font-size:13px; color:#374151;
  cursor:pointer; transition:border-color .2s, background .2s;
}
.join-radio-label:has(input:checked) { border-color:#0057ff; background:#eff6ff; color:#0057ff; font-weight:600; }
.join-radio-label input[type=radio] { display:none; }

/* Terms */
.join-terms { display:flex; align-items:flex-start; gap:10px; margin-top:20px; font-size:13px; color:#6b7280; line-height:1.55; }
.join-terms input[type=checkbox] { margin-top:2px; width:16px; height:16px; accent-color:#0057ff; cursor:pointer; flex-shrink:0; }
.join-terms a { color:#0057ff; }

/* Submit */
.join-submit {
  width:100%; margin-top:24px;
  padding:15px;
  background:linear-gradient(135deg, var(--js1,#0057ff), var(--js2,#7c3aed));
  color:#fff; font-size:16px; font-weight:700;
  border:none; border-radius:12px;
  cursor:pointer;
  transition:opacity .2s, transform .2s;
  box-shadow:0 4px 20px rgba(0,87,255,.3);
}
.join-submit:hover { opacity:.9; transform:translateY(-2px); }

/* Success alert */
.join-success {
  background:#f0fdf4; border:1px solid #bbf7d0;
  border-radius:14px; padding:20px 24px;
  display:flex; gap:14px; align-items:flex-start;
  margin-bottom:28px;
}
.join-success-icon { font-size:24px; }
.join-success h3 { font-size:15px; font-weight:700; color:#15803d; margin-bottom:4px; }
.join-success p  { font-size:13px; color:#166534; line-height:1.6; }

/* Responsive */
@media (max-width:900px) {
  .join-layout { grid-template-columns:1fr; }
  .join-info-card { position:static; }
}
@media (max-width:600px) {
  .join-form-card { padding:24px 18px; }
  .join-grid { grid-template-columns:1fr; }
  .join-field.full { grid-column:auto; }
}

/* Success / Cancel */
.bk-result-page { background:#f6f7fb; padding:80px 0; }
.bk-result-card { max-width:540px; margin:0 auto; background:#fff; border-radius:24px; padding:48px 40px; text-align:center; box-shadow:0 4px 40px rgba(0,0,0,.08); }
.bk-result-icon { width:80px; height:80px; border-radius:50%; margin:0 auto 24px; display:flex; align-items:center; justify-content:center; }
.bk-result-icon-success { background:linear-gradient(135deg,#10b981,#059669); }
.bk-result-icon-cancel  { background:linear-gradient(135deg,#f87171,#dc2626); }
.bk-result-card h1 { font-size:28px; font-weight:800; color:#1a1a2e; margin-bottom:12px; }
.bk-result-sub { font-size:16px; color:#666; line-height:1.7; margin-bottom:28px; }
.bk-result-details { background:#f8f9ff; border-radius:14px; padding:20px 24px; margin-bottom:20px; text-align:left; }
.bk-rd-row { display:flex; justify-content:space-between; padding:8px 0; border-bottom:1px solid #eef0ff; font-size:14px; color:#555; }
.bk-rd-row:last-child { border-bottom:none; }
.bk-rd-row strong { font-weight:700; color:#1a1a2e; }
.bk-result-note { background:#fffbeb; border:1px solid #fde68a; border-radius:10px; padding:14px 18px; font-size:14px; color:#78350f; margin-bottom:28px; line-height:1.6; text-align:left; }
.bk-result-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* Responsive */
@media (max-width:640px) {
  .bk-step-panel { padding:22px 16px; }
  .bk-slots-grid { grid-template-columns:repeat(3,1fr); gap:8px; }
  .bk-form-grid { grid-template-columns:1fr; }
  .bk-field-full { grid-column:auto; }
  .bk-steps-row .bk-step-dot span { display:none; }
  .bk-cal-grid { padding:8px; gap:4px; }
  .bk-cal-day { font-size:13px; border-radius:8px; }
  .bk-result-card { padding:32px 18px; }
}

/* =========================================================
   MULTI-SELECT DROPDOWN  (join pages — languages)
   ========================================================= */
.join-ms { position:relative; }
.join-ms-trigger {
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  width:100%; min-height:44px;
  border:1.5px solid #e5e7eb; border-radius:10px;
  padding:8px 14px;
  cursor:pointer; background:#fff;
  transition:border-color .2s, box-shadow .2s;
  user-select:none;
}
.join-ms.open .join-ms-trigger,
.join-ms-trigger:focus { border-color:#0057ff; box-shadow:0 0 0 3px rgba(0,87,255,.1); outline:none; }
.join-ms-tags { display:flex; flex-wrap:wrap; gap:5px; flex:1; min-width:0; align-items:center; }
.join-ms-ph  { font-size:14px; color:#9ca3af; }
.join-ms-chip {
  display:inline-flex; align-items:center; gap:4px;
  background:#eff6ff; color:#1d4ed8;
  font-size:12px; font-weight:600;
  padding:3px 9px; border-radius:999px;
}
.join-ms-chip-x { cursor:pointer; opacity:.55; font-style:normal; font-size:14px; line-height:1; }
.join-ms-chip-x:hover { opacity:1; }
.join-ms-arrow { flex-shrink:0; color:#6b7280; transition:transform .2s; }
.join-ms.open .join-ms-arrow { transform:rotate(180deg); }

.join-ms-panel {
  display:none;
  position:absolute; top:calc(100% + 4px); left:0; right:0;
  background:#fff;
  border:1.5px solid #e5e7eb; border-radius:12px;
  box-shadow:0 8px 28px rgba(0,0,0,.12);
  z-index:200; overflow:hidden;
}
.join-ms.open .join-ms-panel { display:block; }
.join-ms-search-wrap { padding:8px 8px 4px; }
.join-ms-search {
  width:100%; border:1.5px solid #e5e7eb; border-radius:8px;
  padding:7px 10px; font-size:13px; font-family:inherit;
  outline:none; transition:border-color .2s;
}
.join-ms-search:focus { border-color:#0057ff; }
.join-ms-list { max-height:200px; overflow-y:auto; padding:4px 6px 8px; }
.join-ms-item {
  display:flex; align-items:center; gap:10px;
  padding:8px 10px; border-radius:8px;
  cursor:pointer; font-size:14px; color:#374151;
  transition:background .12s;
}
.join-ms-item:hover { background:#f0f4ff; }
.join-ms-item input[type=checkbox] { width:15px; height:15px; accent-color:#0057ff; cursor:pointer; flex-shrink:0; }
