    :root {
      --bg-dark: #050915;
      --bg-section: #070c1a;
      --primary: #1f6fff;
      --primary-soft: rgba(31, 111, 255, 0.14);
      --accent-gold: #f5b947;
      --text-main: #f8f9ff;
      --text-muted: #a0a5c0;
      --border-soft: rgba(255, 255, 255, 0.06);
      --radius-xl: 24px;
      --radius-lg: 18px;
      --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
      --transition-fast: 0.25s ease;
      --max-width: 1140px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #0f172a 0, #020617 55%);
      color: var(--text-main);
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* Layout */
    .page-wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: linear-gradient(
        to bottom,
        rgba(2, 6, 23, 0.96),
        rgba(2, 6, 23, 0.82),
        transparent
      );
      border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 0;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }

    .nav-logo {
      width: 40px;
      height: 40px;
      border-radius: 13px;
      background: radial-gradient(circle at 20% 0, #38bdf8, #1f2937);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 30px rgba(15, 118, 236, 0.55);
      overflow: hidden;
    }

    .nav-logo span {
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 1px;
    }

    .nav-title {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .nav-title-main {
      font-size: 0.95rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .nav-title-sub {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      font-size: 0.85rem;
    }

    .nav-links a {
      color: var(--text-muted);
      position: relative;
      padding-bottom: 0.15rem;
    }

    .nav-links a:hover {
      color: #e5e7eb;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--accent-gold), var(--primary));
      transition: width var(--transition-fast);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn-primary,
    .btn-ghost {
      border-radius: 999px;
      padding: 0.55rem 1.35rem;
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      transition: transform 0.18s ease, box-shadow 0.18s ease,
        background 0.18s ease, color 0.18s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #38bdf8);
      color: #e5f3ff;
      box-shadow: 0 10px 30px rgba(37, 99, 235, 0.65);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 35px rgba(37, 99, 235, 0.8);
    }

    .btn-ghost {
      background: transparent;
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: var(--text-muted);
    }

    .btn-ghost:hover {
      border-color: #e5e7eb;
      color: #e5e7eb;
      background: rgba(15, 23, 42, 0.8);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--text-main);
    }

    /* Hero */
    .hero {
      padding: 4.5rem 0 4rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 3rem;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.2rem 0.65rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: radial-gradient(circle at top left,
        rgba(248, 250, 252, 0.18),
        rgba(15, 23, 42, 0.7));
      color: var(--accent-gold);
      font-weight: 500;
      font-size: 0.72rem;
      margin-bottom: 0.9rem;
    }

    .badge span {
      color: #e5e7eb;
      font-weight: 400;
    }

    .hero-title {
      font-size: clamp(2.1rem, 3.2vw, 2.8rem);
      font-weight: 700;
      line-height: 1.18;
      margin-bottom: 0.8rem;
    }

    .hero-highlight {
      background: linear-gradient(120deg, #facc15, #f97316, #38bdf8);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 480px;
      margin-bottom: 1.2rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.4rem;
      align-items: center;
      margin-top: 1.4rem;
    }

    .hero-trust {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    .hero-trust strong {
      font-size: 0.9rem;
      color: #e5e7eb;
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem;
      margin-top: 1rem;
    }

    .pill {
      border-radius: 999px;
      padding: 0.22rem 0.7rem;
      border: 1px solid rgba(148, 163, 184, 0.5);
      font-size: 0.7rem;
      color: var(--text-muted);
      background: rgba(15, 23, 42, 0.7);
    }

    .hero-right-card {
      background: radial-gradient(circle at 0 0, rgba(250, 204, 21, 0.18), transparent 45%),
        radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.35), transparent 52%),
        linear-gradient(145deg, #020617, #020617);
      border-radius: 32px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      box-shadow: var(--shadow-soft);
      padding: 1rem 1.2rem 1.2rem;
      position: relative;
      overflow: hidden;
    }

    .hero-right-inner {
      border-radius: 24px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      padding: 1.2rem;
      background: linear-gradient(
        145deg,
        rgba(15, 23, 42, 0.96),
        rgba(15, 23, 42, 0.9)
      );
      position: relative;
      overflow: hidden;
    }

    .hero-right-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(148, 163, 184, 0.45);
      font-size: 0.7rem;
      color: var(--text-muted);
      margin-bottom: 0.7rem;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.8rem;
      margin-top: 1rem;
    }

    .stat-card {
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      padding: 0.6rem;
      background: radial-gradient(circle at top left,
        rgba(59, 130, 246, 0.23),
        rgba(15, 23, 42, 0.96));
      font-size: 0.7rem;
    }

    .stat-card strong {
      font-size: 1rem;
      display: block;
      margin-bottom: 0.2rem;
    }

    .hero-orbit {
      position: absolute;
      inset: -50%;
      background:
        radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.25), transparent 55%),
        radial-gradient(circle at 80% 0, rgba(250, 204, 21, 0.18), transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.25), transparent 55%);
      opacity: 0.18;
      pointer-events: none;
    }

    .hero-right-floating {
      position: absolute;
      right: 12px;
      top: 12px;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: rgba(15, 23, 42, 0.85);
      font-size: 0.7rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .hero-right-floating span {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
    }

    /* Sections */
    section {
      padding: 3.5rem 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2.3rem;
    }

    .section-kicker {
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent-gold);
      margin-bottom: 0.4rem;
    }

    .section-title {
      font-size: 1.6rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .section-subtitle {
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 640px;
      margin: 0 auto;
    }

    .card-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
    }

    .card {
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      background: radial-gradient(circle at top,
        rgba(148, 163, 184, 0.18),
        rgba(15, 23, 42, 0.96));
      padding: 1.1rem 1.2rem;
      box-shadow: 0 16px 35px rgba(15, 23, 42, 0.8);
      position: relative;
      overflow: hidden;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast),
        border-color var(--transition-fast), background var(--transition-fast);
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right,
        rgba(56, 189, 248, 0.22),
        transparent 55%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 45px rgba(15, 23, 42, 0.9);
      border-color: rgba(148, 163, 184, 0.9);
      background: radial-gradient(circle at top,
        rgba(37, 99, 235, 0.28),
        rgba(15, 23, 42, 0.98));
    }

    .card:hover::before {
      opacity: 1;
    }

    .card-icon {
      width: 32px;
      height: 32px;
      border-radius: 11px;
      background: linear-gradient(145deg, #38bdf8, #1d4ed8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 0.7rem;
    }

    .card-title {
      font-size: 0.98rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .card-text {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.7rem;
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.25rem;
      margin-top: 0.3rem;
    }

    .chip {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      font-size: 0.7rem;
      padding: 0.16rem 0.55rem;
      color: var(--text-muted);
      background: rgba(15, 23, 42, 0.9);
    }

    /* Highlight section (products) */
    .split {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: center;
    }

    .highlight-badge {
      font-size: 0.75rem;
      padding: 0.18rem 0.65rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: var(--accent-gold);
      display: inline-flex;
      gap: 0.4rem;
      align-items: center;
      margin-bottom: 0.6rem;
    }

    .highlight-title {
      font-size: 1.4rem;
      margin-bottom: 0.45rem;
    }

    .highlight-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 0.9rem;
    }

    .timeline {
      border-left: 1px dashed rgba(148, 163, 184, 0.6);
      margin: 0.3rem 0;
    }

    .timeline-item {
      padding-left: 0.95rem;
      padding-bottom: 0.8rem;
      position: relative;
    }

    .timeline-item::before {
      content: "";
      position: absolute;
      left: -5px;
      top: 0.25rem;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--accent-gold), var(--primary));
      box-shadow: 0 0 10px rgba(248, 250, 252, 0.4);
    }

    .timeline-title {
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 0.15rem;
    }

    .timeline-text {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .glass-panel {
      border-radius: var(--radius-xl);
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: radial-gradient(circle at top left,
        rgba(59, 130, 246, 0.28),
        rgba(15, 23, 42, 0.97));
      padding: 1.2rem 1.3rem;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .glass-panel-sub {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.8rem;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
    }

    .tag {
      border-radius: 999px;
      padding: 0.18rem 0.6rem;
      border: 1px solid rgba(248, 250, 252, 0.2);
      background: rgba(15, 23, 42, 0.85);
      font-size: 0.72rem;
      color: #e5e7eb;
    }

    /* CTA Section */
    .cta-section {
      padding: 3.2rem 0 3.8rem;
    }

    .cta-box {
      border-radius: 28px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: radial-gradient(circle at top left,
        rgba(250, 204, 21, 0.25),
        rgba(15, 23, 42, 0.98));
      padding: 2rem 1.8rem;
      box-shadow: var(--shadow-soft);
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 1.8rem;
      align-items: center;
    }

    .cta-title {
      font-size: 1.4rem;
      margin-bottom: 0.4rem;
    }

    .cta-text {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .cta-right {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      align-items: flex-start;
      justify-content: center;
    }

    .cta-note {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top,
    rgba(148, 163, 184, 0.2),
    rgba(15, 23, 42, 0.97));
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

/* Kartu info perusahaan (kiri) */
.info-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  color: #e8ecf7;
  font-size: 0.9rem;
}

.info-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.86rem;
}

.info-row.align-start {
  align-items: flex-start;
}

.info-row .icon {
  font-size: 1.2rem;
  width: 26px;
  color: #38bdf8;
  padding-top: 3px;
}

.info-row a {
  color: #79c8ff;
  text-decoration: none;
  transition: 0.2s ease;
}

.info-row a:hover {
  color: #a5ddff;
  text-decoration: underline;
}

/* === FORM KANAN === */
.contact-card form {
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Baris input 2 kolom */
.contact-card .grid-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

/* Baris textarea + tombol */
.contact-card .grid-form-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 0.75rem;
  align-items: flex-end;
}

/* Field form */
.contact-card input,
.contact-card textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.35);
  background: rgba(15,23,42,0.85);
  padding: 11px 14px;
  color: #e5e7eb;
  font-size: 0.85rem;
  outline: none;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #6b7280;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56,189,248,0.3);
  background: rgba(15, 23, 42, 0.97);
}

.contact-card textarea {
  min-height: 170px;
  resize: vertical;
}

/* Tombol kirim premium */
.btn-send {
  justify-self: flex-end;
  align-self: flex-end;
  min-width: 190px;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #f9fafb;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(37,99,235,0.55);
  transition:
    transform .18s ease,
    box-shadow .2s ease,
    background .2s ease,
    opacity .2s ease;
}

.btn-send svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transform: translateX(-2px);
  transition: transform .2s ease;
}

.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 55px rgba(37,99,235,0.7);
}

.btn-send:hover svg {
  transform: translateX(2px);
}

.btn-send:active {
  transform: translateY(0);
  box-shadow: 0 12px 28px rgba(15,23,42,0.9);
}

/* State loading */
.btn-send.loading {
  cursor: wait;
  opacity: 0.85;
}

.btn-loader {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(248,250,252,0.4);
  border-top-color: #f9fafb;
  display: none;
  animation: spin 0.6s linear infinite;
}

.btn-send.loading .btn-loader {
  display: inline-block;
}

.btn-send.loading .btn-text {
  opacity: 0.9;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Status teks */
.form-status {
  margin-top: 4px;
  font-size: 13px;
}

.form-status.success { color: #4ade80; }
.form-status.error   { color: #fb7185; }

.form-note {
  margin-top: 4px;
  font-size: 12px;
  color: #9ca3af;
}

/* Responsive contact */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-card .grid-form {
    grid-template-columns: 1fr;
  }

  .contact-card .grid-form-bottom {
    grid-template-columns: 1fr;
  }

  .btn-send {
    justify-self: stretch;
    width: 100%;
  }

  .info-card {
    padding: 18px 16px;
  }
}


    /* Footer */
    footer {
      border-top: 1px solid rgba(148, 163, 184, 0.2);
      padding: 1.3rem 0 1.4rem;
      margin-top: 2rem;
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-links {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--text-muted);
    }

    .footer-links a:hover {
      color: #e5e7eb;
    }

    /* Scroll animation */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.45s ease, transform 0.45s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 960px) {
      .hero-grid,
      .split,
      .cta-box,
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .cta-box {
        padding: 1.6rem 1.3rem;
      }

      .hero {
        padding: 3.3rem 0 3.1rem;
      }

      .card-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      header {
        backdrop-filter: blur(18px);
      }

      .nav-links {
        position: fixed;
        inset: 56px 0 auto 0;
        background: rgba(2, 6, 23, 0.98);
        border-bottom: 1px solid rgba(148, 163, 184, 0.18);
        padding: 0.8rem 1.25rem 0.9rem;
        transform: translateY(-115%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease-out, opacity 0.2s ease-out;
      }

      .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .nav-links a {
        padding: 0.35rem 0;
      }

      .nav-cta {
        display: none;
      }

      .nav-toggle {
        display: block;
      }

      .hero-grid {
        gap: 2.1rem;
      }

      .hero-title {
        font-size: 1.85rem;
      }

      .card-grid-3 {
        grid-template-columns: minmax(0, 1fr);
      }

      .cta-title {
        font-size: 1.2rem;
      }

      footer {
        text-align: center;
      }

      .footer-row {
        flex-direction: column;
        align-items: flex-start;
      }
      .company-info-card {
        border-radius: 18px;
        padding: 1.4rem 1.6rem;
        background: radial-gradient(circle at top left, rgba(56,189,248,0.18), rgba(15,23,42,0.96));
        border: 1px solid rgba(148,163,184,0.35);
        box-shadow: 0 18px 40px rgba(15,23,42,0.8);
        max-width: 520px;
        }

        .company-info-header {
        display: flex;
        align-items: center;
        gap: 0.9rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid rgba(148,163,184,0.25);
        padding-bottom: 0.7rem;
        }

        .company-info-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: linear-gradient(135deg, #1f6fff, #38bdf8);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 25px rgba(37,99,235,0.7);
        }

        .company-info-header h3 {
        margin: 0;
        font-size: 1.05rem;
        font-weight: 600;
        }

        .company-info-header p {
        margin: 0;
        font-size: 0.8rem;
        color: #a0a5c0;
        }

        .company-info-body {
        margin-top: 0.6rem;
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
        }

        .info-row {
        display: grid;
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 0.5rem;
        font-size: 0.85rem;
        }

        .info-row .label {
        color: #cbd5f5;
        font-weight: 500;
        }

        .info-row .value {
        color: #e5e7f5;
        }

        .info-row a.value {
        text-decoration: none;
        color: #38bdf8;
        }

        .info-row a.value:hover {
        text-decoration: underline;
        }

        @media (max-width: 600px) {
        .company-info-card {
            padding: 1.2rem 1.1rem;
        }

        .info-row {
            grid-template-columns: 85px minmax(0, 1fr);
            font-size: 0.8rem;
        }
        }

        .info-card {
        background: rgba(255, 255, 255, 0.04);
        padding: 20px 24px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 24px rgba(0,0,0,0.35);
        max-width: 520px;
        color: #e8ecf7;
        font-size: 0.9rem;
        }

        .info-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 14px;
        }

        .info-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
        }

        .info-row.align-start {
        align-items: flex-start;
        }

        .info-row .icon {
        font-size: 1.2rem;
        width: 26px;
        color: #38bdf8;
        padding-top: 3px;
        }

        .info-row a {
        color: #79c8ff;
        text-decoration: none;
        transition: 0.2s ease;
        }

        .info-row a:hover {
        color: #a5ddff;
        text-decoration: underline;
        }
        
        /* Layout form */
.contact-card .grid-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.35);
  background: rgba(15,23,42,0.85);
  padding: 11px 14px;
  color: #e5e7eb;
  font-size: 14px;
  outline: none;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #6b7280;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56,189,248,0.3);
}

.contact-card textarea {
  min-height: 170px;
  resize: vertical;
}

/* Baris kedua: buat tombol rata kanan */
.contact-card .grid-form-bottom {
  align-items: flex-end;
}

/* Tombol kirim premium */
.btn-send {
  justify-self: flex-end;
  align-self: flex-end;
  min-width: 190px;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #f9fafb;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(37,99,235,0.55);
  transition:
    transform .18s ease,
    box-shadow .2s ease,
    background .2s ease,
    opacity .2s ease;
}

.btn-send svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transform: translateX(-2px);
  transition: transform .2s ease;
}

.btn-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 55px rgba(37,99,235,0.7);
}

.btn-send:hover svg {
  transform: translateX(2px);
}

.btn-send:active {
  transform: translateY(0);
  box-shadow: 0 12px 28px rgba(15,23,42,0.9);
}

/* State loading */
.btn-send.loading {
  cursor: wait;
  opacity: 0.85;
}

.btn-loader {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(248,250,252,0.4);
  border-top-color: #f9fafb;
  display: none;
  animation: spin 0.6s linear infinite;
}

.btn-send.loading .btn-loader {
  display: inline-block;
}

.btn-send.loading .btn-text {
  opacity: 0.9;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Status teks */
.form-status {
  margin-top: 4px;
  font-size: 13px;
}

.form-status.success { color: #4ade80; }
.form-status.error   { color: #fb7185; }

.form-note {
  margin-top: 8px;
  font-size: 12px;
  color: #9ca3af;
}

/* Mobile: semua jadi 1 kolom */
@media (max-width: 768px) {
  .contact-card .grid-form {
    grid-template-columns: 1fr;
  }

  .btn-send {
    justify-self: stretch;
    width: 100%;
  }
}




    }