*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black: #0A1628;
    --black-mid: #122040;
    --red: #D0000A;
    --red-light: #F21420;
    --red-muted: #FF4D55;
    --white: #FFFFFF;
    --gray-1: #F7F9FC;
    --gray-2: #E8EDF5;
    --gray-text: #556070;
    --text: #0A1628;
    --radius: 12px;
    --radius-lg: 20px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; font-size: 15px; line-height: 1.6; }

 
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,22,40,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 0 6%; display: flex; align-items: center; justify-content: space-between; height: 66px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px; color: var(--white); text-decoration: none; }
  .nav-logo span { color: var(--red-muted); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
 
  .nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--white); }
  .nav-cta { background: var(--red); color: var(--white); padding: 9px 22px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
  .nav-cta:hover { background: var(--red-light); transform: translateY(-1px); }
  .nav-ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .nav-ham span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.85); border-radius: 2px; }
  .nav-mobile { display: none; flex-direction: column; position: fixed; top: 66px; left: 0; right: 0; background: rgba(10,22,40,0.98); padding: 1.5rem 6%; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); z-index: 99; }
  .nav-mobile.open { display: flex; }
 
  .nav-mobile a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 15px; font-weight: 500; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }

 
  .hero { min-height: 100vh; background: var(--black); position: relative; overflow: hidden; display: flex; align-items: center; padding: 100px 6% 80px; }
  .hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(208,0,10,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(208,0,10,0.06) 1px, transparent 1px), linear-gradient(rgba(46,116,245,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(46,116,245,0.04) 1px, transparent 1px); background-size: 64px 64px, 64px 64px, 32px 32px, 32px 32px; }
  .hero-glow { position: absolute; pointer-events: none; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(208,0,10,0.1) 0%, transparent 70%); top: -150px; right: -150px; }
  .hero-glow2 { position: absolute; pointer-events: none; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(26,92,219,0.12) 0%, transparent 70%); bottom: -80px; left: 8%; }
  .hero-content { position: relative; z-index: 2; max-width: 680px; }
 
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(208,0,10,0.15); border: 1px solid rgba(208,0,10,0.35); color: #FF6B70; padding: 6px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.6rem; }
  .hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-muted); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.5)} }
 
  .hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(34px, 5vw, 62px); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 1.3rem; }
 
  .hero h1 em { font-style: normal; color: var(--red-muted); }
 
  .hero-sub { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 540px; margin-bottom: 2.5rem; }
  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary { background: var(--red); color: var(--white); padding: 14px 30px; border-radius: var(--radius); font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, transform 0.2s; }
  .btn-primary:hover { background: var(--red-light); transform: translateY(-2px); }
  .btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.25); color: var(--white); padding: 14px 28px; border-radius: var(--radius); font-weight: 500; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: border-color 0.2s, background 0.2s; }
  .btn-outline:hover { border-color: var(--red-muted); background: rgba(208,0,10,0.08); }
  .hero-stats { position: absolute; right: 6%; bottom: 10%; display: flex; gap: 14px; z-index: 2; }
  .stat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 20px 24px; text-align: center; min-width: 110px; }
 
  .stat-num { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: var(--red-muted); line-height: 1; }
 
  .stat-label { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 5px; letter-spacing: 0.06em; text-transform: uppercase; }

 
  section { padding: 90px 6%; }
 
  .section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #A8000A; background: rgba(208,0,10,0.07); padding: 5px 14px; border-radius: 100px; margin-bottom: 1rem; }
  .section-title { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; line-height: 1.2; color: var(--black); margin-bottom: 1rem; }
 
  .section-sub { font-size: 15px; color: var(--gray-text); max-width: 560px; line-height: 1.8; }

 
  #about { background: var(--gray-1); }
  .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .about-card { background: #0D1E38; border-radius: var(--radius-lg); padding: 44px; color: var(--white); position: relative; overflow: hidden; }
  .about-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(208,0,10,0.18) 0%, transparent 70%); pointer-events: none; }
 
  .about-card-quote { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; line-height: 1.35; color: var(--red-muted); margin-bottom: 1.5rem; }
 
  .about-card p { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.85; }
  .founded-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(208,0,10,0.12); color: var(--red-muted); border: 1px solid rgba(208,0,10,0.3); padding: 7px 16px; border-radius: 100px; font-size: 12px; margin-top: 1.8rem; font-weight: 500; }

 
  #solutions { background: var(--white); }
  .solutions-header { text-align: center; margin-bottom: 3rem; }
  .solutions-header .section-sub { margin: 0 auto; }
  .solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .sol-card { border: 1.5px solid var(--gray-2); border-radius: var(--radius-lg); padding: 30px; background: var(--white); transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
  .sol-card:hover { border-color: var(--red); transform: translateY(-5px); box-shadow: 0 20px 48px rgba(10,22,40,0.12); }
  .sol-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 1.2rem; }
  .sol-icon.blue{background:rgba(208,0,10,0.07)} .sol-icon.cyan{background:rgba(208,0,10,0.07)} .sol-icon.amber{background:rgba(208,0,10,0.07)} .sol-icon.green{background:rgba(208,0,10,0.07)} .sol-icon.purple{background:rgba(208,0,10,0.07)} .sol-icon.coral{background:rgba(208,0,10,0.07)}
 
  .sol-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 0.6rem; }
  .sol-desc { font-size: 13px; color: var(--gray-text); line-height: 1.75; }
  .sol-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1.1rem; }
 
  .sol-tag { font-size: 11px; padding: 3px 10px; border-radius: 100px; background: var(--gray-2); color: #444444; font-weight: 500; }

 
  #hardware { background: #0D1E38; }
  #hardware .section-title { color: var(--white); }
  #hardware .section-tag { background: rgba(208,0,10,0.15); color: var(--red-muted); }
  #hardware .section-sub { color: rgba(255,255,255,0.65); }
  .hardware-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 2.8rem; }
  .hw-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-lg); padding: 28px; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
  .hw-card:hover { background: rgba(208,0,10,0.08); border-color: rgba(208,0,10,0.35); transform: translateY(-4px); }
  .hw-icon { font-size: 30px; margin-bottom: 14px; line-height: 1; }
  .hw-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
 
  .hw-desc { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; }

 
  #software { background: var(--gray-1); }
  .software-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 2.8rem; }
  .sw-card { background: var(--white); border: 1.5px solid var(--gray-2); border-radius: var(--radius-lg); padding: 32px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
  .sw-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(208,0,10,0.08); }
  .sw-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 1.1rem; }
  .sw-icon { width: 48px; height: 48px; border-radius: 12px; background: #0A1628; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
  .sw-name { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
 
  .sw-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; padding: 2px 9px; border-radius: 100px; background: rgba(208,0,10,0.08); color: #8A0008; }
  .sw-card p { font-size: 13px; color: var(--gray-text); line-height: 1.75; margin-bottom: 1rem; }
  .sw-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
  .sw-list li { font-size: 13px; color: var(--gray-text); display: flex; gap: 9px; align-items: flex-start; line-height: 1.5; }
 
  .sw-list li::before { content: '✓'; color: #A8000A; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .sw-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--gray-2); }
  .sw-btn-demo { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; text-decoration: none; background: var(--red); color: var(--white); transition: background 0.2s, transform 0.15s; }
  .sw-btn-demo:hover { background: var(--red-light); transform: translateY(-1px); }
 
  .sw-btn-brosur { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; text-decoration: none; background: transparent; color: #A8000A; border: 1.5px solid rgba(208,0,10,0.35); transition: border-color 0.2s, background 0.2s, transform 0.15s; }
  .sw-btn-brosur:hover { border-color: var(--red); background: rgba(208,0,10,0.06); transform: translateY(-1px); }

  .sw-btn-store { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; text-decoration: none; background: var(--gray-1); color: var(--black); border: 1.5px solid var(--gray-2); transition: border-color 0.2s, transform 0.15s; }
  .sw-btn-store:hover { border-color: var(--red); transform: translateY(-1px); }
 
  .sw-btn-soon { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; background: var(--gray-1); color: #555555; border: 1.5px dashed var(--gray-2); cursor: default; }

 
  #iot { background: var(--white); }
  .iot-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .iot-card { background: #0D1E38; border-radius: var(--radius-lg); padding: 40px; position: relative; overflow: hidden; }
  .iot-card::before { content: ''; position: absolute; bottom: -60px; left: -60px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(208,0,10,0.18) 0%, transparent 70%); pointer-events: none; }
  .iot-items { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
  .iot-item { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius); padding: 16px 18px; transition: background 0.2s; }
  .iot-item:hover { background: rgba(208,0,10,0.09); }
  .iot-item-icon { font-size: 22px; flex-shrink: 0; line-height: 1.2; }
  .iot-item-name { font-weight: 600; font-size: 14px; color: var(--white); margin-bottom: 3px; }
 
  .iot-item-desc { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.6; }

 
  #projects { background: var(--gray-1); }
  .projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 2.5rem; }
  .proj-item { background: var(--white); border: 1.5px solid var(--gray-2); border-radius: var(--radius); padding: 18px 22px; display: flex; align-items: flex-start; gap: 14px; border-left: 3px solid transparent; transition: border-color 0.2s, box-shadow 0.2s; }
  .proj-item:hover { border-left-color: var(--red); box-shadow: 0 4px 20px rgba(208,0,10,0.08); }
  .proj-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 5px; }
 
  .proj-name { font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.5; }
 
  .proj-client { font-size: 11px; color: #555555; margin-top: 3px; font-weight: 500; }

 
  #customers { background: var(--black); }
  #customers .section-title { color: var(--white); }
  #customers .section-tag { background: rgba(208,0,10,0.15); color: var(--red-muted); }
  .customers-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 2.5rem; }
 
  .cust-group-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1rem; }
  .cust-chips { display: flex; flex-wrap: wrap; gap: 10px; }
 
  .cust-chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 10px 18px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.88); transition: background 0.2s, border-color 0.2s; }
  .cust-chip:hover { background: rgba(208,0,10,0.1); border-color: rgba(208,0,10,0.35); }
 
  .partner-chip { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 10px 18px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); }

 
  #contact { background: var(--white); text-align: center; }
  .contact-inner { max-width: 700px; margin: 0 auto; }
  .contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 2.5rem 0; }
  .contact-card { background: var(--gray-1); border: 1.5px solid var(--gray-2); border-radius: var(--radius-lg); padding: 28px 20px; transition: border-color 0.2s, transform 0.2s; }
  .contact-card:hover { border-color: var(--red); transform: translateY(-3px); }
  .contact-card-icon { font-size: 28px; margin-bottom: 12px; line-height: 1; }
 
  .contact-card-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #555555; margin-bottom: 6px; }
 
  .contact-card-val { font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.5; }
  .contact-card-val a { color: #A8000A; text-decoration: none; }
  .contact-card-val a:hover { text-decoration: underline; color: var(--red); }

 
  footer { background: #060f1e; padding: 32px 6%; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.07); flex-wrap: wrap; gap: 12px; }
  .footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; color: var(--white); }
  .footer-logo span { color: var(--red-muted); }
 
  .footer-tagline { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; }
 
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.5); }

  /* ── DIGIEXA PRODUCT PAGE ── */
  #digiexa { background: var(--black); position: relative; overflow: hidden; }
  #digiexa::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(208,0,10,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(208,0,10,0.05) 1px, transparent 1px), linear-gradient(rgba(46,116,245,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(46,116,245,0.03) 1px, transparent 1px); background-size: 64px 64px, 64px 64px, 32px 32px, 32px 32px; pointer-events: none; }
  #digiexa .section-tag { background: rgba(208,0,10,0.15); color: var(--red-muted); }
  #digiexa .section-title { color: var(--white); }
  #digiexa .section-sub { color: rgba(255,255,255,0.65); }
  .digiexa-inner { position: relative; z-index: 1; }
  .digiexa-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 64px; }
  .digiexa-logo-wrap { display: flex; flex-direction: column; gap: 20px; }
  .digiexa-logo-box { background: var(--white); border-radius: var(--radius-lg); padding: 36px 40px; display: flex; align-items: center; justify-content: center; }
  .digiexa-logotype { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; line-height: 1; }
  .digiexa-logotype .digi { color: var(--red); }
  .digiexa-logotype .exa { color: var(--black); }
  .digiexa-sub-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-align: center; margin-top: 8px; }
  .digiexa-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1rem; }
  .digiexa-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }
  .digiexa-badge.red { background: rgba(208,0,10,0.15); border: 1px solid rgba(208,0,10,0.3); color: var(--red-muted); }
  .digiexa-badge.blue { background: rgba(46,116,245,0.12); border: 1px solid rgba(46,116,245,0.25); color: #7EB3FF; }
  .digiexa-badge.green { background: rgba(0,180,100,0.12); border: 1px solid rgba(0,180,100,0.25); color: #5DDBA5; }

  /* feature grid */
  .digiexa-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 56px; }
  .dx-feat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 24px; transition: background 0.2s, border-color 0.2s; }
  .dx-feat:hover { background: rgba(208,0,10,0.07); border-color: rgba(208,0,10,0.3); }
  .dx-feat-icon { font-size: 26px; margin-bottom: 12px; line-height: 1; }
  .dx-feat-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
  .dx-feat-desc { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.65; }

  /* paket */
  .digiexa-paket-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
  .digiexa-paket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 56px; }
  .dx-paket { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px; transition: border-color 0.2s, transform 0.2s; position: relative; }
  .dx-paket.featured { border-color: rgba(208,0,10,0.5); background: rgba(208,0,10,0.07); }
  .dx-paket-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 12px; border-radius: 100px; white-space: nowrap; }
  .dx-paket-name { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
  .dx-paket-sub { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
  .dx-paket-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .dx-paket-list li { font-size: 12px; color: rgba(255,255,255,0.7); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
  .dx-paket-list li::before { content: '✓'; color: var(--red-muted); font-weight: 700; flex-shrink: 0; }
  .dx-paket-list li.dim { color: rgba(255,255,255,0.3); }
  .dx-paket-list li.dim::before { content: '—'; color: rgba(255,255,255,0.2); }

  /* demo box */
  .digiexa-demo { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 40px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: start; }
  .demo-block-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
  .demo-block-title span { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--red); font-size: 12px; font-weight: 700; flex-shrink: 0; }
  .demo-info { display: flex; flex-direction: column; gap: 10px; }
  .demo-row { display: flex; flex-direction: column; gap: 2px; }
  .demo-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
  .demo-val { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.88); font-family: 'DM Mono', 'Courier New', monospace; }
  .demo-val a { color: var(--red-muted); text-decoration: none; }
  .demo-val a:hover { text-decoration: underline; }
  .demo-cta { margin-top: 16px; }
  .demo-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; background: var(--red); color: var(--white); transition: background 0.2s, transform 0.15s; }
  .demo-btn:hover { background: var(--red-light); transform: translateY(-1px); }
  .demo-btn.outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.2); color: var(--white); }
  .demo-btn.outline:hover { border-color: var(--red-muted); background: rgba(208,0,10,0.08); }
  .demo-divider { width: 1px; background: rgba(255,255,255,0.08); align-self: stretch; }

  @media (max-width: 900px) {
    .digiexa-hero,.digiexa-features,.digiexa-paket-grid { grid-template-columns: 1fr; }
    .digiexa-demo { grid-template-columns: 1fr; }
    .demo-divider { display: none; }
  }

  @media (max-width: 900px) {
    .solutions-grid,.hardware-grid{grid-template-columns:repeat(2,1fr)}
    .about-inner,.iot-inner,.software-grid,.projects-grid,.customers-inner,.contact-cards{grid-template-columns:1fr}
    .hero-stats{display:none}
  }
  @media (max-width: 600px) {
    section{padding:64px 5%} nav{padding:0 5%}
    .nav-links,.nav-cta{display:none} .nav-ham{display:flex}
    .solutions-grid,.hardware-grid{grid-template-columns:1fr}
    .hero{padding:100px 5% 64px}
  }

/* ===== SKELETON LOADING ===== */
.skeleton {
  position: relative;
  overflow: hidden;
}
.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 50%, transparent);
  animation: shimmer 1.8s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.skeleton-block {
  background: rgba(10,22,40,0.06);
  border-radius: 8px;
  animation: pulse-block 1.5s ease-in-out infinite;
}
@keyframes pulse-block {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.loading-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-overlay.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.loading-spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--red-muted);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.loading-text {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.loading-dots span {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-muted);
  margin: 0 3px;
  animation: dot-bounce 1.4s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}