:root {
  --accent: #FFA500;
  --accent-dark: #e69500;
  --black: #0d0d0d;
  --white: #ffffff;
  --grey-bg: #f7f7f5;
  --grey-light: #efefed;
  --grey-border: #e8e8e4;
  --grey-text: #6b6b6b;
  --radius: 12px;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --font-head: sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  cursor: none;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Custom Cursor ---------- */
#cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

#cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  color: var(--grey-text);
  font-weight: 300;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s cubic-bezier(.22, .68, 0, 1.2), transform 0.72s cubic-bezier(.22, .68, 0, 1.2);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.reveal-delay-3 {
  transition-delay: 0.34s;
}

.reveal-delay-4 {
  transition-delay: 0.46s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.72s cubic-bezier(.22, .68, 0, 1.2), transform 0.72s cubic-bezier(.22, .68, 0, 1.2);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Utilities ---------- */
.text-accent {
  color: var(--accent);
}

.text-center {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--accent);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey-text);
  max-width: 520px;
  margin: 14px auto 0;
  font-weight: 300;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: none;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--grey-border);
  padding: 14px 28px;
}

.btn-ghost:hover {
  border-color: var(--black);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-border);
  animation: slideDown 0.6s cubic-bezier(.22, .68, 0, 1.2) both;
  transition: transform 0.4s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 15px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--accent);
}

.nav-cta {
  margin-left: 8px;
  padding: 11px 24px;
  font-size: 0.88rem;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
}

/* ---------- Hero ---------- */
.hero {
  padding: 50px 0 50px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #e0e0dc 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.45;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  top: -100px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 165, 0, 0.13), transparent 68%);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Hero animations */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  animation: fadeUp 0.8s cubic-bezier(.22, .68, 0, 1.2) 0.1s both;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s cubic-bezier(.22, .68, 0, 1.2) 0.22s both;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--grey-text);
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 0.8s cubic-bezier(.22, .68, 0, 1.2) 0.36s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(.22, .68, 0, 1.2) 0.48s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating cards */
.hero-float {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  animation: floatIn 1s cubic-bezier(.22, .68, 0, 1.2) 0.5s both;
  pointer-events: none;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(-40%) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

.hero-float-card {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 115px;
}

.hero-float-card .icon {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.hero-float-card .label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey-text);
}

.hero-float-card:nth-child(2) {
  margin-top: 28px;
}

.hero-float-card:nth-child(3) {
  margin-top: -12px;
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 56px;
  animation: fadeUp 1s cubic-bezier(.22, .68, 0, 1.2) 0.9s both;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-text);
  font-weight: 500;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

/* Hero badges */
.hero-badge-row {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1.5px solid var(--grey-border);
  flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(.22, .68, 0, 1.2) 0.6s both;
}

.hero-badge strong {
  display: block;
  font-size: 2.1rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-badge span {
  font-size: 0.82rem;
  color: var(--grey-text);
  margin-top: 5px;
  display: block;
  font-weight: 400;
}

/* ---------- Marquee ---------- */
.marquee-section {
  background: var(--black);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 32px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- Sections ---------- */
.section {
  padding: 50px 0;
}

.bg-grey {
  background: var(--grey-bg);
}

.section-head {
  margin-bottom: 56px;
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.35s, border-color 0.3s;
  cursor: none;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.22, .68, 0, 1.2);
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 165, 0, 0.28);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 54px;
  height: 54px;
  background: #fff4e0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.5rem;
  transition: background 0.3s, transform 0.3s;
}

.service-card:hover .service-icon {
  background: var(--accent);
  transform: scale(1.1) rotate(-4deg);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.93rem;
  margin-bottom: 26px;
}

.learn-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.3s;
}

.service-card:hover .learn-more {
  gap: 13px;
}

.learn-more::after {
  content: '→';
}

/* ---------- Stats ---------- */
.stats-wrapper {
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-block {
  padding: 52px 32px;
  text-align: center;
  border-right: 1.5px solid var(--grey-border);
  transition: background 0.3s;
}

.stat-block:last-child {
  border-right: none;
}

.stat-block:hover {
  background: var(--grey-bg);
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

.stat-number .acc {
  color: var(--accent);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--grey-text);
  font-weight: 500;
}

/* ---------- Two-col ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.col-visual {
  border-radius: 20px;
  background: var(--grey-light);
  border: 1.5px solid var(--grey-border);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.col-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 30% 70%, rgba(255, 165, 0, 0.1), transparent 60%); */
}

.col-content h2 {
  margin-bottom: 18px;
}

.col-content p {
  margin-bottom: 16px;
}

.col-content .btn {
  margin-top: 12px;
}

/* ---------- Process ---------- */
.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.process-item {
  padding: 40px 28px;
  border-right: 1.5px solid var(--grey-border);
  transition: background 0.3s;
}

.process-item:last-child {
  border-right: none;
}

.process-item:hover {
  background: var(--grey-bg);
}

.process-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--grey-light);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.process-item:hover .process-num {
  color: rgba(255, 165, 0, 0.3);
}

.process-item h4 {
  margin-bottom: 8px;
}

.process-item p {
  font-size: 0.88rem;
}

/* ---------- Portfolio ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey-light);
  aspect-ratio: 4/3;
  position: relative;
  border: 1.5px solid var(--grey-border);
  transition: transform 0.4s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.4s;
  cursor: none;
}

.portfolio-item:hover {
  transform: scale(1.025);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.35s;
}

.portfolio-item:hover .portfolio-overlay {
  background: rgba(13, 13, 13, 0.52);
}

.portfolio-overlay-content {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  color: var(--white);
}

.portfolio-item:hover .portfolio-overlay-content {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #aaa;
}

.portfolio-placeholder .p-icon {
  font-size: 2.4rem;
}

.portfolio-placeholder .p-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.35s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.97rem;
  color: var(--black);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
  border: none;
  padding: 0;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid var(--grey-border);
}

.t-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.t-role {
  font-size: 0.8rem;
  color: var(--grey-text);
}

/* ---------- CTA Block ---------- */
.cta-block {
  padding: 50px 0;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  font-size: 1.1rem;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 18px;
  display: block;
}

.footer-brand>p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.93rem;
  max-width: 300px;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 165, 0, 0.08);
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.93rem;
  font-weight: 300;
  transition: color 0.25s, padding-left 0.25s;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.84rem;
  font-weight: 300;
}

.footer-bottom a {
  color: var(--accent);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-block:nth-child(2) {
    border-right: none;
  }

  .stat-block:nth-child(3) {
    border-right: 1.5px solid var(--grey-border);
    border-top: 1.5px solid var(--grey-border);
  }

  .stat-block:nth-child(4) {
    border-right: none;
    border-top: 1.5px solid var(--grey-border);
  }

  .process-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-item:nth-child(2) {
    border-right: none;
  }

  .process-item:nth-child(3) {
    border-top: 1.5px solid var(--grey-border);
  }

  .process-item:nth-child(4) {
    border-right: none;
    border-top: 1.5px solid var(--grey-border);
  }

  .hero-float {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #cursor,
  #cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }

  .btn,
  .hamburger {
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    height: 100vh;
    background: var(--white);
    padding: 84px 36px 36px;
    gap: 30px;
    border-left: 1px solid var(--grey-border);
    z-index: 999;
    transition: right 0.38s cubic-bezier(.22, .68, 0, 1.2);
  }

  .nav-menu.open {
    right: 0;
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 40px 0 64px 15px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-block {
    border-right: none !important;
    border-bottom: 1.5px solid var(--grey-border);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

  .process-item {
    border-right: none !important;
    border-top: 1.5px solid var(--grey-border);
  }

  .process-item:first-child {
    border-top: none;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* custom css */
/* TEXT + VIDEO LAYOUT */
.hero-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 20px;
}

/* VIDEO STYLING */
.hero-video {
  position: relative;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-main {
    grid-template-columns: 1fr;
  }

  .hero-video {
    margin-top: 40px;
  }
}

/* Dropdown container */
.nav-menu .dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button */
.nav-menu .dropbtn {
  cursor: pointer;
  display: inline-block;
}

/* Dropdown content */
.nav-menu .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  /* change as needed */
  min-width: 210px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-radius: 8px;
  overflow: hidden;
}

/* Dropdown links */
.nav-menu .dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

/* Hover effect for links */
.nav-menu .dropdown-content a:hover {
  background-color: #f5f5f5;
  color: var(--accent);
}

/* Show dropdown on hover (desktop) */
.nav-menu .dropdown:hover .dropdown-content {
  display: block;
}


.portfolio-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

img.social-icons {
  width: 20px;
  height: 20px;
  object-fit: contain;
}