/* =========================================
   CREONIX DIGITAL MARKETING - MAIN STYLES
   Color theme extracted from logo:
   Red: #CC0000 / #E80000
   Black: #0D0D0D / #111111
   White: #FFFFFF
   Font: Orbitron (headings) + Inter (body)
   ========================================= */

/* Fonts loaded via HTML <link> in index.html */

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

:root {
  --red:        #CC0000;
  --red-bright: #E80000;
  --red-dark:   #8B0000;
  --red-glow:   rgba(204, 0, 0, 0.35);
  --black:      #0D0D0D;
  --black2:     #111111;
  --black3:     #1A1A1A;
  --dark:       #1E1E1E;
  --dark2:      #252525;
  --gray:       #3A3A3A;
  --gray2:      #5A5A5A;
  --light-gray: #A0A0A0;
  --white:      #FFFFFF;
  --off-white:  #F4F4F4;
  --font-main:  'Orbitron', sans-serif;
  --font-body:  'Inter', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-red: 0 0 40px rgba(204, 0, 0, 0.25);
  --shadow-card: 0 8px 48px rgba(0,0,0,0.45);
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ---- SELECTION ---- */
::selection { background: var(--red); color: var(--white); }

/* ---- UTILITY ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img.logo{
   width:200px;
   height:60px;
   object-fit:contain;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--white);
}

.section-title span {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1rem;
  color: var(--light-gray);
  max-width: 540px;
  margin-top: 12px;
  line-height: 1.75;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.72rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-dark) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(204,0,0,0.45); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.72rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-bright);
  transform: translateY(-2px);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,0,0,0); }
  50%       { box-shadow: 0 0 0 12px rgba(204,0,0,0.12); }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes dash-move {
  from { stroke-dashoffset: 200; }
  to   { stroke-dashoffset: 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes bar-grow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

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

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

/* Stagger delays */
.reveal:nth-child(1) { transition-delay: 0.0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }


/* ===========================
   HEADER / NAV
   =========================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  padding: 0 24px;
}

#header.scrolled {
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 20%;
}

.nav-logo-text {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav-logo-text em {
  color: var(--red-bright);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 32px 24px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-direction: column;
  gap: 24px;
  transform: translateY(-20px);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}


/* ===========================
   HERO SECTION
   =========================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(180, 0, 0, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(150, 0, 0, 0.12) 0%, transparent 60%),
    linear-gradient(160deg, #0D0D0D 0%, #111111 50%, #0A0A0A 100%);
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
  /* will-change: transform for parallax */
  will-change: transform;
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* Animated red diagonal line */
.hero-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-diagonal svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-left {
  animation: fadeUp 0.9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(204, 0, 0, 0.12);
  border: 1px solid rgba(204, 0, 0, 0.3);
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  animation: pulse-glow 2s ease-in-out infinite;
}

h1.hero-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.8vw, 3.0rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
}

h1.hero-title .red-word {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 60%, #FF4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Typed word: fixed height line so layout never jumps --- */
.typed-line {
  display: block;
  /* Holds exact 1-line height even when text is being deleted */
  min-height: 1.4em;
  line-height: 1.3;
}

/* Blinking cursor always visible after the word */
#typed-word {
  position: relative;
}

#cursor-glow{
    position:fixed;
    pointer-events:none;
    z-index:9999;

    will-change:transform;
    contain:layout style paint;
    backface-visibility:hidden;
    transform:translateZ(0);
}

#typed-word::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  /* Use normal color so cursor is always visible, not transparent */
  background: none;
  -webkit-text-fill-color: var(--red-bright);
  color: var(--red-bright);
  font-weight: 300;
  animation: blink-cursor 1s step-end infinite;
}

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

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item { }

.stat-num {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.stat-num span {
  color: var(--red-bright);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray2);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero right - Floating dashboard card */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.dashboard-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dashboard-title-grp {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-card h4 {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.dashboard-card p {
  font-size: 0.72rem;
  color: var(--gray2);
  margin-top: 1px;
}

.badge-live {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(0, 180, 0, 0.12);
  border: 1px solid rgba(0, 200, 0, 0.25);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #00cc66;
}

.badge-live .live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00cc66;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

/* Chart bars */
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-bottom: 20px;
}

.bar-col {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  animation: bar-grow 1.2s cubic-bezier(0.34,1.56,0.64,1) both;
}

.bar-col:nth-child(1)  { height: 45%; background: rgba(204,0,0,0.35); animation-delay: 0.1s; }
.bar-col:nth-child(2)  { height: 70%; background: rgba(204,0,0,0.5);  animation-delay: 0.15s; }
.bar-col:nth-child(3)  { height: 55%; background: rgba(204,0,0,0.35); animation-delay: 0.2s; }
.bar-col:nth-child(4)  { height: 85%; background: var(--red);         animation-delay: 0.25s; }
.bar-col:nth-child(5)  { height: 65%; background: rgba(204,0,0,0.5);  animation-delay: 0.3s; }
.bar-col:nth-child(6)  { height: 90%; background: var(--red-bright);  animation-delay: 0.35s; }
.bar-col:nth-child(7)  { height: 72%; background: rgba(204,0,0,0.5);  animation-delay: 0.4s; }
.bar-col:nth-child(8)  { height: 80%; background: var(--red);         animation-delay: 0.45s; }

.chart-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 20px;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-pill {
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
}

.metric-val {
  font-family: var(--font-main);
  font-size: 1.0rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
}

.metric-val.up { color: #00cc66; }
.metric-val.red { color: var(--red-bright); }

.metric-key {
  font-size: 0.7rem;
  color: var(--gray2);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* floating mini-badge */
.badge-floating {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(30,30,30,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: float 6s 1s ease-in-out infinite;
}

.badge-floating .icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00aa55, #00cc66);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-floating strong {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
}

.badge-floating small {
  font-size: 0.7rem;
  color: var(--gray2);
}

/* ===========================
   MARQUEE / TICKER
   =========================== */
#marquee {
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red) 50%, var(--red-dark) 100%);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 28px;
}

.marquee-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}


/* ===========================
   SERVICES SECTION
   =========================== */
#services {
  padding: 120px 0;
  position: relative;
}

.services-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(204,0,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.services-head {
  text-align: center;
  margin-bottom: 64px;
}

.services-head .section-label {
  justify-content: center;
}

.services-head .section-label::before { display: none; }
.services-head .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

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

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-bright) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  border-color: rgba(204,0,0,0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(204,0,0,0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(204,0,0,0.15) 0%, rgba(204,0,0,0.05) 100%);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(204,0,0,0.3) 0%, rgba(204,0,0,0.1) 100%);
  box-shadow: 0 0 24px rgba(204,0,0,0.25);
}

.service-card h3 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 4px 12px;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.18);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,120,120,0.9);
  letter-spacing: 0.03em;
}

.service-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ===========================
   PROCESS / HOW WE WORK
   =========================== */
#process {
  padding: 120px 0;
  background: var(--black2);
  position: relative;
  overflow: hidden;
}

.process-bg-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,0,0,0.15), transparent);
  pointer-events: none;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.process-left { }

.process-steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  cursor: default;
  transition: var(--transition);
}

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

.step-num {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 4px;
  width: 28px;
}

.step-content h4 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  transition: color var(--transition);
}

.step-content p {
  font-size: 0.85rem;
  color: var(--gray2);
  line-height: 1.65;
}

.step-item:hover .step-content h4 { color: var(--red-bright); }

/* Right side: animated circles / metrics */
.process-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.process-metric {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.process-metric:hover {
  border-color: rgba(204,0,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.process-metric.featured {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 32px;
  text-align: left;
  background: linear-gradient(135deg, rgba(204,0,0,0.1) 0%, rgba(204,0,0,0.03) 100%);
  border-color: rgba(204,0,0,0.2);
}

.metric-circle {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.metric-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.metric-circle .track {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 6;
}

.metric-circle .fill {
  fill: none;
  stroke: var(--red-bright);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-circle.animated .fill { stroke-dashoffset: 0; }

.metric-circle-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.process-metric-num {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.process-metric-num span { color: var(--red-bright); }

.process-metric-desc {
  font-size: 0.8rem;
  color: var(--gray2);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}


/* ===========================
   WHY US / FEATURES
   =========================== */
#why-us {
  padding: 120px 0;
}

.why-head {
  text-align: center;
  margin-bottom: 72px;
}

.why-head .section-label { justify-content: center; }
.why-head .section-label::before { display: none; }
.why-head .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.feature-cell {
  background: var(--black);
  padding: 40px 32px;
  position: relative;
  transition: background var(--transition);
}

.feature-cell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-cell:hover { background: rgba(204,0,0,0.04); }
.feature-cell:hover::after { transform: scaleX(1); }

.feature-cell h4 {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 16px 0 10px;
  letter-spacing: -0.01em;
}

.feature-cell p {
  font-size: 0.82rem;
  color: var(--gray2);
  line-height: 1.65;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(204,0,0,0.2) 0%, rgba(204,0,0,0.05) 100%);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   TESTIMONIALS
   =========================== */
#testimonials {
  padding: 120px 0;
  background: var(--black2);
}

.testimonials-head {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-head .section-label { justify-content: center; }
.testimonials-head .section-label::before { display: none; }
.testimonials-head .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(204,0,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--red);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-dark), var(--red-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-info strong {
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--gray2);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.stars span {
  color: var(--red-bright);
  font-size: 0.9rem;
}


/* ===========================
   CTA SECTION
   =========================== */
#cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,0,0,0.15) 0%, rgba(204,0,0,0.05) 50%, transparent 100%);
}

.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,0,0,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner .section-label { justify-content: center; }
.cta-inner .section-label::before { display: none; }
.cta-inner .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.cta-title {
  font-family: var(--font-main);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 20px;
}

.cta-title .red-word {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-trust {
  margin-top: 36px;
  font-size: 0.8rem;
  color: var(--gray2);
  letter-spacing: 0.05em;
}

.cta-trust strong { color: var(--red-bright); }


/* ===========================
   CONTACT SECTION
   =========================== */
#contact {
  padding: 120px 0;
  background: var(--black2);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left { }

.contact-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(204,0,0,0.2) 0%, rgba(204,0,0,0.05) 100%);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text strong {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.contact-item-text span {
  font-size: 0.82rem;
  color: var(--gray2);
}

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 40px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--light-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(204,0,0,0.45);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.1);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}


/* ===========================
   FOOTER
   =========================== */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { }

.footer-logo-text {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-logo-text em { color: var(--red-bright); font-style: normal; }

.footer-tagline {
  font-size: 0.82rem;
  color: var(--gray2);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 220px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background: rgba(204,0,0,0.15);
  border-color: rgba(204,0,0,0.3);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--gray2);
  transition: color var(--transition);
}

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

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray2);
}

.footer-copy span { color: var(--red-bright); }

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--gray2);
  transition: color var(--transition);
}

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


/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-layout { grid-template-columns: 1fr; gap: 48px; }
  .process-right { grid-template-columns: repeat(2, 1fr); }
  .process-metric.featured { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .hero-right { display: none; }
  .hero-stats { gap: 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .process-right { grid-template-columns: 1fr; }
  .process-metric.featured { grid-column: span 1; flex-direction: column; }
}
