/* ===================================================================
   NCS SYSTEMS — Global Stylesheet
   Premium dark theme with scroll animations & interactive elements
   =================================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --bg-primary: #060a13;
  --bg-secondary: #0c1220;
  --bg-tertiary: #111c2e;
  --bg-card: #0f1a2b;
  --accent: #00e5c7;
  --accent-glow: rgba(0, 229, 199, 0.15);
  --accent-blue: #0ea5e9;
  --accent-purple: #8b5cf6;
  --text-primary: #f0f4f8;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 229, 199, 0.2);
  --gradient-accent: linear-gradient(135deg, #00e5c7, #0ea5e9);
  --gradient-dark: linear-gradient(180deg, #060a13, #0c1220);
  --shadow-glow: 0 0 40px rgba(0, 229, 199, 0.1);
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; font-size: 16px; }
body {
  font-family: var(--font-display);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #fff; }
::selection { background: var(--accent); color: var(--bg-primary); }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.mono { font-family: var(--font-mono); }
.accent-text { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.4s ease; background: transparent;
}
.nav.scrolled {
  background: rgba(6, 10, 19, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 12px 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav__logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; color: var(--text-primary);
}
.nav__logo-icon {
  width: 160px;
  height: 56px;
  border-radius: 14px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.nav__logo-icon svg { width: 24px; height: 24px; }
.nav__logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.nav__logo span { font-size: 0.65rem; font-weight: 400; color: var(--text-muted); display: block; letter-spacing: 0.15em; text-transform: uppercase; margin-top: -2px; }
.nav__links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav__links a {
  color: var(--text-secondary); font-size: 0.875rem; font-weight: 500;
  padding: 8px 16px; border-radius: 8px; transition: all 0.3s ease; letter-spacing: 0.01em;
}
.nav__links a:hover, .nav__links a.active { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav__cta {
  background: var(--gradient-accent) !important; color: var(--bg-primary) !important;
  font-weight: 700 !important; padding: 10px 22px !important; border-radius: 10px !important;
}
.nav__cta:hover { opacity: 0.9; color: var(--bg-primary) !important; transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; background: none; border: none; padding: 8px; }
.nav__hamburger span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s ease; }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative; padding: 160px 0 80px; overflow: hidden;
  background: var(--bg-secondary); border-bottom: 1px solid var(--border);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(0,229,199,0.06), transparent),
              radial-gradient(ellipse 50% 50% at 70% 60%, rgba(14,165,233,0.04), transparent);
}
.page-hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,229,199,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,229,199,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-label { opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 0.2s forwards; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.08;
  letter-spacing: -0.03em; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 0.4s forwards;
}
.page-hero p {
  font-size: 1.15rem; color: var(--text-secondary); max-width: 620px; line-height: 1.8;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 0.6s forwards;
}
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-size: 0.8rem; color: var(--text-muted);
  opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 0.1s forwards;
}
.page-hero .breadcrumb a { color: var(--text-muted); }
.page-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero .breadcrumb svg { width: 12px; height: 12px; stroke: var(--text-muted); fill: none; }

/* ===== HOMEPAGE HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(0,229,199,0.08), transparent),
              radial-gradient(ellipse 60% 50% at 80% 60%, rgba(14,165,233,0.06), transparent),
              radial-gradient(ellipse 40% 40% at 50% 20%, rgba(139,92,246,0.04), transparent);
}
.hero__grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,229,199,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,229,199,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
}
.hero__orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: orbFloat 8s ease-in-out infinite; }
.hero__orb--1 { width: 400px; height: 400px; background: rgba(0,229,199,0.07); top: 10%; right: 10%; }
.hero__orb--2 { width: 300px; height: 300px; background: rgba(14,165,233,0.05); bottom: 20%; left: 5%; animation-delay: -3s; }
@keyframes orbFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-20px); } }
.hero__content { position: relative; z-index: 2; max-width: 720px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,229,199,0.08); border: 1px solid var(--border-accent);
  border-radius: 100px; padding: 6px 18px 6px 8px; font-size: 0.8rem;
  font-weight: 500; color: var(--accent); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 0.2s forwards;
}
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(0,229,199,0.4); } 50% { opacity:0.8; box-shadow: 0 0 0 8px rgba(0,229,199,0); } }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 0.4s forwards;
}
.hero__desc {
  font-size: 1.15rem; color: var(--text-secondary); line-height: 1.8;
  max-width: 560px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 0.6s forwards;
}
.hero__actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 0.8s forwards;
}
.hero__stats {
  display: flex; gap: 48px; margin-top: 64px; padding-top: 40px;
  border-top: 1px solid var(--border);
  opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 1s forwards;
}
.hero__stat-num { font-size: 2.2rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; }
.hero__stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
@keyframes fadeUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  padding: 16px 32px; border-radius: 14px; border: none; cursor: pointer;
  transition: all 0.3s var(--ease-out-quart); letter-spacing: 0.01em; text-decoration: none;
}
.btn--primary { background: var(--gradient-accent); color: var(--bg-primary); box-shadow: 0 4px 20px rgba(0,229,199,0.25); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,229,199,0.35); color: var(--bg-primary); }
.btn--outline { background: transparent; color: var(--text-primary); border: 1px solid rgba(255,255,255,0.15); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,229,199,0.05); }
.btn svg { width: 18px; height: 18px; }

/* ===== SCROLLING TICKER ===== */
.ticker { overflow: hidden; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-secondary); }
.ticker__track { display: flex; gap: 48px; animation: tickerScroll 30s linear infinite; width: max-content; }
.ticker__item { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
.ticker__item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTION COMMON ===== */
section { padding: 120px 0; position: relative; }
.section-label { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--accent); }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.section-desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; line-height: 1.8; }
.section-centered { text-align: center; }
.section-centered .section-label { justify-content: center; }
.section-centered .section-title,
.section-centered .section-desc { margin-left: auto; margin-right: auto; }
.bg-secondary { background: var(--bg-secondary); }
.bg-primary { background: var(--bg-primary); }

/* ===== HOW IT WORKS CARDS ===== */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; border-radius: 20px; overflow: hidden; }
.how-card { background: var(--bg-card); padding: 48px 36px; transition: all 0.4s ease; }
.how-card:hover { background: rgba(0,229,199,0.03); }
.how-card__step { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 24px; }
.how-card__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--accent-glow); border: 1px solid var(--border-accent); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.how-card__icon svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.how-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.01em; }
.how-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px 32px; transition: all 0.4s var(--ease-out-quart); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-accent); opacity: 0; transition: opacity 0.4s ease; }
.service-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-card__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-glow); border: 1px solid var(--border-accent); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-card__icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.service-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; }
.service-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ===== BENEFIT CARDS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.benefit-card { background: rgba(15,26,43,0.7); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 20px; padding: 40px 32px; text-align: center; transition: all 0.4s var(--ease-out-quart); }
.benefit-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.benefit-card__emoji { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.benefit-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.benefit-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--bg-primary); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item__number { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.stat-item__label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ===== ABOUT VALUES ===== */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
.about-visual { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; background: var(--bg-tertiary); border: 1px solid var(--border); }
.about-visual__gradient { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,229,199,0.15), rgba(14,165,233,0.1), rgba(139,92,246,0.08)); display: flex; align-items: center; justify-content: center; }
.about-visual__icon { font-size: 4rem; opacity: 0.8; }
.about-values { display: grid; gap: 16px; margin-top: 32px; }
.about-value { display: flex; align-items: flex-start; gap: 16px; padding: 16px 20px; border-radius: 12px; background: var(--bg-card); border: 1px solid var(--border); transition: all 0.3s ease; }
.about-value:hover { border-color: var(--border-accent); }
.about-value__icon { width: 36px; height: 36px; border-radius: 8px; background: var(--accent-glow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.about-value h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.about-value p { font-size: 0.85rem; color: var(--text-secondary); }

/* ===== TESTIMONIAL CARDS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px 32px; transition: all 0.4s ease; }
.testimonial-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.testimonial-card__quote { font-size: 2rem; color: var(--accent); opacity: 0.5; margin-bottom: 16px; line-height: 1; }
.testimonial-card__stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 20px; }
.testimonial-card__author--with-logo { align-items: flex-start; }
.testimonial-card__author--with-logo { flex-wrap: wrap; }
.testimonial-card__logo { width: 100%; display: flex; justify-content: center; margin-top: 12px; }
.testimonial-card__logo img { width: min(360px, 100%); height: 90px; object-fit: contain; display: block; }
.testimonial-card__author--split { justify-content: space-between; align-items: center; }
.testimonial-card__meta { flex: 1; min-width: 0; }
.testimonial-card__company { flex: 0 0 auto; display: flex; align-items: center; justify-content: flex-end; }
.testimonial-card__company img { width: min(320px, 48%); height: 72px; object-fit: contain; display: block; }
.testimonial-card__avatar { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 10px; background: var(--gradient-accent); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; color: var(--bg-primary); }
.testimonial-card__name { font-weight: 700; font-size: 0.9rem; }
.testimonial-card__role { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 64px auto 0; display: grid; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.3s ease; }
.faq-item:hover, .faq-item.open { border-color: var(--border-accent); }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; color: var(--text-primary); font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; text-align: left; padding: 24px 28px; cursor: pointer; transition: color 0.3s ease; gap: 16px; }
.faq-question:hover { color: var(--accent); }
.faq-question__icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease; }
.faq-item.open .faq-question__icon { background: var(--accent-glow); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out-expo); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer__inner { padding: 0 28px 24px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 120px 0; background: var(--bg-secondary); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,229,199,0.06), transparent); }
.cta-card { position: relative; z-index: 2; background: var(--bg-card); border: 1px solid var(--border-accent); border-radius: 28px; padding: 72px 64px; text-align: center; max-width: 800px; margin: 0 auto; }
.cta-card h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 20px; }
.cta-card p { color: var(--text-secondary); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; line-height: 1.8; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 64px; }
.contact-info__item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-glow); border: 1px solid var(--border-accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.contact-info__label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 4px; }
.contact-info__value { font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.contact-socials { display: flex; gap: 12px; margin-top: 36px; }
.contact-social { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.contact-social:hover { border-color: var(--accent); background: var(--accent-glow); }
.contact-social svg { width: 18px; height: 18px; fill: var(--text-secondary); transition: fill 0.3s ease; }
.contact-social:hover svg { fill: var(--accent); }
.contact-form { display: grid; gap: 16px; }
.form-group { display: grid; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input, .form-group textarea, .form-group select { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 18px; color: var(--text-primary); font-family: var(--font-display); font-size: 0.95rem; transition: border-color 0.3s ease; outline: none; width: 100%; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 20px; }
.footer__links { list-style: none; display: grid; gap: 10px; }
.footer__links a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 0.8rem; color: var(--text-muted); }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 14px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 100; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { border-color: var(--accent); background: var(--accent-glow); }
.back-to-top svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; }

/* ===== PARALLAX ===== */
.parallax-bg { position: absolute; inset: 0; z-index: 0; }
[data-parallax] { will-change: transform; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .how-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .nav__links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(6,10,19,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.2rem; padding: 14px 24px; }
  .nav__hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 24px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .cta-card { padding: 48px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .page-hero { padding: 130px 0 60px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ===== TEAM CARD HOVER ===== */
[id="team"] article:hover,
[id="team"] article:focus-within {
  transform: translateY(-6px);
  border-color: var(--border-accent) !important;
  box-shadow: 0 16px 40px rgba(0, 229, 199, 0.08);
}

/* ===== PROPERTY TYPE CARD HOVER ===== */
section article[style*="bg-card"]:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent) !important;
}

/* ===== TECH FEATURE GRID RESPONSIVE ===== */
@media (max-width: 768px) {
  .tech-feature-grid { grid-template-columns: 1fr !important; }
  .tech-feature-grid + div [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [id="team"] { padding: 60px 0; }
  [id="location"] .about-layout { grid-template-columns: 1fr; }
}
