/* ============================================
   INTARGET DMCC — Global Stylesheet
   ============================================ */

:root {
  --teal: #43C6AC;
  --teal-light: #5EFCE8;
  --teal-dark: #2A9D8F;
  --dark: #0A0A0F;
  --dark-2: #12121A;
  --dark-3: #1A1A25;
  --dark-4: #22222F;
  --white: #F0F0F5;
  --gray: #8888A0;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--teal) var(--dark); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }
body { font-family: var(--font-display); background: var(--dark); color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---- Custom Cursor ---- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999; border-radius: 50%; mix-blend-mode: difference; }
.cursor-dot { width: 8px; height: 8px; background: var(--teal-light); transform: translate(-50%, -50%); transition: width .15s, height .15s, background .2s; }
.cursor-ring { width: 40px; height: 40px; border: 1.5px solid var(--teal); transform: translate(-50%, -50%); transition: width .3s ease, height .3s ease, border-color .3s; }
.cursor-hover .cursor-dot { width: 14px; height: 14px; background: var(--teal); }
.cursor-hover .cursor-ring { width: 60px; height: 60px; border-color: var(--teal-light); }

/* ---- Loader ---- */
.loader { position: fixed; inset: 0; background: var(--dark); z-index: 10000; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 30px; transition: opacity .6s ease, visibility .6s ease; }
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 120px; height: auto; animation: loaderPulse 1.2s ease-in-out infinite; }
.loader-bar { width: 200px; height: 2px; background: var(--dark-3); border-radius: 2px; overflow: hidden; }
.loader-bar::after { content: ''; display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-light)); animation: loaderSlide 1s ease-in-out infinite; transform-origin: left; }
@keyframes loaderPulse { 0%, 100% { opacity: .4; transform: scale(.95); } 50% { opacity: 1; transform: scale(1); } }
@keyframes loaderSlide { 0% { transform: scaleX(0); transform-origin: left; } 50% { transform: scaleX(1); transform-origin: left; } 51% { transform-origin: right; } 100% { transform: scaleX(0); transform-origin: right; } }

/* ---- Background Effects ---- */
.grain { position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: .03; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); background-repeat: repeat; background-size: 256px; }
#particles-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.gradient-orb { position: fixed; border-radius: 50%; filter: blur(120px); opacity: .12; pointer-events: none; z-index: 0; }
.gradient-orb-1 { width: 600px; height: 600px; background: var(--teal); top: -200px; right: -200px; animation: orbFloat1 12s ease-in-out infinite; }
.gradient-orb-2 { width: 400px; height: 400px; background: var(--teal-dark); bottom: -100px; left: -100px; animation: orbFloat2 15s ease-in-out infinite; }
@keyframes orbFloat1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-80px, 60px); } }
@keyframes orbFloat2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(60px, -80px); } }

/* ---- Magnetic Ripple Effect ---- */
.ripple-container { position: fixed; inset: 0; pointer-events: none; z-index: 9997; }
.ripple { position: absolute; border-radius: 50%; border: 1px solid rgba(67, 198, 172, .2); animation: rippleOut 1.2s ease-out forwards; }
@keyframes rippleOut { 0% { width: 0; height: 0; opacity: .5; } 100% { width: 200px; height: 200px; opacity: 0; } }

/* ---- Navigation ---- */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 50px; display: flex; align-items: center; justify-content: space-between; transition: all .4s ease; backdrop-filter: blur(0px); }
nav.scrolled { background: rgba(10, 10, 15, .85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(67, 198, 172, .1); padding: 12px 50px; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; transition: height .3s ease; }
nav.scrolled .nav-logo img { height: 42px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: .82rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); position: relative; transition: color .3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--teal); transition: width .3s ease; }
.nav-links a:hover { color: var(--teal-light); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { width: 100%; }
.nav-cta { padding: 10px 28px !important; border: 1px solid var(--teal) !important; border-radius: 30px; color: var(--teal) !important; transition: all .3s ease !important; }
.nav-cta:hover { background: var(--teal) !important; color: var(--dark) !important; box-shadow: 0 0 30px rgba(67, 198, 172, .3); }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; background: none; border: none; padding: 4px; }
.hamburger span { width: 28px; height: 2px; background: var(--white); transition: all .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ---- Dropdown ---- */
.nav-dropdown { position: relative; }
.nav-dropdown > a::before { content: ''; display: inline-block; width: 0; height: 0; border-left: 3px solid transparent; border-right: 3px solid transparent; border-top: 4px solid currentColor; margin-left: 6px; vertical-align: middle; transition: transform .3s; }
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); min-width: 220px; background: rgba(18, 18, 26, .97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(67, 198, 172, .12); border-radius: 16px; padding: 12px 0; opacity: 0; visibility: hidden; pointer-events: none; transition: all .3s var(--ease-out); z-index: 100; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(4px); }
.dropdown-menu a { display: block; padding: 10px 24px; font-size: .8rem; letter-spacing: .05em; color: var(--gray); transition: all .2s; }
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { color: var(--teal-light); background: rgba(67, 198, 172, .06); padding-left: 30px; }

/* ---- Page Hero ---- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 40px 80px; z-index: 1; overflow: hidden; }
.hero-content { text-align: center; max-width: 1100px; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; border: 1px solid rgba(67, 198, 172, .25); border-radius: 30px; font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 40px; opacity: 0; animation: fadeUp .8s ease forwards .5s; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); background: rgba(67, 198, 172, .05); }
.hero-badge .dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(67, 198, 172, .6); } 50% { opacity: .6; box-shadow: 0 0 0 6px rgba(67, 198, 172, 0); } }
.hero h1 { font-size: clamp(3rem, 7.5vw, 7rem); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; margin-bottom: 30px; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: inline-block; opacity: 0; transform: translateY(100%); animation: lineReveal .9s var(--ease-out) forwards; }
.hero h1 .line:nth-child(1) span { animation-delay: .7s; }
.hero h1 .line:nth-child(2) span { animation-delay: .85s; }
.hero h1 .line:nth-child(3) span { animation-delay: 1s; }
@keyframes lineReveal { to { opacity: 1; transform: translateY(0); } }
.hero h1 .gradient-text { background: linear-gradient(135deg, var(--teal), var(--teal-light), var(--teal)); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: lineReveal .9s var(--ease-out) forwards, gradientShift 4s ease infinite; }
@keyframes gradientShift { 0%, 100% { background-position: 0% center; } 50% { background-position: 100% center; } }
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.25rem); color: var(--gray); max-width: 600px; margin: 0 auto 50px; line-height: 1.7; opacity: 0; animation: fadeUp .8s ease forwards 1.2s; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s ease forwards 1.4s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeUp .8s ease forwards 1.8s; }
.hero-scroll span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--teal), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: .3; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* ---- Page Header (internal pages) ---- */
.page-hero { position: relative; min-height: 55vh; display: flex; align-items: center; justify-content: center; padding: 140px 40px 80px; z-index: 1; overflow: hidden; text-align: center; }
.page-hero-content { max-width: 900px; position: relative; }
.page-hero .hero-badge { animation-delay: .2s; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 800; line-height: 1.08; letter-spacing: -.03em; margin-bottom: 24px; opacity: 0; animation: fadeUp .8s ease forwards .4s; }
.page-hero p { font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.7; opacity: 0; animation: fadeUp .8s ease forwards .6s; }

/* ---- Buttons ---- */
.btn-primary { padding: 16px 40px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: var(--dark); font-family: var(--font-display); font-weight: 700; font-size: .95rem; letter-spacing: .04em; border: none; border-radius: 50px; cursor: pointer; position: relative; overflow: hidden; transition: all .4s ease; display: inline-flex; align-items: center; gap: 10px; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--teal-light), var(--teal)); opacity: 0; transition: opacity .4s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(67, 198, 172, .35); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary .arrow { position: relative; z-index: 1; transition: transform .3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-outline { padding: 16px 40px; background: transparent; color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .04em; border: 1px solid rgba(255, 255, 255, .15); border-radius: 50px; cursor: pointer; transition: all .4s ease; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(67, 198, 172, .1); }

/* ---- Marquee ---- */
.marquee-section { position: relative; z-index: 1; padding: 30px 0; border-top: 1px solid rgba(255, 255, 255, .04); border-bottom: 1px solid rgba(255, 255, 255, .04); overflow: hidden; }
.marquee-track { display: flex; gap: 60px; animation: marquee 25s linear infinite; width: max-content; }
.marquee-track span { font-size: 1rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; white-space: nowrap; color: rgba(255, 255, 255, .08); display: flex; align-items: center; gap: 60px; }
.marquee-track span::after { content: '◆'; font-size: .5rem; color: var(--teal); opacity: .4; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Sections ---- */
section { position: relative; z-index: 1; padding: 120px 40px; }
.section-label { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--teal); }
.section-title { font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 24px; }
.section-desc { font-size: 1.1rem; color: var(--gray); line-height: 1.7; max-width: 550px; }

/* ---- Reveal Animations ---- */
.reveal { opacity: 0; transform: translateY(40px); transition: all .8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all .8s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all .8s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.9); transition: all .8s var(--ease-out); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }
.stagger-5 { transition-delay: .5s; }
.stagger-6 { transition-delay: .6s; }

/* ---- About Section ---- */
.about { background: var(--dark-2); }
.about-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; height: 500px; }
.about-shape { position: absolute; border: 1px solid rgba(67, 198, 172, .15); border-radius: 20px; }
.about-shape-1 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: shapeRotate1 20s linear infinite; }
.about-shape-2 { width: 220px; height: 220px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: shapeRotate2 15s linear infinite; border-color: rgba(67, 198, 172, .08); }
.about-shape-3 { width: 140px; height: 140px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: shapeRotate1 10s linear infinite reverse; border-color: rgba(67, 198, 172, .25); background: rgba(67, 198, 172, .03); }
@keyframes shapeRotate1 { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes shapeRotate2 { to { transform: translate(-50%, -50%) rotate(-360deg); } }
.about-logo { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: auto; opacity: .9; filter: drop-shadow(0 0 30px rgba(67, 198, 172, .3)); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.stat-item { padding: 24px; border: 1px solid rgba(255, 255, 255, .05); border-radius: 16px; background: rgba(255, 255, 255, .02); transition: all .4s ease; }
.stat-item:hover { border-color: rgba(67, 198, 172, .2); background: rgba(67, 198, 172, .03); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0, 0, 0, .2); }
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--teal); letter-spacing: -.02em; }
.stat-label { font-size: .85rem; color: var(--gray); margin-top: 4px; }

/* ---- Service Cards ---- */
.services { max-width: 1300px; margin: 0 auto; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 70px; flex-wrap: wrap; gap: 30px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { padding: 44px 36px; border: 1px solid rgba(255, 255, 255, .05); border-radius: 24px; background: rgba(255, 255, 255, .02); transition: all .5s var(--ease-out); position: relative; overflow: hidden; cursor: default; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(67, 198, 172, .08), transparent); opacity: 0; transition: opacity .5s; }
.service-card:hover { border-color: rgba(67, 198, 172, .25); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0, 0, 0, .3); }
.service-card:hover::before { opacity: 1; }
.service-card a { display: block; height: 100%; }
.service-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(67, 198, 172, .1); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; font-size: 1.5rem; transition: all .4s; position: relative; z-index: 1; }
.service-card:hover .service-icon { background: var(--teal); box-shadow: 0 8px 30px rgba(67, 198, 172, .3); transform: scale(1.05); }
.service-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; position: relative; z-index: 1; }
.service-card p { font-size: .92rem; color: var(--gray); line-height: 1.7; position: relative; z-index: 1; }
.service-number { position: absolute; top: 20px; right: 24px; font-family: var(--font-mono); font-size: .72rem; color: rgba(255, 255, 255, .08); letter-spacing: .08em; }
.service-card .card-arrow { position: absolute; bottom: 24px; right: 24px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .08); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: .8rem; transition: all .4s; z-index: 1; }
.service-card:hover .card-arrow { border-color: var(--teal); color: var(--teal); background: rgba(67, 198, 172, .1); transform: translateX(4px); }

/* ---- Process ---- */
.process { background: var(--dark-2); }
.process-container { max-width: 1300px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 80px; }
.process-header .section-label { justify-content: center; }
.process-header .section-title { margin-left: auto; margin-right: auto; }
.process-header .section-desc { margin-left: auto; margin-right: auto; text-align: center; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 45px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), var(--teal), transparent); opacity: .2; }
.process-step { text-align: center; padding: 0 20px; position: relative; }
.step-number { width: 90px; height: 90px; border-radius: 50%; border: 1px solid rgba(67, 198, 172, .2); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 1.4rem; font-weight: 700; color: var(--teal); margin: 0 auto 28px; position: relative; transition: all .5s ease; background: var(--dark-2); }
.process-step:hover .step-number { background: rgba(67, 198, 172, .1); transform: scale(1.1); box-shadow: 0 0 40px rgba(67, 198, 172, .15); }
.process-step h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ---- Tech Orbit ---- */
.tech-section { overflow: hidden; }
.tech-container { max-width: 1300px; margin: 0 auto; }
.tech-header { text-align: center; margin-bottom: 60px; }
.tech-header .section-label { justify-content: center; }
.tech-header .section-desc { margin: 0 auto; text-align: center; }
.tech-orbit { position: relative; width: 500px; height: 500px; margin: 0 auto; }
.tech-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); box-shadow: 0 0 60px rgba(67, 198, 172, .3); z-index: 2; }
.orbit-ring { position: absolute; top: 50%; left: 50%; border-radius: 50%; border: 1px solid rgba(67, 198, 172, .08); }
.orbit-ring-1 { width: 250px; height: 250px; transform: translate(-50%, -50%); animation: ringRotate 30s linear infinite; }
.orbit-ring-2 { width: 380px; height: 380px; transform: translate(-50%, -50%); animation: ringRotate 45s linear infinite reverse; }
.orbit-ring-3 { width: 500px; height: 500px; transform: translate(-50%, -50%); animation: ringRotate 60s linear infinite; }
@keyframes ringRotate { to { transform: translate(-50%, -50%) rotate(360deg); } }
.orbit-item { position: absolute; padding: 10px 18px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08); border-radius: 12px; font-size: .78rem; font-weight: 600; white-space: nowrap; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: all .3s; cursor: default; }
.orbit-item:hover { background: rgba(67, 198, 172, .1); border-color: var(--teal); transform: scale(1.1) !important; box-shadow: 0 4px 20px rgba(67, 198, 172, .2); }

/* ---- CTA ---- */
.cta-section { background: var(--dark-2); text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(67, 198, 172, .12), transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 20px; }
.cta-desc { font-size: 1.1rem; color: var(--gray); line-height: 1.7; margin-bottom: 40px; }
.cta-email { font-family: var(--font-mono); font-size: 1.1rem; color: var(--teal); display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border: 1px solid rgba(67, 198, 172, .2); border-radius: 40px; transition: all .4s; margin-top: 20px; background: rgba(67, 198, 172, .04); }
.cta-email:hover { border-color: var(--teal); background: rgba(67, 198, 172, .1); box-shadow: 0 0 40px rgba(67, 198, 172, .15); transform: translateY(-2px); }

/* ---- Content Blocks ---- */
.content-section { max-width: 1000px; margin: 0 auto; }
.content-section h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; margin: 48px 0 16px; letter-spacing: -.01em; }
.content-section h3 { font-size: 1.2rem; font-weight: 600; margin: 32px 0 12px; color: var(--teal); }
.content-section p { font-size: 1rem; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.content-section ul, .content-section ol { color: var(--gray); margin: 16px 0 16px 24px; line-height: 1.8; }
.content-section li { margin-bottom: 8px; }
.content-section a { color: var(--teal); transition: color .2s; }
.content-section a:hover { color: var(--teal-light); }
.content-section strong { color: var(--white); font-weight: 600; }

/* ---- Feature Grid (for service detail pages) ---- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 50px 0; max-width: 1300px; margin-left: auto; margin-right: auto; }
.feature-card { padding: 36px; border: 1px solid rgba(255, 255, 255, .06); border-radius: 20px; background: rgba(255, 255, 255, .02); transition: all .5s var(--ease-out); position: relative; overflow: hidden; }
.feature-card::after { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--teal); transition: height .5s var(--ease-out); border-radius: 3px; }
.feature-card:hover { border-color: rgba(67, 198, 172, .15); transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0, 0, 0, .2); }
.feature-card:hover::after { height: 100%; }
.feature-card .feat-icon { font-size: 1.8rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: .9rem; color: var(--gray); line-height: 1.65; }

/* ---- Team ---- */
.team-card { text-align: center; padding: 50px 40px; border: 1px solid rgba(255, 255, 255, .06); border-radius: 24px; background: rgba(255, 255, 255, .02); max-width: 500px; margin: 40px auto; transition: all .5s var(--ease-out); }
.team-card:hover { border-color: rgba(67, 198, 172, .2); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0, 0, 0, .3); }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; font-weight: 800; color: var(--dark); margin: 0 auto 24px; box-shadow: 0 0 40px rgba(67, 198, 172, .2); }
.team-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.team-card .role { font-family: var(--font-mono); font-size: .82rem; color: var(--teal); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; display: block; }
.team-card p { font-size: .95rem; color: var(--gray); line-height: 1.7; }
.team-card .team-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--teal); font-size: .85rem; font-weight: 600; transition: all .3s; }
.team-card .team-link:hover { gap: 12px; color: var(--teal-light); }

/* ---- Contact Page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1100px; margin: 0 auto; align-items: start; }
.contact-info-item { display: flex; gap: 20px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid rgba(255, 255, 255, .04); }
.contact-info-item:last-child { border-bottom: none; }
.contact-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(67, 198, 172, .1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p { font-size: .9rem; color: var(--gray); line-height: 1.5; }
.contact-info-item a { color: var(--teal); transition: color .2s; }
.contact-info-item a:hover { color: var(--teal-light); }
.contact-map { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .06); height: 400px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) brightness(.6) contrast(1.1); transition: filter .5s; }
.contact-map:hover iframe { filter: grayscale(.5) brightness(.7) contrast(1); }

/* ---- Footer ---- */
footer { position: relative; z-index: 1; padding: 60px 40px 30px; border-top: 1px solid rgba(255, 255, 255, .04); }
.footer-inner { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo img { height: 32px; width: auto; opacity: .7; }
.footer-info { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.footer-address { font-size: .82rem; color: var(--gray); text-align: center; }
.footer-reg { font-family: var(--font-mono); font-size: .7rem; color: rgba(255, 255, 255, .15); letter-spacing: .08em; }
.footer-copy { font-size: .78rem; color: rgba(255, 255, 255, .2); }
.footer-links { display: flex; gap: 20px; margin-top: 12px; }
.footer-links a { font-size: .75rem; color: var(--gray); transition: color .2s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { max-width: 1300px; margin: 40px auto 0; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .03); text-align: center; }
.footer-bottom p { font-size: .7rem; color: rgba(255, 255, 255, .1); letter-spacing: .08em; }

/* ---- Magnetic Tilt Effect on Cards ---- */
.tilt-card { transition: transform .3s ease; }

/* ---- Glitch Text Effect ---- */
.glitch { position: relative; }
.glitch::before, .glitch::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.glitch::before { animation: glitch1 3s infinite linear; clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%); -webkit-text-fill-color: var(--teal-light); opacity: .8; }
.glitch::after { animation: glitch2 3s infinite linear; clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%); -webkit-text-fill-color: var(--teal-dark); opacity: .8; }
@keyframes glitch1 { 0%, 95%, 100% { transform: translate(0); } 96% { transform: translate(-2px, 1px); } 97% { transform: translate(2px, -1px); } }
@keyframes glitch2 { 0%, 95%, 100% { transform: translate(0); } 96% { transform: translate(2px, -1px); } 97% { transform: translate(-2px, 1px); } }

/* ---- Floating Particles (CSS-only addition) ---- */
.float-particle { position: fixed; width: 3px; height: 3px; background: var(--teal); border-radius: 50%; pointer-events: none; z-index: 0; opacity: 0; animation: floatUp 8s linear infinite; }
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: .3; }
  90% { opacity: .1; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ---- Cookie Banner ---- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: rgba(18, 18, 26, .97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid rgba(67, 198, 172, .1); padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; transform: translateY(100%); transition: transform .5s var(--ease-out); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: .85rem; color: var(--gray); line-height: 1.5; }
.cookie-banner a { color: var(--teal); }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept { padding: 10px 24px; background: var(--teal); color: var(--dark); font-family: var(--font-display); font-weight: 700; font-size: .82rem; border: none; border-radius: 30px; cursor: pointer; transition: all .3s; }
.cookie-accept:hover { box-shadow: 0 4px 20px rgba(67, 198, 172, .3); transform: translateY(-1px); }
.cookie-reject { padding: 10px 24px; background: transparent; color: var(--gray); font-family: var(--font-display); font-weight: 600; font-size: .82rem; border: 1px solid rgba(255, 255, 255, .1); border-radius: 30px; cursor: pointer; transition: all .3s; }
.cookie-reject:hover { border-color: var(--gray); color: var(--white); }

/* ---- Back to Top ---- */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; border-radius: 50%; background: rgba(67, 198, 172, .15); border: 1px solid rgba(67, 198, 172, .3); color: var(--teal); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 999; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s; font-size: 1.1rem; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--teal); color: var(--dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(67, 198, 172, .3); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { height: 350px; }
  .tech-orbit { width: 350px; height: 350px; }
  .orbit-item { font-size: .7rem; padding: 8px 12px; }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 80px 24px; }
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-logo img { height: 40px; }
  nav.scrolled .nav-logo img { height: 34px; }
  .nav-links { position: fixed; top: 0; right: 0; width: 300px; height: 100vh; background: rgba(10, 10, 15, .97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); flex-direction: column; justify-content: center; gap: 20px; padding: 40px; transform: translateX(100%); transition: transform .4s var(--ease-out); border-left: 1px solid rgba(67, 198, 172, .1); overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .hamburger { display: flex; }
  .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; background: transparent; border: none; backdrop-filter: none; padding: 0 0 0 16px; min-width: auto; display: none; }
  .nav-dropdown.mobile-open .dropdown-menu { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero { padding: 100px 24px 60px; min-height: 100svh; }
  .page-hero { min-height: 45vh; padding: 120px 24px 60px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cursor-dot, .cursor-ring { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .tech-orbit { width: 300px; height: 300px; }
  .orbit-ring-1 { width: 180px; height: 180px; }
  .orbit-ring-2 { width: 260px; height: 260px; }
  .orbit-ring-3 { width: 340px; height: 340px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .contact-map { height: 300px; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .tech-orbit { width: 280px; height: 280px; }
  .orbit-item { font-size: .65rem; padding: 6px 10px; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .stat-item { padding: 18px; }
  .stat-number { font-size: 1.8rem; }
  .nav-logo img { height: 36px; }
}
