/* 
  PT Solarindo Energi Utama
  Futuristic Industrial Dark Theme
*/

:root {
  --su-bg: #050608;
  --su-bg-elevated: #0b0d11;
  --su-bg-alt: #10131b;
  --su-border: #202532;
  --su-border-subtle: #141824;
  --su-text: #f5f7fb;
  --su-text-muted: #a7b0c6;
  --su-red: #ff2745;
  --su-red-soft: rgba(255, 39, 69, 0.35);
  --su-yellow: #ffce3d;
  --su-yellow-soft: rgba(255, 206, 61, 0.35);
  --su-accent: #1ec8ff;
  --su-radius-lg: 18px;
  --su-radius-md: 12px;
  --su-radius-pill: 999px;
  --su-shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.6);
  --su-grid-color: rgba(255, 255, 255, 0.06);
  --su-gradient-futuristic: linear-gradient(135deg, #050608 0%, #1a0d12 25%, #2d1518 50%, #1a0d12 75%, #050608 100%);
  --su-gradient-glow: radial-gradient(circle at 50% 50%, rgba(255, 39, 69, 0.15) 0%, rgba(255, 206, 61, 0.1) 50%, transparent 100%);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 39, 69, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 206, 61, 0.06) 0%, transparent 50%),
    radial-gradient(circle at top, #151827 0, #050608 55%);
  background-attachment: fixed;
  color: var(--su-text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

body > * {
  position: relative;
  z-index: 1;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

.su-shell {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

.su-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.78));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.su-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 2rem;
}

.su-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.su-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 960px) {
  .su-logo-img {
    height: 40px;
  }
}

.su-logo-mark {
  font-family: "Orbitron", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--su-radius-pill);
  background: radial-gradient(circle at 0 0, var(--su-red-soft), transparent 50%),
    radial-gradient(circle at 100% 100%, var(--su-yellow-soft), transparent 55%),
    rgba(9, 11, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 39, 69, 0.3);
}

.su-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.su-logo-name {
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.su-logo-tagline {
  font-size: 0.7rem;
  color: var(--su-text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.su-nav {
  position: relative;
}

.su-nav-list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.su-nav-link {
  font-size: 0.86rem;
  color: var(--su-text-muted);
  position: relative;
  padding-block: 0.35rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.su-nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.4rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--su-red), var(--su-yellow));
  transform-origin: center;
  transition: transform 0.2s ease-out;
}

.su-nav-link:hover {
  color: var(--su-text);
}

.su-nav-link:hover::after {
}

.su-nav-link-active {
  color: #fff;
  font-weight: 500;
}

.su-nav-link-active::after {
}

.su-nav-cta {
  padding-inline: 1rem;
  padding-block: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 0 0, rgba(255, 39, 69, 0.35), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(255, 206, 61, 0.28), transparent 55%),
    rgba(10, 12, 19, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 39, 69, 0.3), var(--su-shadow-soft);
}

.su-nav-cta::after {
  display: none;
}

.su-nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 10, 18, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.su-nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.su-hero {
  position: relative;
  padding-block: 3.5rem 3.25rem;
  overflow: hidden;
  min-height: 68vh;
}

.su-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 0, rgba(30, 200, 255, 0.22), transparent 55%),
    radial-gradient(circle at 90% 0, rgba(255, 39, 69, 0.22), transparent 55%);
  opacity: 0.7;
  animation: suGlowDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.su-hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(5, 6, 8, 0.65), rgba(5, 6, 8, 0.96));
  z-index: 0;
}

.su-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.su-hero-content {
  padding-top: 0.75rem;
}

.su-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--su-text-muted);
  margin-bottom: 0.9rem;
}

.su-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--su-red), var(--su-yellow));
}

.su-hero-title {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: clamp(2.6rem, 3.3vw + 1.3rem, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.su-hero-title span {
  display: block;
}

.su-hero-title span:nth-child(1) { animation-delay: 0.1s; }
.su-hero-title span:nth-child(2) { animation-delay: 0.2s; }
.su-hero-title span:nth-child(3) { animation-delay: 0.3s; }

.su-hero-subtitle {
  max-width: 34rem;
  margin: 0 0 1.4rem;
  color: var(--su-text-muted);
  font-size: 0.96rem;
}

.su-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.su-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--su-radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.su-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.su-btn:hover::before {
  opacity: 1;
}

.su-btn-primary {
  background: radial-gradient(circle at 0 0, var(--su-red-soft), transparent 55%),
    radial-gradient(circle at 100% 100%, var(--su-yellow-soft), transparent 60%),
    linear-gradient(135deg, #ff2745, #ffce3d);
  color: #050608;
  box-shadow: 0 0 0 1px rgba(255, 39, 69, 0.3), 0 22px 40px rgba(0, 0, 0, 0.85),
    0 0 30px rgba(255, 39, 69, 0.2);
}

.su-btn-primary:hover {
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.95), 0 0 40px rgba(255, 39, 69, 0.4),
    0 0 60px rgba(255, 206, 61, 0.2);
  filter: brightness(1.1);
}

.su-btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(9, 11, 18, 0.85);
  color: var(--su-text);
  backdrop-filter: blur(10px);
}

.su-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(14, 17, 27, 0.96);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.su-btn-full {
  width: 100%;
}

.su-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin: 0;
}

.su-hero-stats > div {
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: var(--su-radius-md);
  cursor: default;
}

.su-hero-stats > div:hover {
  background: rgba(255, 206, 61, 0.1);
  box-shadow: 0 8px 20px rgba(255, 206, 61, 0.2);
}

.su-hero-stats dt {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  color: var(--su-yellow);
  text-shadow: 0 0 20px rgba(255, 206, 61, 0.5);
  transition: all 0.3s ease;
  display: block;
}

.su-hero-stats dd {
  margin: 0;
  font-size: 0.78rem;
  color: var(--su-text-muted);
}

.su-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.su-hero-map {
  background: radial-gradient(circle at 0 0, rgba(30, 200, 255, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 39, 69, 0.16), transparent 55%),
    rgba(6, 8, 15, 0.98);
  border-radius: var(--su-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--su-shadow-soft);
  padding: 0.9rem 1rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.su-hero-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--su-text-muted);
}

.su-chip {
  padding: 0.15rem 0.6rem;
  border-radius: var(--su-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.68rem;
}

.su-chip-live {
  border-color: rgba(255, 39, 69, 0.7);
  color: var(--su-red);
  box-shadow: 0 0 0 1px rgba(255, 39, 69, 0.55);
}

.su-hero-map-body {
  position: relative;
  border-radius: calc(var(--su-radius-lg) - 10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 50% 0, rgba(30, 200, 255, 0.18), transparent 60%),
    radial-gradient(circle at 0 100%, rgba(255, 206, 61, 0.15), transparent 55%),
    #05070f;
  height: 220px;
  overflow: hidden;
}

.su-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      var(--su-grid-color) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, var(--su-grid-color) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.55;
  animation: suGridDrift 24s linear infinite;
}

.su-map-points {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
}

.su-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30, 200, 255, 0.8), transparent);
  opacity: 0.75;
  mix-blend-mode: screen;
  animation: suScanVertical 6s linear infinite;
}

.su-point {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--su-red);
  box-shadow: 0 0 0 6px rgba(255, 39, 69, 0.3), 0 0 18px rgba(255, 39, 69, 0.95);
}

.su-point::after {
  content: attr(data-label);
  position: absolute;
  left: 14px;
  top: -3px;
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  background: rgba(6, 8, 15, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.7rem;
  white-space: nowrap;
}

.su-point-jakarta {
  left: 26%;
  top: 58%;
}

.su-point-surabaya {
  left: 38%;
  top: 62%;
}

.su-point-balikpapan {
  left: 52%;
  top: 52%;
}

.su-hero-map-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--su-text-muted);
}

.su-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.su-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--su-red);
  box-shadow: 0 0 6px rgba(255, 39, 69, 0.9);
}

.su-indicator-dot-yellow {
  background: var(--su-yellow);
  box-shadow: 0 0 6px rgba(255, 206, 61, 0.8);
}

.su-hero-metrics-card {
  background: radial-gradient(circle at 0 0, rgba(255, 206, 61, 0.18), transparent 55%),
    rgba(8, 10, 17, 0.96);
  border-radius: var(--su-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--su-shadow-soft);
  padding: 1rem 1.1rem 0.95rem;
}

.su-hero-metrics-card h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 0.6rem;
  color: var(--su-text-muted);
}

.su-metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  padding-block: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.su-metric-row span:first-child {
  color: var(--su-text-muted);
}

.su-metric-value {
  font-family: "Orbitron", system-ui, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--su-yellow);
}

.su-metric-value-yellow {
  color: var(--su-accent);
}

.su-metric-note {
  margin: 0.55rem 0 0;
  font-size: 0.7rem;
  color: var(--su-text-muted);
}

.su-section {
  padding-block: 2.8rem;
}

.su-section-alt {
  background: radial-gradient(circle at 0 0, rgba(30, 200, 255, 0.1), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(255, 39, 69, 0.15), transparent 55%),
    linear-gradient(to bottom, #05070e, #080a13);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.su-section-grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.su-section h2 {
  margin: 0 0 0.6rem;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 206, 61, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.su-section p {
  margin: 0 0 0.7rem;
  color: var(--su-text-muted);
  font-size: 0.96rem;
}

.su-card {
  border-radius: var(--su-radius-lg);
  padding: 1.3rem 1.4rem;
  background: radial-gradient(circle at 0 0, rgba(255, 39, 69, 0.18), transparent 55%),
    rgba(7, 9, 16, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--su-shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.su-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 39, 69, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.su-card:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 206, 61, 0.4),
    0 0 40px rgba(255, 39, 69, 0.2);
  border-color: rgba(255, 206, 61, 0.6);
}

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

.su-card-highlight {
  border-color: rgba(255, 206, 61, 0.55);
}

.su-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.su-list-check,
.su-list-dashed {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
}

.su-list-check li,
.su-list-dashed li {
  font-size: 0.9rem;
  color: var(--su-text-muted);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.su-list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--su-red), var(--su-yellow));
  box-shadow: 0 0 0 4px rgba(255, 39, 69, 0.3);
}

.su-list-dashed li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--su-yellow);
}

.su-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.su-pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.78rem;
  color: var(--su-text-muted);
  background: rgba(5, 7, 14, 0.9);
}

.su-inline-link {
  font-size: 0.86rem;
  color: var(--su-yellow);
  text-decoration: none;
}

.su-inline-link:hover {
  text-decoration: underline;
}

.su-section-heading {
  text-align: left;
  margin-bottom: 1.5rem;
}

.su-section-heading p {
  max-width: 28rem;
}

.su-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.su-card-border {
  background: rgba(7, 9, 16, 0.9);
  border-radius: var(--su-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.75);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.su-card-border::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 39, 69, 0.3), rgba(255, 206, 61, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.su-card-border:hover {
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 206, 61, 0.3),
    0 0 30px rgba(255, 39, 69, 0.15);
  border-color: rgba(255, 206, 61, 0.4);
}

.su-card-border:hover::after {
  opacity: 1;
}

.su-card-border h3 {
  margin-bottom: 0.4rem;
}

.su-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
}

.su-cta-panel {
  background: radial-gradient(circle at 0 0, rgba(255, 39, 69, 0.2), transparent 55%),
    rgba(8, 10, 17, 0.96);
  border-radius: var(--su-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--su-shadow-soft);
}

.su-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  margin-bottom: 0.8rem;
  color: var(--su-text-muted);
}

.su-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 0 0, rgba(30, 200, 255, 0.12), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(255, 39, 69, 0.2), transparent 55%),
    linear-gradient(to bottom, #05070e, #03040a);
  padding-top: 2.2rem;
}

.su-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1.1fr));
  gap: 2rem;
  align-items: flex-start;
}

.su-footer-logo {
  margin-bottom: 0.6rem;
}

.su-footer-logo .su-logo-img {
  height: 40px;
}

.su-footer-copy {
  margin: 0;
  font-size: 0.86rem;
  color: var(--su-text-muted);
}

.su-footer-title {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--su-text-muted);
}

.su-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.86rem;
}

.su-footer-links a {
  color: var(--su-text-muted);
}

.su-footer-links a:hover {
  color: #fff;
}

.su-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.86rem;
  color: var(--su-text-muted);
}

.su-footer-list li + li {
  margin-top: 0.2rem;
}

.su-footer-list a {
  color: var(--su-text-muted);
}

.su-footer-list a:hover {
  color: #fff;
}

.su-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 1.8rem;
}

.su-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  font-size: 0.75rem;
  color: var(--su-text-muted);
}

.su-footer-meta {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.su-page-hero {
  padding-block: 2.8rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 0 0, rgba(30, 200, 255, 0.12), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(255, 39, 69, 0.18), transparent 55%);
}

.su-page-kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--su-text-muted);
  margin-bottom: 0.4rem;
}

.su-page-title {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
}

.su-page-subtitle {
  max-width: 34rem;
  margin: 0;
  color: var(--su-text-muted);
  font-size: 0.94rem;
}

.su-page-layout {
  padding-block: 2.1rem 2.8rem;
}

.su-page-grid-main {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.su-page-content p {
  color: var(--su-text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.su-page-content p + p {
  margin-top: 0.5rem;
}

.su-page-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.su-aside-card {
  border-radius: var(--su-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 8, 15, 0.96);
  padding: 1.1rem 1.2rem;
}

.su-aside-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
}

.su-aside-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  color: var(--su-text-muted);
}

.su-aside-meta li + li {
  margin-top: 0.3rem;
}

.su-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  margin-top: 0.6rem;
}

.su-table th,
.su-table td {
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.su-table th {
  text-align: left;
  font-weight: 500;
  color: var(--su-text-muted);
}

.su-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.4rem;
}

.su-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.12rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--su-text-muted);
}

.su-timeline {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 1.1rem;
  margin-top: 0.6rem;
}

.su-timeline-item {
  position: relative;
  margin-bottom: 0.7rem;
}

.su-timeline-item::before {
  content: "";
  position: absolute;
  left: -1.3rem;
  top: 0.25rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--su-yellow);
  box-shadow: 0 0 0 4px rgba(255, 206, 61, 0.3);
}

.su-timeline-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--su-text-muted);
}

.su-timeline-text {
  font-size: 0.9rem;
  color: var(--su-text);
}

.su-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.su-activity-card {
  border-radius: var(--su-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 9, 16, 0.96);
  padding: 0.9rem 1rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.75);
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out,
    border-color 0.16s ease-out, background 0.16s ease-out;
}

.su-activity-card:hover {
  border-color: rgba(30, 200, 255, 0.7);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.95);
}

.su-activity-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--su-text-muted);
  margin-bottom: 0.2rem;
}

.su-activity-title {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
}

.su-activity-text {
  margin: 0;
  font-size: 0.86rem;
  color: var(--su-text-muted);
}

.su-legal-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: var(--su-text-muted);
}

.su-legal-list li + li {
  margin-top: 0.3rem;
}

.su-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.su-form {
  display: grid;
  gap: 0.8rem;
}

.su-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.su-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--su-text-muted);
}

.su-input,
.su-textarea,
.su-select {
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 6, 13, 0.96);
  padding: 0.6rem 0.75rem;
  color: var(--su-text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}

.su-input:focus,
.su-textarea:focus,
.su-select:focus {
  border-color: rgba(255, 206, 61, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 206, 61, 0.4);
}

.su-textarea {
  min-height: 120px;
  resize: vertical;
}

.su-contact-panel {
  border-radius: var(--su-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 8, 15, 0.96);
  padding: 1.1rem 1.2rem;
}

.su-contact-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
}

.su-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.86rem;
  color: var(--su-text-muted);
}

.su-contact-list li + li {
  margin-top: 0.3rem;
}

.su-contact-list a {
  color: var(--su-text-muted);
}

.su-contact-list a:hover {
  color: #fff;
}

.su-map-embed {
  margin-top: 1rem;
  border-radius: var(--su-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--su-shadow-soft);
}

.su-map-embed iframe {
  width: 100%;
  height: 230px;
  border: 0;
  filter: saturate(0.9) contrast(1.05) brightness(0.9);
}

.su-whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.4rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0, #ffffff, transparent 55%),
    radial-gradient(circle at 100% 100%, #128c7e, #075e54);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.15);
  z-index: 60;
  cursor: pointer;
  animation: suFloat 3.5s ease-in-out infinite;
}

.su-whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(18, 140, 126, 0.7);
  box-shadow: 0 0 16px rgba(18, 140, 126, 0.9);
  opacity: 0.6;
  animation: suPulse 2.6s ease-out infinite;
}

.su-whatsapp-float img {
  position: relative;
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes suGlowDrift {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.8;
  }
}

@keyframes suGridDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 40px 40px, 40px 40px;
  }
}

@keyframes suScanVertical {
  0% {
    top: -10%;
  }
  100% {
    top: 110%;
  }
}

@keyframes suFloat {
  0%,
  100% {
  }
  50% {
  }
}

@keyframes suPulse {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .su-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .su-hero-panel {
    order: -1;
  }

  .su-section-grid-two,
  .su-cta-grid,
  .su-page-grid-main,
  .su-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .su-activity-grid,
  .su-cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .su-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .su-header-inner {
    padding-block: 0.7rem;
  }

  .su-nav-toggle {
    display: inline-flex;
  }

  .su-nav-list {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    align-items: flex-start;
    min-width: 240px;
    max-width: 80vw;
    padding: 0.75rem;
    border-radius: 16px;
    background: rgba(5, 6, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--su-shadow-soft);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease-out;
  }

  .su-nav-list.su-nav-open {
    opacity: 1;
    pointer-events: auto;
  }

  .su-nav-link,
  .su-nav-cta {
    width: 100%;
  }

  .su-footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .su-activity-grid,
  .su-cards-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .su-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .su-whatsapp-float {
    right: 0.9rem;
    bottom: 1.1rem;
    width: 50px;
    height: 50px;
  }

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

  .su-map-embed iframe {
    height: 200px;
  }
}

/* Enhanced Design Elements */

/* Icon Styles */
.su-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  color: currentColor;
  flex-shrink: 0;
}

.su-icon-lg {
  width: 32px;
  height: 32px;
}

.su-icon-xl {
  width: 48px;
  height: 48px;
}

.su-card-icon {
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  border-radius: var(--su-radius-md);
  background: linear-gradient(135deg, rgba(255, 39, 69, 0.15), rgba(255, 206, 61, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grid Separators */
.su-grid-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 39, 69, 0.3), rgba(255, 206, 61, 0.3), transparent);
  margin: 2rem 0;
  position: relative;
}

.su-grid-separator::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--su-yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--su-yellow-soft);
}

/* Scanning Lines */
.su-scan-line-horizontal {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30, 200, 255, 0.6), transparent);
  animation: suScanHorizontal 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes suScanHorizontal {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Certificate Placeholders */
.su-certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.su-certificate-card {
  background: linear-gradient(135deg, rgba(7, 9, 16, 0.95), rgba(11, 13, 17, 0.95));
  border-radius: var(--su-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.su-certificate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--su-red), var(--su-yellow));
}

.su-certificate-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 39, 69, 0.3);
}

.su-certificate-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 39, 69, 0.1), rgba(255, 206, 61, 0.05));
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--su-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.su-certificate-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
}

.su-certificate-placeholder-icon {
  width: 64px;
  height: 64px;
  opacity: 0.3;
}

.su-certificate-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--su-text);
}

.su-certificate-desc {
  font-size: 0.85rem;
  color: var(--su-text-muted);
  margin: 0;
}

/* Activity Gallery */
.su-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.su-gallery-item {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--su-radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 39, 69, 0.15), rgba(255, 206, 61, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.su-gallery-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 39, 69, 0.4);
}

.su-gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 9, 16, 0.8), rgba(11, 13, 17, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.su-gallery-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.02) 20px, rgba(255, 255, 255, 0.02) 40px);
}

.su-gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Enhanced Footer */
.su-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: 
    linear-gradient(180deg, rgba(255, 39, 69, 0.05) 0%, transparent 30%),
    linear-gradient(180deg, rgba(255, 206, 61, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 0 0, rgba(30, 200, 255, 0.12), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(255, 39, 69, 0.2), transparent 55%),
    linear-gradient(to bottom, #05070e, #03040a);
  padding-top: 2.2rem;
  position: relative;
}

.su-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 39, 69, 0.5), rgba(255, 206, 61, 0.5), transparent);
}

.su-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 4, 10, 0.6);
  margin-top: 2rem;
  padding: 1.2rem 0;
}

/* Maritime Visual Elements */
.su-maritime-accent {
  position: relative;
}

.su-maritime-accent::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--su-red), var(--su-yellow));
  border-radius: 2px;
}

/* Enhanced Card with Icons */
.su-card-with-icon {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.su-card-with-icon .su-card-icon {
  margin-bottom: 0;
}

/* Enhanced Animations & Visual Effects */

.su-hero-title {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 206, 61, 0.9) 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite, fadeInUp 0.8s ease-out 0.1s both;
}

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

.su-hero-subtitle {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.su-hero-actions {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.su-hero-stats {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Enhanced Card Icon Hover */
.su-card-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.su-card-with-icon:hover .su-card-icon {
  box-shadow: 0 8px 20px rgba(255, 39, 69, 0.3);
}

/* Enhanced Activity Cards */
.su-activity-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.su-activity-card:hover {
}

.su-activity-card:hover .su-activity-label {
  background: linear-gradient(135deg, var(--su-red), var(--su-yellow));
  color: #050608;
  box-shadow: 0 0 20px rgba(255, 39, 69, 0.5);
}

/* Enhanced Pills */
.su-pill {
  transition: all 0.3s ease;
}

.su-pill:hover {
  border-color: rgba(255, 206, 61, 0.5);
  background: rgba(255, 206, 61, 0.1);
  box-shadow: 0 4px 12px rgba(255, 206, 61, 0.2);
}

/* Enhanced Stats */
.su-hero-stats dt {
  transition: all 0.3s ease;
}

.su-hero-stats > div {
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: var(--su-radius-md);
  cursor: default;
}

.su-hero-stats > div:hover {
  background: rgba(255, 206, 61, 0.1);
}

.su-hero-stats > div:hover dt {
  text-shadow: 0 0 30px rgba(255, 206, 61, 0.8);
}

/* Enhanced Grid Separator Animation */
.su-grid-separator {
  animation: expandWidth 1s ease-out;
}

@keyframes expandWidth {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

/* Enhanced Certificate Cards */
.su-certificate-card {
  animation: fadeInUp 0.6s ease-out;
}

.su-certificate-card:nth-child(1) { animation-delay: 0.1s; }
.su-certificate-card:nth-child(2) { animation-delay: 0.2s; }
.su-certificate-card:nth-child(3) { animation-delay: 0.3s; }
.su-certificate-card:nth-child(4) { animation-delay: 0.4s; }
.su-certificate-card:nth-child(5) { animation-delay: 0.5s; }
.su-certificate-card:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Gallery Items */
.su-gallery-item {
  animation: fadeIn 0.6s ease-out;
}

.su-gallery-item:nth-child(1) { animation-delay: 0.1s; }
.su-gallery-item:nth-child(2) { animation-delay: 0.2s; }
.su-gallery-item:nth-child(3) { animation-delay: 0.3s; }
.su-gallery-item:nth-child(4) { animation-delay: 0.4s; }
.su-gallery-item:nth-child(5) { animation-delay: 0.5s; }
.su-gallery-item:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Nav Links */
.su-nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.su-nav-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--su-red), var(--su-yellow));
  transition: width 0.3s ease;
}

.su-nav-link:hover {
  color: #fff;
}

/* Enhanced Footer Links */
.su-footer-links a {
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.su-footer-links a::before {
  content: "→";
  position: absolute;
  left: -1rem;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--su-yellow);
}

.su-footer-links a:hover {
  color: #fff;
  padding-left: 1rem;
}

.su-footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

/* Enhanced Metric Values */
.su-metric-value {
  position: relative;
  transition: all 0.3s ease;
}

.su-metric-value::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255, 39, 69, 0.2), rgba(255, 206, 61, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.su-metric-row:hover .su-metric-value::after {
  opacity: 1;
}

/* Enhanced Chip Live Animation */
.su-chip-live {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 39, 69, 0.7);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(255, 39, 69, 0);
  }
}

/* Enhanced Indicator Dots */
.su-indicator-dot {
  animation: pulseDot 2s ease-in-out infinite;
}

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

/* Smooth Scroll Behavior */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Button Ripple Effect */
.su-btn-primary {
  position: relative;
  overflow: hidden;
}

/* ripple animation removed to avoid transform usage */

/* Enhanced Focus States for Accessibility */
.su-btn:focus-visible,
.su-nav-link:focus-visible,
a:focus-visible {
  outline: 2px solid var(--su-yellow);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .su-certificate-grid,
  .su-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .su-grid-separator {
    margin: 1.5rem 0;
  }

  .su-hero-title {
    animation: fadeInUp 0.8s ease-out;
  }
}


