/* ========================================
   HAZA INFOTECH — PREMIUM CSS
   ======================================== */

:root {
  --gold: #c9a84c;
  --gold-light: #e2c06a;
  --gold-dim: rgba(201,168,76,0.15);
  --dark: #060608;
  --dark-2: #0c0c12;
  --dark-3: #13131c;
  --dark-4: #1a1a26;
  --surface: #16161f;
  --border: rgba(201,168,76,0.12);
  --border-soft: rgba(255,255,255,0.06);
  --text-primary: #f0ede8;
  --text-secondary: #a09e9a;
  --text-muted: #5a5856;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0806;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-primary span, .btn-primary * { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.btn-full { width: 100%; justify-content: center; }

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.75;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head .section-label {
  padding-left: 0;
  padding-right: 0;
}

.section-head .section-label::before {
  display: none;
}

.section-head .section-sub {
  margin: 0 auto;
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(6,6,8,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0806;
  letter-spacing: -0.02em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}

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

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.btn-proposal {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.3s;
  flex-shrink: 0;
}

.btn-proposal:hover {
  background: var(--gold);
  color: #0a0806;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #1a1408 0%, var(--dark) 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 80%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.3), transparent 70%);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.2), transparent 70%);
  bottom: -50px;
  right: -50px;
  animation-delay: 3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--border);
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ========================================
   TRUST BAR
   ======================================== */

.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
  gap: 0.25rem;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.trust-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ========================================
   ABOUT
   ======================================== */

.about {
  background: var(--dark);
}

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

.about-visual {
  position: relative;
}

.about-card-main {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-icon-cell {
  background: var(--dark-4);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.about-icon-cell:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.about-icon-cell svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.about-card-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.about-float-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: #0a0806;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}

.afc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0a0806;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.about-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.astat {
  display: flex;
  flex-direction: column;
}

.astat-n {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.astat-l {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ========================================
   SERVICES
   ======================================== */

.services {
  background: var(--dark-2);
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), var(--shadow-gold);
}

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

.sc-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}

.sc-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.service-card:hover .sc-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.service-card:hover .sc-icon svg {
  color: #0a0806;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.service-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.sc-arrow {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all 0.3s;
}

.service-card:hover .sc-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */

.why {
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.why-text {
  position: sticky;
  top: 8rem;
}

.why-text p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.97rem;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.wc-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
}

.wc-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.wc-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   SOLUTIONS
   ======================================== */

.solutions {
  background: var(--dark-2);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sol-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s;
}

.sol-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  background: var(--dark-4);
}

.sol-emoji {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.sol-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.sol-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ========================================
   PORTFOLIO
   ======================================== */

.portfolio {
  background: var(--dark);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.port-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s ease;
}

.port-card:hover {
  border-color: var(--border);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.port-visual {
  height: 200px;
  background: var(--bg, #0a0a0f);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.port-mock {
  width: 100%;
  max-width: 200px;
}

.pm-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.pm-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.3);
}

.pm-bar span:first-child { background: rgba(255,80,80,0.5); }
.pm-bar span:nth-child(2) { background: rgba(255,180,0,0.5); }
.pm-bar span:last-child { background: rgba(0,200,80,0.5); }

.pm-line {
  height: 5px;
  border-radius: 2px;
  background: rgba(201,168,76,0.2);
  margin-bottom: 6px;
}

.pm-line.full { width: 100%; }
.pm-line.half { width: 60%; }
.pm-line.three-q { width: 80%; }

.pm-products {
  display: flex;
  gap: 8px;
}

.pm-product {
  flex: 1;
  height: 100px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
}

.pm-dash-stats {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.pm-stat-box {
  flex: 1;
  height: 35px;
  background: rgba(201,168,76,0.12);
  border-radius: 5px;
}

.pm-chart-bar {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 70px;
}

.pm-chart-bar div {
  flex: 1;
  background: linear-gradient(to top, var(--gold), rgba(201,168,76,0.3));
  border-radius: 2px 2px 0 0;
}

.pm-brand-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(var(--gold), rgba(201,168,76,0.2), var(--gold));
  margin: 0 auto 12px;
}

.pm-brand-lines div {
  height: 4px;
  background: rgba(201,168,76,0.2);
  border-radius: 2px;
  margin-bottom: 6px;
}

.pm-brand-lines div:nth-child(2) { width: 70%; }
.pm-brand-lines div:nth-child(3) { width: 50%; }

.pm-lead-hero {
  height: 60px;
  background: rgba(201,168,76,0.08);
  border-radius: 5px;
  margin-bottom: 10px;
}

.pm-field {
  height: 22px;
  background: rgba(201,168,76,0.1);
  border-radius: 4px;
  margin-bottom: 6px;
}

.pm-field.short { width: 60%; }
.pm-btn {
  height: 24px;
  background: var(--gold);
  border-radius: 4px;
  margin-top: 4px;
}

.pm-flow {
  display: flex;
  align-items: center;
  gap: 0;
}

.pm-node {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  flex-shrink: 0;
}

.pm-node.active {
  background: var(--gold);
}

.pm-edge {
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.3);
}

.port-info {
  padding: 1.5rem;
}

.port-tag {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.port-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.port-info p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   PROCESS
   ======================================== */

.process {
  background: var(--dark-2);
}

.process-track {
  position: relative;
}

.process-line {
  position: absolute;
  top: 60px;
  left: calc(50% - 0.5px);
  width: 1px;
  height: calc(100% - 100px);
  background: linear-gradient(to bottom, var(--gold), transparent);
  display: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.proc-step {
  position: relative;
  padding-top: 1rem;
}

.proc-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.proc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15);
}

.proc-step h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.proc-step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
  background: var(--dark);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.testi-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testi-quote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0a0806;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========================================
   FAQ
   ======================================== */

.faq {
  background: var(--dark-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.faq-left p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.97rem;
}

.faq-left {
  position: sticky;
  top: 8rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  gap: 1rem;
  transition: color 0.3s;
}

.faq-q:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

.faq-a p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.75;
  padding-bottom: 1.4rem;
}

/* ========================================
   CONTACT
   ======================================== */

.contact {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.contact-form-wrap {
  position: relative;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.03);
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}

.form-success.show { display: block; }
.form-success .fs-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0806;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ci-section h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.ci-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.ci-item:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.ci-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.ci-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ci-value {
  display: block;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-top: 0.1rem;
}

.quick-btns {
  display: flex;
  gap: 1rem;
}

.qbtn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s;
}

.qbtn svg {
  width: 18px;
  height: 18px;
}

.qbtn-call {
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
}

.qbtn-call:hover {
  background: var(--gold);
  color: #0a0806;
}

.qbtn-wa {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.2);
  color: #25d366;
}

.qbtn-wa:hover {
  background: #25d366;
  color: white;
}

.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05), transparent);
}

.map-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.map-inner svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  opacity: 0.6;
}

.map-inner span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.2);
  color: #25d366;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s;
}

.footer-wa:hover {
  background: #25d366;
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 1.5rem 0;
  display: flex;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ========================================
   MOBILE STICKY
   ======================================== */

.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  z-index: 999;
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}

.ms-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ms-call {
  background: var(--gold);
  color: #0a0806;
}

.ms-wa {
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
}

.hide-mobile { display: inline; }

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 500px; }
  .about-float-card { bottom: -1rem; right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-text { position: static; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6,6,8,0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 998;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 999; }
  .btn-proposal { display: none; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-sub br { display: none; }
  .trust-container { gap: 1rem; }
  .trust-item { padding: 0.5rem 1.5rem; }
  .trust-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-left { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }
  .mobile-sticky { display: flex; }
  body { padding-bottom: 80px; }
  .hide-mobile { display: none; }
  .why-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .solutions-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .about-stats { flex-direction: column; gap: 1rem; }
  .quick-btns { flex-direction: column; }
}
