/* ==========================================================================
   AVIRAAJ DIGITECH - OFFICIAL MULTI-PAGE CORPORATE PORTFOLIO
   Theme: Modern Light Tech & Gold FinTech Aesthetic (Apple / Stripe standard)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
  /* Color Tokens */
  --bg-main: #FAFCFF;
  --bg-surface: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-subtle: #F1F5F9;
  --bg-accent-light: #F8FAFD;
  
  /* Primary & Accents */
  --primary-gold: #D4AF37;
  --primary-gold-dark: #B8860B;
  --primary-gold-light: #FDF4D8;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #AA771C 100%);
  --gold-text-gradient: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #996515 100%);
  
  --tech-blue: #0284C7;
  --tech-blue-gradient: linear-gradient(135deg, #0284C7 0%, #2563EB 100%);
  --fintech-green: #10B981;
  --fintech-green-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --whatsapp-green: #25D366;
  
  /* Typography */
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-subtle: #64748B;
  --text-light: #94A3B8;
  
  /* Borders & Shadows */
  --border-subtle: rgba(226, 232, 240, 0.85);
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-gold-glow: rgba(212, 175, 55, 0.6);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);

  /* Radii & Font */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-dark);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background: var(--bg-main);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Animated Lighting */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-blob-1 {
  position: absolute;
  top: -10%;
  left: 15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(253, 244, 216, 0.05) 50%, transparent 70%);
  filter: blur(80px);
  animation: floatOrb 22s infinite alternate ease-in-out;
}

.ambient-blob-2 {
  position: absolute;
  top: 40%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, rgba(56, 189, 248, 0.03) 50%, transparent 70%);
  filter: blur(90px);
  animation: floatOrb 28s infinite alternate-reverse ease-in-out;
}

.bg-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.08); }
  100% { transform: translate(-30px, 50px) scale(0.95); }
}

/* Container & Global Helpers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--primary-gold-dark);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

.badge-tag.blue {
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.25);
  color: var(--tech-blue);
}

.badge-tag.green {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--fintech-green);
}

.badge-playstore-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(2, 132, 199, 0.3);
  color: var(--tech-blue);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.65;
}

.text-gold-gradient {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-blue-gradient {
  background: var(--tech-blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.1rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  border: 1.5px solid var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-gold);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.brand-icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 40%, rgba(212,175,55,0.3) 50%, transparent 60%);
  animation: shineSheen 4s infinite;
}

.brand-logo:hover .brand-icon-box {
  transform: rotate(4deg) scale(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary-gold-dark);
  text-transform: uppercase;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding: 0.3rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  background: var(--gold-gradient);
  color: #1A1303;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* SUBPAGE HERO HEADER */
.page-hero {
  padding: 8.5rem 0 4rem 0;
  background: linear-gradient(180deg, #F8FAFD 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* HERO SECTION (HOME) */
.hero-section {
  padding: 8.5rem 0 5rem 0;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  backdrop-filter: blur(10px);
}

.hero-trust-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fintech-green);
  box-shadow: 0 0 10px var(--fintech-green);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary-3d {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--gold-gradient);
  color: #1A1303;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.btn-primary-3d::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 20%, rgba(255, 255, 255, 0.5) 45%, rgba(255, 255, 255, 0.8) 50%, transparent 60%);
  transform: rotate(30deg) translateX(-100%);
  animation: shineSheen 4.5s infinite;
}

@keyframes shineSheen {
  0%, 60% { transform: rotate(30deg) translateX(-100%); }
  100% { transform: rotate(30deg) translateX(100%); }
}

.btn-primary-3d:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

/* Professional Google Play Store Button */
.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.35rem;
  background: #0F172A;
  color: #FFFFFF;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.btn-playstore:hover {
  background: #1E293B;
  transform: translateY(-2px);
  border-color: var(--primary-gold);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
}

.btn-playstore i {
  font-size: 1.4rem;
  color: #38BDF8;
}

.btn-playstore-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.btn-playstore-text .small {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #94A3B8;
  text-transform: uppercase;
}

.btn-playstore-text .big {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  background: #25D366;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.btn-whatsapp-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: #20BA5A;
}

.btn-secondary-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-secondary-glass:hover {
  background: #FFFFFF;
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary-gold-dark);
}

/* Quick Metrics Row */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-subtle);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* 3D Visual Stage */
.hero-visual-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.hero-canvas-container {
  position: absolute;
  inset: -15%;
  z-index: 1;
  pointer-events: none;
}

#hero-3d-canvas {
  width: 100%;
  height: 100%;
}

.device-phone-3d {
  position: relative;
  width: 320px;
  height: 640px;
  background: #0B0F19;
  border-radius: 46px;
  box-shadow: 
    0 25px 60px -15px rgba(15, 23, 42, 0.25),
    0 0 0 10px #1E293B,
    0 0 0 12px #334155,
    0 0 40px rgba(212, 175, 55, 0.25);
  overflow: hidden;
  z-index: 2;
  transform: rotateY(-8deg) rotateX(6deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  transform-style: preserve-3d;
}

.device-phone-3d:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 
    0 35px 80px -15px rgba(15, 23, 42, 0.3),
    0 0 0 10px #1E293B,
    0 0 0 12px #D4AF37,
    0 0 60px rgba(212, 175, 55, 0.4);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0A0E17;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem 1rem 1rem;
  overflow: hidden;
  position: relative;
  font-family: var(--font-body);
}

.phone-notch {
  width: 110px;
  height: 22px;
  background: #1E293B;
  border-radius: 0 0 14px 14px;
  margin: -1.25rem auto 0.75rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.notch-camera {
  width: 8px;
  height: 8px;
  background: #0284C7;
  border-radius: 50%;
}

.notch-speaker {
  width: 40px;
  height: 3px;
  background: #334155;
  border-radius: 2px;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.phone-brand-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phone-brand-icon {
  width: 24px;
  height: 24px;
  background: var(--gold-gradient);
  color: #1A1303;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.phone-brand-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #F8FAFC;
}

.phone-status-badge {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.phone-balance-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.balance-title {
  font-size: 0.7rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.balance-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0.2rem 0;
}

.balance-growth {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: #10B981;
  font-weight: 600;
}

.phone-chart-container {
  height: 80px;
  width: 100%;
  margin-top: 0.5rem;
  position: relative;
}

.phone-chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.phone-stock-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.phone-stock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.6rem;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 10px;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stock-symbol {
  font-weight: 700;
  color: #F1F5F9;
}

.stock-name {
  font-size: 0.62rem;
  color: #64748B;
}

.stock-price-box {
  text-align: right;
}

.stock-price {
  font-weight: 700;
  color: #FFFFFF;
  font-family: var(--font-mono);
}

.stock-change {
  font-size: 0.65rem;
  font-weight: 600;
}

.stock-change.up { color: #10B981; }

.phone-nav-bar {
  display: flex;
  justify-content: space-around;
  padding: 0.6rem 0;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.phone-nav-item {
  font-size: 0.68rem;
  color: #94A3B8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}

.phone-nav-item.active {
  color: var(--primary-gold);
  font-weight: 700;
}

.floating-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 3;
  animation: floatChip 5s infinite ease-in-out;
}

.floating-chip.top-left {
  top: 12%;
  left: -20%;
  animation-delay: 0s;
}

.floating-chip.bottom-right {
  bottom: 18%;
  right: -22%;
  animation-delay: 2.5s;
}

.floating-chip .chip-icon { font-size: 1.25rem; }
.floating-chip .chip-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
}
.floating-chip .chip-desc {
  font-size: 0.68rem;
  color: var(--primary-gold-dark);
  font-weight: 600;
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* REAL PROJECT SHOWCASE CARDS (Full Phone View, No Crop) */
.showcase-grid-real {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.project-real-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.project-real-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), var(--shadow-gold);
  border-color: var(--border-gold);
}

.project-img-wrapper {
  width: 100%;
  height: 420px;
  background: #0B0F19;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.project-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.project-real-card:hover .project-img-wrapper img {
  transform: scale(1.03);
}

.project-real-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-real-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.project-real-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.project-feat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.project-feat-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-gold);
}

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

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #F8FAFD 0%, #FFFFFF 100%);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-gold-dark);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--gold-gradient);
  color: #1A1303;
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.service-tag-item {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  background: var(--bg-subtle);
  color: var(--text-subtle);
  border-radius: 6px;
}

/* CONTACT PAGE CARDS */
.contact-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.contact-hub-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-md);
}

.contact-hub-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.contact-hub-icon.whatsapp { background: rgba(37, 211, 102, 0.12); color: #25D366; }
.contact-hub-icon.email { background: rgba(212, 175, 55, 0.12); color: var(--primary-gold-dark); }
.contact-hub-icon.location { background: rgba(2, 132, 199, 0.12); color: var(--tech-blue); }

.contact-hub-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.contact-hub-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.btn-contact-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.btn-contact-action.wa {
  background: #25D366;
  color: #FFFFFF;
}

.btn-contact-action.mail {
  background: var(--text-dark);
  color: #FFFFFF;
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseWa 2.5s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* LEGAL CONTENT PAGES */
.legal-content-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  margin: 2rem auto;
  max-width: 960px;
}

.legal-content-card h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 2.2rem 0 0.75rem 0;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--bg-subtle);
}

.legal-content-card h2:first-of-type { margin-top: 0; }
.legal-content-card p, .legal-content-card li {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-content-card ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }

/* FOOTER */
.footer {
  background: #0B0F19;
  color: #94A3B8;
  padding: 5rem 0 2rem 0;
  position: relative;
  overflow: hidden;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-link a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-link a:hover { color: var(--primary-gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.82rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover { color: var(--primary-gold); }

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-grid, .showcase-grid-real, .services-grid, .contact-hub-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-title { font-size: 2.8rem; }
  .page-hero-title { font-size: 2.4rem; }
  .footer-top-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual-stage { margin-top: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero-section { padding: 6.5rem 0 3.5rem 0; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .page-hero-title { font-size: 2rem; }
  .project-img-wrapper { height: 340px; }
  
  .mobile-toggle { display: block; }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2.5rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    transition: left 0.35s ease;
    box-shadow: var(--shadow-xl);
  }
  
  .nav-menu.open { left: 0; }
  .nav-link { font-size: 1.15rem; }
  .hero-stats-row { grid-template-columns: 1fr; gap: 1rem; }
  .device-phone-3d { width: 290px; height: 580px; }
  .floating-chip.top-left { left: -5%; }
  .floating-chip.bottom-right { right: -5%; }
  .footer-top-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .legal-content-card { padding: 2rem 1.25rem; }
}
