/* =========================================================
   RENAUSH — style.css (Professional Clean Edition)
   Senior Web Developer Redesign
   Palette: Navy · Orange · White · Professional Grays
   ========================================================= */

/* ── 1. CSS VARIABLES ──────────────────────────────────── */
:root {
  /* Primary Colors */
  --navy:          #070D1A;
  --navy-dark:     #040810;
  --navy-light:    #F5F7FC;

  /* Secondary Colors */
  --accent:        #E8581A;
  --accent-dark:   #C44A12;
  --accent-light:  #FF6B2B;

  /* Neutral Colors */
  --white:         #FFFFFF;
  --gray-50:       #F9FAFB;
  --gray-100:      #F3F4F6;
  --gray-200:      #E5E7EB;
  --gray-300:      #D1D5DB;
  --gray-400:      #9CA3AF;
  --gray-500:      #6B7280;
  --gray-600:      #4B5563;
  --gray-700:      #374151;

  /* Text Colors */
  --text:          #1F2937;
  --text-light:    #6B7280;
  --text-white:    #FFFFFF;
  --text-muted:    #9CA3AF;

  /* Fonts */
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-mono:     'Space Mono', 'Courier New', monospace;

  /* Border Radius */
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;

  /* Shadows - Clean & Professional */
  --shadow-xs:     0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm:     0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow:        0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md:     0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg:     0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Motion */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container:     1200px;
  --header-h:      76px;
}

/* ── 2. SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar               { width: 8px; }
::-webkit-scrollbar-track         { background: #F3F4F6; }
::-webkit-scrollbar-thumb         { background: #D1D5DB; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover   { background: #9CA3AF; }

/* ── 3. SCROLL PROGRESS BAR ───────────────────────────── */
.scroll-progress-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 9999;
  background: #E5E7EB;
}
.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: width 0.08s linear;
}

/* ── 4. RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; transition: color var(--transition); }
ul     { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); font-size: 1rem; }

/* ── 5. TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p  {
  line-height: 1.7;
  color: var(--text-light);
  font-size: 0.95rem;
}

strong { color: var(--text); font-weight: 600; }

/* ── 6. LAYOUT UTILITIES ──────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding: clamp(60px, 10vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

/* Light section */
.section-alt { background: var(--gray-100); }

/* Dark section */
.section-dark {
  background: var(--navy);
}
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255, 255, 255, 0.7); }
.section-dark .section-sub { color: rgba(255, 255, 255, 0.7); }

/* Section header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vw, 60px);
}
.section-header h2 { margin-bottom: 1rem; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Section labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-label::before { content: '//'; opacity: 0.6; }

.section-label-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-label-light::before { content: '//'; opacity: 0.6; }

/* ── 7. BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

.btn-lg    { padding: 14px 36px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }

/* Primary Button */
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(232, 88, 26, 0.3), var(--shadow-md);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  border-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(232, 88, 26, 0.5), var(--shadow-lg);
}
.btn-accent:active {
  transform: translateY(0);
}

/* Outline Button */
.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
  border-width: 2px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── 8. SCROLL REVEAL ─────────────────────────────────– */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── 9. HEADER / NAVIGATION ───────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 2rem;
}

.nav-logo {
  flex-shrink: 0;
  background: transparent;
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: none;
  box-shadow: none;
}
.nav-logo:hover {
  box-shadow: none;
  border-color: transparent;
  transform: translateY(-2px);
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
  filter: brightness(1);
  transition: filter var(--transition);
  object-fit: contain;
  object-position: center;
}
.nav-logo:hover .logo-img {
  filter: brightness(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 1rem; flex-shrink: 0; }
.nav-cta-mobile { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 4px;
  margin-left: auto;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--gray-100); }
.bar {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── 10. HERO SECTION ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(249, 250, 251, 0.92) 0%,
    rgba(243, 244, 246, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(232, 88, 26, 0.08);
  border: 1px solid rgba(232, 88, 26, 0.2);
  border-radius: 50px;
}

.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: live-dot 1.6s step-end infinite;
}

@keyframes live-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.line-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cursor-blink {
  display: inline-block;
  color: var(--accent);
  font-weight: 300;
  animation: cur-blink 1s step-end infinite;
  margin-left: 3px;
}

@keyframes cur-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-light);
  line-height: 1.8;
  max-width: 550px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

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

/* Terminal window */
.hero-terminal {
  width: 100%;
  max-width: 480px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.t-dot.red { background: #FF5F56; }
.t-dot.yellow { background: #FFBD2E; }
.t-dot.green { background: #27C93F; }

.t-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: auto;
  font-family: var(--font-mono);
}

.terminal-body {
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  min-height: 120px;
}

.t-prompt { color: var(--accent); }
.t-output { color: rgba(255, 255, 255, 0.8); margin: 4px 0; }
.t-green { color: #4CAF50; }
.t-teal { color: #00BCD4; }
.t-accent { color: var(--accent); }
.t-cursor { color: var(--accent); animation: blink 1s infinite; }

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  cursor: pointer;
  z-index: 5;
  transition: all var(--transition);
}

.hero-scroll-indicator:hover {
  color: var(--accent);
  transform: translateX(-50%) translateY(-4px);
}

.scroll-arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

/* ── 11. ABOUT SECTION ────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 5vw, 6rem);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  left: 20px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}

.badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display);
}

.badge-text {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  line-height: 1.3;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ── 12. PROCESS SECTION ──────────────────────────────── */
.process-track {
  position: relative;
  padding: 3rem 0;
}

.process-line {
  display: none;
}

@keyframes lineGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; box-shadow: 0 0 25px rgba(232, 88, 26, 0.8); }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding-top: 100px;
  transition: all var(--transition);
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-num {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  z-index: 3;
  box-shadow: 0 0 30px rgba(232, 88, 26, 0.4),
              inset 0 0 20px rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: stepPulse 2s ease-in-out infinite;
  transition: all var(--transition);
}

.process-step:hover .step-num {
  box-shadow: 0 0 50px rgba(232, 88, 26, 0.8),
              inset 0 0 20px rgba(255, 255, 255, 0.2);
  transform: translateX(-50%) scale(1.1);
}

@keyframes stepPulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(232, 88, 26, 0.4),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(232, 88, 26, 0.7),
                inset 0 0 20px rgba(255, 255, 255, 0.15);
  }
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(232, 88, 26, 0.3));
  transition: all var(--transition);
}

.process-step:hover .step-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 20px rgba(232, 88, 26, 0.6));
  animation: iconBounce 0.6s ease-in-out;
}

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

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

.process-step h3 {
  margin-bottom: 0.75rem;
  color: var(--white);
  font-size: 1.2rem;
  transition: color var(--transition);
}

.process-step:hover h3 {
  color: var(--accent);
}

.process-step p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  transition: color var(--transition);
}

.process-step:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* ── 13. SERVICES SECTION ─────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  overflow: hidden;
  background: var(--gray-100);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 30px;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(232, 88, 26, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── 14. INDUSTRIES SECTION ───────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.industry-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 25px;
  text-align: center;
  transition: all var(--transition);
}

.industry-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.industry-card h4 {
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ── 15. POS HIGHLIGHT ────────────────────────────────– */
.pos-highlight {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--navy) 0%, #0A1628 100%);
  color: var(--white);
}

.pos-highlight-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pos-highlight-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pos-highlight-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 26, 0.75);
  z-index: 1;
}

.pos-highlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.pos-text h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.pos-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.pos-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pos-features li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
}

.pos-features strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pos-features span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.pos-screen img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

/* ── 16. WHY US SECTION ───────────────────────────────– */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.why-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(232, 88, 26, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent);
  stroke-width: 1.5;
}

.why-card h3 {
  margin-bottom: 1rem;
  color: var(--navy);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── 17. TESTIMONIALS ─────────────────────────────────– */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.t-stars {
  color: #FDB022;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.t-quote {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.t-author {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.t-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.t-info strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.t-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ── 18. PORTFOLIO ────────────────────────────────────– */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.portfolio-card a {
  display: block;
}

.portfolio-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: var(--gray-100);
}

.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 26, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-view {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.portfolio-card-body {
  padding: 24px;
}

.portfolio-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.portfolio-card h3 {
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.portfolio-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ── 19. PRICING ──────────────────────────────────────– */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 12px 24px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

.pricing-tab.active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.pricing-tab:hover {
  border-color: var(--accent);
}

.tab-currency {
  font-size: 0.75rem;
  opacity: 0.7;
  display: block;
  margin-top: 0.25rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.pricing-card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 25px 50px -12px rgba(232, 88, 26, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-amount {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-from {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.pricing-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display);
}

.pricing-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.pricing-amount--contact {
  text-align: center;
}

.pricing-contact-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.pricing-contact-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
}

.pricing-features li:before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--accent);
  font-weight: 700;
}

.pricing-note-bottom {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ── 20. FAQ ───────────────────────────────────────────– */
.faq-list {
  max-width: 700px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

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

.faq-icon {
  font-size: 1.5rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), opacity var(--transition);
  opacity: 0;
}

.faq-a.open {
  max-height: 500px;
  opacity: 1;
  padding-top: 1.5rem;
}

.faq-a p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ── 21. CONTACT FORM ──────────────────────────────────– */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.contact-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(232, 88, 26, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-details strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--accent);
  transition: color var(--transition);
}

.contact-details a:hover {
  color: var(--accent-dark);
}

.contact-details span {
  display: block;
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: all var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 88, 26, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-body);
}

.form-note {
  font-size: 0.95rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 1.5rem;
  display: none;
  animation: slideDown 0.3s ease-out;
  font-weight: 500;
  border-left: 4px solid transparent;
}

.form-note.success {
  background: #D1FAE5;
  color: #065F46;
  border-left-color: #10B981;
  display: block;
}

.form-note.error {
  background: #FEE2E2;
  color: #991B1B;
  border-left-color: #EF4444;
  display: block;
}

.form-note.info {
  background: #DBEAFE;
  color: #0C2340;
  border-left-color: #3B82F6;
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── 22. NEWSLETTER ────────────────────────────────────– */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0A1628 100%);
  padding: 80px 20px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter-text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nl-input-wrap {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: var(--text-light);
}

.newsletter-form button {
  background: var(--accent);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.newsletter-form button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.nl-privacy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.nl-status {
  font-size: 0.9rem;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius);
}

.nl-status.success {
  background: rgba(74, 222, 128, 0.2);
  color: #DCF8E3;
}

.nl-status.error {
  background: rgba(248, 113, 113, 0.2);
  color: #FEE2E2;
}

.nl-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.nl-stat {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.nl-stat span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* ── 23. FOOTER ────────────────────────────────────────– */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 20px 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 80px;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(1.1) contrast(1.05);
  transition: filter var(--transition);
}

.footer-brand:hover .footer-logo {
  filter: brightness(0.95);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact a,
.footer-contact p {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── 24. FLOATING BUTTONS ─────────────────────────────– */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 25px 50px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  margin-bottom: 0.75rem;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 998;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ── 25. PRELOADER ─────────────────────────────────────– */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  height: 80px;
  width: auto;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
  filter: brightness(1.1) drop-shadow(0 0 10px rgba(232, 88, 26, 0.3));
}

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

.preloader-bar-wrap {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: width 0.1s linear;
}

.preloader-status {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

/* ── 26. CUSTOM CURSOR ─────────────────────────────────– */
.cursor-dot {
  display: none !important;
}

.cursor-ring {
  display: none !important;
}

/* ── 27. RESPONSIVE DESIGN ────────────────────────────– */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    z-index: 999;
    gap: 0;
    padding: 1.5rem;
    border-radius: 0;
    max-width: 100%;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2rem;
  }

  .hero-visual {
    display: flex !important;
    gap: 1.5rem;
  }

  .hero-img,
  .hero-terminal {
    display: block !important;
    max-width: 100%;
  }

  .about-grid,
  .contact-grid,
  .pos-highlight-content,
  .newsletter-inner {
    grid-template-columns: 1fr;
  }

  .about-badge { bottom: -20px; }

  .stats-container,
  .services-grid,
  .industries-grid,
  .why-grid,
  .testimonials-grid,
  .portfolio-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-steps { grid-template-columns: 1fr; }
  .process-line { display: none; }
  .step-num { top: -25px; }

  .nl-stats { grid-template-columns: 1fr; }

  .section { padding: clamp(40px, 8vw, 60px) 0; }

  .hero { padding-top: var(--header-h); }
}

@media (max-width: 480px) {
  :root { font-size: 14px; }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1rem; }

  .btn { padding: 10px 20px; font-size: 0.85rem; }
  .btn-lg { padding: 12px 24px; }

  .about-stats { gap: 1rem; }

  .whatsapp-float,
  .back-to-top {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }

  .nl-input-wrap { flex-direction: column; }
}

/* ── 28. FUTURISTIC ROBOT ANIMATIONS ──────────────────── */
.robot-section {
  position: relative;
  overflow: visible;
}

.robot-container {
  position: relative;
  height: 300px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-animated {
  position: relative;
  width: 80px;
  height: 100px;
  animation: robotWalk 4s infinite;
}

@keyframes robotWalk {
  0% { transform: translateX(-100px) scaleX(1); }
  25% { transform: translateX(-50px) scaleX(1); }
  50% { transform: translateX(0) scaleX(1); }
  75% { transform: translateX(50px) scaleX(1); }
  100% { transform: translateX(100px) scaleX(1); }
}

.robot-body {
  width: 40px;
  height: 50px;
  background: linear-gradient(135deg, #E8581A, #FF6B2B);
  border-radius: 8px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(232, 88, 26, 0.3);
}

.robot-head {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #FF6B2B, #E8581A);
  border-radius: 6px;
  margin: 0 auto -8px;
  position: relative;
  animation: robotHeadLook 2s infinite;
  box-shadow: 0 0 15px rgba(232, 88, 26, 0.4);
}

@keyframes robotHeadLook {
  0%, 100% { transform: rotateY(0deg); }
  50% { transform: rotateY(10deg); }
}

.robot-eyes {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

.robot-eye {
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  border-radius: 50%;
  animation: robotBlink 3s infinite;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

@keyframes robotBlink {
  0%, 10%, 20%, 100% { opacity: 1; }
  5%, 15% { opacity: 0; }
}

.robot-arms {
  position: absolute;
  top: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 5px;
}

.robot-arm {
  width: 8px;
  height: 25px;
  background: linear-gradient(90deg, #E8581A, #FF6B2B);
  border-radius: 4px;
  animation: robotArm 2s infinite;
  transform-origin: top center;
}

.robot-arm:nth-child(1) {
  animation-delay: 0s;
}

.robot-arm:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes robotArm {
  0%, 100% { transform: rotateZ(-30deg); }
  50% { transform: rotateZ(30deg); }
}

.robot-legs {
  position: absolute;
  bottom: -25px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
}

.robot-leg {
  width: 6px;
  height: 25px;
  background: #070D1A;
  border-radius: 3px;
  animation: robotLeg 1.2s infinite;
  transform-origin: top center;
}

.robot-leg:nth-child(1) {
  animation-delay: 0s;
}

.robot-leg:nth-child(2) {
  animation-delay: 0.6s;
}

@keyframes robotLeg {
  0% { transform: rotateZ(-20deg); }
  50% { transform: rotateZ(20deg); }
  100% { transform: rotateZ(-20deg); }
}

.robot-task {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  animation: taskFloat 2s infinite;
  letter-spacing: 1px;
}

@keyframes taskFloat {
  0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
  20%, 80% { opacity: 1; }
  50% { transform: translateX(-50%) translateY(-20px); }
}

.code-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  opacity: 0;
  animation: floatParticle 3s infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-60px) translateX(20px);
  }
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 35%; animation-delay: 0.5s; }
.particle:nth-child(3) { left: 50%; animation-delay: 1s; }
.particle:nth-child(4) { left: 65%; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 80%; animation-delay: 2s; }

/* Futuristic glow effects */
.glow-effect {
  position: relative;
  z-index: 1;
}

.glow-effect::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(232, 88, 26, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Grid background animation */
.futuristic-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(232, 88, 26, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 88, 26, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridShift 20s linear infinite;
  pointer-events: none;
}

@keyframes gridShift {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}

/* Hologram text effect */
.hologram-text {
  position: relative;
  display: inline-block;
  animation: hologramFlicker 0.2s infinite;
  text-shadow: 0 0 10px rgba(232, 88, 26, 0.6),
               0 0 20px rgba(232, 88, 26, 0.3);
}

@keyframes hologramFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Neon glow on cards */
.neon-card {
  position: relative;
  box-shadow: 0 0 20px rgba(232, 88, 26, 0.2), inset 0 0 20px rgba(232, 88, 26, 0.1);
  transition: all 0.3s ease;
}

.neon-card:hover {
  box-shadow: 0 0 30px rgba(232, 88, 26, 0.4), inset 0 0 20px rgba(232, 88, 26, 0.15);
}

/* Scan line effect */
.scan-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(232, 88, 26, 0.03) 0px,
    rgba(232, 88, 26, 0.03) 1px,
    transparent 1px,
    transparent 2px
  );
  animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

/* Data stream animation */
.data-stream {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 2px;
  animation: dataFlow 4s linear infinite;
  white-space: nowrap;
  overflow: hidden;
}

@keyframes dataFlow {
  0% { transform: translateX(-100%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* SVG Robot floating animation */
@keyframes floatRobot {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* ── 30. CEO SECTION ────────────────────────────────── */
.ceo-section {
  background: linear-gradient(135deg, #070D1A 0%, #0C1528 100%);
  padding: 100px 0;
}

.ceo-hero {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 1s ease;
}

.ceo-avatar {
  font-size: 80px;
  margin-bottom: 30px;
  display: inline-block;
}

.ceo-name {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.ceo-title {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 25px;
}

.ceo-intro {
  font-size: 1.05rem;
  color: #B8C5D6;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.ceo-message {
  background: linear-gradient(135deg, rgba(232, 88, 26, 0.1), rgba(255, 107, 43, 0.05));
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 50px 40px;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ceo-message h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 30px;
  text-align: center;
}

.ceo-message blockquote {
  margin: 0;
  padding: 0;
}

.ceo-message blockquote p {
  font-size: 1.05rem;
  color: #B8C5D6;
  line-height: 1.8;
  margin-bottom: 20px;
}

.ceo-message blockquote p strong {
  color: var(--accent);
  font-weight: 700;
}

.ceo-values h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 88, 26, 0.3);
  border-radius: 12px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(232, 88, 26, 0.1);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}

.value-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: #B8C5D6;
  line-height: 1.6;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── 29. PRINT STYLES ──────────────────────────────────– */
@media print {
  .site-header,
  .whatsapp-float,
  .back-to-top,
  .scroll-progress-wrap {
    display: none;
  }
}
