:root {
  --primary: #FCB018; 
  --primary-dark: #b87b00;
  --bg-base: #000000;
  --bg-surface: #0a0a0a;
  --bg-surface-elevated: #111111;
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.15);
  
  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --transition: all 0.3s ease;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; background: var(--bg-base); }
body {
  font-family: var(--font-main);
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* LUXURY TECH PRELOADER */
.oa-preloader {
  position: fixed; inset: 0; z-index: 999999;
  background: #050505; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px; opacity: 0.6;
}
.oa-preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content {
  position: relative; z-index: 1; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.preloader-logo-glow {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: #fff;
  letter-spacing: -0.02em; text-shadow: 0 0 40px rgba(252,176,24,0.4);
}
.preloader-logo-glow span { font-weight: 300; color: var(--primary); }
.preloader-progress-wrapper {
  width: 260px; height: 4px; background: rgba(255,255,255,0.05);
  border-radius: 4px; overflow: hidden; position: relative;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}
.preloader-progress-bar {
  width: 0%; height: 100%; background: linear-gradient(90deg, var(--primary), #ff6b6b);
  border-radius: 4px; transition: width 0.1s ease; box-shadow: 0 0 15px var(--primary);
}
.preloader-status {
  font-size: 0.85rem; letter-spacing: 0.2em; color: var(--text-muted); font-weight: 500;
}

.oa-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: var(--transition); cursor: none;}
button, input { font-family: inherit; }

/* Custom Cursor */
.cursor-dot {
  width: 6px; height: 6px; background: var(--primary); border-radius: 50%;
  position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
  pointer-events: none; z-index: 9999999;
}
.cursor-outline {
  width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
  position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
  pointer-events: none; z-index: 9999998; transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s;
}
.cursor-outline.hover {
  width: 50px; height: 50px; background: rgba(252,176,24,0.1); border-color: var(--primary); backdrop-filter: blur(2px);
}

/* Typography & Utilities */
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.eyebrow {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--primary); margin-bottom: 1rem;
}
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: var(--transition-smooth); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.load-anim { opacity: 0; transform: translateY(20px); animation: loadUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes loadUp { to { opacity: 1; transform: translateY(0); } }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: #fff; color: #000; padding: 14px 28px; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem; transition: var(--transition-smooth);
}
.btn-primary .btn-icon-wrapper {
  background: rgba(0,0,0,0.1); width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 10px 25px rgba(255,255,255,0.15); background: var(--primary);
}
.btn-primary:hover .btn-icon-wrapper { transform: translateX(3px); background: #000; color: #fff; }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: #fff; padding: 14px 28px; border-radius: 100px;
  font-weight: 500; font-size: 0.95rem; border: 1px solid var(--border-color);
  transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }
.btn-secondary:active, .btn-secondary:focus { background: rgba(255,255,255,0.1); color: #fff; outline: none; }
.btn-primary:active, .btn-primary:focus { outline: none; transform: scale(0.98); }

/* HEADER */
.oa-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 24px 0; transition: var(--transition-smooth);
  background: transparent;
}
.oa-header.scrolled {
  padding: 16px 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.oa-logo { 
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: -0.02em;
}
.oa-logo span { font-weight: 300; color: var(--text-muted); }
.header-right { display: flex; align-items: center; gap: 20px; }

.oa-contact-btn {
  display: flex; align-items: center; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color); border-radius: 100px; overflow: hidden;
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  transition: var(--transition);
}
.oa-contact-btn .btn-text { padding: 10px 20px; }
.oa-contact-btn .btn-icon {
  background: rgba(255,255,255,0.05); padding: 10px 15px; border-left: 1px solid var(--border-color);
  transition: var(--transition);
}
.oa-contact-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.oa-contact-btn:hover .btn-icon { background: var(--primary); color: #000; }

.oa-hamburger {
  width: 44px; height: 44px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-color);
  border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  cursor: none; z-index: 1001; transition: var(--transition);
}
.oa-hamburger:hover { background: rgba(255,255,255,0.1); }
.oa-hamburger span { width: 18px; height: 1.5px; background: #fff; transition: var(--transition); }

/* FULLSCREEN MENU */
.oa-fullscreen-menu {
  position: fixed; inset: 0; background: #000; z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition-smooth); overflow: hidden;
}
.oa-fullscreen-menu.active { opacity: 1; pointer-events: all; }
.menu-bg-mesh {
  position: absolute; inset: 0; opacity: 0.3;
  background: radial-gradient(circle at 50% 50%, rgba(252,176,24,0.1) 0%, transparent 50%),
              radial-gradient(circle at 100% 0%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.menu-content { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 800px; padding: 0 40px; }
.menu-link { 
  display: flex; align-items: baseline; gap: 2rem;
  font-family: var(--font-display); font-size: 4.5rem; font-weight: 500; color: #fff; 
  letter-spacing: -0.03em; transition: var(--transition-smooth);
  transform: translateY(40px); opacity: 0; border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}
.menu-num { font-size: 1.2rem; font-weight: 400; color: var(--text-muted); font-family: var(--font-main); }
.oa-fullscreen-menu.active .menu-link { transform: translateY(0); opacity: 1; }
.oa-fullscreen-menu.active .menu-link:nth-child(1) { transition-delay: 0.1s; }
.oa-fullscreen-menu.active .menu-link:nth-child(2) { transition-delay: 0.15s; }
.oa-fullscreen-menu.active .menu-link:nth-child(3) { transition-delay: 0.2s; }
.oa-fullscreen-menu.active .menu-link:nth-child(4) { transition-delay: 0.25s; }
.oa-fullscreen-menu.active .menu-link:nth-child(5) { transition-delay: 0.3s; }

.menu-link:hover { color: var(--text-muted); padding-left: 20px; }
.menu-contact-info { 
  margin-top: 4rem; display: flex; gap: 2rem; font-size: 1rem; 
  opacity: 0; transform: translateY(20px); transition: var(--transition-smooth); transition-delay: 0.4s;
}
.oa-fullscreen-menu.active .menu-contact-info { opacity: 1; transform: translateY(0); }
.hover-link { position: relative; color: var(--text-muted); }
.hover-link:hover { color: #fff; }

/* PREMIUM HERO SECTION (Concept 1 & 3) */
.oa-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 80px; overflow: hidden; background: #000;
}
.fluid-mesh-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: 0.8; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(120px);
  animation: orbAnim 25s infinite alternate ease-in-out;
}
.orb-1 { width: 700px; height: 700px; background: rgba(252,176,24,0.15); top: -200px; left: -200px; }
.orb-2 { width: 600px; height: 600px; background: rgba(255,50,50,0.1); bottom: -100px; right: 10vw; animation-delay: -10s; }
.orb-3 { width: 500px; height: 500px; background: rgba(100,50,255,0.08); top: 50%; left: 40%; transform: translate(-50%, -50%); animation-duration: 20s; }

@keyframes orbAnim {
  0% { transform: scale(1) translate(0, 0) rotate(0deg); }
  50% { transform: scale(1.2) translate(10%, 5%) rotate(180deg); }
  100% { transform: scale(0.9) translate(-5%, -10%) rotate(360deg); }
}

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

.hero-split {
  position: relative; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 40px; width: 100%;
}
.hero-content-left { flex: 0 0 55%; display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 6px 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; font-size: 0.85rem; font-weight: 500; color: #fff;
  margin-bottom: 2rem; backdrop-filter: blur(10px);
}
.pulse-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(252,176,24,0.4); } 70% { box-shadow: 0 0 0 10px rgba(252,176,24,0); } 100% { box-shadow: 0 0 0 0 rgba(252,176,24,0); } }

.massive-title {
  font-family: var(--font-display); font-size: 6.5rem; font-weight: 500;
  line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 2rem; color: #fff;
}
.animated-gradient-text {
  background: linear-gradient(90deg, #fff, var(--primary), #ff4d4d, var(--primary), #fff);
  background-size: 300% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite; display: inline-block;
}
@keyframes shine { to { background-position: 300% center; } }

.hero-desc {
  font-size: 1.25rem; color: #b0b0b0; max-width: 550px;
  margin-bottom: 3rem; line-height: 1.6; font-weight: 400;
}
.banner-buttons { display: flex; gap: 1rem; }

/* 3D Glass Objects */
.hero-visual-right {
  flex: 0 0 40%; position: relative; height: 600px;
  display: flex; align-items: center; justify-content: center;
}
.glass-float-obj {
  position: absolute; background: rgba(255,255,255,0.03); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
  padding: 20px; display: flex; align-items: center; gap: 15px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5); z-index: 3;
}
.obj-1 { top: 15%; right: 10%; animation: floatY 6s ease-in-out infinite; }
.obj-2 { bottom: 20%; left: 0; animation: floatY 8s ease-in-out infinite reverse; }

@keyframes floatY {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.obj-icon {
  width: 50px; height: 50px; background: rgba(252,176,24,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary);
}
.obj-text h4 { font-family: var(--font-display); font-size: 1.5rem; color: #fff; line-height: 1.2; }
.obj-text p { font-size: 0.85rem; color: var(--text-muted); }

.dark-sphere {
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #222, #000 80%);
  box-shadow: inset -20px -20px 50px rgba(0,0,0,0.8), 0 30px 60px rgba(0,0,0,0.5);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
}

@media(max-width: 1200px) {
  .massive-title { font-size: 5rem; }
  .hero-visual-right { height: 500px; }
  .dark-sphere { width: 250px; height: 250px; }
}
@media(max-width: 992px) {
  .hero-split { flex-direction: column; text-align: center; }
  .hero-content-left { align-items: center; }
  .hero-desc { max-width: 100%; }
  .hero-visual-right { width: 100%; height: 400px; margin-top: 40px; }
  .obj-1 { right: 5%; } .obj-2 { left: 5%; }
}
@media(max-width: 768px) {
  .massive-title { font-size: 3.5rem; }
}

/* INFINITE MARQUEE (BOLD RIBBON) */
.marquee-section {
  padding: 20px 0; background: var(--primary);
  overflow: hidden; white-space: nowrap; position: relative;
  display: flex; align-items: center;
  transform: rotate(-2deg) scale(1.05);
  margin: 60px 0; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 5; border: none;
}
.marquee-inner {
  display: flex; align-items: center; white-space: nowrap;
  animation: marqueeAnim 30s linear infinite;
  will-change: transform;
}
.marquee-inner span {
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
  color: #000; padding: 0 40px; text-transform: uppercase; letter-spacing: 1px;
}
.marquee-inner .dot {
  color: rgba(0,0,0,0.4); font-size: 1.2rem; padding: 0;
}
@keyframes marqueeAnim { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* INTRO */
.oa-intro { padding: 8rem 0 4rem; }
.oa-intro h2 {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 400;
  line-height: 1.2; letter-spacing: -0.02em; max-width: 900px; margin: 0 auto;
}

/* SECTION HEADER FIX */
.section-header {
  margin-bottom: 5rem; position: relative; z-index: 1;
}
/* Flex variant for Services */
.section-header.flex-layout {
  display: flex; justify-content: space-between; align-items: flex-end;
}
/* Centered variant for Bento Box */
.section-header.center {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.section-header.center .eyebrow { margin-bottom: 1rem; }
.section-header h2 { font-family: var(--font-display); font-size: 3.5rem; font-weight: 400; line-height: 1.1; letter-spacing: -0.03em;}
.section-header h2 b { font-weight: 600; }
.section-header .header-right { max-width: 400px; }
.section-header .header-right p { font-size: 1.1rem; color: var(--text-muted); }

/* ELITE GLOW CARDS (SERVICES) */
.oa-services { padding: 6rem 0 10rem; position: relative; }
.ambient-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px; background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1;
}
.premium-card {
  position: relative; background: rgba(255,255,255,0.02);
  border-radius: 24px; overflow: hidden; padding: 1px;
}
.premium-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 24px;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.2), transparent 40%);
  z-index: 0; opacity: 0; transition: opacity 0.3s;
}
.premium-card:hover::before { opacity: 1; }
.card-content {
  background: var(--bg-surface); height: 100%; border-radius: 23px;
  padding: 40px; position: relative; z-index: 1; display: flex; flex-direction: column;
}
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.icon-box {
  width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; transition: var(--transition);
}
.premium-card:hover .icon-box { background: #fff; color: #000; transform: scale(1.05); }
.card-num { font-family: var(--font-main); font-size: 1rem; font-weight: 600; color: var(--border-color); }
.card-content h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; margin-bottom: 16px; letter-spacing: -0.02em;}
.card-content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 40px; flex-grow: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: #fff; border-bottom: 1px solid transparent;
  padding-bottom: 4px; align-self: flex-start;
}
.card-link i { transition: var(--transition); }
.premium-card:hover .card-link { border-bottom-color: rgba(255,255,255,0.3); }
.premium-card:hover .card-link i { transform: translateX(4px) translateY(-4px); }

/* BENTO BOX SHOWCASE (FIXED LAYOUT) */
.oa-showcase { padding: 6rem 0; }
.bento-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 350px; gap: 24px; margin-top: 4rem;
}
.bento-item {
  position: relative; background: var(--bg-surface-elevated); border: 1px solid var(--border-color);
  border-radius: 24px; overflow: hidden; padding: 40px; display: flex; flex-direction: column;
}
/* Fixed Wide Top Left */
.bento-large { grid-column: span 2; display: flex; flex-direction: row; align-items: center; padding: 0 0 0 40px; }
.bento-content { position: relative; z-index: 1; width: 100%; display: flex; flex-direction: inherit;}
.bento-item:not(.bento-large):not(.bento-reverse) .bento-content { flex-direction: column; height: 100%;}
.bento-large .bento-text { flex: 1; padding-right: 40px; }
.bento-large .bento-visual { flex: 1.2; height: 100%; display: flex; align-items: flex-end; justify-content: flex-end; overflow: hidden;}
/* Fixed Wide Bottom Right */
.bento-reverse { grid-column: span 2; display: flex; flex-direction: row; align-items: center; padding: 0 40px 0 0; }
.bento-reverse .bento-text { flex: 1; padding-left: 40px; }
.bento-reverse .bento-visual { flex: 1.2; height: 100%; display: flex; align-items: flex-end; justify-content: flex-start; overflow: hidden;}

/* Premium Glassmorphism UI Mockups */
.glass-mockup {
  position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; overflow: visible;
}
.glass-sphere {
  width: 180px; height: 180px; background: linear-gradient(135deg, var(--primary), #ff6b6b);
  border-radius: 50%; filter: blur(25px); position: absolute; opacity: 0.6; animation: floatSphere 8s infinite ease-in-out;
}
.glass-card {
  width: 75%; height: 60%; background: rgba(255,255,255,0.03); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; position: absolute;
  z-index: 2; transform: rotate(-5deg); box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  animation: floatCard 10s infinite ease-in-out; border-top: 1px solid rgba(255,255,255,0.3); border-left: 1px solid rgba(255,255,255,0.3);
}


.glass-card.sm {
  width: 50%; height: 40%; transform: rotate(10deg) translate(20px, 30px); z-index: 3; animation-delay: 2s; background: rgba(255,255,255,0.05);
}

.glass-glow-ring {
  width: 200px; height: 200px; border-radius: 50%; border: 2px dashed rgba(252,176,24,0.3); position: absolute;
  animation: spinRing 20s linear infinite; filter: blur(2px);
}
.chart-bars {
  display: flex; align-items: flex-end; gap: 12px; width: 80%; height: 60%;
  background: rgba(255,255,255,0.02); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); padding: 24px; border-radius: 20px; z-index: 2;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6); border-top: 1px solid rgba(255,255,255,0.2);
}
.c-bar { 
  flex: 1; background: rgba(255,255,255,0.08); border-radius: 6px; transition: var(--transition-smooth); 
  animation: barGrow 2s cubic-bezier(0.16, 1, 0.3, 1) forwards; transform-origin: bottom;
}
.c-bar.highlight { background: linear-gradient(to top, var(--primary), #ff6b6b); box-shadow: 0 0 20px rgba(252,176,24,0.3); }

.bento-large:hover .glass-card { transform: rotate(0deg) scale(1.05); }
.bento-large:hover .glass-card.sm { transform: rotate(5deg) translate(30px, -20px) scale(1.05); }
.bento-reverse:hover .c-bar { background: rgba(255,255,255,0.2); }
.bento-reverse:hover .c-bar.highlight { transform: scaleY(1.05); }

@keyframes floatSphere { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-20px, -20px) scale(1.1); } }
@keyframes floatCard { 0%, 100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-15px) rotate(-2deg); } }
@keyframes spinRing { 100% { transform: rotate(360deg); } }
@keyframes barGrow { 0% { transform: scaleY(0); } 100% { transform: scaleY(1); } }

.bento-item h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.2;}
.bento-item p { color: var(--text-muted); font-size: 1.05rem; }
.bento-icon { width: 48px; height: 48px; background: #fff; color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: auto;}
.bento-glow { position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: rgba(255,255,255,0.05); filter: blur(40px); border-radius: 50%; transition: var(--transition-smooth);}
.bento-item:hover .bento-glow { transform: scale(1.5); background: rgba(255,255,255,0.08); }

/* STATS */
.oa-stats { padding: 4rem 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); background: var(--bg-surface); }
.stats-wrapper { display: flex; justify-content: space-between; align-items: center; }
.stat-item { text-align: center; flex: 1; }
.stat-num { font-family: var(--font-display); font-size: 4rem; font-weight: 500; letter-spacing: -0.04em; display: inline-block;}
.stat-item .plus { font-size: 2.5rem; font-weight: 300; color: var(--text-muted); vertical-align: super; }
.stat-text { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-top: 5px;}
.divider { width: 1px; height: 60px; background: var(--border-color); }

/* FAQ */
.oa-faq { padding: 8rem 0; }
.faq-container { display: flex; gap: 80px; }
.faq-left { flex: 1; }
.faq-left h2 { font-family: var(--font-display); font-size: 3.5rem; font-weight: 400; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.03em;}
.faq-left h2 b { font-weight: 600; }
.faq-desc { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; max-width: 400px; margin-bottom: 24px;}
.faq-list { flex: 1.5; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  border-bottom: 1px solid var(--border-color); padding: 24px 0; cursor: none;
}
.faq-q { display: flex; justify-content: space-between; align-items: center; font-size: 1.25rem; font-weight: 500; font-family: var(--font-display); letter-spacing: -0.01em;}
.faq-icon { width: 32px; height: 32px; border: 1px solid var(--border-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition);}
.faq-item:hover .faq-icon { background: #fff; color: #000; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-a p { padding-top: 16px; color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }
.faq-item.active .faq-icon { transform: rotate(45deg); background: #fff; color: #000;}

/* FOOTER */
.oa-footer { background: var(--bg-surface); padding-top: 4rem; }
.cta-box {
  background: var(--bg-surface-elevated); border: 1px solid var(--border-color); border-radius: 32px;
  padding: 80px 60px; text-align: center; position: relative; overflow: hidden; margin-bottom: 6rem;
}
.cta-glow { position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 80%; height: 100%; background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%); pointer-events: none;}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-family: var(--font-display); font-size: 3.5rem; font-weight: 400; margin-bottom: 16px; letter-spacing: -0.03em;}
.cta-content h2 b { font-weight: 600; }
.cta-content p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 0; max-width: 600px; margin: 0 auto;}

.footer-bottom-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 4rem; }
.brand-desc { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin-bottom: 24px; max-width: 350px;}
.f-social { display: flex; gap: 12px; }
.f-social a { width: 40px; height: 40px; border: 1px solid var(--border-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--text-muted);}
.f-social a:hover { background: #fff; color: #000; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.f-col h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 24px; color: #fff;}
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 16px; }
.f-col ul li a { color: var(--text-muted); font-size: 0.95rem; transition: var(--transition);}
.f-col ul li a:hover { color: #fff; }
.contact-info-list li { color: var(--text-muted); font-size: 0.95rem; display: flex; align-items: center; gap: 10px;}
.contact-info-list li i { font-size: 1.2rem; color: #fff; }

.footer-copyright {
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 0; border-top: 1px solid var(--border-color); color: var(--text-muted); font-size: 0.9rem;
}
.copyright-links { display: flex; gap: 24px; }
.copyright-links a:hover { color: #fff; }

/* RESPONSIVE */
.d-none { display: none !important; }
@media(min-width: 768px) { .d-md-flex { display: flex !important; } }
@media(max-width: 1200px) {
  .banner-text h1 { font-size: 5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  /* Override bento-large on smaller screens so the grid stays balanced */
  .bento-reverse { grid-column: span 1; padding: 40px; flex-direction: column; }
  .bento-reverse .bento-visual { display: none; }
  .bento-reverse .bento-text { padding-left: 0; }
}
@media(max-width: 992px) {
  .section-header.flex-layout { flex-direction: column; align-items: flex-start; gap: 20px; }
  .faq-container { flex-direction: column; gap: 40px; }
  .footer-bottom-grid { grid-template-columns: 1fr; gap: 40px; }
  .bento-large { grid-column: span 1; flex-direction: column; padding: 40px; }
  .bento-large .bento-visual { display: none; }
  .bento-large .bento-text { padding-right: 0; }
  .stats-wrapper { flex-wrap: wrap; gap: 20px; }
  .divider { display: none; }
  .stat-item { min-width: 40%; }
}
@media(max-width: 768px) {
  .banner-text h1 { font-size: 3.5rem; }
  .oa-intro h2 { font-size: 2.5rem; }
  .section-header h2 { font-size: 2.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; gap: 30px; }
  .footer-copyright { flex-direction: column; gap: 20px; text-align: center; }
  .cursor-dot, .cursor-outline { display: none; }
  body, a, button { cursor: auto; }
  .premium-card::before { display: none; } 
  .card-content { border: 1px solid var(--border-color); }
}

/* PREMIUM COOKIE CONSENT (SLEEK PILL LAYOUT) */
.cookie-consent {
  position: fixed; bottom: 30px; left: 50%; z-index: 999999;
  background: rgba(10, 10, 10, 0.75); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 100px;
  padding: 10px 10px 10px 24px; width: max-content; max-width: 90vw;
  display: flex; flex-direction: row; align-items: center; gap: 20px;
  transform: translate(-50%, 150%); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.cookie-consent.show { transform: translate(-50%, 0); }
.cookie-content { display: flex; gap: 12px; align-items: center; }
.cookie-icon { 
  display: flex; align-items: center; justify-content: center; 
  color: var(--primary);
}
.cookie-icon svg { width: 20px; height: 20px; }
.cookie-text h4 { display: none; }
.cookie-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.2; margin: 0; white-space: nowrap;}
.cookie-buttons { display: flex; gap: 8px; margin-left: 10px; }
.btn-cookie-accept {
  background: #fff; color: #000; border: none; border-radius: 100px;
  padding: 10px 20px; font-weight: 600; font-size: 0.85rem; transition: var(--transition);
  cursor: none; white-space: nowrap;
}
.btn-cookie-accept:hover { background: var(--primary); transform: scale(1.05); }
.btn-cookie-reject {
  background: transparent; color: var(--text-muted); border: none; 
  border-radius: 100px; padding: 10px 16px; font-weight: 500; font-size: 0.85rem; transition: var(--transition);
  cursor: none; white-space: nowrap;
}
.btn-cookie-reject:hover { color: #fff; background: rgba(255,255,255,0.05); }

@media(max-width: 992px) {
  .cookie-text p { white-space: normal; font-size: 0.85rem; }
  .cookie-consent { border-radius: 24px; flex-direction: column; padding: 20px; width: calc(100% - 40px); bottom: 20px;}
  .cookie-buttons { margin-left: 0; width: 100%; justify-content: stretch; }
  .btn-cookie-accept { flex: 2; }
  .btn-cookie-reject { flex: 1; }
  .btn-cookie-accept, .btn-cookie-reject { cursor: auto; text-align: center;}
}

/* Fantastic Card Link Button */
.btn-glass {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 25px;
  padding: 8px 16px; background: rgba(255,255,255,0.03); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; font-weight: 500; font-size: 0.95rem;
  color: #fff; transition: var(--transition-smooth); overflow: hidden; position: relative;
  z-index: 1; text-decoration: none;
}
.btn-glass::before {
  content: ''; position: absolute; inset: 0; background: var(--primary);
  transform: translateX(-100%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: -1;
}
.btn-glass i {
  display: flex; align-items: center; justify-content: center; width: 32px; height: 32px;
  background: rgba(255,255,255,0.1); border-radius: 50%; transition: var(--transition-smooth);
}
.premium-card:hover .btn-glass { border-color: rgba(255,255,255,0.2); }
.btn-glass:hover { color: #000; border-color: var(--primary); padding-right: 12px;}
.btn-glass:hover::before { transform: translateX(0); }
.btn-glass:hover i { background: #000; color: var(--primary); transform: rotate(45deg); }



/* MASSIVE TYPOGRAPHIC SERVICES LIST */
.oa-services-list { padding: 0 0 120px 0; overflow: hidden; }
.services-list-container { border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; }
.s-list-item {
  display: flex; align-items: center; padding: 50px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1); text-decoration: none;
  color: var(--text-muted); cursor: none; position: relative;
}
.s-list-item::before {
  content: ''; position: absolute; top: 0; left: -50vw; right: -50vw; bottom: 0;
  background: var(--primary); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); z-index: 0;
}
.s-list-item:hover::before { transform: scaleY(1); transform-origin: top; }

.s-list-num {
  font-size: 1.5rem; font-family: var(--font-display); width: 120px;
  position: relative; z-index: 1; transition: color 0.4s ease; color: var(--text-muted);
}
.s-list-title {
  font-size: 5.5rem; font-family: var(--font-display); font-weight: 500;
  text-transform: uppercase; flex: 1; margin: 0; position: relative;
  z-index: 1; color: #fff; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
  letter-spacing: -0.02em;
}
.s-list-icon {
  font-size: 3rem; position: relative; z-index: 1; color: #fff;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

/* Hover States */
.s-list-item:hover .s-list-title { transform: translateX(50px); color: #000; font-weight: 600; }
.s-list-item:hover .s-list-num { color: rgba(0,0,0,0.5); }
.s-list-item:hover .s-list-icon { transform: rotate(45deg); color: #000; }

@media(max-width: 1200px) {
  .s-list-title { font-size: 4rem; }
  .s-list-item:hover .s-list-title { transform: translateX(30px); }
}
@media(max-width: 992px) {
  .s-list-title { font-size: 3rem; }
  .s-list-num { width: 80px; font-size: 1.2rem; }
  .s-list-icon { font-size: 2rem; }
  .s-list-item { padding: 40px 0; }
}
@media(max-width: 768px) {
  .s-list-item { padding: 30px 0; flex-wrap: wrap; }
  .s-list-title { font-size: 2.2rem; width: 100%; order: 3; margin-top: 10px; }
  .s-list-num { flex: 1; order: 1; }
  .s-list-icon { order: 2; font-size: 1.8rem; }
  .s-list-item:hover .s-list-title { transform: translateX(15px); }
}

/* DUAL INFINITE MARQUEE PORTFOLIO */
.oa-portfolio-marquee { padding: 120px 0; overflow: hidden; background: var(--bg-base); position: relative; }
.oa-portfolio-marquee .section-header { margin-bottom: 50px; }

.portfolio-track-container {
  width: 100%; overflow: hidden; padding: 15px 0; position: relative;
  display: flex; white-space: nowrap; pointer-events: none; /* Let pointer events through to cards */
}
.portfolio-track {
  display: flex; gap: 30px; padding: 0 15px; width: max-content; pointer-events: auto;
}
.track-left { animation: scrollLeft 45s linear infinite; }
.track-right { animation: scrollRight 45s linear infinite; }
.portfolio-track:hover { animation-play-state: paused; }

.p-marquee-card {
  flex: 0 0 500px; height: 350px; position: relative;
  border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05);
  cursor: none; text-decoration: none; display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  background: #050505;
}
.p-marquee-card:hover {
  transform: scale(0.98); border-color: rgba(252,176,24,0.4); z-index: 2;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.p-marquee-card img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transition: opacity 0.4s ease, transform 0.8s ease;
}
.p-marquee-card:hover img { opacity: 0.9; transform: scale(1.05); }

.p-m-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: center; padding: 40px; opacity: 0; transition: opacity 0.4s ease;
}
.p-marquee-card:hover .p-m-overlay { opacity: 1; }
.p-m-overlay h3 { 
  color: #fff; font-family: var(--font-display); font-size: 2rem; 
  transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
  text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.p-marquee-card:hover .p-m-overlay h3 { transform: translateY(0); }

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); } /* adjust gap */
}
@keyframes scrollRight {
  0% { transform: translateX(calc(-50% - 15px)); }
  100% { transform: translateX(0); }
}

@media(max-width: 768px) {
  .p-marquee-card { flex: 0 0 350px; height: 250px; }
  .p-m-overlay h3 { font-size: 1.5rem; }
}

/* LEGAL MODAL */
.legal-modal {
  position: relative; width: 90%; max-width: 800px; max-height: 85vh; padding: 50px 60px;
  background: #080808; border: 1px solid rgba(255,255,255,0.05); border-radius: 24px;
  overflow-y: auto; z-index: 1; display: flex; flex-direction: column;
  transform: translateY(50px) scale(0.95); opacity: 0; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.oa-modal.active .legal-modal { transform: translateY(0) scale(1); opacity: 1; }

.legal-body { color: var(--text-muted); line-height: 1.8; font-size: 1.05rem; }
.legal-body h2 { color: #fff; font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 30px; line-height: 1.2; }
.legal-body h3 { color: #fff; font-size: 1.3rem; margin: 30px 0 15px 0; font-family: var(--font-display); }
.legal-body p { margin-bottom: 15px; }

@media(max-width: 768px) {
  .legal-modal { padding: 30px; width: 95%; }
  .legal-body h2 { font-size: 2rem; }
}

/* SCROLL PROGRESS & BACK TO TOP */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 0%; height: 3px;
  background: var(--primary); z-index: 10000; transition: width 0.1s ease;
  box-shadow: 0 0 10px var(--primary);
}
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-color);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; z-index: 9998; cursor: none; opacity: 0; pointer-events: none;
  transform: translateY(20px); transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}
.back-to-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--primary); color: #000; border-color: var(--primary); }

/* ========================================== */
/* START: iMAC E-COMMERCE (FEATURED PROJECT)  */
/* ========================================== */
.oa-featured-case {
  position: relative; width: 100%; margin: 120px 0; overflow: hidden;
}

/* Left Side: iMac Mockup */
.case-imac-left { width: 100%; max-width: 750px; display: flex; justify-content: center; }
.imac-container {
  position: relative; width: 100%; max-width: 650px; display: flex; flex-direction: column; align-items: center;
}
.imac-screen-wrapper {
  position: relative; width: 100%; padding-bottom: 60%; /* Aspect Ratio */
  background: #111; border-radius: 20px;
  border: 12px solid #111; border-bottom: 45px solid #1a1a1a;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 0 2px #333;
  z-index: 2; overflow: visible; 
}
.imac-screen {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: #fdfaf3; overflow: visible; border-radius: 4px;
  /* SİHİRLİ DOKUNUŞ: Üst, Sol ve Alt kenarları keser, Sağ kenarı açık bırakır! */
  clip-path: inset(0 -50% 0 0 round 4px);
}
.imac-screen img {
  position: absolute;
  top: 50%; left: 0;
  height: 110%; /* Büyütüldü ki sağdaki boşluk dolsun ve kadın iyice sağa çıksın */
  width: auto;
  max-width: none;
  transform: translateY(-50%);
  z-index: 10; 
  filter: drop-shadow(10px 10px 15px rgba(0,0,0,0.3)); 
}

.imac-logo {
  position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 15px; height: 15px; border-radius: 50%; background: #333; /* Apple Logo Placeholder */
}
.imac-stand {
  width: 120px; height: 60px; background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
  position: relative; z-index: 1; margin-top: -10px;
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0% 100%);
}
.imac-base {
  width: 250px; height: 10px; background: #222; border-radius: 5px 5px 0 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.8); z-index: 1;
}

/* Right Side: E-Commerce Text */
.case-text-right { max-width: 550px; padding-left: 20px; }

.case-eyebrow-pill {
  display: inline-block; padding: 6px 20px; border: 1px solid rgba(252,176,24,0.4);
  border-radius: 100px; color: var(--primary); font-size: 0.85rem; font-weight: 500;
  margin-bottom: 25px; letter-spacing: 1px;
  background: rgba(252,176,24,0.05);
}

.case-text-right .case-title {
  font-family: var(--font-display); font-size: 3.5rem; color: #fff; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -0.02em;
}

.case-text-right .case-desc {
  font-size: 1.1rem; color: #a0a0a0; line-height: 1.7;
  margin-bottom: 30px; max-width: 500px;
}

.case-check-list {
  list-style: none; padding: 0; margin: 0 0 40px 0;
}
.case-check-list li {
  display: flex; align-items: center; gap: 12px; font-size: 1.05rem; color: #d0d0d0;
  margin-bottom: 15px;
}
.case-check-list li i {
  color: var(--primary); font-size: 1.2rem;
}

.btn-yellow {
  display: inline-flex; align-items: center; gap: 15px; padding: 12px 25px 12px 35px;
  background: var(--primary); color: #000; border-radius: 100px; font-weight: 700;
  text-decoration: none; font-size: 0.95rem; letter-spacing: 0.5px;
  transition: all 0.4s ease; cursor: none;
}
.btn-yellow .btn-circle-icon {
  width: 35px; height: 35px; background: #000; color: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  transition: transform 0.4s ease;
}
.btn-yellow:hover {
  transform: translateY(-3px); box-shadow: 0 15px 30px rgba(252,176,24,0.3);
}
.btn-yellow:hover .btn-circle-icon {
  transform: translateX(5px);
}

@media(max-width: 992px) {
  .oa-featured-case .oa-container { flex-direction: column; text-align: center; gap: 40px; }
  .case-text-right { padding-left: 0; display: flex; flex-direction: column; align-items: center; }
  .case-check-list li { justify-content: center; }
  .imac-container { max-width: 90%; }
}
@media(max-width: 768px) {
  .case-text-right .case-title { font-size: 2.5rem; }
}
/* ========================================== */
/* END: iMAC E-COMMERCE (FEATURED PROJECT)    */
/* ========================================== */

/* ========================================== */
/* START: ITEM 4 (BACKGROUND MARQUEE)         */
/* (Kolayca kaldırılabilir / Easy to remove)  */
/* ========================================== */
.bg-marquee-container {
  position: absolute; top: 0; left: 0; width: 100vw; overflow: hidden;
  z-index: 0; pointer-events: none; opacity: 0.03; user-select: none;
}
.bg-marquee-track {
  display: flex; white-space: nowrap;
  animation: bgMarqueeAnim 60s linear infinite;
}
.bg-marquee-track span {
  font-family: var(--font-display); font-size: 15rem; font-weight: 800;
  color: #fff; line-height: 1; padding-right: 50px; text-transform: uppercase;
}
@keyframes bgMarqueeAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ========================================== */
/* END: ITEM 4 (BACKGROUND MARQUEE)           */
/* ========================================== */

/* ========================================== */
/* START: TECH STACK GRID                     */
/* ========================================== */
.oa-tech-stack {
  padding: 120px 0;
  position: relative;
  z-index: 5;
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0, 0, 0, 0.4);
}
.tech-cell {
  padding: 40px 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s ease;
}
.tech-cell:hover {
  background: rgba(255,255,255,0.02);
}
.tech-cell:nth-child(even) {
  border-right: none;
}
.tech-cell:nth-last-child(-n+2) {
  border-bottom: none;
}
.tech-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 400;
}
.tech-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 2rem; /* Size of devicons */
}
.tech-icons i, .tech-icons img {
  opacity: 0.85;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  filter: grayscale(20%);
}
.tech-icons i:hover, .tech-icons img:hover {
  transform: translateY(-5px) scale(1.1);
  opacity: 1;
  filter: grayscale(0%);
}
.tech-text-icon {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 2px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.tech-text-icon:hover { transform: translateY(-3px); color: var(--primary); }
.tech-text-icon small {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.7;
}

@media(max-width: 992px) {
  .tech-grid {
    grid-template-columns: 1fr;
    border-left: 1px solid rgba(255,255,255,0.06);
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .tech-cell {
    border-right: none;
  }
  .tech-cell:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .tech-cell:last-child {
    border-bottom: none;
  }
}
@media(max-width: 576px) {
  .tech-cell { padding: 30px; }
  .tech-icons { gap: 15px; font-size: 1.6rem; }
}
/* ========================================== */
/* END: TECH STACK GRID                       */
/* ========================================== */

/* PREMIUM PROJECT GRID SHOWCASE */
.oa-project-grid {
  padding: 120px 0;
  background: var(--bg-base);
  position: relative;
  z-index: 10;
}

.p-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.p-grid-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  cursor: none;
}

.p-grid-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.p-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-grid-info {
  padding: 30px;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.8) 100%);
  border-top: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.p-grid-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.p-grid-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* Hover Effects */
.p-grid-item:hover {
  transform: translateY(-10px);
  border-color: rgba(252,176,24,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.p-grid-item:hover .p-grid-image img {
  transform: scale(1.1);
}

.p-grid-item:hover .p-grid-info {
  background: linear-gradient(to top, rgba(20,20,20,1) 0%, rgba(20,20,20,0.9) 100%);
}

@media(max-width: 1200px) {
  .p-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 768px) {
  .p-grid-container {
    grid-template-columns: 1fr;
  }
  .p-grid-info h3 {
    font-size: 1.3rem;
  }
}
