/* ============================================================
 * BASE + HOME
 * ============================================================ */
:root {
      --r-sm: 10px;
      --r-md: 16px;
      --r-lg: 24px;
      --r-xl: 36px;
      --r-2xl: 48px;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

:root[data-theme="light"] {
      --bg: #F4F7FF;
      --bg-2: #E8EEFF;
      --bg-3: #FFFFFF;
      --fg: #03144E;
      --fg-2: #1C2A5B;
      --muted: #3A4A7F;
      --muted-2: #6070A5;
      --line: rgba(3, 20, 78, 0.08);
      --line-strong: rgba(3, 20, 78, 0.16);
      --card: rgba(255, 255, 255, 0.65);
      --card-solid: #FFFFFF;
      --glass: rgba(255, 255, 255, 0.7);
      --glass-2: rgba(255, 255, 255, 0.4);
      --glass-border: rgba(255, 255, 255, 0.8);
      --accent: #1C61FF;
      --accent-2: #3C8AFF;
      --accent-3: #EAB27A;
      --accent-soft: rgba(28, 97, 255, 0.12);
      --btn-glow: rgba(28, 97, 255, 0.4);
      --btn-hover-bg: linear-gradient(135deg, #1C61FF, #3C8AFF);
      --deco-gradient: linear-gradient(135deg, rgba(28, 97, 255, 0.1), transparent 50%, rgba(234, 178, 122, 0.1));
      --shadow-sm: 0 4px 12px -4px rgba(3, 20, 78, 0.08);
      --shadow-md: 0 12px 32px -8px rgba(3, 20, 78, 0.12);
      --shadow-lg: 0 24px 64px -16px rgba(3, 20, 78, 0.18);
      --shadow-glow: 0 0 80px -10px rgba(28, 97, 255, 0.35);
      --grain-opacity: 0.045;
      color-scheme: light;
    }

:root[data-theme="dark"] {
      --bg: #03081E;
      --bg-2: #080F2E;
      --bg-3: #0E173E;
      --fg: #FFFFFF;
      --fg-2: #E1E8FF;
      --muted: #B0C0E5;
      --muted-2: #8598C5;
      --line: rgba(255, 255, 255, 0.08);
      --line-strong: rgba(255, 255, 255, 0.16);
      --card: rgba(14, 23, 62, 0.4);
      --card-solid: #0E173E;
      --glass: rgba(14, 23, 62, 0.6);
      --glass-2: rgba(14, 23, 62, 0.3);
      --glass-border: rgba(255, 255, 255, 0.08);
      --accent: #3C8AFF;
      --accent-2: #5C9EFF;
      --accent-3: #EAB27A;
      --accent-soft: rgba(60, 138, 255, 0.15);
      --btn-glow: rgba(60, 138, 255, 0.4);
      --btn-hover-bg: linear-gradient(135deg, #3C8AFF, #5C9EFF);
      --deco-gradient: linear-gradient(135deg, rgba(60, 138, 255, 0.1), transparent 50%, rgba(234, 178, 122, 0.15));
      --shadow-sm: 0 4px 12px -4px rgba(0, 0, 0, 0.5);
      --shadow-md: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
      --shadow-lg: 0 24px 64px -16px rgba(0, 0, 0, 0.7);
      --shadow-glow: 0 0 100px -10px rgba(60, 138, 255, 0.45);
      --grain-opacity: 0.07;
      color-scheme: dark;
    }

* {
      box-sizing: border-box;
    }

html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

body {
      margin: 0;
      background: var(--bg);
      color: var(--fg);
      font-family: 'Open Sans', sans-serif;
      font-feature-settings: 'ss01', 'ss02', 'cv11';
      line-height: 1.6;
      overflow-x: hidden;
      transition: background-color 0.7s var(--ease), color 0.7s var(--ease);
    }

::selection {
      background: var(--accent);
      color: #fff;
    }

.eyebrow {
      font-family: 'Geist Mono', monospace;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }

/* Background & Visuals */
    .orb-bg {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

.orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.55;
      transition: opacity 0.7s var(--ease);
    }

[data-theme="dark"] .orb {
      opacity: 0.45;
    }

.orb-1 {
      width: 620px;
      height: 620px;
      background: radial-gradient(circle, var(--accent), transparent 65%);
      top: -180px;
      right: -120px;
      animation: drift1 24s ease-in-out infinite;
    }

.orb-2 {
      width: 540px;
      height: 540px;
      background: radial-gradient(circle, var(--accent-3), transparent 65%);
      top: 40%;
      left: -180px;
      animation: drift2 28s ease-in-out infinite;
    }

.orb-3 {
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, var(--accent-2), transparent 65%);
      bottom: -120px;
      right: 20%;
      animation: drift3 32s ease-in-out infinite;
    }

@keyframes drift1 {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(-60px, 80px) scale(1.08);
      }
    }

@keyframes drift2 {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(80px, -60px) scale(0.95);
      }
    }

@keyframes drift3 {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(-80px, -40px) scale(1.05);
      }
    }

.grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 200;
      opacity: var(--grain-opacity);
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      mix-blend-mode: overlay;
    }

.scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
      z-index: 300;
      transition: width 0.1s linear;
      box-shadow: 0 0 10px var(--accent);
    }

.container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }

/* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      transition: all 0.4s var(--ease);
    }

.header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
      transition: padding 0.4s var(--ease);
    }

.header.scrolled {
      background: color-mix(in srgb, var(--bg) 70%, transparent);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid var(--line);
    }

.header.scrolled .header-inner {
      padding: 14px 0;
    }

.logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--fg);
      font-family: 'Open Sans', sans-serif;
      font-weight: 600;
      font-size: 1.4rem;
      letter-spacing: -0.02em;
    }

.logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: var(--btn-hover-bg);
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 12px -2px var(--btn-glow);
    }

.logo-mark::before {
      content: '';
      position: absolute;
      inset: 4px;
      border-radius: 7px;
      background: var(--bg);
    }

.logo-mark::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 0;
      height: 0;
      border-left: 7px solid var(--accent);
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
    }

.nav-desktop {
      display: flex;
      gap: 4px;
      align-items: center;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 6px;
      border-radius: 100px;
    }

.nav-desktop a {
      padding: 8px 16px;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--fg-2);
      text-decoration: none;
      border-radius: 100px;
      transition: all 0.3s var(--ease);
    }

.nav-desktop a:hover,
    .nav-desktop a.active {
      color: var(--fg);
      background: var(--glass);
    }

.header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

.theme-toggle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--line-strong);
      background: var(--glass);
      backdrop-filter: blur(20px);
      color: var(--fg);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s var(--ease);
    }

.theme-toggle:hover {
      transform: rotate(15deg);
      border-color: var(--accent);
    }

.btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 22px;
      border-radius: 100px;
      font-family: 'Open Sans', sans-serif;
      font-size: 0.875rem;
      font-weight: 500;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.35s var(--ease);
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }

.btn-primary {
      background: var(--btn-hover-bg);
      color: #FFFFFF;
      box-shadow: 0 4px 16px -4px var(--btn-glow);
    }

.btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--fg);
      opacity: 0;
      transition: opacity 0.4s var(--ease);
    }

.btn-primary span {
      position: relative;
      z-index: 1;
    }

.btn-primary:hover::before {
      opacity: 1;
    }

.btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px -8px rgba(3, 20, 78, 0.25);
      color: var(--bg);
    }

.btn-ghost {
      background: var(--glass);
      color: var(--fg);
      border: 1px solid var(--line-strong);
      backdrop-filter: blur(20px);
    }

.btn-ghost:hover {
      background: var(--card-solid);
      transform: translateY(-2px);
      border-color: var(--accent);
    }

.mobile-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--line-strong);
      background: var(--glass);
      color: var(--fg);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

.mobile-menu {
      display: none;
      position: fixed;
      top: 76px;
      left: 16px;
      right: 16px;
      background: var(--card-solid);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 16px;
      z-index: 99;
      box-shadow: var(--shadow-lg);
      opacity: 0;
      transform: translateY(-10px);
      pointer-events: none;
      transition: all 0.3s var(--ease);
    }

.mobile-menu.open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

.mobile-menu a {
      display: block;
      padding: 12px 16px;
      color: var(--fg);
      text-decoration: none;
      font-weight: 500;
      border-radius: var(--r-sm);
    }

.mobile-menu a:hover {
      background: var(--bg-2);
    }

/* Hero */
    .hero {
      padding: 160px 0 85px;
      position: relative;
    }

.hero-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 64px;
      align-items: center;
      margin-bottom: 60px;
    }

.hero-left {
      position: relative;
      z-index: 2;
    }

.hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(20px);
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--fg-2);
      margin-bottom: 32px;
      animation: float-soft 4s ease-in-out infinite;
    }

@keyframes float-soft {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

.pulse-dot {
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      position: relative;
    }

.pulse-dot::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0.5;
      animation: pulse 2s ease-out infinite;
    }

@keyframes pulse {
      0% {
        transform: scale(0.8);
        opacity: 0.5;
      }

      100% {
        transform: scale(2);
        opacity: 0;
      }
    }

.hero-title {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(2.5rem, 5.5vw, 5rem);
      font-weight: 400;
      line-height: 0.98;
      letter-spacing: -0.04em;
      margin: 0 0 28px;
      color: var(--fg);
    }

.hero-title .italic {
      background: var(--btn-hover-bg);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
    }

.hero-title .italic::after {
      content: '';
      position: absolute;
      bottom: 0.05em;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent-3));
      opacity: 0.3;
    }

.hero-sub {
      font-size: clamp(1rem, 1.1vw, 1.1rem);
      color: var(--muted);
      max-width: 480px;
      margin: 0 0 40px;
      line-height: 1.65;
    }

.hero-cta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

.hero-right {
      position: relative;
      z-index: 2;
    }

.video-card {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: var(--r-xl);
      overflow: hidden;
      background: var(--bg-2);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--glass-border);
    }

.video-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--deco-gradient);
      z-index: 2;
      pointer-events: none;
    }

.video-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
    }

.video-card:hover img {
      transform: scale(1.04);
    }

.video-card .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
      z-index: 3;
      pointer-events: none;
    }

.play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 88px;
      height: 88px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px);
      border: 1.5px solid rgba(255, 255, 255, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 5;
      transition: all 0.4s var(--ease);
      animation: float-play 4s ease-in-out infinite;
    }

@keyframes float-play {

      0%,
      100% {
        transform: translate(-50%, -50%);
      }

      50% {
        transform: translate(-50%, -55%);
      }
    }

.play-button::before,
    .play-button::after {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.4);
    }

.play-button::before {
      animation: pulse-ring 2.5s ease-out infinite;
    }

.play-button::after {
      animation: pulse-ring 2.5s ease-out infinite 1.25s;
    }

@keyframes pulse-ring {
      0% {
        transform: scale(1);
        opacity: 1;
      }

      100% {
        transform: scale(1.7);
        opacity: 0;
      }
    }

.play-button i {
      color: #fff;
      font-size: 1.4rem;
      margin-left: 4px;
      transition: transform 0.3s var(--ease);
    }

.play-button:hover {
      transform: translate(-50%, -50%) scale(1.1);
      background: rgba(255, 255, 255, 0.25);
    }

.play-button:hover i {
      transform: scale(1.1);
    }

.video-caption {
      position: absolute;
      bottom: 24px;
      left: 24px;
      z-index: 6;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
    }

.video-caption .dot {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
    }

.video-caption .label {
      font-family: 'Geist Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.9;
    }

.video-card .iframe-wrap {
      position: absolute;
      inset: 0;
      z-index: 4;
    }

.video-card .iframe-wrap iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

.hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 40px;
    }

.stat-pill {
      padding: 18px 20px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(20px);
      border-radius: var(--r-md);
      transition: all 0.4s var(--ease);
    }

.stat-pill:hover {
      transform: translateY(-4px);
      border-color: var(--accent);
      box-shadow: var(--shadow-md);
    }

.stat-pill .num {
      font-family: 'Open Sans', sans-serif;
      font-size: 2rem;
      font-weight: 500;
      letter-spacing: -0.03em;
      color: var(--fg);
      line-height: 1;
    }

.stat-pill .lbl {
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 6px;
      letter-spacing: 0.04em;
    }

/* Marquee */
    .marquee-section {
      padding: 40px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      overflow: hidden;
    }

.marquee-label {
      text-align: center;
      margin-bottom: 28px;
    }

.marquee {
      display: flex;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }

.marquee-track {
      display: flex;
      gap: 64px;
      animation: marquee 40s linear infinite;
      flex-shrink: 0;
      padding-right: 64px;
    }

@keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-100%);
      }
    }

.marquee-item {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--fg-2);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 16px;
      opacity: 0.65;
      transition: opacity 0.3s;
    }

.marquee-item:hover {
      opacity: 1;
    }

.marquee-item i {
      color: var(--accent);
      font-size: 0.4rem;
    }

/* Section Spacing */
    .section {
      padding: 85px 0;
      position: relative;
    }

.section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }

.section-title {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(2.25rem, 5vw, 4rem);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin: 12px 0 0;
      max-width: 720px;
      color: var(--fg);
    }

.section-title .italic {
      color: var(--accent);
    }

.section-desc {
      max-width: 380px;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.65;
    }

/* Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

.service-card {
      padding: 32px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(20px);
      border-radius: var(--r-lg);
      transition: transform 0.2s ease-out, border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
      position: relative;
      overflow: hidden;
      min-height: 280px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transform-style: preserve-3d;
      will-change: transform;
    }

.service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent-3));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s var(--ease);
    }

.service-card:hover::before {
      transform: scaleX(1);
    }

.service-card:hover {
      border-color: var(--accent);
      box-shadow: var(--shadow-md);
    }

.service-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--r-sm);
      background: var(--accent-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.3rem;
      margin-bottom: 24px;
      transition: all 0.4s var(--ease);
      transform: translateZ(30px);
    }

.service-card:hover .service-icon {
      background: var(--accent);
      color: #fff;
      transform: rotate(-8deg) scale(1.05) translateZ(30px);
    }

.service-card h3 {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 10px;
      color: var(--fg);
      transform: translateZ(20px);
    }

.service-card p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.6;
      margin: 0;
      transform: translateZ(10px);
    }

.service-card .num {
      position: absolute;
      top: 28px;
      right: 32px;
      font-family: 'Geist Mono', monospace;
      font-size: 0.75rem;
      color: var(--muted-2);
      letter-spacing: 0.1em;
    }

/* Portfolio */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

.portfolio-item {
      position: relative;
      aspect-ratio: 16/9;
      border-radius: var(--r-lg);
      overflow: hidden;
      background: var(--bg-2);
      cursor: pointer;
      border: 1px solid var(--line);
      transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
      isolation: isolate;
    }

@property --angle {
      syntax: '<angle>';
      initial-value: 0deg;
      inherits: false;
    }

.portfolio-item::before {
      content: '';
      position: absolute;
      inset: -1.5px;
      border-radius: var(--r-lg);
      padding: 1.5px;
      background: conic-gradient(from var(--angle), transparent 0%, var(--accent) 20%, var(--accent-3) 40%, transparent 60%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.4s var(--ease);
      z-index: 10;
      pointer-events: none;
      animation: rotate-border 4s linear infinite;
    }

@keyframes rotate-border {
      to {
        --angle: 360deg;
      }
    }

.portfolio-item:hover::before {
      opacity: 1;
    }

.portfolio-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.25);
    }

.portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
      filter: grayscale(30%) brightness(0.9);
    }

.portfolio-item:hover img {
      transform: scale(1.08);
      filter: grayscale(0%) brightness(0.6);
    }

.portfolio-item .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 30%, rgba(0, 0, 0, 0.9) 100%);
      z-index: 2;
      opacity: 0;
      transition: opacity 0.5s var(--ease);
    }

.portfolio-item:hover .overlay {
      opacity: 1;
    }

.portfolio-item .info {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      z-index: 4;
      color: #fff;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.5s var(--ease) 0.05s;
    }

.portfolio-item:hover .info {
      transform: translateY(0);
      opacity: 1;
    }

.portfolio-item .cat {
      font-family: 'Geist Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-2);
      margin-bottom: 8px;
      display: inline-block;
      padding: 4px 10px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border-radius: 100px;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

.portfolio-item .title {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

.portfolio-item .play-mini {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1);
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 3;
      opacity: 1;
      transition: transform 0.4s var(--ease-spring), background 0.3s var(--ease);
    }

.portfolio-item:hover .play-mini {
      transform: translate(-50%, -50%) scale(1.1);
      background: rgba(255, 255, 255, 0.25);
    }

.portfolio-item .play-mini::before,
    .portfolio-item .play-mini::after {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.5);
      animation: pulse-ring 3s ease-out infinite;
      pointer-events: none;
    }

.portfolio-item .play-mini::after {
      animation-delay: 1.5s;
    }

.portfolio-item .play-mini i {
      color: #fff;
      font-size: 1.1rem;
      margin-left: 3px;
    }

.portfolio-item .iframe-wrap {
      position: absolute;
      inset: 0;
      z-index: 5;
      background: #000;
    }

.portfolio-item .iframe-wrap iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

/* Big marquee text */
    .big-marquee {
      padding: 60px 0;
      overflow: hidden;
      position: relative;
    }

.big-marquee-track {
      display: flex;
      gap: 60px;
      animation: marquee 50s linear infinite;
      white-space: nowrap;
      flex-shrink: 0;
      margin-bottom: 20px;
    }

.big-marquee-track.reverse {
      animation: marquee-reverse 50s linear infinite;
    }

@keyframes marquee-reverse {
      from {
        transform: translateX(-100%);
      }

      to {
        transform: translateX(0);
      }
    }

.big-marquee-item {
      font-family: 'Open Sans', sans-serif;
      font-size: 80px !important;
      letter-spacing: -0.04em;
      color: var(--fg);
      display: flex;
      align-items: center;
      gap: 60px;
    }

.big-marquee-item::after {
      content: '✦';
      color: var(--accent);
      font-size: 0.4em;
    }

/* Process */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      position: relative;
    }

.process-grid::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: var(--line-strong);
      z-index: 0;
    }

.process-grid::after {
      content: '';
      position: absolute;
      top: 32px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
      background-size: 40% 100%;
      background-repeat: no-repeat;
      z-index: 1;
      animation: line-move 4s linear infinite;
    }

@keyframes line-move {
      0% {
        background-position: -40% 0;
      }

      100% {
        background-position: 140% 0;
      }
    }

.process-step {
      position: relative;
      z-index: 1;
      padding: 0 16px;
      text-align: center;
    }

.process-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--line-strong);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Open Sans', sans-serif;
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--fg);
      margin: 0 auto 24px;
      transition: all 0.4s var(--ease);
      position: relative;
      z-index: 2;
    }

.process-step:hover .process-num {
      background: var(--fg);
      color: var(--bg);
      border-color: var(--fg);
      transform: scale(1.05);
    }

.process-step h4 {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.15rem;
      font-weight: 500;
      margin: 0 0 8px;
      color: var(--fg);
    }

.process-step p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.55;
      margin: 0;
    }

/* Stats section */
    .stats-section {
      padding: 40px 0 40px;
    }

.stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      padding: 48px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(24px);
      border-radius: var(--r-xl);
      position: relative;
      overflow: hidden;
    }

.stats-grid::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -10%;
      width: 60%;
      height: 200%;
      background: radial-gradient(ellipse, var(--accent-soft), transparent 60%);
      pointer-events: none;
    }

.stat-block {
      position: relative;
      z-index: 1;
    }

.stat-block .num {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 400;
      letter-spacing: -0.04em;
      line-height: 1;
      color: var(--fg);
      display: flex;
      align-items: baseline;
    }

.stat-block .num .suffix {
      color: var(--accent);
      font-size: 0.5em;
      margin-left: 4px;
    }

.stat-block .lbl {
      margin-top: 12px;
      font-size: 0.85rem;
      color: var(--muted);
      letter-spacing: 0.04em;
    }

/* Pricing */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: start;
    }

.pricing-card {
      padding: 36px 32px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(24px);
      border-radius: var(--r-xl);
      transition: all 0.5s var(--ease);
      position: relative;
      overflow: hidden;
    }

.pricing-card.featured {
      background: var(--card-solid);
      border-color: var(--accent);
      box-shadow: var(--shadow-lg), var(--shadow-glow);
      transform: scale(1.02);
    }

.pricing-card.featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
    }

.pricing-card:hover {
      transform: translateY(-6px);
      border-color: var(--accent);
    }

.pricing-card.featured:hover {
      transform: scale(1.02) translateY(-6px);
    }

.pricing-badge {
      display: inline-block;
      padding: 5px 12px;
      background: var(--accent);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 100px;
      margin-bottom: 20px;
    }

.pricing-card h3 {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.75rem;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 8px;
      color: var(--fg);
    }

.pricing-card .desc {
      font-size: 0.875rem;
      color: var(--muted);
      margin: 0 0 24px;
      min-height: 40px;
    }

.pricing-card .price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 24px;
    }

.pricing-card .price .amount {
      font-family: 'Open Sans', sans-serif;
      font-size: 3rem;
      font-weight: 400;
      letter-spacing: -0.04em;
      color: var(--fg);
      line-height: 1;
    }

.pricing-card .price .period {
      color: var(--muted);
      font-size: 0.9rem;
    }

.pricing-video {
      position: relative;
      aspect-ratio: 16/9;
      border-radius: var(--r-md);
      overflow: hidden;
      margin-bottom: 24px;
      background: var(--bg-2);
    }

.pricing-video img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease);
    }

.pricing-video:hover img {
      transform: scale(1.04);
    }

.pricing-video .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
      z-index: 2;
    }

.pricing-video .play-button {
      width: 64px;
      height: 64px;
    }

.pricing-video .play-button i {
      font-size: 1rem;
    }

.pricing-video .iframe-wrap {
      position: absolute;
      inset: 0;
      z-index: 4;
    }

.pricing-video .iframe-wrap iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

.pricing-features {
      list-style: none;
      padding: 0;
      margin: 0 0 28px;
    }

.pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      font-size: 0.9rem;
      color: var(--fg-2);
      border-bottom: 1px solid var(--line);
    }

.pricing-features li:last-child {
      border-bottom: none;
    }

.pricing-features li i {
      color: var(--accent);
      font-size: 0.85rem;
      margin-top: 4px;
    }

.pricing-features li i.fa-xmark {
      color: var(--muted-2);
    }

.pricing-card .btn {
      width: 100%;
    }

/* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

.testimonial-card {
      padding: 32px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(20px);
      border-radius: var(--r-lg);
      transition: all 0.4s var(--ease);
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

.testimonial-card:hover {
      transform: translateY(-4px);
      border-color: var(--accent);
    }

.testimonial-card .quote-mark {
      font-family: 'Open Sans', sans-serif;
      font-size: 3rem;
      line-height: 0.6;
      color: var(--accent);
    }

.testimonial-card .quote {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 400;
      line-height: 1.5;
      color: var(--fg);
      flex: 1;
    }

.testimonial-card .author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--line);
    }

.testimonial-card .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--btn-hover-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
    }

.testimonial-card .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

.testimonial-card .author-info .name {
      font-weight: 500;
      color: var(--fg);
      font-size: 0.95rem;
    }

.testimonial-card .author-info .role {
      font-size: 0.8rem;
      color: var(--muted);
    }

.testimonial-card .stars {
      color: var(--accent-2);
      font-size: 1.2rem;
      letter-spacing: 3px;
    }

/* CTA */
    .cta-section {
      padding: 85px 0 120px;
    }

.cta-card {
      position: relative;
      padding: 80px 60px;
      border-radius: var(--r-2xl);
      background: #0A0A0A;
      color: #FFFFFF;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
    }

.cta-card::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, var(--accent), transparent 60%);
      opacity: 0.5;
      filter: blur(40px);
    }

.cta-card::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, var(--accent-3), transparent 60%);
      opacity: 0.4;
      filter: blur(40px);
    }

.cta-card .eyebrow {
      color: #FFFFFF;
      position: relative;
      z-index: 1;
    }

.cta-card h2 {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(2.25rem, 5vw, 4rem);
      font-weight: 400;
      letter-spacing: -0.03em;
      line-height: 1.05;
      margin: 16px 0 20px;
      position: relative;
      z-index: 1;
      color: #FFFFFF;
    }

.cta-card h2 .italic {
      background: linear-gradient(135deg, var(--accent-2), var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

.cta-card p {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.7);
      max-width: 540px;
      margin: 0 auto 36px;
      position: relative;
      z-index: 1;
    }

.cta-card .btn {
      position: relative;
      z-index: 1;
    }

.cta-card .btn-primary {
      background: #FFFFFF;
      color: #0A0A0A;
    }

.cta-card .btn-primary::before {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
    }

.cta-card .btn-primary:hover {
      color: #FFFFFF;
    }

.cta-card .btn-ghost {
      background: rgba(255, 255, 255, 0.1);
      color: #FFFFFF;
      border-color: rgba(255, 255, 255, 0.2);
    }

.cta-card .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.15);
    }

/* Footer */
    .footer {
      padding: 85px 0 30px;
      border-top: 1px solid var(--line);
      position: relative;
    }

.footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 48px;
      margin-bottom: 60px;
    }

.footer-brand .logo {
      margin-bottom: 20px;
    }

.footer-brand p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.6;
      margin: 0 0 24px;
      max-width: 320px;
    }

.footer-social {
      display: flex;
      gap: 10px;
    }

.footer-social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--glass);
      border: 1px solid var(--line-strong);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--fg-2);
      text-decoration: none;
      transition: all 0.3s var(--ease);
    }

.footer-social a:hover {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
      transform: translateY(-3px);
    }

.footer-col h5 {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--fg);
      margin: 0 0 24px;
    }

.footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

.footer-col a {
      color: var(--fg-2);
      text-decoration: none;
      font-size: 0.92rem;
      transition: color 0.3s;
    }

.footer-col a:hover {
      color: var(--accent);
    }

.footer-col.contact-info ul li a {
      display: flex;
      align-items: center;
      gap: 12px;
    }

.footer-col.contact-info i {
      color: var(--accent);
      width: 16px;
      text-align: center;
    }

.footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      padding-bottom: 30px;
      border-top: 1px solid var(--line);
      flex-wrap: wrap;
      gap: 16px;
    }

.footer-bottom p {
      font-size: 0.85rem;
      color: var(--muted);
      margin: 0;
    }

.footer-bottom .links {
      display: flex;
      gap: 24px;
    }

.footer-bottom .links a {
      font-size: 0.85rem;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
    }

.footer-bottom .links a:hover {
      color: var(--accent);
    }

.copywrite {
      width: 100%;
      text-align: center;

    }

.hywizlink {
      color: var(--accent);
      font-weight: 600;
    }

.hywizlink:hover {
      color: #000 !important;
    }

.back-to-top {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--fg);
      color: var(--bg);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 90;
      opacity: 0;
      transform: translateY(20px);
      pointer-events: none;
      transition: all 0.4s var(--ease);
      box-shadow: var(--shadow-md);
    }

.back-to-top.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

.back-to-top:hover {
      background: var(--accent);
      transform: translateY(-4px);
    }

/* Visual Elements */
    #particle-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: 0.6;
    }

.visual-deco {
      position: absolute;
      pointer-events: none;
      z-index: 0;
      will-change: transform;
    }

.glass-sphere {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02));
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(12px);
      box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.05);
      animation: float-soft 12s ease-in-out infinite;
    }

.wire-ring {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 1px solid var(--accent);
      border-right-color: transparent;
      border-bottom-color: transparent;
      box-shadow: 0 0 15px var(--accent-soft);
      animation: rotate-360 15s linear infinite, float-soft 8s ease-in-out infinite;
    }

.wire-cube {
      width: 80px;
      height: 80px;
      opacity: 0.6;
      animation: float-soft 10s ease-in-out infinite;
    }

.wire-cube svg {
      width: 100%;
      height: 100%;
      animation: rotate-360 20s linear infinite;
    }

.wire-cube svg path {
      fill: none;
      stroke: var(--accent-3);
      stroke-width: 1;
    }

@keyframes rotate-360 {
      to {
        transform: rotate(360deg);
      }
    }

.sparkle {
      position: absolute;
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 12px var(--accent), 0 0 4px #fff;
      z-index: 1;
      pointer-events: none;
      animation: breathe 4s ease-in-out infinite;
    }

@keyframes breathe {

      0%,
      100% {
        opacity: 0.2;
        transform: scale(0.6);
      }

      50% {
        opacity: 1;
        transform: scale(1.2);
      }
    }

.svg-streak {
      position: absolute;
      bottom: -40px;
      left: 0;
      width: 100%;
      height: 80px;
      pointer-events: none;
      z-index: 0;
    }

.svg-streak path {
      fill: none;
      stroke: var(--accent);
      stroke-width: 1.5;
      stroke-dasharray: 20, 8;
      opacity: 0.3;
      animation: streak-move 5s linear infinite;
    }

@keyframes streak-move {
      to {
        stroke-dashoffset: -100;
      }
    }

[data-reveal] {
      opacity: 0;
      transform: translateY(40px) scale(0.98);
      filter: blur(8px);
      transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform, filter;
    }

[data-reveal].revealed {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

@media (max-width: 1024px) {
      .nav-desktop {
        display: none;
      }

      .mobile-toggle {
        display: flex;
      }

      .mobile-menu {
        display: block;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-right {
        max-width: 800px;
        margin: 0 auto;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }

      .process-grid::before,
      .process-grid::after {
        display: none;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .pricing-card.featured {
        transform: none;
      }

      .pricing-card.featured:hover {
        transform: translateY(-6px);
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px;
      }

      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .visual-deco.hide-mobile {
        display: none;
      }
    }

@media (max-width: 640px) {
      .container {
        padding: 0 16px;
      }

      .section {
        padding: 70px 0;
      }

      .hero {
        padding: 120px 0 70px;
      }

      .stats-section {
      padding: 40px 0 40px;
    }

      .cta-section {
        padding: 70px 0 100px;
      }

      .footer {
        padding: 60px 0 30px;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .portfolio-grid {
        grid-template-columns: 1fr;
      }

      .process-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .hero-stats {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .cta-card {
        padding: 56px 28px;
      }

      .copywrite {
        padding-bottom: 20px !important;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .header-actions .btn-primary {
        display: none;
      }

      .hero-cta {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-cta .btn {
        width: 100%;
      }

      /* FIX 1: Hero Video Play Icon Size on Mobile */
      .play-button {
        width: 48px !important;
        height: 48px !important;
      }

      .play-button i {
        font-size: 1rem;
      }

      .hero-right .video-card {
        border-radius: 17px !important;
      }

      /* FIX 2: Big Marquee Size, Gap, and Speed on Mobile */
      .big-marquee-item {
        font-size: 28px !important;
        gap: 15px !important;
      }

      .big-marquee-track {
        gap: 15px !important;
        animation: marquee 10s linear infinite !important;
      }

      .big-marquee-track.reverse {
        animation: marquee-reverse 10s linear infinite !important;
      }

      .big-marquee-item::after {
        font-size: 1em !important;
      }

      .big-marquee {
        padding: 0px;

      }

      .visual-deco {
        display: none;
      }
    }

@media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }

      .orb {
        display: none;
      }

      #particle-canvas {
        display: none;
      }
    }

a:focus-visible,
    button:focus-visible,
    input:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
      border-radius: 4px;
    }

/* ============================================================
 * ABOUT
 * ============================================================ */
/* Background & Visuals (Matching Home) */
    .orb-bg {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

/* Page Hero - Centered like Contact Page */
    .page-hero {
      padding: 160px 0 85px;
      position: relative;
      text-align: center;
    }

.page-hero-title {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(2.5rem, 6vw, 5.5rem);
      font-weight: 400;
      line-height: 0.98;
      letter-spacing: -0.04em;
      margin: 0 0 28px;
      color: var(--fg);
    }

.page-hero-title .italic {
      background: var(--btn-hover-bg);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
    }

.page-hero-sub {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 620px;
      margin: 0 auto 40px;
      line-height: 1.65;
    }

/* Sections */
    .section {
      padding: 85px 0;
      position: relative;
    }

/* Mission, Vision, History Cards */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

.value-card {
      padding: 40px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(20px);
      border-radius: var(--r-lg);
      transition: all 0.4s var(--ease);
      position: relative;
      overflow: hidden;
    }

.value-card:hover {
      transform: translateY(-6px);
      border-color: var(--accent);
      box-shadow: var(--shadow-md);
    }

.value-icon {
      width: 56px;
      height: 56px;
      border-radius: var(--r-sm);
      background: var(--accent-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.5rem;
      margin-bottom: 24px;
      transition: all 0.4s var(--ease);
    }

.value-card:hover .value-icon {
      background: var(--accent);
      color: #fff;
      transform: rotate(-8deg) scale(1.05);
    }

.value-card h4 {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.5rem;
      font-weight: 500;
      margin: 0 0 12px;
      color: var(--fg);
    }

.value-card p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
      margin: 0;
    }

/* Advantages (Why Us) */
    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

.advantage-card {
      padding: 32px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(20px);
      border-radius: var(--r-lg);
      transition: all 0.4s var(--ease);
      position: relative;
      overflow: hidden;
      min-height: 280px;
      display: flex;
      flex-direction: column;
    }

.advantage-card:hover {
      transform: translateY(-6px);
      border-color: var(--accent);
      box-shadow: var(--shadow-md);
    }

.advantage-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--r-sm);
      background: var(--accent-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.3rem;
      margin-bottom: 24px;
      transition: all 0.4s var(--ease);
    }

.advantage-card:hover .advantage-icon {
      background: var(--accent);
      color: #fff;
      transform: rotate(-8deg) scale(1.05);
    }

.advantage-card h4 {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.35rem;
      font-weight: 500;
      margin: 0 0 10px;
      color: var(--fg);
    }

.advantage-card p {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
    }

/* Workflow / Process */
    .workflow-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      position: relative;
    }

.workflow-grid::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: var(--line-strong);
      z-index: 0;
      pointer-events: none;
    }

.workflow-grid::after {
      content: '';
      position: absolute;
      top: 32px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
      background-size: 40% 100%;
      background-repeat: no-repeat;
      z-index: 0;
      pointer-events: none;
      animation: line-move 4s linear infinite;
    }

.workflow-step {
      position: relative;
      z-index: 1;
      padding: 0 16px;
      text-align: center;
    }

.workflow-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--line-strong);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Open Sans', sans-serif;
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--fg);
      margin: 0 auto 24px;
      transition: all 0.4s var(--ease);
      position: relative;
      z-index: 2;
    }

.workflow-step:hover .workflow-num {
      background: var(--fg);
      color: var(--bg);
      border-color: var(--fg);
      transform: scale(1.05);
    }

.workflow-step h4 {
      font-family: 'Open Sans', sans-serif;
      font-size: 1.3rem;
      font-weight: 500;
      margin: 0 0 10px;
      color: var(--fg);
    }

.workflow-step p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.6;
      margin: 0;
      max-width: 280px;
      margin-left: auto;
      margin-right: auto;
    }

.work-process-s {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

/* Stats / Trust */
    .stats-section {
      padding: 40px 0 40px;
    }

.stat-block {
      position: relative;
      z-index: 1;
      text-align: center;
    }

.stat-block .num {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 400;
      letter-spacing: -0.04em;
      line-height: 1;
      color: var(--fg);
      display: flex;
      align-items: baseline;
      justify-content: center;
    }

.trust-badges {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

.trust-badge {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--fg-2);
      font-weight: 500;
    }

.trust-badge i {
      color: var(--accent-2);
      font-size: 1.5rem;
    }

/* CTA */
    .cta-section {
      padding: 40px 0 120px;
    }

@media (max-width: 1024px) {
      .nav-desktop {
        display: none;
      }

      .mobile-toggle {
        display: flex;
      }

      .mobile-menu {
        display: block;
      }

      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .workflow-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .workflow-grid::before {
        display: none;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .visual-deco.hide-mobile {
        display: none;
      }
    }

@media (max-width: 640px) {
      .container {
        padding: 0 18px;
      }

      .section {
        padding: 70px 0;
      }

      .page-hero {
        padding: 120px 0 70px;
      }

      .values-grid {
        grid-template-columns: 1fr;
      }

      .advantages-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .cta-card {
        padding: 56px 28px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .copywrite {
        padding-bottom: 20px !important;
      }

      .header-actions .btn-primary {
        display: none;
      }

      .visual-deco {
        display: none;
      }
    }

/* ============================================================
 * CONTACT
 * ============================================================ */
:root[data-theme="light"] {
  --bg: #F4F7FF; --bg-2: #E8EEFF; --bg-3: #FFFFFF;
  --fg: #03144E; --fg-2: #1C2A5B; --muted: #3A4A7F; --muted-2: #6070A5;
  --line: rgba(3,20,78,0.08); --line-strong: rgba(3,20,78,0.16);
  --card: rgba(255,255,255,0.65); --card-solid: #FFFFFF;
  --glass: rgba(255,255,255,0.7); --glass-2: rgba(255,255,255,0.4); --glass-border: rgba(255,255,255,0.8);
  --accent: #1C61FF; --accent-2: #3C8AFF; --accent-3: #EAB27A; --accent-soft: rgba(28,97,255,0.12); --btn-glow: rgba(28,97,255,0.4); --btn-hover-bg: linear-gradient(135deg, #1C61FF, #3C8AFF); --deco-gradient: linear-gradient(135deg, rgba(28,97,255,0.1), transparent 50%, rgba(234,178,122,0.1));
  --shadow-sm: 0 4px 12px -4px rgba(3,20,78,0.08); --shadow-md: 0 12px 32px -8px rgba(3,20,78,0.12);
  --shadow-lg: 0 24px 64px -16px rgba(3,20,78,0.18); --shadow-glow: 0 0 80px -10px rgba(28,97,255,0.35);
  --grain-opacity: 0.045; color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #03081E; --bg-2: #080F2E; --bg-3: #0E173E;
  --fg: #FFFFFF; --fg-2: #E1E8FF; --muted: #B0C0E5; --muted-2: #8598C5;
  --line: rgba(255,255,255,0.08); --line-strong: rgba(255,255,255,0.16);
  --card: rgba(14,23,62,0.4); --card-solid: #0E173E;
  --glass: rgba(14,23,62,0.6); --glass-2: rgba(14,23,62,0.3); --glass-border: rgba(255,255,255,0.08);
  --accent: #3C8AFF; --accent-2: #5C9EFF; --accent-3: #EAB27A; --accent-soft: rgba(60,138,255,0.15); --btn-glow: rgba(60,138,255,0.4); --btn-hover-bg: linear-gradient(135deg, #3C8AFF, #5C9EFF); --deco-gradient: linear-gradient(135deg, rgba(60,138,255,0.1), transparent 50%, rgba(234,178,122,0.15));
  --shadow-sm: 0 4px 12px -4px rgba(0,0,0,0.5); --shadow-md: 0 12px 32px -8px rgba(0,0,0,0.6);
  --shadow-lg: 0 24px 64px -16px rgba(0,0,0,0.7); --shadow-glow: 0 0 100px -10px rgba(60,138,255,0.45);
  --grain-opacity: 0.07; color-scheme: dark;
}

@keyframes drift1 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px, 80px) scale(1.08); } }

@keyframes drift2 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px, -60px) scale(0.95); } }

@keyframes drift3 { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-80px, -40px) scale(1.05); } }

.logo-mark { width: 32px; height: 32px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-3)); position: relative; overflow: hidden; box-shadow: 0 4px 12px -2px var(--btn-glow); }

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -8px rgba(3, 20, 78, 0.25); color: var(--bg); }

/* Page Hero */
.page-hero { padding: 160px 0 85px; position: relative; text-align: center; }

/* Contact Grid */
.contact-section { padding: 0 0 85px; }

.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }

.contact-form-card { padding: 40px; background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-radius: var(--r-xl); box-shadow: var(--shadow-md); }

.contact-form-card h3 { font-family: 'Open Sans', sans-serif; font-size: 1.75rem; font-weight: 500; margin: 0 0 8px; color: var(--fg); }

.contact-form-card p { color: var(--muted); margin: 0 0 32px; font-size: 0.95rem; }

.form-group { margin-bottom: 20px; }

.form-group label { display: block; margin-bottom: 8px; font-size: 0.85rem; color: var(--fg-2); font-weight: 500; }

.form-control { width: 100%; padding: 14px 18px; background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: var(--r-md); color: var(--fg); font-family: 'Open Sans', sans-serif; font-size: 1rem; transition: all 0.3s var(--ease); }

.form-control:focus { outline: none; border-color: var(--accent); background: var(--card-solid); box-shadow: 0 0 0 3px var(--accent-soft); }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-info-stack { display: flex; flex-direction: column; gap: 20px; }

.info-card { padding: 28px; background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(20px); border-radius: var(--r-lg); transition: all 0.3s var(--ease); }

.info-card:hover { border-color: var(--accent); box-shadow: 0 12px 32px -8px var(--btn-glow); background: var(--card-solid); }

.info-card i { font-size: 1.5rem; color: var(--accent); margin-bottom: 16px; display: block; }

.info-card h4 { font-family: 'Open Sans', sans-serif; font-size: 1.2rem; font-weight: 500; margin: 0 0 8px; color: var(--fg); }

.info-card p { color: var(--muted); margin: 0; font-size: 0.95rem; line-height: 1.5; }

.info-card a { color: var(--fg-2); text-decoration: none; transition: color 0.3s; }

.info-card a:hover { color: var(--accent); }

/* FAQ */
.faq-section { padding: 85px 0; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.faq-item { padding: 28px; background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(20px); border-radius: var(--r-lg); transition: all 0.3s var(--ease); }

.faq-item:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }

.faq-item h4 { font-family: 'Open Sans', sans-serif; font-size: 1.2rem; font-weight: 500; margin: 0 0 12px; color: var(--fg); }

.faq-item p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* CTA */
.cta-section { padding: 0 0 120px; }

.cta-card { position: relative; padding: 80px 60px; border-radius: var(--r-2xl); background: #0A0A0A; color: #FFFFFF; overflow: hidden; text-align: center; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5); }

.cta-card p { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 36px; position: relative; z-index: 1; }

.glass-sphere { width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), rgba(255,255,255,0.02)); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); box-shadow: 0 20px 60px -10px rgba(0,0,0,0.1), inset 0 0 20px rgba(255,255,255,0.05); animation: float-soft 12s ease-in-out infinite; }

/* Toast */
#toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--fg); color: var(--bg); padding: 14px 24px; border-radius: 100px; font-size: 0.875rem; z-index: 300; opacity: 0; pointer-events: none; transition: all 0.4s var(--ease); box-shadow: var(--shadow-lg); }

@media (max-width: 1024px) {
  .nav-desktop { display: none; } .mobile-toggle { display: flex; } .mobile-menu { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .visual-deco.hide-mobile { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; } .section { padding: 70px 0; } .page-hero { padding: 120px 0 70px; }
  .footer-grid { grid-template-columns: 1fr; } .cta-card { padding: 56px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .copywrite { padding-bottom: 20px !important; }
  .header-actions .btn-primary { display: none; }
  .contact-form-card { padding: 28px; }
  .visual-deco { display: none; }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
 * BLOG
 * ============================================================ */
/* Blog Grid */
.blog-section { padding: 0 0 85px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-card { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(20px); border-radius: var(--r-lg); overflow: hidden; transition: all 0.4s var(--ease); display: flex; flex-direction: column; }

.blog-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow-md); }

.blog-image { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-2); }

.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }

.blog-card:hover .blog-image img { transform: scale(1.05); }

.blog-content { padding: 24px; display: flex; flex-direction: column; flex: 1; }

.blog-meta { display: flex; gap: 12px; font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; flex-wrap: wrap; }

.blog-meta span { display: flex; align-items: center; gap: 4px; }

.blog-meta i { color: var(--accent); font-size: 0.7rem; }

.blog-card h3 { font-family: 'Open Sans', sans-serif; font-size: 1.4rem; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 12px; color: var(--fg); line-height: 1.2; }

.blog-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin: 0 0 20px; flex: 1; }

.blog-card .btn { align-self: flex-start; padding: 8px 16px; font-size: 0.8rem; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; } .mobile-toggle { display: flex; } .mobile-menu { display: block; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .visual-deco.hide-mobile { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; } .section { padding: 70px 0; } .page-hero { padding: 120px 0 70px; }
  .blog-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } .cta-card { padding: 56px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .copywrite { padding-bottom: 20px !important; }
  .header-actions .btn-primary { display: none; }
  .visual-deco { display: none; }
}

/* ============================================================
 * BLOG-POST
 * ============================================================ */
.container-sm { max-width: 800px; }

/* Page Hero */
.page-hero { padding: 160px 0 40px; position: relative; text-align: center; }

.page-hero-title { font-family: 'Open Sans', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; line-height: 1.05; letter-spacing: -0.04em; margin: 0 0 28px; color: var(--fg); }

.page-hero-meta { display: flex; justify-content: center; gap: 20px; color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; flex-wrap: wrap; }

.page-hero-meta span { display: flex; align-items: center; gap: 6px; }

.page-hero-meta i { color: var(--accent); font-size: 0.8rem; }

/* Featured Image (After Hero) */
.featured-image-wrap { padding: 0 0 60px; }

.featured-image { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-lg); border: 1px solid var(--glass-border); max-width: 1000px; margin: 0 auto; }

.featured-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Article Body */
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Article Body */
.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--fg-2);
}

.article-body h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--fg);
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}

.article-body h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
  margin: 32px 0 12px;
}

.article-body p {
  margin: 0 0 24px;
}

.article-body strong {
  color: var(--fg);
  font-weight: 600;
}

.article-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.article-body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.article-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--glass);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--fg);
}

.article-footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  color: var(--fg);
}

.author-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.share-links {
  display: flex;
  gap: 10px;
}

.share-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-2);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.share-links a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; } .mobile-toggle { display: flex; } .mobile-menu { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .visual-deco.hide-mobile { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; } .section { padding: 70px 0; } .page-hero { padding: 120px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; } .cta-card { padding: 56px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .copywrite { padding-bottom: 20px !important; }
  .header-actions .btn-primary { display: none; }
  .article-footer { flex-direction: column; text-align: center; }
  .visual-deco { display: none; }
}

/* ============================================================
 * LUMORA WP THEME ADDITIONS
 * Additive styles for owner-editable features not present in the
 * static build (dropdowns, uploaded logo, pagination). The default
 * seeded design uses none of these, so parity is unchanged.
 * ============================================================ */

/* Uploaded logo image (replaces the mark + wordmark when set) */
.logo .logo-img { display: inline-flex; align-items: center; }
.logo .logo-img-el { height: 34px; width: auto; display: block; }

/* Header nav dropdown (one level) — only appears if an owner adds children */
.nav-desktop .nav-dropdown { position: relative; display: inline-flex; }
.nav-desktop .nav-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-desktop .nav-caret { font-size: 0.6rem; transition: transform 0.3s var(--ease); }
.nav-desktop .nav-dropdown:hover .nav-caret { transform: rotate(180deg); }
.nav-desktop .nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--card-solid); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 8px; min-width: 220px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 2px; opacity: 0; pointer-events: none;
  transition: all 0.3s var(--ease); z-index: 120;
}
.nav-desktop .nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-desktop .nav-dropdown-menu a { display: block; padding: 10px 14px; border-radius: var(--r-sm); white-space: nowrap; background: transparent; }
.nav-desktop .nav-dropdown-menu a:hover { background: var(--bg-2); }

/* Blog pagination (archives / posts index) */
.pagination { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px;
  border-radius: 100px; border: 1px solid var(--line-strong); background: var(--glass); color: var(--fg-2);
  text-decoration: none; font-size: 0.9rem; transition: all 0.3s var(--ease);
}
.pagination .page-numbers:hover, .pagination .page-numbers.current { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* Icon field rendered as an uploaded image fallback */
.service-icon .lumora-icon-img, .value-icon .lumora-icon-img, .advantage-icon .lumora-icon-img, .info-card .lumora-icon-img { width: 24px; height: 24px; object-fit: contain; }

/* WooCommerce wrapper spacing under the fixed header */
.lumora-woo-wrap { padding-top: 150px; }

/* ============================================================
 * SITE CUSTOMIZATIONS (post-conversion tuning)
 * A wider, consistent content width used by the header, every
 * section and the footer so edges align top-to-bottom on every
 * page; a refined footer copyright line; a two-line hero headline.
 * ============================================================ */
#toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--fg); color: var(--bg); padding: 14px 24px; border-radius: 100px; font-size: 0.875rem; z-index: 300; opacity: 0; pointer-events: none; transition: all 0.4s var(--ease); box-shadow: var(--shadow-lg); }

@media (max-width: 1024px) {
  .nav-desktop { display: none; } .mobile-toggle { display: flex; } .mobile-menu { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .visual-deco.hide-mobile { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; } .section { padding: 70px 0; } .page-hero { padding: 120px 0 70px; }
  .footer-grid { grid-template-columns: 1fr; } .cta-card { padding: 56px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .copywrite { padding-bottom: 20px !important; }
  .header-actions .btn-primary { display: none; }
  .contact-form-card { padding: 28px; }
  .visual-deco { display: none; }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
 * BLOG
 * ============================================================ */
/* Blog Grid */
.blog-section { padding: 0 0 85px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-card { background: var(--glass); border: 1px solid var(--glass-border); backdrop-filter: blur(20px); border-radius: var(--r-lg); overflow: hidden; transition: all 0.4s var(--ease); display: flex; flex-direction: column; }

.blog-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow-md); }

.blog-image { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-2); }

.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }

.blog-card:hover .blog-image img { transform: scale(1.05); }

.blog-content { padding: 24px; display: flex; flex-direction: column; flex: 1; }

.blog-meta { display: flex; gap: 12px; font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; flex-wrap: wrap; }

.blog-meta span { display: flex; align-items: center; gap: 4px; }

.blog-meta i { color: var(--accent); font-size: 0.7rem; }

.blog-card h3 { font-family: 'Open Sans', sans-serif; font-size: 1.4rem; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 12px; color: var(--fg); line-height: 1.2; }

.blog-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin: 0 0 20px; flex: 1; }

.blog-card .btn { align-self: flex-start; padding: 8px 16px; font-size: 0.8rem; }

@media (max-width: 1024px) {
  .nav-desktop { display: none; } .mobile-toggle { display: flex; } .mobile-menu { display: block; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .visual-deco.hide-mobile { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; } .section { padding: 70px 0; } .page-hero { padding: 120px 0 70px; }
  .blog-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } .cta-card { padding: 56px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .copywrite { padding-bottom: 20px !important; }
  .header-actions .btn-primary { display: none; }
  .visual-deco { display: none; }
}

/* ============================================================
 * BLOG-POST
 * ============================================================ */
.container-sm { max-width: 800px; }

/* Page Hero */
.page-hero { padding: 160px 0 40px; position: relative; text-align: center; }

.page-hero-title { font-family: 'Open Sans', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; line-height: 1.05; letter-spacing: -0.04em; margin: 0 0 28px; color: var(--fg); }

.page-hero-meta { display: flex; justify-content: center; gap: 20px; color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; flex-wrap: wrap; }

.page-hero-meta span { display: flex; align-items: center; gap: 6px; }

.page-hero-meta i { color: var(--accent); font-size: 0.8rem; }

/* Featured Image (After Hero) */
.featured-image-wrap { padding: 0 0 60px; }

.featured-image { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-lg); border: 1px solid var(--glass-border); max-width: 1000px; margin: 0 auto; }

.featured-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Article Body */
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Article Body */
.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--fg-2);
}

.article-body h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--fg);
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}

.article-body h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
  margin: 32px 0 12px;
}

.article-body p {
  margin: 0 0 24px;
}

.article-body strong {
  color: var(--fg);
  font-weight: 600;
}

.article-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.article-body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.article-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--glass);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--fg);
}

.article-footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  color: var(--fg);
}

.author-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.share-links {
  display: flex;
  gap: 10px;
}

.share-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-2);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.share-links a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; } .mobile-toggle { display: flex; } .mobile-menu { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .visual-deco.hide-mobile { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; } .section { padding: 70px 0; } .page-hero { padding: 120px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; } .cta-card { padding: 56px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .copywrite { padding-bottom: 20px !important; }
  .header-actions .btn-primary { display: none; }
  .article-footer { flex-direction: column; text-align: center; }
  .visual-deco { display: none; }
}

/* ============================================================
 * LUMORA WP THEME ADDITIONS
 * Additive styles for owner-editable features not present in the
 * static build (dropdowns, uploaded logo, pagination). The default
 * seeded design uses none of these, so parity is unchanged.
 * ============================================================ */

/* Uploaded logo image (replaces the mark + wordmark when set) */
.logo .logo-img { display: inline-flex; align-items: center; }
.logo .logo-img-el { height: 34px; width: auto; display: block; }

/* Header nav dropdown (one level) — only appears if an owner adds children */
.nav-desktop .nav-dropdown { position: relative; display: inline-flex; }
.nav-desktop .nav-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-desktop .nav-caret { font-size: 0.6rem; transition: transform 0.3s var(--ease); }
.nav-desktop .nav-dropdown:hover .nav-caret { transform: rotate(180deg); }
.nav-desktop .nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--card-solid); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 8px; min-width: 220px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 2px; opacity: 0; pointer-events: none;
  transition: all 0.3s var(--ease); z-index: 120;
}
.nav-desktop .nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-desktop .nav-dropdown-menu a { display: block; padding: 10px 14px; border-radius: var(--r-sm); white-space: nowrap; background: transparent; }
.nav-desktop .nav-dropdown-menu a:hover { background: var(--bg-2); }

/* Blog pagination (archives / posts index) */
.pagination { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px;
  border-radius: 100px; border: 1px solid var(--line-strong); background: var(--glass); color: var(--fg-2);
  text-decoration: none; font-size: 0.9rem; transition: all 0.3s var(--ease);
}
.pagination .page-numbers:hover, .pagination .page-numbers.current { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* Icon field rendered as an uploaded image fallback */
.service-icon .lumora-icon-img, .value-icon .lumora-icon-img, .advantage-icon .lumora-icon-img, .info-card .lumora-icon-img { width: 24px; height: 24px; object-fit: contain; }

/* WooCommerce wrapper spacing under the fixed header */
.lumora-woo-wrap { padding-top: 150px; }

/* ============================================================
 * SITE CUSTOMIZATIONS (post-conversion tuning)
 * A wider, consistent content width used by the header, every
 * section and the footer so edges align top-to-bottom on every
 * page; a refined footer copyright line; a two-line hero headline.
 * ============================================================ */
.container { max-width: 1360px; }
/* Blog-post / legal keep a comfortable centered reading column.
   Declared after .container so it still wins for .container-sm. */
.container-sm { max-width: 900px; }
.copywrite { font-size: 0.9rem; font-weight: 500; color: var(--muted); margin: 0; line-height: 1.6; }
@media (min-width: 1025px) {
  .hero-grid { grid-template-columns: 1.12fr 1fr; }
}
.hero-title { font-size: clamp(2.5rem, 4.4vw, 3.75rem); }


/* ============================================================
 * LOGO LIGHT / DARK MODE SWITCHER
 * ============================================================ */
html[data-theme="light"] .logo-img-light {
  display: inline-block !important;
}
html[data-theme="light"] .logo-img-dark {
  display: none !important;
}
html[data-theme="dark"] .logo-img-light {
  display: none !important;
}
html[data-theme="dark"] .logo-img-dark {
  display: inline-block !important;
}
.logo {
  min-width: 0;
  flex-shrink: 1;
}
.logo img {
  height: 32px;
  width: auto;
  max-width: 100%;
  vertical-align: middle;
  display: block;
  transition: height 0.3s var(--ease);
}
@media (max-width: 768px) {
  .logo img {
    height: 30px;
    max-width: 200px;
  }
  .header-actions {
    gap: 8px;
    flex-shrink: 0;
  }
}
@media (max-width: 480px) {
  .logo img {
    height: 26px;
    max-width: 170px;
  }
  .header-inner {
    gap: 8px;
  }
  .header-actions {
    gap: 6px;
    flex-shrink: 0;
  }
  .theme-toggle, .mobile-toggle {
    width: 36px;
    height: 36px;
  }
}

/* ==========================================================================
   WhatsApp Floating Widget
   ========================================================================== */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-widget:hover {
    transform: scale(1.08);
}

.whatsapp-icon-box {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse-glow-green 2s infinite;
    transition: transform var(--transition-fast, 0.2s ease);
}

.whatsapp-badge {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--card, #12141a);
    color: var(--fg, #ffffff);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-widget:hover .whatsapp-badge {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
}

@keyframes pulse-glow-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 640px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
    .whatsapp-badge {
        display: none;
    }
}
/* ==========================================================================
   Phone Floating Widget
   ========================================================================== */
.phone-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.phone-widget:hover {
    transform: scale(1.08);
}

.phone-icon-box {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1C61FF;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(28, 97, 255, 0.4);
    animation: pulse-glow-blue 2s infinite;
    transition: transform var(--transition-fast, 0.2s ease);
}

.phone-badge {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--card, #12141a);
    color: var(--fg, #ffffff);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.phone-widget:hover .phone-badge {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

@keyframes pulse-glow-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(28, 97, 255, 0.45);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(28, 97, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(28, 97, 255, 0);
    }
}

@media (max-width: 640px) {
    .phone-widget {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .phone-badge {
        display: none;
    }
}




/* Workflow title one-line rule */
.work-process-s .section-title {
  max-width: 1050px !important;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Standard general heading typography for page-hero-title matching hero-title */
.page-hero-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2.5rem, 4.4vw, 3.75rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  color: var(--fg);
}

.page-hero-title .italic {
  background: var(--btn-hover-bg);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.page-hero-title .italic::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  opacity: 0.3;
}


/* Clickable Contact Info Cards (Static with Border & Glow on hover) */
a.info-card,
.info-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

a.info-card:hover,
.info-card-link:hover,
.info-card:hover {
  transform: none !important;
  border-color: var(--accent);
  background: var(--card-solid);
  box-shadow: 0 12px 32px -8px var(--btn-glow);
}

a.info-card .info-card-icon,
a.info-card i,
.info-card i {
  transform: none !important;
}

.info-card .info-val {
  display: inline-block;
  margin-top: 8px;
  font-weight: 500;
  color: var(--fg);
  font-size: 0.95rem;
}

/* ============================================================
 * FIXES: TYPOGRAPHY REFINEMENT, MOBILE LOGO, & SHOWREEL ACCENTS
 * ============================================================ */
.hero-title {
  font-family: " Open Sans\, sans-serif;
 font-size: clamp(2rem, 4.2vw, 3.75rem);
 font-weight: 400;
 line-height: 1.12;
 letter-spacing: -0.03em;
 margin: 0 0 28px;
 color: var(--fg);
 word-break: break-word;
}

.page-hero-title {
 font-family: \Open Sans\, sans-serif;
 font-size: clamp(2rem, 4.2vw, 3.75rem);
 font-weight: 400;
 line-height: 1.12;
 letter-spacing: -0.03em;
 margin: 0 0 28px;
 color: var(--fg);
 word-break: break-word;
}

@media (max-width: 768px) {
 .hero-title,
 .page-hero-title {
 font-size: clamp(1.85rem, 6vw, 2.5rem);
 line-height: 1.15;
 margin-bottom: 20px;
 }
}

@media (max-width: 480px) {
 .hero-title,
 .page-hero-title {
 font-size: clamp(1.65rem, 7.5vw, 2.15rem);
 line-height: 1.18;
 margin-bottom: 18px;
 }

 .logo,
 .footer-brand .logo {
 display: inline-flex;
 align-items: center;
 }

 .logo img,
 .header .logo img,
 .footer-brand .logo img,
 .logo-img-light,
 .logo-img-dark,
 .logo-img-el {
 width: auto !important;
 max-width: fit-content !important;
 height: 24px !important;
 }

 .header-inner {
 padding: 10px 0;
 min-height: 52px;
 align-items: center;
 }

 .header-actions {
 gap: 6px;
 flex-shrink: 0;
 }

 .theme-toggle,
 .mobile-toggle {
 width: 36px;
 height: 36px;
 }
}

/* Hero View Showreel Button Styling (#EAB27A) */
.hero-cta .btn-ghost,
.hero .hero-cta .btn-ghost,
.hero .btn-ghost {
 border: 1px solid #EAB27A !important;
 transition: all 0.35s var(--ease);
}

.hero-cta .btn-ghost:hover,
.hero .hero-cta .btn-ghost:hover,
.hero .btn-ghost:hover {
 border-color: #EAB27A !important;
 background: rgba(234, 178, 122, 0.12) !important;
 box-shadow: 0 4px 20px -4px rgba(234, 178, 122, 0.35) !important;
 transform: translateY(-2px);
}

.hero-cta .btn-ghost i,
.hero-cta .btn-ghost svg,
.hero-cta .btn-ghost .fa-play,
.hero .hero-cta .btn-ghost i,
.hero .hero-cta .btn-ghost svg,
.hero .hero-cta .btn-ghost .fa-play,
.hero .btn-ghost i,
.hero .btn-ghost svg,
.hero .btn-ghost .fa-play {
 color: #EAB27A !important;
 fill: #EAB27A !important;
}

/* Hero Video Caption & Status Dot Accent (#EAB27A) */
.hero-right .video-caption,
.video-card .video-caption {
 color: #EAB27A !important;
}

.hero-right .video-caption .label,
.video-card .video-caption .label {
 color: #EAB27A !important;
 font-weight: 600;
 letter-spacing: 0.12em;
}

.hero-right .video-caption .dot,
.video-card .video-caption .dot {
 background: #EAB27A !important;
 box-shadow: 0 0 10px rgba(234, 178, 122, 0.7) !important;
}


/* =======================================================
 * FIXES: TYPOGRAPHY REFINEMENT, MOBILE	ԑQSPS
OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOH
\]]H۝Y[Z[N	[[[\\Y۝\^N[\
[Kˍ\[JN۝]ZY[KZZYKL]\\X[ΈL[NX\[܎\KYNܙXXZΈXZ]ܙBYKZ\]]H۝Y[Z[N	[[[\\Y۝\^N[\
[Kˍ\[JN۝]ZY[KZZYKL]\\X[ΈL[NX\[܎\KYNܙXXZΈXZ]ܙBYYXH
X^]Y͎
H\]]KYKZ\]]H۝\^N[\
K\[K\[JN[KZZYKMNX\[XNBBYYXH
X^]Y
H\]]KYKZ\]]H۝\^N[\
K\[Kˍ]M\[JN[KZZYKNX\[XNNB\X[\^N[[KY^[YۋZ][\Έ[\B[YXY\[Y\X[[YZ[Y[YZ[YY\Z[YY[Y]]Z[\ܝ[X^]Y]X۝[Z[\ܝ[ZYZ[\ܝ[BXY\Z[\Y[ΈLZ[ZZYL[YۋZ][\Έ[\BXY\XX[ۜ\^\[ΈB[YK]K[ؚ[K]HY͜ZY͜BBʈ\Y]ܙY[]ۈ[[
PPJH
\XHY\\XHY\Yܙ\\YPPHZ[\ܝ[[][ێ[\˝\KYX\JNB\XHYݙ\\\XHYݙ\\Yݙ\ܙ\X܎PPHZ[\ܝ[Xܛ[ؘJMLLHZ[\ܝ[\YΈMؘJMLJHZ[\ܝ[[ٛܛN[]VJL
NB\XHYK\XHYݙ\XHYK\^K\\XHYK\\XHYݙ\\XHYK\^K\YK\Yݙ\YK\^H܎PPHZ[\ܝ[[PPHZ[\ܝ[Bʈ\Y[\[ۈ	]\X[
PPJH
\\YY[X\[ۋY[X\Y[X\[ۈ܎PPHZ[\ܝ[B\\YY[X\[ۈX[Y[X\Y[X\[ۈX[܎PPHZ[\ܝ[۝]ZY]\\X[ΈL[NB\\YY[X\[ۈY[X\Y[X\[ۈXܛ[PPHZ[\ܝ[\YΈLؘJMLHZ[\ܝ[B
/* ============================================================
 * FIXES: TYPOGRAPHY REFINEMENT, MOBILE LOGO, & SHOWREEL ACCENTS
 * ============================================================ */
.hero-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: var(--fg);
  word-break: break-word;
}

.page-hero-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: var(--fg);
  word-break: break-word;
}

@media (max-width: 768px) {
  .hero-title,
  .page-hero-title {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title,
  .page-hero-title {
    font-size: clamp(1.65rem, 7.5vw, 2.15rem);
    line-height: 1.18;
    margin-bottom: 18px;
  }

  .logo,
  .footer-brand .logo {
    display: inline-flex;
    align-items: center;
  }

  .logo img,
  .header .logo img,
  .footer-brand .logo img,
  .logo-img-light,
  .logo-img-dark,
  .logo-img-el {
    width: auto !important;
    max-width: fit-content !important;
    height: 24px !important;
  }

  .header-inner {
    padding: 10px 0;
    min-height: 52px;
    align-items: center;
  }

  .header-actions {
    gap: 6px;
    flex-shrink: 0;
  }

  .theme-toggle,
  .mobile-toggle {
    width: 36px;
    height: 36px;
  }
}

/* Hero View Showreel Button Styling (#EAB27A) */
.hero-cta .btn-ghost,
.hero .hero-cta .btn-ghost,
.hero .btn-ghost {
  border: 1px solid #EAB27A !important;
  transition: all 0.35s var(--ease);
}

.hero-cta .btn-ghost:hover,
.hero .hero-cta .btn-ghost:hover,
.hero .btn-ghost:hover {
  border-color: #EAB27A !important;
  background: rgba(234, 178, 122, 0.12) !important;
  box-shadow: 0 4px 20px -4px rgba(234, 178, 122, 0.35) !important;
  transform: translateY(-2px);
}

.hero-cta .btn-ghost i,
.hero-cta .btn-ghost svg,
.hero-cta .btn-ghost .fa-play,
.hero .hero-cta .btn-ghost i,
.hero .hero-cta .btn-ghost svg,
.hero .hero-cta .btn-ghost .fa-play,
.hero .btn-ghost i,
.hero .btn-ghost svg,
.hero .btn-ghost .fa-play {
  color: #EAB27A !important;
  fill: #EAB27A !important;
}

/* Hero Video Caption & Status Dot Accent (#EAB27A) */
.hero-right .video-caption,
.video-card .video-caption {
  color: #EAB27A !important;
}

.hero-right .video-caption .label,
.video-card .video-caption .label {
  color: #EAB27A !important;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.hero-right .video-caption .dot,
.video-card .video-caption .dot {
  background: #EAB27A !important;
  box-shadow: 0 0 10px rgba(234, 178, 122, 0.7) !important;
}
