:root {
  --bg: #080808;
  --bg-elevated: #0f0f10;
  --bg-soft: #111111;
  --accent: #e8ff03;
  --accent-soft: rgba(232, 255, 3, 0.12);
  --accent-soft-strong: rgba(232, 255, 3, 0.28);
  --border-soft: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #f9fafb;
  --text-soft: #9ca3af;
  --text-softer: #6b7280;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #141414, #050505 55%, #000 100%);
  color: var(--text);
}

body {
  min-height: 100vh;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  padding-inline: 1.5rem;
  margin-inline: auto;
}

.section {
  padding-block: 5rem;
}

@media (min-width: 1024px) {
  .section {
    padding-block: 6rem;
  }
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.2rem;
}

.lead {
  margin-top: 0.85rem;
  color: var(--text-soft);
  max-width: 32rem;
}

.btn {
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.5rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all 0.18s ease-out;
  background: transparent;
  color: var(--text);
}

.btn-primary {
  background: linear-gradient(135deg, #e8ff03, #fefce8);
  border-color: transparent;
  color: #020617;
  box-shadow: 0 18px 45px rgba(232, 255, 3, 0.4);
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--border-strong);
  background: rgba(15, 23, 42, 0.8);
}

.btn-ghost:hover {
  border-color: var(--accent-soft-strong);
  background: rgba(15, 23, 42, 0.95);
}

.btn-full {
  width: 100%;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  backdrop-filter: none;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.9), transparent);
  border-bottom: none;
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.nav-desktop a:hover {
  color: var(--text);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .nav-mobile {
    display: none !important;
  }
}

.btn-header {
  font-size: 0.85rem;
  padding-inline: 1.25rem;
}

.nav-toggle {
  width: 38px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(15, 23, 42, 0.95);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
  cursor: pointer;
}

@media (max-width: 899px) {
  .nav-toggle {
    display: flex;
  }
}

.nav-toggle span {
  width: 18px;
  height: 1.6px;
  background: #e5e7eb;
  border-radius: 999px;
  transition: transform 0.16s ease-out, opacity 0.16s ease-out;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

/* Mobil menü: sağdan sola açılır, tüm ekranı kaplamaz */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  width: min(320px, 85vw);
  max-width: 320px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 5rem 1.5rem 1.5rem;
  background: rgba(8, 8, 8, 0.98);
  border-left: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.25s ease-out,
    visibility 0.25s ease-out;
}

.nav-mobile.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  font-size: 0.9rem;
  color: var(--text-soft);
  padding: 0.35rem 0;
}

.nav-mobile a:hover {
  color: var(--text);
}

.nav-section-title {
  margin-top: 0.75rem;
  margin-bottom: 0.1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-softer);
}

.nav-section-title:first-child {
  margin-top: 0;
}

/* VIDEO HERO */
.video-hero {
  position: relative;
  padding: 0;
}

.video-hero-media {
  position: relative;
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.video-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.1);
}

.video-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 16vh 6vw 10vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  color: #f9fafb;
}

.video-hero-text {
  font-weight: 700;
  font-size: clamp(8rem, 18vw, 18rem);
  letter-spacing: 0.02em;
  display: inline-block;
  padding: 0;
  color: #e5ff2a;
}

.js-animate-heading {
  transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-animate-heading.is-visible {
  /* İleride gerekirse kaydırma animasyonu için kullanılabilir. */
}

.heading-chars {
  display: inline-block;
}

.heading-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.heading-char.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-hero-text-top-left {
  align-self: flex-start;
}

.video-hero-text-bottom-right {
  align-self: flex-end;
  margin-top: auto;
}

.video-hero-subline {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  max-width: 22rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5e7eb;
  text-align: right;
}

/* Infinite Marquee Text */
.marquee-wrap {
  overflow: hidden;
  padding: 1rem 0;
  background: #080808;
  border-top: 1px solid rgba(232, 255, 3, 0.15);
  border-bottom: 1px solid rgba(232, 255, 3, 0.15);
  user-select: none;
}

.marquee-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.marquee-track-2 {
  animation-name: marquee-scroll-reverse;
  animation-duration: 32s;
}

.marquee-text {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  text-stroke: 1.5px var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-sep {
  font-size: inherit;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Rotating Circular Text */
.circular-text-section {
  padding: 2.5rem 0;
  background: transparent;
}

.circular-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.circular-text-wrap {
  position: relative;
  width: clamp(160px, 36vw, 220px);
  height: clamp(160px, 36vw, 220px);
}

.circular-text-svg {
  width: 100%;
  height: 100%;
  animation: circular-text-rotate 18s linear infinite;
}

.circular-text-path {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  fill: var(--accent);
  font-family: "Inter", system-ui, sans-serif;
}

.circular-text-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.circular-text-logo {
  width: clamp(36px, 10vw, 48px);
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 0 8px rgba(232, 255, 3, 0.3));
}

@keyframes circular-text-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .circular-text-svg {
    animation-duration: 30s;
  }
}

@media (max-width: 640px) {
  .video-hero-media {
    min-height: 560px;
  }

  .video-hero-overlay {
    padding: 7rem 1.25rem 4rem;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0.45rem;
  }

  .video-hero-text {
    padding-inline: 0;
    font-size: clamp(2.4rem, 14vw, 3.4rem);
    text-align: left;
  }

  .video-hero-subline {
    position: static;
    transform: none;
    align-self: flex-start;
    max-width: 18rem;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    margin-bottom: 0;
    text-align: left;
  }

  .video-hero-text-top-left {
    order: 1;
    align-self: flex-start;
  }

  .video-hero-text-bottom-right {
    order: 2;
    align-self: flex-end;
    margin-top: 0.15rem;
  }

  .video-hero-subline {
    order: 3;
  }
}

@media (max-width: 640px) {
  .section {
    padding-block: 3.5rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-meta {
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.25rem;
  }

  .services-long-grid {
    padding: 1.75rem 1.25rem;
  }

  .project-card {
    min-width: 92%;
    max-width: 92%;
  }

  .project-image img {
    height: 220px;
  }

  .footer-grid {
    row-gap: 1.5rem;
  }

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

/* BRANDS STRIP */
.brands-strip {
  padding-block: 2.75rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
}

.brands-marquee {
  position: relative;
  overflow: hidden;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-inline: 4rem;
  width: max-content;
  animation: brands-marquee 32s linear infinite;
  animation-iteration-count: infinite;
  animation-play-state: running;
  will-change: transform;
}

.brands-track img {
  height: 40px;
  width: auto;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.9;
}

.brands-track img:hover {
  opacity: 1;
}

@keyframes brands-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .brands-strip {
    padding-block: 2rem;
  }

  .brands-track {
    gap: 2.25rem;
    padding-inline: 2rem;
    animation-duration: 26s;
  }

  .brands-track img {
    height: 28px;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {
  .container {
    padding-inline: 1.25rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-meta {
    font-size: 0.85rem;
  }

  .card-grid {
    gap: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .stat {
    padding: 1.1rem 1rem 1.25rem;
  }

  .stat-value {
    font-size: clamp(1.8rem, 10vw, 2.2rem);
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .brands-track img {
    height: 22px;
  }
}

/* HERO */
.hero {
  padding-top: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-subtitle {
  margin-top: 1rem;
  color: var(--text-soft);
  max-width: 30rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-meta {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.hero-meta strong {
  color: var(--accent);
}

.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 1.25rem;
}

.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at top left, #1d2436, #020617 60%);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
}

.hero-image.main img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-image.floating {
  align-self: center;
  transform: translateY(10%);
  background: radial-gradient(circle at top right, #f97316, #020617 60%);
}

.hero-image.floating img {
  mix-blend-mode: screen;
  opacity: 0.9;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 599px) {
  .hero-media {
    display: none;
  }
}

/* STATS */
.stats {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: radial-gradient(circle at top, #080808, #050505 70%);
}

.stats-header {
  text-align: center;
  margin-bottom: 2.25rem;
  color: var(--text);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.stat-value {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #e8ff03, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    text-shadow 0.4s ease-out, opacity 0.4s ease-out;
  text-shadow: 0 0 0 rgba(232, 255, 3, 0);
}

.stat-label {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1.2rem 1.5rem;
  border-radius: 18px;
  background: radial-gradient(circle at top, #101010, #050505 85%);
  border: 1px solid rgba(248, 250, 252, 0.05);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.5);
}

.stat-value.is-animating {
  transform: translateY(-2px) scale(1.04);
  opacity: 0.96;
  text-shadow: 0 0 24px rgba(232, 255, 3, 0.4);
}

.stat-value.is-complete {
  transform: translateY(0) scale(1);
  text-shadow: 0 0 12px rgba(15, 23, 42, 0.8);
}

.stat-main {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.stat-suffix {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fef9c3;
}

@media (min-width: 800px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
}

.about-text {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-text p + p {
  margin-top: 0.9rem;
}

@media (max-width: 799px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* SERVICES SUMMARY */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  padding: 1.5rem 1.5rem 1.6rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #121212, #050505 70%);
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.card h3 {
  margin-bottom: 0.35rem;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #020617;
  border: 1px solid var(--accent-soft-strong);
  font-size: 0.75rem;
  margin: 0.2rem 0 0.65rem;
}

/* SERVICES LONG */
.services-long {
  padding-top: 1.5rem;
}

.services-long-grid {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(232, 255, 3, 0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(232, 255, 3, 0.14), transparent 60%),
    radial-gradient(circle at top, #050505, #020617 80%);
  border: 1px solid rgba(248, 250, 252, 0.08);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: var(--shadow-soft);
}

.service-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1.2fr) minmax(0, 2fr) auto auto;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1.1rem 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  position: relative;
}

.service-row:first-of-type {
  border-top: none;
}

.service-row::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.service-row:last-of-type::after {
  display: none;
}

.service-index {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 255, 3, 0.85);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f9fafb;
}

.service-description {
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.service-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: transparent;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease-out;
}

.service-row:hover .service-arrow {
  border-color: var(--accent-soft-strong);
  color: var(--accent);
  transform: translateX(2px);
}

@media (max-width: 800px) {
  .service-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    align-items: flex-start;
    gap: 0.85rem;
    padding-block: 1.1rem 1.3rem;
  }

  .service-index {
    font-size: 0.8rem;
    grid-column: 1;
    grid-row: 1;
  }

  .service-title {
    font-size: 1.05rem;
    grid-column: 2;
    grid-row: 1;
  }

  .service-description {
    max-width: 100%;
    font-size: 0.9rem;
    grid-column: 2;
    grid-row: 2;
  }

  .service-media {
    grid-column: 2;
    grid-row: 3;
    justify-self: flex-start;
  }

  .service-media img {
    width: 140px;
    height: 140px;
  }

  .service-arrow {
    width: 32px;
    height: 32px;
    grid-column: 3;
    grid-row: 2;
    align-self: center;
    justify-self: center;
  }

  .services-long-grid {
    padding: 1.8rem 1.4rem;
    gap: 1.6rem;
  }
}

.service-media {
  flex: 0 0 auto;
}

.service-media img {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(232, 255, 3, 0.18),
    0 16px 30px rgba(0, 0, 0, 0.55);
}

.js-animate-row {
  opacity: 0;
  transform: translateY(24px);
}

.js-animate-row.is-row-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 800px) {
  /* Ekstra küçük ekran ayarları gerekirse buraya eklenebilir */
}

/* Guide Slider - Marka Yolculuğunuzun Stratejik Rehberi */
.guide-slider-section {
  background: radial-gradient(circle at 50% 50%, #0a0a0a, #050505 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.guide-slider-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.guide-slider-title {
  color: #ffffff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.guide-slider {
  position: relative;
  overflow: hidden;
}

.guide-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.guide-slide {
  flex: 0 0 auto;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 0.4rem;
  aspect-ratio: 16 / 10;
}

.guide-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

.guide-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.guide-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.guide-slider-btn:hover {
  border-color: var(--accent);
  background: rgba(232, 255, 3, 0.1);
  color: var(--accent);
}

.guide-slider-dots {
  display: flex;
  gap: 0.5rem;
}

.guide-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.guide-slider-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.guide-slider-dot.is-active {
  background: #ffffff;
  transform: scale(1.2);
}

/* PROJECTS SLIDER */
.projects .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.slider {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 1.4rem;
  transition: transform 0.4s ease-out;
}

.project-card {
  min-width: 80%;
  max-width: 80%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.project-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.project-meta {
  padding: 1.25rem 1.4rem 1.4rem;
}

.project-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-softer);
  margin: 0 0 0.35rem;
}

.project-meta h3 {
  margin-bottom: 0.35rem;
}

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

.slider-controls {
  display: flex;
  gap: 0.65rem;
}

.slider-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-soft);
  font-size: 1.2rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.16s ease-out;
}

.slider-btn:hover {
  background: rgba(15, 23, 42, 1);
  border-color: var(--accent-soft-strong);
  color: var(--text);
}

@media (min-width: 900px) {
  .project-card {
    min-width: 48%;
    max-width: 48%;
  }

  .project-image img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .projects .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* QUOTE */
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
}

.quote-media img {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.quote-text h2 {
  max-width: 32rem;
}

.quote-author {
  margin-top: 1.4rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.quote-author span {
  color: var(--text-softer);
}

@media (min-width: 900px) {
  .quote-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  }
}

/* TESTIMONIALS */
.testimonials-grid {
  margin-top: 2rem;
}

.testimonial-card {
  padding: 1.75rem 1.75rem 1.6rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #111111, #050505 70%);
  border: 1px solid var(--border-soft);
}

.testimonial-text {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.testimonial-footer img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-name {
  margin: 0;
  font-size: 0.95rem;
}

.testimonial-role {
  margin: 0.1rem 0 0;
  color: var(--text-softer);
  font-size: 0.8rem;
}

/* BLOG */
.blog .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.blog-grid {
  margin-top: 0;
}

.blog-card {
  padding: 1.5rem 1.5rem 1.6rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #101010, #050505 70%);
  border: 1px solid var(--border-soft);
}

.blog-date {
  margin: 0 0 0.3rem;
  color: var(--text-softer);
  font-size: 0.8rem;
}

.blog-card h3 {
  margin-bottom: 0.3rem;
}

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

@media (max-width: 640px) {
  .blog .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-details {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-details li + li {
  margin-top: 0.5rem;
}

.contact-details a {
  color: #bfdbfe;
}

.contact-form {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top, #101010, #050505 75%);
  padding: 1.6rem 1.6rem 1.8rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

@media (min-width: 720px) {
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.95rem;
}

.form-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-softer);
}

.form-field input,
.form-field textarea {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out,
    background 0.16s ease-out;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #4b5563;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent-soft-strong);
  box-shadow: 0 0 0 1px var(--accent-soft-strong);
  background: rgba(8, 8, 8, 1);
}

.form-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-softer);
}

@media (max-width: 799px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding-block: 1.75rem 2.25rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 1.25rem 2.5rem;
  align-items: center;
  font-size: 0.86rem;
  color: var(--text-softer);
}

.footer-brand {
  max-width: 22rem;
}

.footer-brand .logo {
  margin-bottom: 0.25rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a {
  font-size: 0.86rem;
}

.footer-copy {
  margin: 0;
}

@media (max-width: 799px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
  }
}

/* UTILITIES */
.section-header {
  margin-bottom: 2rem;
}

