/* ============================================================
   WebCortex Media — Luxury Portfolio Design System v3.0
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --bg-primary:    #050505;
  --bg-secondary:  #0a0a0a;
  --bg-card:       rgba(255, 255, 255, 0.022);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  --gold:          #c9a553;
  --gold-light:    #e8c872;
  --gold-dark:     #a8893f;
  --gold-glow:     rgba(201, 165, 83, 0.25);
  --gold-shimmer:  linear-gradient(90deg, var(--gold), var(--gold-light), #f5e1a4, var(--gold));
  --white:         #ffffff;
  --white-90:      rgba(255, 255, 255, 0.9);
  --white-70:      rgba(255, 255, 255, 0.7);
  --white-50:      rgba(255, 255, 255, 0.5);
  --white-30:      rgba(255, 255, 255, 0.3);
  --white-10:      rgba(255, 255, 255, 0.07);
  --white-05:      rgba(255, 255, 255, 0.035);
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, sans-serif;
  --transition:    0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  --radius:        20px;
  --radius-sm:     14px;
  --glow:          0 0 60px rgba(201, 165, 83, 0.12);
  --glow-strong:   0 0 100px rgba(201, 165, 83, 0.18);
  --glass-bg:      rgba(255, 255, 255, 0.03);
  --glass-border:  rgba(255, 255, 255, 0.08);
  --banner-height: 0px; /* Dynamically updated via JS */
}

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

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-glow);
}


html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  position: relative;
  -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white-70);
  line-height: 1.7;
}

body.loading { overflow: hidden; }
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

.site-wrapper {
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   PARTICLES CANVAS
   ============================================================ */
.particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content { position: relative; z-index: 2; text-align: center; }

.preloader-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.preloader-logo span { color: var(--gold); }

.preloader-bar {
  width: 220px;
  height: 2px;
  background: var(--white-10);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  margin: 0 auto;
}

.preloader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gold-shimmer);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: loadBar 2s ease 0.5s forwards, shimmer 1.5s linear infinite;
}

.preloader-text {
  margin-top: 22px;
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white-30);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

@keyframes loadBar {
  0%   { width: 0; }
  40%  { width: 50%; }
  80%  { width: 85%; }
  100% { width: 100%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================================
   AMBIENT GLOW CURSOR (desktop only)
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 83, 0.035), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}

.cursor-glow.visible { opacity: 1; }

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s, transform 0.15s;
  box-shadow: 0 0 12px var(--gold-glow);
}

.cursor-dot.visible { opacity: 1; }

/* ---------- Glass Card base ---------- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding { padding: 140px 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
}

.section-title .gold { color: var(--gold); }

.section-desc {
  font-size: 1.05rem;
  color: var(--white-50);
  max-width: 600px;
  line-height: 1.85;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary);
  font-weight: 600;
}

.btn-gold::before {
  background: linear-gradient(135deg, var(--gold-light), #f0d88a);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(201, 165, 83, 0.45);
}

.btn-gold:hover::before { opacity: 1; }
.btn-gold .btn-text { position: relative; z-index: 2; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--white-30);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(201, 165, 83, 0.12);
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Gold divider ---------- */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
  border: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid var(--white-10);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-size: 0.87rem;
  font-weight: 400;
  color: var(--white-70);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

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

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

.nav-cta {
  padding: 10px 26px !important;
  font-size: 0.85rem !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-orb-1 {
  top: -15%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: rgba(201, 165, 83, 0.06);
  animation: floatOrb1 14s ease-in-out infinite;
}

.hero-orb-2 {
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(201, 165, 83, 0.04);
  animation: floatOrb2 18s ease-in-out infinite;
}

.hero-orb-3 {
  top: 30%;
  left: 40%;
  width: 300px;
  height: 300px;
  background: rgba(201, 165, 83, 0.03);
  animation: floatOrb3 10s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-30px, 20px) scale(1.08); }
  66%      { transform: translate(20px, -30px) scale(0.95); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -25px) scale(1.1); }
}

@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50%      { transform: translate(-20px, 15px); opacity: 1; }
}

/* Subtle grid pattern */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201, 165, 83, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 165, 83, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 15%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 15%, transparent 65%);
  pointer-events: none;
}



.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--white-10);
  background: var(--glass-bg);
  font-size: 0.8rem;
  color: var(--white-70);
  margin-bottom: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 30px;
  max-width: 740px;
}

.hero h1 .highlight {
  background: var(--gold-shimmer);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s ease-in-out infinite;
}

@keyframes textShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--white-50);
  max-width: 530px;
  margin-bottom: 48px;
  line-height: 1.85;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--white-30);
}

.hero-trust .trust-avatars { display: flex; }

.hero-trust .trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: 2px solid var(--bg-primary);
  margin-right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--bg-primary);
}

/* Stats Bar */
.stats-bar {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--white-10);
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.83rem;
  color: var(--white-50);
}

/* ============================================================
   SOCIAL PROOF SCROLL BAR
   ============================================================ */
.social-proof-bar {
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  background: var(--white-05);
  position: relative;
}

.social-proof-track {
  display: flex;
  gap: 60px;
  animation: scrollLeft 25s linear infinite;
  width: max-content;
}

.social-proof-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white-30);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-proof-track span .dot-sep {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

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

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-secondary); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-feature {
  padding: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--white-10);
  background: var(--bg-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(201, 165, 83, 0.06), transparent);
  opacity: 0;
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201, 165, 83, 0.2);
  transform: translateY(-4px);
}

.about-feature:hover::before { opacity: 1; }

.about-feature .icon { font-size: 1.5rem; margin-bottom: 14px; }

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 0.82rem;
  color: var(--white-50);
  line-height: 1.65;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual-card {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  border: 1px solid var(--white-10);
  background: linear-gradient(160deg, rgba(201, 165, 83, 0.08), var(--bg-card));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.about-visual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(201, 165, 83, 0.12), transparent 60%);
}

/* Floating geometric shapes */
.floating-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border: 1px solid rgba(201, 165, 83, 0.15);
  border-radius: 4px;
}

.shape-1 {
  top: 12%; right: 10%;
  width: 40px; height: 40px;
  transform: rotate(45deg);
  animation: floatShape 6s ease-in-out infinite;
}

.shape-2 {
  bottom: 18%; left: 8%;
  width: 24px; height: 24px;
  border-radius: 50%;
  animation: floatShape 8s ease-in-out infinite reverse;
}

.shape-3 {
  top: 35%; left: 15%;
  width: 16px; height: 16px;
  transform: rotate(30deg);
  animation: floatShape 5s ease-in-out infinite 1s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.3; }
  50%      { transform: translateY(-12px) rotate(55deg); opacity: 0.7; }
}

.about-visual-card .big-number {
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  position: relative;
  text-shadow: 0 0 80px var(--gold-glow);
}

.about-visual-card .card-label {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
}

.about-visual-card .card-sub {
  font-size: 0.85rem;
  color: var(--white-50);
  position: relative;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-header {
  text-align: center;
  margin-bottom: 68px;
}

.services-header .section-label { justify-content: center; }
.services-header .section-desc { margin: 0 auto; }

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

.service-card {
  padding: 44px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--white-10);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Mouse-follow glow inside card */
.service-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 83, 0.1), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  transform: translate(-50%, -50%);
}

.service-card:hover .service-glow { opacity: 1; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 165, 83, 0.3);
  box-shadow: var(--glow-strong);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 165, 83, 0.15), rgba(201, 165, 83, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 26px;
  border: 1px solid rgba(201, 165, 83, 0.15);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  box-shadow: 0 0 40px rgba(201, 165, 83, 0.2);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--white-50);
  line-height: 1.75;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { background: var(--bg-secondary); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.portfolio-grid .project:first-child { grid-column: 1 / -1; }

.project {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--white-10);
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
}

.project:hover {
  border-color: rgba(201, 165, 83, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

/* Shine sweep effect */
.project-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(105deg, transparent 40%, rgba(201, 165, 83, 0.06) 45%, rgba(201, 165, 83, 0.12) 50%, rgba(201, 165, 83, 0.06) 55%, transparent 60%);
  transform: translateX(-100%);
  transition: none;
  pointer-events: none;
}

.project:hover .project-shine {
  transform: translateX(100%);
  transition: transform 0.8s ease;
}

.project-preview {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.project:first-child .project-preview { aspect-ratio: 21/9; }

.project-preview-content {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.project-preview-content .brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  transition: var(--transition);
}

.project:hover .project-preview-content .brand-name { color: var(--gold); }

.project:first-child .project-preview-content .brand-name { font-size: 2.8rem; }

.project-preview-content .brand-tagline {
  font-size: 0.85rem;
  color: var(--white-50);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.project-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 165, 83, 0.06), transparent 70%);
  z-index: 1;
  transition: var(--transition);
}

.project:hover .project-preview::before {
  background: radial-gradient(circle at 50% 50%, rgba(201, 165, 83, 0.12), transparent 70%);
}

.project-info {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.project-info .tags {
  font-size: 0.8rem;
  color: var(--white-50);
}

.project-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-70);
  font-size: 1.1rem;
  transition: var(--transition);
}

.project:hover .project-arrow {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  color: var(--bg-primary);
  transform: translate(2px, -2px);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-header {
  text-align: center;
  margin-bottom: 68px;
}

.process-header .section-label { justify-content: center; }
.process-header .section-desc  { margin: 0 auto; }

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

.process-step {
  text-align: center;
  padding: 46px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--white-10);
  background: var(--bg-card);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.process-step:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201, 165, 83, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(201, 165, 83, 0.3), rgba(201, 165, 83, 0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  line-height: 1;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--white-50);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS MARQUEE
   ============================================================ */
.testimonials { background: var(--bg-secondary); }

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

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-secondary), transparent);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-secondary), transparent);
}

.testimonial-track {
  display: inline-flex;
  will-change: transform;
}

.track-ltr {
  -webkit-animation: marqueeLeft 35s linear infinite;
  animation: marqueeLeft 35s linear infinite;
}

.track-rtl {
  -webkit-animation: marqueeRight 35s linear infinite;
  animation: marqueeRight 35s linear infinite;
}

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

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

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.tcard {
  flex-shrink: 0;
  width: 380px;
  margin-right: 24px;
  padding: 34px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--white-10);
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.tcard:hover { border-color: rgba(201, 165, 83, 0.15); }

.tcard::before {
  content: '"';
  position: absolute;
  top: 10px; right: 18px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(201, 165, 83, 0.06);
  pointer-events: none;
}

.tcard .stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.tcard blockquote {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}

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

.tcard .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--bg-primary);
}

.tcard .author-info h5 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.tcard .author-info p {
  font-size: 0.75rem;
  color: var(--white-50);
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 165, 83, 0.08), transparent 55%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
  filter: blur(40px);
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50%      { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.cta-section .section-label { justify-content: center; }
.cta-section .section-title { max-width: 600px; margin: 0 auto 20px; }
.cta-section .section-desc { margin: 0 auto 48px; text-align: center; }

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-btns .btn-gold { position: relative; }

.cta-btns .btn-gold::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0; }
}

.cta-contact-row {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-50);
  transition: var(--transition);
}

.cta-contact-item:hover { color: var(--gold); }

.cta-contact-item .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.cta-contact-item:hover .icon-circle {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 165, 83, 0.15);
}

/* ============================================================
   FLOATING WHATSAPP CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 50px rgba(37, 211, 102, 0.5);
}

.floating-cta .wa-icon { font-size: 1.3rem; }

.floating-cta::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50px;
  border: 2px solid #25d366;
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  padding: 68px 0 34px;
  border-top: 1px solid var(--white-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .nav-logo {
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--white-50);
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--white-50);
  margin-bottom: 12px;
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--white-10);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--white-30);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white-50);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(201, 165, 83, 0.25);
}


/* ============================================================
   ANDROID APP INSTALL SECTION & BANNER
   ============================================================ */

/* App Banner */
.app-banner {
  background: rgba(201, 165, 83, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-glow);
  color: var(--gold);
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  display: none;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

body.has-app-banner {
  padding-top: var(--banner-height);
}

body.has-app-banner .navbar {
  top: var(--banner-height);
}

.app-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-link {
  color: var(--bg-primary);
  text-decoration: underline;
  margin-left: 5px;
  font-weight: 800;
}

.banner-close {
  position: absolute;
  right: 0;
  background: rgba(0,0,0,0.05);
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--bg-primary);
  font-weight: 900;
}

/* Install Section - Aggressive Reset */
.app-install-section {
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
  position: relative;
  border-top: 1px solid var(--white-05);
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

.install-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  text-align: center;
  width: 100%;
}

.install-info {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-install-section .section-label {
  justify-content: center;
}

.app-install-section .section-title {
  text-align: center;
}

.app-install-section .section-desc {
  margin: 0 auto;
  text-align: center;
}

.app-details {
  margin-top: 40px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.app-details::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at top left, var(--gold-glow), transparent 70%);
  pointer-events: none;
}

.app-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--white-10);
  padding-bottom: 30px;
  width: 100%;
}

.meta-item .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}

.meta-item .value {
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-display);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.install-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.btn-download {
  padding: 18px 40px;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(201, 165, 83, 0.2);
}

.fallback-msg {
  display: none;
  width: 100%;
  animation: fadeIn 0.8s ease forwards;
}

.fallback-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 34px;
  background: var(--bg-card);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.qr-container {
  position: relative;
  width: 160px;
  height: 160px;
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  flex-shrink: 0;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.qr-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-glow {
  position: absolute;
  inset: -10px;
  background: var(--gold-glow);
  filter: blur(20px);
  z-index: -1;
  opacity: 0.5;
}

.fallback-text p {
  color: var(--white-70);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 320px;
}

/* Copy FAB Styling - Matching Chat Button */
.copy-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  margin: 0 auto;
}

.copy-fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.copy-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2s ease-in-out infinite;
}

.copy-fab .fab-text {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--white-50);
  width: max-content;
  white-space: nowrap;
}

/* Instruction Card */
.instruction-card {
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-glow);
  box-shadow: var(--glow);
  animation: slideInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.instruction-card h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.step-item p {
  color: var(--white-90);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Premium Mockup */
.app-mockup-wrapper {
  position: relative;
  width: 300px;
  height: 620px;
  margin: 0 auto;
  border: 14px solid #1a1a1a;
  border-radius: 48px;
  background: #000;
  box-shadow: 
    0 40px 100px -20px rgba(0,0,0,0.8), 
    0 15px 40px -15px rgba(0,0,0,0.4),
    inset 0 0 2px 1px rgba(255,255,255,0.1);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.mockup-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  border-radius: 36px;
  z-index: 1;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}

.mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .process-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid          { grid-template-columns: 1fr; gap: 44px; }
  .about-visual        { order: -1; }
  .cta-contact-row     { gap: 28px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .section-padding     { padding: 90px 0; }
  .cursor-glow,
  .cursor-dot          { display: none; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 40px 40px;
    gap: 28px;
    transition: var(--transition);
    border-left: 1px solid var(--white-10);
    z-index: 1000;
  }

  .nav-links.open { right: 0; }
  .hamburger { display: flex; }

  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .hero-sub { font-size: 1rem; }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
    text-align: center;
  }

  .services-grid       { grid-template-columns: 1fr; }
  .portfolio-grid      { grid-template-columns: 1fr; }
  .portfolio-grid .project:first-child { grid-column: 1; }
  .process-grid        { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 32px; }

  /* Note: Aggressive Reset for Centering and Overflow */
  .install-grid, .install-info, .app-details {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .app-details {
    padding: 24px 12px !important; /* Extremely safe side padding */
    margin-top: 24px;
    max-width: 96% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important; /* Ignore any reveal transforms */
  }

  .app-meta { 
    justify-content: center !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    padding-bottom: 20px;
    width: 100%;
  }

  .meta-item {
    text-align: center;
    flex: 1 1 auto;
    width: auto;
    min-width: 110px;
  }
  .meta-item .value {
    font-size: 0.95rem !important;
    white-space: nowrap;
  }

  .btn-download {
    width: 100%;
    max-width: 280px;
    padding: 18px 20px !important;
    white-space: normal !important;
    line-height: 1.3;
  }

  .section-desc { max-width: 100%; text-align: center; }

  .tcard {
    width: 320px;
    padding: 26px 22px;
    margin-right: 20px;
  }

  .tcard blockquote {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .tcard::before {
    font-size: 3.5rem;
    top: 5px;
    right: 14px;
  }

  .cta-contact-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .cta-contact-item {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .floating-cta span:not(.wa-icon) { display: none; }
  .floating-cta { padding: 16px; border-radius: 50%; }

  .hero-orb-1 { width: 400px; height: 400px; }
  .hero-orb-2 { width: 300px; height: 300px; }
  .hero-orb-3 { display: none; }

  .testimonial-marquee::before,
  .testimonial-marquee::after { width: 50px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE
   ============================================================ */
@media (max-width: 480px) {
  .section-padding { padding: 70px 0; }
  .container { 
    width: 92%; 
    max-width: 100%; 
    margin-left: auto !important; 
    margin-right: auto !important; 
    overflow: hidden; /* Local containment */
  }
  .stats-bar { grid-template-columns: 1fr; gap: 30px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .about-features { grid-template-columns: 1fr; }
  .about-visual-card { max-width: 100%; aspect-ratio: auto; padding: 40px 24px; min-height: 280px; }

  .app-mockup-wrapper {
    width: 260px;
    height: 540px;
    border-width: 12px;
    border-radius: 40px;
    margin: 0 auto !important;
  }
  .mockup-screen {
    border-radius: 32px;
  }

  .tcard {
    width: 280px;
    padding: 20px 18px;
    margin-right: 16px;
  }
  .tcard blockquote {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }
  .tcard .author-avatar {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }
  .tcard::before { font-size: 3rem; }

  .hero-badge { font-size: 0.72rem; padding: 8px 18px; }
  .hero-trust { flex-wrap: wrap; font-size: 0.78rem; }
  .stat-item h3 { font-size: 2rem; }

  .project-preview-content .brand-name { font-size: 1.5rem; }
  .project:first-child .project-preview-content .brand-name { font-size: 2rem; }
  .project-info { padding: 18px 20px; }

  .cta-contact-item { font-size: 0.82rem; }

  .floating-cta { bottom: 20px; right: 20px; }
}

/* ============================================================
   RESPONSIVE — VERY SMALL
   ============================================================ */
@media (max-width: 360px) {
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.92rem; }
  .section-title { font-size: 1.8rem; }
  .tcard { width: 260px; }
  .stats-bar { grid-template-columns: 1fr; }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: rgba(201, 165, 83, 0.2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(201, 165, 83, 0.4); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}







