﻿/* ByteGorilla Clone - Design System */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Site fonts */
@font-face {
  font-family: 'EBGaramond';
  src: url('fonts/EB_Garamond/EBGaramond-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EBGaramond';
  src: url('fonts/EB_Garamond/EBGaramond-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DMSans';
  src: url('fonts/DM_Sans/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
:root {
  --orange: #00adee;
  --orange-border: #00adee;
  --orange-mid: #00adee;
  --orange-hover-border: #33bff2;
  --orange-tint: #E6F7FD;
  --orange-glow: #D6F1FB;
  --text: #222222;
  --text-muted: #6B6B6B;
  --text-tertiary: #BABABA;
  --text-on-dark: #F4F4F4;
  --white: #FFFFFF;
  --border: #E9E9E9;
  --border-grid: #D0D0D0;
  --border-dark: #323232;
  --border-icon: #4E4E4E;
  --tag-bg: #F8F8FE;
  --tag-border: #F0F0FF;
  --tag-text: #4E4E4E;
  --dark: #0E0E0E;
  --footer-bg: #13110F;
  --serif: 'EBGaramond', Georgia, serif;
  --sans: 'DMSans', -apple-system, sans-serif;
  --grotesk: 'DMSans', sans-serif;
  --header-h: 80px;
  --max: 1440px;
  --nav-max: 1240px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.section-wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .section-wrap { padding: 0 100px; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--orange); color: var(--white);
  border: 2px solid var(--orange-border); border-radius: 9px;
  min-height: 48px; padding: 0 31px;
  font-family: var(--sans); font-weight: 600; font-size: 1.125rem;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-label {
  position: relative;
  z-index: 10;
  font-weight: 600;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,173,238,.35); }
.btn-lg { font-size: 1.125rem; }
.btn-full { width: 100%; }

@keyframes shine-move {
  from { left: -100%; }
  to { left: 200%; }
}
@keyframes global-fade {
  0% { opacity: 0; }
  30% { opacity: 0; }
  40% { opacity: 0.6; }
  60% { opacity: 0.5; }
  70% { opacity: 0; }
  100% { opacity: 0; }
}
.shine-effect {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #FFBE4D 50%, transparent 100%);
  mix-blend-mode: soft-light;
  filter: blur(4px);
  transform: skewX(-5deg);
  animation: shine-move 2.5s infinite linear;
  z-index: 2;
  pointer-events: none;
}
.noise-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0;
  mix-blend-mode: overlay;
  animation: global-fade 2.5s infinite linear;
  pointer-events: none;
  z-index: 3;
}

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9998;
  height: var(--header-h);
  background: transparent; /* live: transparent, blur only */
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
}
.header-wrap {
  width: 100%;
  max-width: var(--nav-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
@media (min-width: 1233px) {
  .header-wrap { padding: 0; }
}
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 45px;
  width: 85px;
}
.logo-link img {
  height: 45px;
  width: 85px;
  object-fit: contain;
}
.header-nav {
  display: none;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1233px) {
  .header-nav { display: flex; }
}
.nav-item { position: relative; }
.nav-item a {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25rem;
  color: var(--text);
  padding: 32px 0;
  transition: color .3s;
}
.nav-item a:hover { color: var(--orange); }
.header-cta {
  display: none;
  font-size: 1.125rem;
  font-weight: 600;
  flex-shrink: 0;
}
@media (min-width: 1233px) {
  .header-cta { display: inline-flex; }
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 1233px) {
  .menu-toggle { display: none; }
}
.menu-toggle span { width: 30px; height: 2px; background: var(--text); }

/* Hero and portfolio share the opening wrapper:
   overflow-hidden pt-[144px] pb-[56px] lg:pt-[200px] lg:pb-[120px] bg-white */
#hero-section {
  overflow: hidden;
  background: #FFFFFF;
  padding-top: 144px;
  padding-bottom: 56px;
}
@media (min-width: 1024px) {
  #hero-section {
    padding-top: 200px;
    padding-bottom: 120px;
  }
}

.hero-shell {
  overflow: hidden;
}

.hero {
  padding: 0 20px;
  text-align: center;
  background: transparent;
}
@media (min-width: 768px) {
  .hero { padding-left: 0; padding-right: 0; }
}

.hero-content { max-width: 100%; margin: 0 auto; }

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--text);
  font-size: 2.25rem;
  line-height: 2.5rem;
  letter-spacing: 0;
  margin: 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; line-height: 84px; }
}

.hero-powerful {
  color: var(--orange);
  font-family: var(--serif);
  font-style: italic;
  font-size: inherit;
  font-weight: 400;
}
.hero-powerful .hero-word-inner {
  font-style: italic;
}

.hero-line-2 {
  display: inline-block;
}

.hero-word {
  display: inline-block;
  margin-right: 0.08em;
}
.hero-word:last-child,
.hero-line-2 > .hero-word:last-child {
  margin-right: 0;
}
.hero-word-inner {
  display: inline-block;
  animation: wordReveal .5s cubic-bezier(0, 0, 0.58, 1) forwards;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(20px, 0, 0);
  will-change: transform, opacity, filter;
}
.hero-sub-word {
  display: inline-block;
  margin-right: 4px;
}
.hero-sub-word:last-child { margin-right: 0; }

.hero-sub {
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 10px auto 0;
  max-width: 680px;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .hero-sub { font-size: 1.25rem; line-height: 1.75rem; }
}
.hero-sub-break { display: none; }
@media (min-width: 1024px) {
  .hero-sub-break { display: block; }
}

.hero-cta {
  margin-top: 24px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .hero-cta { margin-top: 42px; margin-bottom: 40px; }
}

@keyframes wordReveal {
  to { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0); }
}

/* Portfolio Marquee */
.portfolio-marquee {
  overflow: hidden;
  padding: 0;
  margin: 0;
  width: 100%;
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marqueeRight 75s linear infinite;
  animation-delay: 2s;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.portfolio-card {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  width: 260px;
  height: 146px;
  border-radius: 8px;
  margin-right: 12px;
  background: #f4f4f4;
}
@media (min-width: 768px) {
  .portfolio-card {
    width: 420px;
    height: 236px;
    margin-right: 12px;
  }
}
@media (min-width: 1024px) {
  .portfolio-card {
    width: 560px;
    height: 315px;
    border-radius: 16px;
    margin-right: 24px;
  }
}
.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Trusted By */
.trusted {
  padding: 40px 16px 0;
  background: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .trusted { padding: 120px 16px 0; }
}
.trusted-title {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .trusted-title {
    font-size: 3rem;
    line-height: 52px;
  }
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 72rem;
  margin: 32px auto 0;
  border-top: 1px solid var(--border-grid);
  border-left: 1px solid var(--border-grid);
}
@media (min-width: 768px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .logo-grid { grid-template-columns: repeat(4, 1fr); } }
.logo-cell {
  border-right: 1px solid var(--border-grid);
  border-bottom: 1px solid var(--border-grid);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .logo-cell { padding: 56px 16px; }
}
.logo-slot {
  position: relative;
  width: 100%;
  height: 40px;
}
.logo-front,
.logo-back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-front img,
.logo-back img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  color: transparent;
}

@keyframes logo-roll {
  0% { transform: translateY(100%); opacity: 0; }
  5%, 45% { transform: translateY(0); opacity: 1; }
  50%, 100% { transform: translateY(-100%); opacity: 0; }
}
.animate-logo-roll {
  animation: logo-roll 6s infinite ease-in-out;
  transform: translateY(100%);
  opacity: 0;
}
.logo-back { animation-delay: 3s; }

.logo-cell:nth-child(1) .animate-logo-roll { animation-delay: 0.2s; }
.logo-cell:nth-child(2) .animate-logo-roll { animation-delay: 0.4s; }
.logo-cell:nth-child(3) .animate-logo-roll { animation-delay: 0.6s; }
.logo-cell:nth-child(4) .animate-logo-roll { animation-delay: 0.8s; }
.logo-cell:nth-child(5) .animate-logo-roll { animation-delay: 1s; }
.logo-cell:nth-child(6) .animate-logo-roll { animation-delay: 1.2s; }
.logo-cell:nth-child(7) .animate-logo-roll { animation-delay: 1.4s; }
.logo-cell:nth-child(8) .animate-logo-roll { animation-delay: 1.6s; }

.logo-cell:nth-child(1) .logo-back { animation-delay: calc(0.2s + 3s); }
.logo-cell:nth-child(2) .logo-back { animation-delay: calc(0.4s + 3s); }
.logo-cell:nth-child(3) .logo-back { animation-delay: calc(0.6s + 3s); }
.logo-cell:nth-child(4) .logo-back { animation-delay: calc(0.8s + 3s); }
.logo-cell:nth-child(5) .logo-back { animation-delay: calc(1s + 3s); }
.logo-cell:nth-child(6) .logo-back { animation-delay: calc(1.2s + 3s); }
.logo-cell:nth-child(7) .logo-back { animation-delay: calc(1.4s + 3s); }
.logo-cell:nth-child(8) .logo-back { animation-delay: calc(1.6s + 3s); }

/* Section headers â€” EB Garamond + DM Sans */
.section-head { text-align: center; margin-bottom: 32px; }
@media (min-width: 768px) { .section-head { margin-bottom: 56px; } }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  color: #222222;
  font-size: 30px;
  line-height: 40px;
  margin: 0;
}
@media (min-width: 768px) {
  .section-head h2 { font-size: 48px; line-height: 52px; }
}
.section-head.light h2 { color: var(--white); }
.section-head p {
  font-family: var(--sans);
  color: #6B6B6B;
  font-size: 16px;
  line-height: 22px;
  margin: 6px 0 0;
  font-weight: 400;
}
@media (min-width: 768px) {
  .section-head p { font-size: 20px; line-height: 26px; margin-top: 8px; }
}
.section-head.light p { color: var(--text-tertiary); }

/* Services sticky stack */
.services { padding: 60px 0 40px; background: var(--white); }
@media (min-width: 768px) { .services { padding: 120px 0 60px; } }
.services-stack { display: flex; flex-direction: column; align-items: center; margin-top: 32px; }
@media (min-width: 768px) { .services-stack { margin-top: 56px; } }
.service-sticky-card {
  position: sticky; top: 15%; z-index: var(--z);
  width: 100%; max-width: 1240px;
  margin-bottom: 80px;
}
@media (min-width: 1024px) { .service-sticky-card { margin-bottom: 120px; } }
.service-card-inner {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; box-shadow: 0 1px 3px rgba(0,0,0,.06);
  overflow: hidden; min-height: 580px;
}
@media (min-width: 1024px) {
  .service-card-inner { flex-direction: row; min-height: 453px; }
}
.service-img {
  width: 100%; height: 220px; object-fit: cover;
}
@media (min-width: 1024px) {
  .service-img {
    width: 48%;
    min-width: 458px;
    height: auto;
    align-self: center;
    border-radius: 16px;
    margin: 10px;
  }
}
.service-body { padding: 20px; display: flex; flex-direction: column; gap: 0; }
@media (min-width: 1024px) { .service-body { padding: 40px; justify-content: center; } }
/* Live: font-roboto font-normal text-xl / md:28 / lg:32 */
.service-body h3 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #222222;
  margin: 0;
}
@media (min-width: 768px) {
  .service-body h3 { font-size: 28px; line-height: 36px; }
}
@media (min-width: 1024px) {
  .service-body h3 { font-size: 32px; line-height: 40px; }
}
/* Live: font-monument text-base / md:lg / lg:xl */
.service-desc {
  font-family: var(--grotesk);
  font-weight: 400;
  color: #6B6B6B;
  font-size: 16px;
  line-height: 22px;
  margin: 4px 0 0;
}
@media (min-width: 768px) {
  .service-desc { font-size: 18px; line-height: 26px; margin-top: 8px; }
}
@media (min-width: 1024px) {
  .service-desc { font-size: 20px; line-height: 28px; }
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  font-family: var(--sans);
}
@media (min-width: 768px) { .service-tags { margin-top: 24px; } }
.service-tags span {
  background: var(--tag-bg); color: var(--tag-text);
  border: 1px solid var(--tag-border); border-radius: 8px;
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  transition: background .2s;
}
@media (min-width: 1024px) {
  .service-tags span { font-size: 16px; line-height: 20px; }
}
.service-tags span:hover { background: #F0F0FA; }

/* Process */
.process { padding: 60px 0; background: var(--white); }
.process-wrap {
  display: flex; flex-direction: column; gap: 40px;
}
@media (min-width: 1233px) {
  .process-wrap { flex-direction: row; gap: 80px; align-items: flex-start; }
}
.process-left {
  flex: 0 0 auto; max-width: 500px;
}
@media (min-width: 1233px) { .process-left { position: sticky; top: 40%; } }
/* Live: text-3xl md:text-5xl font-instrumentSerif */
.process-left h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  color: #222222;
  margin: 0;
}
@media (min-width: 768px) {
  .process-left h2 { font-size: 48px; line-height: 48px; }
}
/* Live: font-roboto text-base md:text-xl leading-[22px]/[26px] */
.process-left p {
  font-family: var(--sans);
  font-weight: 400;
  color: #6B6B6B;
  font-size: 16px;
  line-height: 22px;
  margin: 8px 0 0;
}
@media (min-width: 768px) {
  .process-left p { font-size: 20px; line-height: 26px; }
}
.process-cta { margin-top: 34px; display: none; }
@media (min-width: 1233px) { .process-cta { display: inline-flex; } }
.process-right { flex: 1; max-width: 600px; }
.process-step {
  display: flex; gap: 20px; margin-bottom: 80px;
  opacity: .45; filter: blur(2px); transition: opacity .4s, filter .4s;
}
@media (min-width: 1233px) { .process-step { margin-bottom: 180px; } }
.process-step.active { opacity: 1; filter: none; }
.process-dot-col { display: flex; flex-direction: column; align-items: center; width: 24px; flex-shrink: 0; }
.process-dot {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.process-dot span {
  width: 10px; height: 10px; border-radius: 50%; background: var(--text-tertiary);
}
.process-dot.active-dot {
  background: var(--orange-tint); box-shadow: 0 0 20px 4px var(--orange-glow);
}
.process-dot.active-dot span { background: var(--orange-mid); }
.process-line { width: 3px; flex: 1; min-height: 60px; background: var(--border); margin-top: 4px; }
.process-step.active .process-line { background: linear-gradient(var(--orange-mid), var(--border)); }
/* Live: text-[32px] font-instrumentSerif */
.step-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 48px;
  color: #BABABA;
  display: block;
  margin: 0 0 4px;
}
.process-step.active .step-num { color: #222222; }
/* Live: font-roboto font-normal text-xl md:text-2xl md:leading-[28px] */
.process-content h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #222222;
  margin: 5px 0 6px;
}
@media (min-width: 768px) {
  .process-content h4 { font-size: 24px; line-height: 28px; }
}
.process-step:not(.active) .process-content h4,
.process-step:not(.active) .process-content p { color: #BABABA; }
/* Live: font-monument text-base leading-[24px] */
.process-content p {
  font-family: var(--grotesk);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6B6B6B;
  margin: 0;
}

/* Partnership â€” live styled-components match */
.partnership {
  background: #FFFFFF;
  width: 100%;
  overflow-x: clip;
}
.partnership-inner {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px 80px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .partnership-inner { padding: 24px; gap: 60px; }
}
@media (max-width: 767px) {
  .partnership-inner { padding: 0 20px 60px; }
}

.partnership-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .partnership-top { gap: 24px; }
}

.partnership-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
@media (max-width: 767px) {
  .partnership-head { white-space: normal; }
}

.partnership-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 52px;
  color: #222222;
  text-align: center;
  margin: 0;
}
@media (max-width: 767px) {
  .partnership-title {
    font-size: 32px;
    line-height: 38px;
  }
}

.partnership-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #6B6B6B;
  text-align: center;
  margin: 0;
  max-width: 720px;
}
@media (max-width: 767px) {
  .partnership-sub {
    font-size: 18px;
    line-height: 24px;
  }
}

.partnership-proof {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .partnership-proof { gap: 16px; }
}

.avatar-stack {
  display: flex;
  align-items: center;
  padding-right: 12px;
}
.avatar-item {
  margin-right: -12px;
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.avatar-item img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.proof-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  width: 175px;
}
.proof-stars {
  display: flex;
  gap: 4px;
  align-items: center;
}
.proof-star {
  height: 17.25px;
  width: 18px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.proof-star img {
  display: block;
  width: 100%;
  height: 100%;
}
.proof-label {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #6B6B6B;
  width: max-content;
}

.partnership-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  .partnership-cards-wrap { gap: 24px; }
}

.partnership-cards {
  display: flex;
  gap: 28px;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .partnership-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

.partner-card {
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .partner-card {
    width: 100%;
    max-width: 500px;
    flex-shrink: 1;
  }
}

.partner-traditional {
  background: #FFFFFF;
  border: 1px solid #E9E9E9;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 584px;
  height: 400px;
}
@media (max-width: 1024px) {
  .partner-traditional {
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .partner-traditional {
    padding: 16px;
    width: 100%;
    max-width: none;
    border-radius: 10px;
  }
}
@media (max-width: 400px) {
  .partner-traditional { min-height: 440px; height: auto; }
}

.partner-bg {
  background-color: #0B0B0B;
  border: 1px solid #E9E9E9;
  border-radius: 20px;
  position: relative;
  max-width: 584px;
  width: 584px;
  height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.partner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  display: block;
}
@media (max-width: 1024px) {
  .partner-bg {
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .partner-bg {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 400px;
    border-radius: 10px;
  }
}
@media (max-width: 400px) {
  .partner-bg { min-height: 440px; height: auto; }
}

.partner-bg-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.partner-bg-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  opacity: 0.5;
}
.partner-bg-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  height: 100%;
}
.built-badge {
  position: absolute;
  background: #00adee;
  right: 40px;
  top: 0;
  padding: 6px 10px;
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .built-badge { right: 14px; }
}
.built-badge span {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
}

.partner-card-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 36px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.partner-card-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  border-bottom: 1px dashed #BABABA;
}
@media (max-width: 767px) {
  .partner-card-head { padding-bottom: 20px; }
}

.partner-card-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 1;
}

.partner-icon-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.partner-icon-wrap--light { background: #F4F4F4; }
.partner-icon-wrap--dark { background: #FFFFFF; }
.partner-icon {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.partner-icon img {
  display: block;
  width: 32px;
  height: 32px;
}
.partner-bg-logo {
  width: 24px;
  height: 24px;
  background-image: url("assets/bytegorilla-mark.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.partner-card-titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  width: 100%;
}
.partner-card-titles h3 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  color: #222222;
  width: 100%;
  margin: 0;
}
.partner-bg .partner-card-titles h3 { color: #FFFFFF; }
@media (max-width: 767px) {
  .partner-card-titles h3 {
    font-size: 14px;
    line-height: 100%;
  }
}
@media (max-width: 380px) {
  .partner-card-titles h3 { font-size: 12px; }
}
.partner-card-titles p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #6B6B6B;
  width: 100%;
  margin: 0;
}
.partner-bg .partner-card-titles p { color: #F4F4F4; }

.partner-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.partner-list li {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #6B6B6B;
}
.partner-bg .partner-list li { color: #FFFFFF; }
.partner-list li > span:last-child {
  flex: 1 1 0%;
}
.partner-li-icon {
  overflow: hidden;
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.partner-li-icon img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}


/* Tech — dark bg image behind marquee */
.tech {
  position: relative;
  width: 100%;
  overflow-x: clip;
  background-color: #0E0E0E;
  color: #FFFFFF;
}
.tech::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/software_icon_bg.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.tech-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .tech-inner { padding: 120px 0; }
}

.tech-head {
  text-align: center;
  position: relative;
  z-index: 2;
}
.tech-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  color: #FFFFFF;
  margin: 0;
}
@media (min-width: 768px) {
  .tech-title {
    font-size: 48px;
    line-height: 48px;
  }
}
.tech-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #BABABA;
  margin: 8px 0 0;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .tech-sub {
    font-size: 20px;
    line-height: 26px;
    padding: 0;
  }
}

.tech-marquee-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.tech .fade-overlay {
  -webkit-mask-image: none;
  mask-image: none;
}
.fade-overlay {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 30%, #000 70%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.tech-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.tech-marquee--top {
  padding-top: 60px;
}
.tech-marquee--bottom {
  padding-top: 48px;
}
@media (min-width: 768px) {
  .tech-marquee--bottom { padding-top: 60px; }
}
.tech-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}
.tech-marquee-track--left {
  animation: techMarqueeLeft 60s linear infinite;
}
.tech-marquee-track--right {
  animation: techMarqueeRight 60s linear infinite;
}
@keyframes techMarqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes techMarqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.tech-icon {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin-right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #4E4E4E;
  border-radius: 12px;
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 768px) {
  .tech-icon {
    width: 88px;
    height: 88px;
    margin-right: 52px;
  }
}
.tech-icon-inner {
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .tech-icon-inner {
    width: 80px;
    height: 80px;
  }
}
.tech-icon-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Why Choose â€” live: lg:my-[120px] my-[60px] */
.why {
  margin: 60px 0;
  background: #FFFFFF;
}
@media (min-width: 1024px) {
  .why { margin: 120px 0; }
}
.why-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  background: #FFFFFF;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .why-inner { padding: 0 100px; }
}

.why-head {
  text-align: center;
}
.why-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  color: #222222;
  margin: 0;
}
@media (min-width: 768px) {
  .why-title {
    font-size: 48px;
    line-height: 52px;
  }
}
.why-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #6B6B6B;
  margin: 8px 0 0;
}
@media (min-width: 768px) {
  .why-sub {
    font-size: 20px;
    line-height: 26px;
  }
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .why-grid {
    gap: 24px;
    margin-top: 32px;
  }
}

.why-card {
  width: 335px;
  height: 225px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .why-card {
    width: 392px;
    height: 250px;
  }
}
.why-card-inner {
  width: 100%;
  height: 100%;
  border: 1px solid #E9E9E9;
  border-radius: 12px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .why-card-inner { padding: 24px; }
}
.why-card-inner > img {
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
}
.why-card-text {
  width: 100%;
}
.why-card-text h3 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #222222;
  margin: 0;
}
@media (min-width: 768px) {
  .why-card-text h3 {
    font-size: 24px;
    line-height: 28px;
  }
}
.why-card-text p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #6B6B6B;
  margin: 4px 0 0;
}
@media (min-width: 768px) {
  .why-card-text p { margin-top: 8px; }
}

/* Live: CTA hidden on mobile */
.why-cta {
  display: none;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .why-cta {
    display: flex;
    margin-top: 32px;
  }
}


/* Testimonials + FAQ */
.testimonials {
  position: relative;
  overflow: hidden;
  background-color: #0E0E0E;
  padding: 40px 20px;
  width: 100%;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/bottom_view_gradient.png');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (min-width: 768px) {
  .testimonials { padding: 80px 100px; }
}
.testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}
.testimonial-box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 400px;
  background: rgba(34, 34, 34, 0.9);
  border-radius: 8px;
  padding: 16px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .testimonial-box {
    flex-direction: row;
    gap: 16px;
    height: 420px;
    border-radius: 16px;
    padding: 40px;
  }
}
@media (min-width: 1280px) {
  .testimonial-box { height: 376px; }
}

.testimonial-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 151px;
  height: 148px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .testimonial-left {
    width: 302px;
    height: 296px;
  }
}
.spin-ring {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 10s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.spin-ring-svg {
  width: 150px;
  height: 150px;
}
@media (min-width: 768px) {
  .spin-ring-svg {
    width: 300px;
    height: 300px;
  }
}
.quote-icon-wrap {
  position: relative;
  z-index: 1;
  width: 85px;
  height: 85px;
}
@media (min-width: 1024px) {
  .quote-icon-wrap {
    width: 170px;
    height: 170px;
  }
}
.quote-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.testimonial-right {
  position: relative;
  width: 100%;
  min-width: 303px;
  flex: 1;
  min-height: 280px;
}
@media (min-width: 1024px) {
  .testimonial-right {
    width: 587px;
    flex: 0 0 587px;
    min-height: 0;
    height: 100%;
  }
}

.testimonial-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
}
.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.testimonial-quote {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 154px;
}
@media (min-width: 768px) {
  .testimonial-quote {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 1024px) {
  .testimonial-quote {
    align-items: flex-start;
    height: 216px;
  }
}
@media (min-width: 1280px) {
  .testimonial-quote { height: 180px; }
}

.testimonial-divider {
  border: none;
  border-top: 1px solid #4E4E4E;
  margin: 24px 0;
}
@media (min-width: 768px) {
  .testimonial-divider { margin: 40px 0; }
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-avatar {
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.testimonial-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.testimonial-name {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .testimonial-name {
    font-size: 24px;
    line-height: 28px;
  }
}
.testimonial-role {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #BABABA;
}
@media (min-width: 768px) {
  .testimonial-role {
    font-size: 16px;
    line-height: 20px;
  }
}

.testimonial-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .testimonial-nav { gap: 20px; }
}
.testimonial-arrow {
  position: relative;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0.8;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (min-width: 768px) {
  .testimonial-arrow {
    width: 48px;
    height: 48px;
  }
}
.testimonial-arrow:hover { transform: scale(1.1); }
.testimonial-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}
.testimonial-arrow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

/* FAQ */
.faq {
  position: relative;
  max-width: 881px;
  margin: 40px auto 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .faq { margin-top: 60px; }
}
@media (min-width: 1025px) {
  .faq { margin-top: 120px; }
}

.faq-head {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .faq-head { margin-bottom: 32px; }
}

.faq-title {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.875rem; /* text-3xl */
  line-height: 1.2;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .faq-title {
    margin-bottom: 16px;
    font-size: 3rem; /* text-5xl */
    line-height: 52px;
  }
}

.faq-sub {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  color: #BABABA;
}
@media (min-width: 768px) {
  .faq-sub {
    font-size: 1.25rem;
    line-height: 26px;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 8px;
  z-index: 40;
  position: relative;
}
@media (min-width: 768px) {
  .faq-list { padding: 12px; }
}

.faq-item {
  border: 1px solid #323232;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.5s ease, background-color 0.5s ease;
}

.faq-q {
  width: 100%;
  padding: 10px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  font-family: inherit;
}
@media (min-width: 768px) {
  .faq-q { padding: 24px; }
}
.faq-q:focus { outline: none; }

.faq-q-text {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  color: #F4F4F4;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .faq-q-text {
    font-size: 1.25rem;
    line-height: 26px;
  }
}

.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  position: relative;
}
.faq-icon svg {
  width: 25px;
  height: 25px;
}
.faq-icon .faq-icon-plus { display: block; }
.faq-icon .faq-icon-minus { display: none; }
.faq-item.open .faq-icon .faq-icon-plus { display: none; }
.faq-item.open .faq-icon .faq-icon-minus { display: block; }

.faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.faq-item.open .faq-a {
  max-height: 1000px;
  opacity: 1;
}

.faq-a-inner {
  padding: 0 10px 10px;
}
@media (min-width: 768px) {
  .faq-a-inner { padding: 0 24px 24px; }
}

.faq-a p {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  color: #BABABA;
}
@media (min-width: 768px) {
  .faq-a p {
    font-size: 1.25rem;
    line-height: 26px;
  }
}

/* Contact â€” live: #F7F7F7, flex-col-reverse â†’ row @1200 */
.contact {
  background: #F7F7F7;
  position: relative;
}
.contact-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  justify-content: space-between;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .contact-inner {
    padding: 80px 60px;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .contact-inner { padding: 80px 100px 120px; }
}
@media (min-width: 1200px) {
  .contact-inner {
    flex-direction: row;
    /* live keeps md:items-center at this breakpoint */
    align-items: center;
  }
}

.contact-left {
  width: 100%;
  z-index: 10;
}
@media (min-width: 768px) {
  .contact-left { width: 550px; max-width: 100%; }
}
@media (min-width: 1200px) {
  .contact-left { height: 432px; }
}

.contact-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (min-width: 1200px) {
  .contact-right { height: 480px; width: auto; }
}

.contact-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  color: #222222;
}
.contact-title-desktop { display: none; }
.contact-title-mobile {
  display: block;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
}
@media (min-width: 1200px) {
  .contact-title-desktop {
    display: block;
    font-size: 3rem;
    line-height: 52px;
  }
  .contact-title-mobile { display: none; }
}

.contact-sub {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: #6B6B6B;
}
.contact-sub-desktop { display: none; }
.contact-sub-mobile {
  display: block;
  font-size: 1rem;
  line-height: 22px;
  margin-top: 8px;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 1200px) {
  .contact-sub-desktop {
    display: block;
    font-size: 1.25rem;
    line-height: 26px;
    margin-top: 8px;
  }
  .contact-sub-mobile { display: none; }
}

.contact-form-card {
  flex: 1;
  width: 100%;
  max-width: 530px;
  padding: 10px;
  border-radius: 12px;
  background: #FFFFFF;
  z-index: 1;
  box-sizing: border-box;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .contact-form-card {
    width: 530px;
    padding: 15px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .contact-form-card {
    padding: 20px;
    margin-bottom: 0;
  }
}

.contact-form { width: 100%; }

.form-row { margin-bottom: 16px; }
@media (min-width: 769px) {
  .form-row { margin-bottom: 12px; }
}

.form-row label {
  display: block;
  margin-bottom: 4px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #222222;
}

.form-row input[type="text"],
.form-row input[type="email"] {
  width: 100%;
  height: 48px;
  padding: 12px;
  border: 1px solid #E9E9E9;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #222222;
  background: #FFFFFF;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
@media (min-width: 769px) {
  .form-row input[type="text"],
  .form-row input[type="email"] {
    height: 44px;
    font-size: 14px;
  }
}
.form-row input::placeholder { color: #BABABA; }
.form-row input:focus {
  outline: none;
  border-color: var(--orange);
}

.phone-field {
  position: relative;
  width: 100%;
}
.phone-field input {
  width: 100%;
  height: 47px;
  padding: 0 12px;
  border: 1px solid #E9E9E9;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 100;
  line-height: 25px;
  color: #9DA4B0;
  background: transparent;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.phone-field input:focus {
  outline: none;
  border-color: var(--orange);
}
.phone-field input::placeholder { color: #9DA4B0; }

.form-status {
  margin: 12px 0 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.4;
  background: rgba(0, 173, 238, 0.1);
  border: 1px solid rgba(0, 173, 238, 0.3);
  color: #0b7fb0;
}

.textarea-wrap {
  width: 100%;
  border: 1px solid #E9E9E9;
  border-radius: 6px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}
.textarea-wrap:focus-within { border-color: var(--orange); }
.textarea-wrap textarea {
  width: 100%;
  height: 100px;
  padding: 12px 10px 4px;
  border: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #222222;
  resize: none;
  background: transparent;
  box-sizing: border-box;
}
.textarea-wrap textarea:focus { outline: none; }
.textarea-wrap textarea::placeholder { color: #BABABA; }
.char-count-row {
  display: flex;
  justify-content: flex-end;
  padding: 4px 12px 8px;
  background: #FFFFFF;
}
.char-count {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #BABABA;
}

.contact-form .btn-full {
  min-height: 48px;
  margin-top: 4px;
}

/* Footer â€” live: #13110F, desktop lg+ / mobile separate */
.footer {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(79, 47, 15, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(251, 133, 20, 0.08), transparent 50%),
    #13110F;
  color: #FFFFFF;
  font-family: var(--sans);
}
.footer-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 24px 28px;
}
@media (min-width: 768px) {
  .footer-inner { padding: 72px 40px 36px; }
}
@media (min-width: 1024px) {
  .footer-inner { padding: 80px 48px 40px; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) auto auto;
    gap: 64px;
    align-items: start;
  }
  .footer-grid .footer-col { min-width: 160px; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  max-width: 420px;
}
.footer-logo {
  position: relative;
  width: 96px;
  height: 50px;
  flex-shrink: 0;
}
.footer-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer-desc {
  margin: 18px 0 24px;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.03);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  line-height: 1;
}
.footer-social a[aria-label="Instagram"] {
  color: #E4405F;
}
.footer-social a[aria-label="Facebook"] {
  color: #1877F2;
}
.footer-social a[aria-label="X"] {
  color: #FFFFFF;
}
.footer-social a:hover {
  transform: translateY(-2px);
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.08);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-heading {
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .footer-col-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}
.footer-col-links a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col-links a:hover { color: var(--orange); }

.footer-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.footer-contact-links a[href*="wa.me"] .footer-contact-icon,
.footer-contact-links a[href*="whatsapp.com"] .footer-contact-icon {
  color: #25D366;
}
.footer-contact-links a[href^="mailto:"] .footer-contact-icon {
  color: var(--orange);
}
.footer-contact-links a:hover .footer-contact-icon {
  filter: brightness(1.15);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  margin-top: 48px;
}
.footer-divider {
  height: 1px;
  width: 100%;
  border: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  margin: 0;
}
.footer-copy {
  margin: 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive nav mobile */
@media (max-width: 1232px) {
  .header-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 9997;
  }
  .header-nav.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-item a { padding: 16px 0; }
}

