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

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --color-bg: #060503;
  --color-orange: #ff5a1f;
  --color-orange-glow: rgba(255, 90, 31, 0.4);
  --color-blue: #2d72ff;
  --color-blue-glow: rgba(45, 114, 255, 0.45);
  --color-text-main: #ffffff;
  --color-text-muted: #9e9e9e;
  --color-text-dim: #6e6e6e;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-main);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Minimalist Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: #262420;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange);
}

/* ==========================================================================
   Permanent Fixed Background Animation (Never Disappears on Scroll)
   ========================================================================== */
#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -2;
  pointer-events: none;
}

/* Warm Atmospheric Radial Glow */
.fixed-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 36%, 
    rgba(255, 95, 30, 0.22) 0%, 
    rgba(240, 60, 10, 0.08) 42%, 
    rgba(6, 5, 3, 0.65) 82%
  );
}

/* ==========================================================================
   Universal UI Elements
   ========================================================================== */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 10px var(--color-orange);
}

.badge-dot-blue {
  background: var(--color-blue);
  box-shadow: 0 0 10px var(--color-blue);
}

.text-italic-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: #fff4ed;
}

/* ==========================================================================
   Full-Width Navigation Bar
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 32px 64px;
  pointer-events: none;
}

.nav-container {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.brand-logo {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  transition: opacity 0.2s ease;
}
.brand-logo:hover {
  opacity: 0.88;
}

/* Center Pill Nav Bar with Frosted Glass */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 38px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.nav-link {
  color: #d6d6d6;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

/* Pill CTA Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-pill:hover {
  transform: translateY(-2px);
}

.btn-pill-white {
  background: #ffffff;
  color: #0b0b0b;
  padding: 7px 7px 7px 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}
.btn-pill-white .arrow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.btn-pill-white:hover .arrow-circle {
  transform: translateX(3px);
}

.btn-pill-orange {
  background: linear-gradient(135deg, #ff6624 0%, #ff4705 100%);
  color: #ffffff;
  padding: 8px 8px 8px 26px;
  box-shadow: 0 6px 28px var(--color-orange-glow);
}
.btn-pill-orange .arrow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.btn-pill-orange:hover .arrow-circle {
  transform: translateX(3px);
}

/* ==========================================================================
   Full-Width Page Content
   ========================================================================== */
.page-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.container {
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
}

/* ==========================================================================
   Section 1: Hero
   ========================================================================== */
.section-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 160px 64px 0;
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 90px;
  width: 100%;
}

.hero-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.hero-eyebrow {
  display: block;
  font-size: 1.45rem;
  font-weight: 600;
  color: #fff2ec;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.hero-title {
  font-size: clamp(3.2rem, 5.6vw, 6.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #ffffff;
  text-shadow: 0 4px 36px rgba(0, 0, 0, 0.75);
}

.hero-statement-block {
  max-width: 380px;
  text-align: left;
  margin-top: 40px;
  background: rgba(14, 14, 14, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.hero-statement-title {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero-statement-desc {
  font-size: 1.02rem;
  line-height: 1.55;
  color: #d6d6d6;
}

/* 4 Capabilities Grid */
.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 1180px;
  margin-bottom: 36px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(14, 14, 14, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.service-num {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: 0.04em;
}

.service-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.015em;
}

/* Trusted Brands Banner */
.brands-bar-wrapper {
  width: 100%;
  margin-top: 50px;
}

.brands-bar {
  width: 100%;
  background: rgba(14, 14, 14, 0.82);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 36px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.brands-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #a8a8a8;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.brands-logos {
  display: flex;
  align-items: center;
  gap: 64px;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ==========================================================================
   Section 2: Behind the Designs
   ========================================================================== */
.section-designs {
  position: relative;
  background: transparent;
  padding: 180px 64px 160px;
}

.designs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 72px;
  gap: 80px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 56px 64px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.designs-header-left {
  flex: 1;
}

.section-tag {
  display: inline-block;
  color: var(--color-orange);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}

.section-title {
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.designs-header-right {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 14px;
}

.designs-lead {
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.44;
  color: #ffffff;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.designs-cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cta-prompt {
  font-size: 0.95rem;
  color: #c8c8c8;
  font-weight: 500;
  line-height: 1.4;
}

/* 3-Column Portfolio Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  width: 100%;
}

.portfolio-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: clamp(520px, 48vw, 680px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 90, 31, 0.45);
}

.card-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.portfolio-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

/* ==========================================================================
   Section 3: Workflow Plan (Design Sprint Timeline)
   ========================================================================== */
.section-workflow {
  position: relative;
  background: transparent;
  padding: 160px 64px 180px;
}

.workflow-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 72px;
  gap: 80px;
}

.workflow-header-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.workflow-title {
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #ffffff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.7);
}

.workflow-header-right {
  max-width: 520px;
  padding-top: 48px;
}

.workflow-desc {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #c4c4c4;
}

/* Interactive Stepped Timeline Matrix */
.workflow-timeline-wrapper {
  background: rgba(12, 12, 14, 0.6);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 64px 64px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
}

.timeline-grid-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-line {
  border-right: 1px dashed rgba(255, 255, 255, 0.12);
  height: 100%;
}
.grid-line:last-child {
  border-right: none;
}

.timeline-nodes-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 5;
  padding: 20px 0 60px;
  min-height: 380px;
}

.timeline-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-col-header {
  margin-bottom: -10px;
}

.col-category-tag {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff8a50;
  background: rgba(255, 90, 31, 0.12);
  border: 1px solid rgba(255, 90, 31, 0.28);
  padding: 5px 14px;
  border-radius: 999px;
  display: inline-block;
}

.col-1 {
  padding-top: 15px;
}
.col-2 {
  padding-top: 85px;
}
.col-3 {
  padding-top: 165px;
}

.timeline-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 18, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  padding: 10px 18px;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  width: fit-content;
  cursor: default;
}

.timeline-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.6);
  box-shadow: 0 12px 30px rgba(255, 90, 31, 0.25);
}

.chip-icon {
  display: flex;
  align-items: center;
  color: var(--color-orange);
}

.chip-days {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.workflow-footer-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 5;
  font-size: 1.05rem;
  color: #c4c4c4;
  line-height: 1.5;
}

.note-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 10px var(--color-blue);
  flex-shrink: 0;
}

/* ==========================================================================
   Dedicated Formal Education Block (Riwayat Pendidikan Formal)
   ========================================================================== */
.education-block-wrapper {
  margin-top: 64px;
  width: 100%;
}

.education-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.pill-badge-blue {
  background: rgba(45, 114, 255, 0.12);
  border-color: rgba(45, 114, 255, 0.3);
}

.education-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.education-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.education-card {
  background: rgba(14, 13, 18, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.education-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.education-card.highlight-edu {
  border-color: rgba(45, 114, 255, 0.35);
  box-shadow: 0 12px 36px rgba(45, 114, 255, 0.12);
}

.education-card.highlight-edu:hover {
  border-color: rgba(45, 114, 255, 0.6);
  box-shadow: 0 20px 50px rgba(45, 114, 255, 0.22);
}

.edu-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.edu-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.highlight-edu .edu-icon-badge {
  background: rgba(45, 114, 255, 0.18);
  border-color: rgba(45, 114, 255, 0.35);
  color: #82b1ff;
}

.edu-period {
  font-size: 0.88rem;
  font-weight: 700;
  color: #a0a0ae;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
}

.edu-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.edu-heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.edu-institution-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.edu-badge-ipk {
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(255, 90, 31, 0.16);
  color: #ff8a50;
  border: 1px solid rgba(255, 90, 31, 0.35);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.edu-badge-level {
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  color: #d6d6e0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.edu-major-text {
  font-size: 1.02rem;
  font-weight: 700;
  color: #e2e2e8;
}

.edu-desc-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #a4a4b0;
}

/* ==========================================================================
   Section 4: Color Palette (Orbital Palette Inspector)
   ========================================================================== */
.section-palette {
  position: relative;
  background: transparent;
  padding: 160px 64px 180px;
}

.palette-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 72px;
}

.palette-title {
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #ffffff;
  max-width: 1100px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.7);
}

.palette-stage {
  background: rgba(12, 12, 14, 0.6);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 80px 72px;
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
}

.palette-ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  pointer-events: none;
}

.donut-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(45, 114, 255, 0.25));
}

.palette-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 160px 220px;
  width: 100%;
  position: relative;
  z-index: 5;
}

.palette-card {
  background: rgba(18, 16, 22, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 26px 32px;
  max-width: 420px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-white {
  justify-self: end;
}
.card-dark {
  justify-self: start;
}
.card-blue {
  justify-self: start;
}
.card-deep {
  justify-self: end;
}

.palette-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.75);
}

.card-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-color-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.015em;
}

.card-dot-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.dot-white {
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}
.dot-dark {
  background: #25212e;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.dot-blue {
  background: var(--color-blue);
  box-shadow: 0 0 14px var(--color-blue);
}
.dot-deep {
  background: #0e0c14;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-color-desc {
  font-size: 0.96rem;
  line-height: 1.52;
  color: #b8b8b8;
  margin-bottom: 22px;
}

.card-specs-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 16px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: #eaeaea;
}

.spec-label {
  color: #888888;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.spec-pct {
  color: #888888;
  font-size: 0.82rem;
}

/* ==========================================================================
   Section 5: Proven Stats & Impact (Reference 1)
   ========================================================================== */
.section-stats {
  position: relative;
  background: transparent;
  padding: 160px 64px 180px;
}

.stats-card-wrapper {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.stats-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a0a0a0;
}

.stats-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 56px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.stat-col {
  display: flex;
  flex-direction: column;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
}

.stat-huge-number {
  font-size: clamp(5rem, 9.2vw, 10rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 0%, #eeeeee 40%, #aaaaaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 32px rgba(0, 0, 0, 0.7);
}

.stat-sub-unit {
  font-size: 0.52em;
  font-weight: 700;
  color: #e0e0e0;
  margin-left: 6px;
}

.stat-description {
  font-size: 1.22rem;
  line-height: 1.58;
  color: #c4c4c4;
  margin-top: 24px;
  max-width: 480px;
}

/* ==========================================================================
   Section 6: Personal Brand Showcase in Two Lanes with Center Image (Reference 2)
   ========================================================================== */
.section-personal-brand {
  position: relative;
  background: transparent;
  padding: 160px 64px 200px;
}

.personal-brand-stage {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  position: relative;
  box-shadow: none;
}

.brand-stage-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 32px;
}

.brand-experience-badge {
  max-width: 380px;
  text-align: right;
  background: rgba(20, 18, 24, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.exp-since {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
}

.exp-bio {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.55;
}

/* Two Lanes Flanking the Center Image */
.two-lanes-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 30px 0 60px;
  position: relative;
}

.name-lane {
  flex: 1;
  display: flex;
  user-select: none;
  max-width: 100%;
  overflow: hidden;
}

.lane-left {
  justify-content: flex-end;
}

.lane-right {
  justify-content: flex-start;
}

.lane-name-text {
  font-size: clamp(3.5rem, 8vw, 10.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #ffffff;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.85);
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Center Image Showcase Card Stack */
.center-card-stack {
  width: clamp(280px, 24vw, 360px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.deck-peek {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
  height: 28px;
  background: rgba(22, 22, 26, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1;
}

.deck-peek-top {
  top: -12px;
  border-radius: 24px 24px 0 0;
}

.deck-peek-bottom {
  bottom: -12px;
  border-radius: 0 0 24px 24px;
}

.card-pill-tag {
  background: rgba(20, 18, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  padding: 10px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, border-color 0.25s ease;
  z-index: 2;
}
.card-pill-tag:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 31, 0.6);
}

.tag-plus {
  color: #4ade80;
  font-weight: 800;
  font-size: 1.1rem;
}

.center-portrait-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  background: #141416;
  z-index: 2;
}

.center-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.center-card-stack:hover .center-portrait-img {
  transform: scale(1.05);
}

/* Bottom Row Social Proof Stack */
.brand-stage-bottom {
  display: flex;
  justify-content: flex-start;
  margin-top: 32px;
}

.social-proof-stack {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(20, 18, 24, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-group {
  display: flex;
  align-items: center;
}

.client-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid #0c0a10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  cursor: default;
  transition: transform 0.2s ease, z-index 0.2s ease;
}
.client-avatar:first-child {
  margin-left: 0;
}
.client-avatar:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 5;
}

.av-1 {
  background: linear-gradient(135deg, #ff5a1f, #ff8a50);
}
.av-2 {
  background: linear-gradient(135deg, #2d72ff, #6ea4ff);
}
.av-3 {
  background: linear-gradient(135deg, #a855f7, #c084fc);
}
.av-4 {
  background: linear-gradient(135deg, #10b981, #34d399);
}
.av-5 {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #1a1720;
}

.proof-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rating-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-number {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
}

.reviews-count {
  font-size: 0.88rem;
  color: #a0a0a0;
  font-weight: 500;
}

/* ==========================================================================
   Section 7: Ready to Grow & Scale Your Company (Contact Inquiry Form)
   ========================================================================== */
.section-contact {
  position: relative;
  background: transparent;
  padding: 140px 64px 80px;
}

.contact-header {
  margin-bottom: 72px;
  width: 100%;
}

.contact-heading-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-title-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

.contact-headline {
  font-size: clamp(3.8rem, 7.5vw, 7.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #ffffff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.7);
}

/* "LET'S TALK" Glassmorphic Badge */
.lets-talk-badge {
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 20px 28px;
  max-width: 280px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.badge-tag {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 6px;
}

.badge-subtext {
  font-size: 0.85rem;
  color: #a8a8a8;
  line-height: 1.45;
}

.contact-title-bottom {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.text-grow {
  font-size: clamp(3.8rem, 7.5vw, 7.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  background: linear-gradient(135deg, #ffffff 0%, #d8d8d8 50%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-scale {
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

/* Form Layout */
.contact-form {
  width: 100%;
  background: rgba(12, 12, 14, 0.6);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 64px 72px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.field-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #dedede;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field-input,
.field-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 12px 0 16px;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.field-input:focus,
.field-select:focus {
  border-bottom-color: var(--color-orange);
  box-shadow: 0 6px 16px rgba(255, 90, 31, 0.15);
}

/* Custom Select Styling */
.select-wrapper {
  position: relative;
  width: 100%;
}

.field-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 32px;
}

.field-select option {
  background: #121212;
  color: #ffffff;
  padding: 12px;
}

.select-arrow {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.25s ease, color 0.25s ease;
}

.field-select:focus + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
  color: var(--color-orange);
}

/* Submit Row */
.form-submit-row {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn-submit {
  padding: 12px 14px 12px 36px;
  font-size: 1.15rem;
}

.form-feedback {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ==========================================================================
   Section 8: Site Footer (Full Agency Architecture)
   ========================================================================== */
.site-footer {
  position: relative;
  background: rgba(10, 9, 14, 0.85);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 64px 30px;
  width: 100%;
  margin-top: 0;
  z-index: 10;
}

.footer-cta-marquee {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-cta-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 800px;
}

.footer-huge-heading {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #ffffff;
}

.footer-cta-subtext {
  font-size: 1.08rem;
  line-height: 1.55;
  color: #a0a0ae;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 36px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-brand {
  max-width: 440px;
}

.footer-brand-logo {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-decoration: none;
}

.footer-brand-bio {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #9e9ea8;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #34d399;
  width: fit-content;
  margin-top: 8px;
}

.footer-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulseGreen 2s infinite ease-in-out;
}

.footer-heading {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu a {
  color: #92929e;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-menu span {
  color: #787884;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-direct-mail {
  color: #ff8a50 !important;
  font-weight: 700 !important;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: #787884;
  gap: 20px;
}

.footer-copy-text strong {
  color: #ffffff;
}

.footer-time-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-time-badge strong {
  color: #ffffff;
}

.footer-back-top-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  font-family: inherit;
}

.footer-back-top-btn:hover {
  background: #ffffff;
  color: #0c0a10;
  transform: translateY(-2px);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
  .header {
    padding: 24px 36px;
  }
  .section-hero {
    padding: 130px 36px 0;
  }
  .section-designs,
  .section-workflow,
  .section-palette,
  .section-stats,
  .section-personal-brand,
  .section-contact {
    padding: 130px 36px 140px;
  }
  .brands-bar {
    padding: 28px 40px;
  }
  .brands-logos {
    gap: 40px;
  }
  .designs-header {
    gap: 40px;
    padding: 44px 40px;
  }
  .workflow-header {
    flex-direction: column;
    gap: 32px;
  }
  .workflow-header-right {
    padding-top: 0;
    max-width: 100%;
  }
  .palette-cards-grid {
    gap: 80px 80px;
  }
  .contact-form {
    padding: 48px 44px;
  }
  .form-grid {
    gap: 48px 48px;
  }
  .two-lanes-container {
    gap: 20px;
  }
}

/* ==========================================================================
   Mobile Menu Button & Drawer Overlay Styles
   ========================================================================== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.menu-bar {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  display: flex;
  justify-content: flex-end;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-container {
  width: min(85vw, 360px);
  height: 100%;
  background: rgba(14, 13, 18, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-container {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
}

.mobile-menu-link {
  color: #c4c4d0;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.2s ease;
  display: block;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.mobile-menu-link.highlight-link {
  color: var(--color-orange);
  background: rgba(255, 90, 31, 0.12);
  border: 1px solid rgba(255, 90, 31, 0.28);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-cta {
  width: 100%;
  justify-content: center;
}

.mobile-quick-contacts {
  font-size: 0.82rem;
  color: #888896;
  text-align: center;
}

.mobile-quick-contacts a {
  color: #c4c4d0;
  text-decoration: none;
}

/* ==========================================================================
   TABLET RESPONSIVE DESIGN (max-width: 900px)
   ========================================================================== */
@media (max-width: 900px) {
  .header {
    padding: 16px 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta-desktop {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .section-hero {
    padding: 100px 24px 0;
    min-height: auto;
    width: 100%;
  }
  .hero-content {
    padding: 0;
    gap: 36px;
    width: 100%;
  }
  .hero-top-row {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .hero-title {
    font-size: clamp(2.4rem, 7.5vw, 3.8rem);
  }
  .hero-statement-block {
    margin-top: 8px;
    max-width: 100%;
    width: 100%;
    padding: 24px;
    border-radius: 20px;
  }
  .hero-statement-title {
    font-size: 1.35rem;
  }
  .hero-statement-desc {
    font-size: 0.98rem;
  }
  .hero-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
  }
  .service-item {
    padding: 14px 16px;
    border-radius: 16px;
  }
  .service-num {
    font-size: 0.85rem;
  }
  .service-label {
    font-size: 0.92rem;
    line-height: 1.35;
  }
  .brands-bar-wrapper {
    margin-top: 32px;
  }
  .brands-bar {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 20px;
    border-radius: 28px;
  }
  .brands-logos {
    flex-wrap: wrap;
    gap: 20px 28px;
  }
  .section-designs,
  .section-workflow,
  .section-palette,
  .section-stats,
  .section-personal-brand,
  .section-contact {
    padding: 80px 24px 90px;
  }
  .designs-header {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
    border-radius: 28px;
    margin-bottom: 40px;
  }
  .section-title,
  .workflow-title,
  .palette-title,
  .stats-title {
    font-size: clamp(2.1rem, 7vw, 3.2rem);
  }
  .designs-lead {
    font-size: 1.15rem;
    line-height: 1.5;
  }
  .designs-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .portfolio-card {
    height: auto;
    aspect-ratio: 16 / 10.5;
    border-radius: 24px;
  }
  .workflow-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
  }
  .workflow-desc {
    font-size: 1rem;
    line-height: 1.55;
  }
  .workflow-timeline-wrapper {
    padding: 32px 22px 28px;
    border-radius: 28px;
  }
  .timeline-grid-lines {
    display: none;
  }
  .timeline-nodes-container {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 10px 0 24px;
  }
  .timeline-col {
    padding-top: 0 !important;
    gap: 12px;
  }
  .timeline-chip {
    padding: 14px 18px;
    border-radius: 16px;
  }
  .education-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .education-card {
    padding: 24px 20px;
    border-radius: 22px;
  }
  .palette-ring-center {
    display: none;
  }
  .palette-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .palette-card {
    justify-self: stretch !important;
    max-width: 100%;
    padding: 32px 24px;
    border-radius: 28px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stats-card-wrapper {
    padding: 32px 24px;
    border-radius: 28px;
  }
  .two-lanes-container {
    flex-direction: column;
    gap: 24px;
    margin: 20px 0 40px;
  }
  .lane-left, .lane-right {
    justify-content: center;
  }
  .lane-name-text {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    text-align: center;
    line-height: 1.05;
  }
  .brand-stage-top, .brand-stage-bottom {
    justify-content: center;
    text-align: center;
  }
  .brand-experience-badge {
    text-align: center;
    padding: 18px 24px;
    border-radius: 18px;
  }
  .center-card-stack {
    width: min(88vw, 320px);
  }
  .deck-peek {
    display: none;
  }
  .contact-title-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .lets-talk-badge {
    max-width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-form {
    padding: 36px 24px;
    border-radius: 28px;
  }
  .form-actions-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .form-actions-bottom .btn-pill {
    width: 100%;
    justify-content: center;
  }
  .site-footer {
    padding: 60px 24px 40px;
  }
  .footer-cta-marquee {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-marquee-wrap .marquee-title {
    font-size: clamp(2rem, 7vw, 3.2rem);
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
}

/* ==========================================================================
   MOBILE SMARTPHONE OPTIMIZATION (max-width: 600px)
   ========================================================================== */
@media (max-width: 600px) {
  .header {
    padding: 12px 16px;
  }
  .brand-logo {
    font-size: 1.35rem;
  }
  .section-hero {
    padding: 85px 16px 0;
    min-height: auto;
    width: 100%;
  }
  .hero-content {
    padding: 0;
    gap: 28px;
    width: 100%;
  }
  .hero-top-row {
    width: 100%;
    gap: 16px;
  }
  .hero-eyebrow {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
  .hero-title {
    font-size: clamp(2.1rem, 9vw, 2.9rem);
    line-height: 1.08;
  }
  .hero-statement-block {
    padding: 18px;
    border-radius: 18px;
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
  }
  .hero-statement-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .hero-statement-desc {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .hero-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }
  .service-item {
    padding: 12px 10px;
    border-radius: 14px;
    gap: 3px;
  }
  .service-num {
    font-size: 0.78rem;
  }
  .service-label {
    font-size: 0.84rem;
    line-height: 1.25;
  }
  .brands-bar {
    padding: 20px 16px;
    border-radius: 22px;
  }
  .brands-label {
    font-size: 0.85rem;
  }
  .brand-item {
    font-size: 0.92rem;
    gap: 8px;
  }
  .section-designs,
  .section-workflow,
  .section-palette,
  .section-stats,
  .section-personal-brand,
  .section-contact {
    padding: 60px 16px 70px;
  }
  .designs-header {
    padding: 24px 16px;
    border-radius: 22px;
  }
  .section-title,
  .workflow-title,
  .palette-title,
  .stats-title {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
    line-height: 1.1;
  }
  .section-tag {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .designs-lead {
    font-size: 1rem;
    line-height: 1.5;
  }
  .portfolio-card {
    border-radius: 20px;
    aspect-ratio: 16 / 11;
  }
  .workflow-timeline-wrapper {
    padding: 24px 14px 20px;
    border-radius: 22px;
  }
  .timeline-chip {
    padding: 12px 14px;
    font-size: 0.84rem;
    border-radius: 14px;
    gap: 10px;
  }
  .chip-label {
    font-size: 0.84rem;
  }
  .chip-days {
    font-size: 0.76rem;
  }
  .education-block-wrapper {
    margin-top: 48px;
  }
  .education-card {
    padding: 22px 18px;
    border-radius: 20px;
    gap: 16px;
  }
  .edu-institution-name {
    font-size: 1.15rem;
  }
  .edu-major-text {
    font-size: 0.92rem;
  }
  .edu-desc-text {
    font-size: 0.86rem;
    line-height: 1.5;
  }
  .palette-card {
    padding: 24px 16px;
    border-radius: 22px;
  }
  .card-color-title {
    font-size: 1.25rem;
  }
  .card-color-desc {
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .card-specs-table {
    font-size: 0.84rem;
  }
  .spec-key {
    width: 90px;
  }
  .stats-card-wrapper {
    padding: 24px 16px;
    border-radius: 22px;
  }
  .stats-main-num {
    font-size: clamp(2.8rem, 13vw, 3.8rem);
  }
  .stats-main-label {
    font-size: 0.95rem;
  }
  .stat-point-item {
    padding: 12px 14px;
    border-radius: 14px;
  }
  .lane-name-text {
    font-size: clamp(2.2rem, 9.5vw, 3.2rem);
  }
  .center-card-stack {
    width: 100%;
    max-width: 280px;
  }
  .center-portrait-card {
    height: 340px;
    border-radius: 24px;
  }
  .contact-form {
    padding: 28px 16px;
    border-radius: 22px;
  }
  .contact-title {
    font-size: clamp(1.8rem, 7.5vw, 2.3rem);
  }
  .form-group label {
    font-size: 0.88rem;
  }
  .form-input {
    font-size: 0.92rem;
    padding: 10px 0;
  }
  .site-footer {
    padding: 44px 16px 28px;
  }
  .footer-links-list a {
    font-size: 0.95rem;
  }
  .footer-bottom-bar {
    font-size: 0.8rem;
    text-align: center;
  }
}

/* Extra Small Phones (max-width: 380px) */
@media (max-width: 380px) {
  .hero-services-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .service-item {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
  }
  .hero-title {
    font-size: 1.95rem;
  }
}
