/* ═══════════════════════════════════════════════════════════
   AKAL CONSTRUCTION — Bold Industrial Design System
   ═══════════════════════════════════════════════════════════ */

/* --- Custom Properties --- */
:root {
  --color-bg-dark: #0a0a0a;
  --color-bg-section: #111111;
  --color-bg-card: #1a1a1a;
  --color-bg-card-hover: #222222;
  --color-accent: #d4a017;
  --color-accent-light: #e8b830;
  --color-accent-dark: #b8860b;
  --color-text: #f5f5f5;
  --color-text-muted: #9ca3af;
  --color-text-dim: #6b7280;
  --color-border: #2a2a2a;
  --color-border-light: #333333;
  --color-white: #ffffff;
  --color-danger: #ef4444;
  --color-success: #22c55e;

  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  --nav-height: 110px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-bar {
  width: 120px;
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 16px;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--color-accent);
  border-radius: 2px;
  animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  height: 86px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  z-index: 1001;
}

.nav-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 6px 10px;
  transition: height 0.3s ease;
}

.nav.scrolled .nav-logo-img {
  height: 72px;
}

.footer .nav-logo-img {
  height: 120px;
  padding: 8px 12px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--color-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-bg-dark);
}

.nav-logo-text span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--color-accent);
  color: var(--color-bg-dark) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--color-accent-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

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

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

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

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

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.5) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  border-top: 1px solid var(--color-border);
}

.hero-stat {
  flex: 1;
  padding: 32px clamp(1.5rem, 4vw, 4rem);
  border-right: 1px solid var(--color-border);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    position: relative;
  }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-stat-number { font-size: 1.5rem; }
  .hero-stat-label { margin-top: 0; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-light);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* --- Section Styles --- */
.section {
  padding: clamp(60px, 8vw, 100px) clamp(1.5rem, 4vw, 4rem);
}

.section-dark {
  background:
    radial-gradient(ellipse 600px 400px at 10% 50%, rgba(212,160,23,0.04) 0%, transparent 70%),
    var(--color-bg-dark);
}

.section-darker {
  background-color: var(--color-bg-section);
  background-image:
    radial-gradient(ellipse 600px 400px at 85% 30%, rgba(212,160,23,0.03) 0%, transparent 70%),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 100%, 60px 60px, 60px 60px;
  background-repeat: no-repeat, repeat, repeat;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--color-accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Service Cards --- */
.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 32px;
  transition: border-color 0.4s var(--ease-out-expo), background 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover {
  border-color: var(--color-border-light);
  background: var(--color-bg-card-hover);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 160, 23, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap 0.3s ease;
}

.service-card:hover .service-card-link {
  gap: 10px;
}

/* --- About Preview --- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview-images {
  position: relative;
  height: 500px;
}

.about-preview-img {
  border-radius: 12px;
  overflow: hidden;
  position: absolute;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.about-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview-img-1 {
  width: 65%;
  height: 80%;
  top: 0;
  left: 0;
}

.about-preview-img-2 {
  width: 50%;
  height: 55%;
  bottom: 0;
  right: 0;
  border: 4px solid var(--color-bg-dark);
}

.about-experience-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  padding: 20px 28px;
  border-radius: 12px;
  text-align: center;
  z-index: 2;
}

.about-experience-badge-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.about-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.about-list-icon {
  width: 24px;
  height: 24px;
  background: rgba(212, 160, 23, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-list-icon svg {
  width: 12px;
  height: 12px;
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .about-preview {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-preview-images {
    height: 400px;
  }
}

/* --- Testimonials Section --- */
.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 32px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(212, 160, 23, 0.15);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  fill: var(--color-accent);
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-accent);
}

.testimonial-author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

/* --- Featured Testimonial --- */
.featured-testimonial {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--color-accent);
}

.featured-testimonial::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 10rem;
  font-family: Georgia, serif;
  color: rgba(212, 160, 23, 0.08);
  line-height: 1;
  pointer-events: none;
}

.featured-testimonial .testimonial-stars svg {
  width: 22px;
  height: 22px;
}

.featured-testimonial-text {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--color-text-muted);
  line-height: 1.9;
  font-style: italic;
  margin: 24px 0 32px;
  max-width: 900px;
}

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

.featured-testimonial-avatar {
  width: 64px;
  height: 64px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-bg-dark);
}

.featured-testimonial-author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.featured-testimonial-author-info p {
  font-size: 0.9rem;
  color: var(--color-text-dim);
  margin-top: 2px;
}

/* --- Trusted By / Client Logos --- */
.trusted-by {
  text-align: center;
  padding: 20px 0;
}

.trusted-by-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-dim);
  margin-bottom: 32px;
}

.trusted-by-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}

.trusted-by-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.trusted-by-logo:hover {
  opacity: 0.7;
}

.trusted-by-divider {
  width: 1px;
  height: 32px;
  background: var(--color-border-light);
}

@media (max-width: 640px) {
  .trusted-by-logos {
    flex-direction: column;
    gap: 20px;
  }
  .trusted-by-divider {
    width: 40px;
    height: 1px;
  }
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: clamp(60px, 8vw, 100px) clamp(1.5rem, 4vw, 4rem);
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  z-index: 0;
}

.cta-banner-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.05) 20px,
    rgba(0,0,0,0.05) 40px
  );
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-bg-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(10, 10, 10, 0.7);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background: var(--color-bg-dark);
  color: var(--color-accent);
}

.cta-banner .btn:hover {
  background: var(--color-bg-section);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-section);
  border-top: 1px solid var(--color-border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px clamp(1.5rem, 4vw, 4rem) 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--color-accent);
  background: rgba(212, 160, 23, 0.1);
  color: var(--color-accent);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--color-text);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 24px clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--color-text-dim);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* --- Page Header (inner pages) --- */
.page-header {
  position: relative;
  padding: calc(var(--nav-height) + 24px) clamp(1.5rem, 4vw, 4rem) 24px;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #14110e 0%, #1e1a15 100%);
}

.page-header-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 160, 23, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 23, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-dim);
  margin-bottom: 16px;
}

.page-header .breadcrumb a {
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.page-header .breadcrumb a:hover {
  color: var(--color-accent);
}

.page-header .breadcrumb svg {
  width: 14px;
  height: 14px;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.page-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-top: 16px;
  max-width: 560px;
  line-height: 1.7;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
}

/* --- Marquee --- */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-border-light);
}

.marquee-item .dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

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

/* --- Project Cards --- */
.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  group: true;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

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

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.project-card-overlay h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.project-card-overlay p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.project-card-overlay .tag {
  display: inline-block;
  background: rgba(212, 160, 23, 0.2);
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-dim);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* --- Sticky Notes (Homepage Services) --- */
.sticky-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sticky-note {
  background: rgba(212, 160, 23, 0.06);
  border: 1px solid rgba(212, 160, 23, 0.12);
  border-radius: 3px;
  padding: 28px 24px 24px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.sticky-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 36px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 0 0 2px 2px;
}

.sticky-note:nth-child(1) { transform: rotate(-1.2deg); }
.sticky-note:nth-child(2) { transform: rotate(0.8deg); }
.sticky-note:nth-child(3) { transform: rotate(-0.5deg); }
.sticky-note:nth-child(4) { transform: rotate(0.7deg); }
.sticky-note:nth-child(5) { transform: rotate(-0.9deg); }
.sticky-note:nth-child(6) { transform: rotate(0.4deg); }

.sticky-note:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.1);
  border-color: rgba(212, 160, 23, 0.25);
  background: rgba(212, 160, 23, 0.1);
}

.sticky-note-num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  opacity: 0.6;
}

.sticky-note h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
  line-height: 1.25;
}

.sticky-note p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

.sticky-note-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-accent);
  margin-top: 16px;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.sticky-note:hover .sticky-note-arrow { gap: 10px; }

@media (max-width: 1024px) {
  .sticky-notes { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .sticky-notes { grid-template-columns: 1fr; gap: 16px; }
  .sticky-note { transform: none !important; }
}

/* --- Misc Utilities --- */
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.font-heading { font-family: var(--font-heading); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* --- Stats Row (About page) --- */
.stats-row {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.stats-item {
  flex: 1;
  padding: 48px 32px;
  text-align: center;
  background: var(--color-bg-card);
  border-right: 1px solid var(--color-border);
}

.stats-item:last-child {
  border-right: none;
}

.stats-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stats-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .stats-row {
    flex-wrap: wrap;
  }
  .stats-item {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--color-border);
  }
  .stats-item:nth-child(2) {
    border-right: none;
  }
  .stats-item:nth-child(3),
  .stats-item:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .stats-row {
    flex-direction: column;
  }
  .stats-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 32px 24px;
  }
  .stats-item:last-child {
    border-bottom: none;
  }
}

/* --- Counter Animation Placeholder --- */
.counter {
  display: inline-block;
}

/* --- Scroll to top --- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 100;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --- Careers Page --- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }
}

.job-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.job-card:hover {
  border-color: var(--color-border-light);
  background: var(--color-bg-card-hover);
  transform: translateY(-4px);
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-card-header {
  margin-bottom: 16px;
}

.job-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.job-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.job-card-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.job-card-location svg {
  width: 15px;
  height: 15px;
  color: var(--color-text-dim);
  flex-shrink: 0;
}

.job-card-badge {
  display: inline-block;
  background: rgba(212, 160, 23, 0.15);
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.job-card-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.culture-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.culture-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.culture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

@media (max-width: 1024px) {
  .culture-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* --- Services Page --- */
.services-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.services-overview-text {
  max-width: 720px;
}

.services-overview-img {
  border-radius: 12px;
  overflow: hidden;
}

.services-overview-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .services-overview {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.services-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.services-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.services-nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out-expo);
}

.services-nav-item:hover {
  border-color: var(--color-border-light);
  background: var(--color-bg-card-hover);
  transform: translateY(-4px);
}

.services-nav-item:hover::before {
  transform: scaleX(1);
}

.services-nav-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 160, 23, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.services-nav-item:hover .services-nav-icon {
  background: rgba(212, 160, 23, 0.2);
}

.services-nav-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.services-nav-item span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .services-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-nav {
    grid-template-columns: 1fr;
  }
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-reversed .service-detail-content {
  order: -1;
}

.service-detail-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 12px;
}

.service-detail-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}


.service-detail-content .section-title {
  margin-bottom: 24px;
}

.service-detail-lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail-body {
  font-size: 0.95rem;
  color: var(--color-text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-detail-specs {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.spec-icon {
  width: 24px;
  height: 24px;
  background: rgba(212, 160, 23, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spec-icon svg {
  width: 12px;
  height: 12px;
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-detail-reversed .service-detail-content {
    order: 0;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
}

.process-line {
  width: 100%;
  height: 2px;
  background: var(--color-border);
  margin-bottom: 24px;
  position: relative;
}

.process-line::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-bg-section);
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-step {
    text-align: left;
    padding: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 20px;
  }

  .process-number {
    grid-row: 1 / 3;
    font-size: 2.5rem;
    align-self: center;
    margin-bottom: 0;
  }

  .process-line {
    display: none;
  }

  .process-step h3 {
    margin-bottom: 4px;
  }
}

/* --- Horizontal Rule --- */
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-light));
  z-index: 1002;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
  pointer-events: none;
}

/* --- Grain Texture Overlay --- */
.section {
  position: relative;
}

.section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}
