/* =============================================
   OpsMonsters — Pixel-perfect clone of nikolaradeski.com
   ============================================= */

/* --- @font-face: exact fonts from reference site --- */
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Medium-2.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gloria Hallelujah";
  src: url("../fonts/GloriaHallelujah-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #eaeaea;
  --dark: #141617;
  --text: #333;
  --gray: #6d6d6d;
  --muted: #8e8e8e;
  --border: #dbdbdb;
  --accent: #e27500;
  --green: #00512f;
  --blue: #2d60ce;
  --white: #fff;

  /* Font stacks — exact match to reference */
  --font: "General Sans", Arial, Helvetica, sans-serif;
  --font-medium: "General Sans", Arial, Helvetica, sans-serif;
  --font-display: "Clash Display", "General Sans", sans-serif;
  --font-hand: "Gloria Hallelujah", Arial, Helvetica, sans-serif;

  --site-w: 1100px;
  --px: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.4;
  letter-spacing: -0.5px;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }
ul { list-style: none; }

/* =============================================
   FLOATING BOTTOM NAV (reference has pill nav at bottom)
   ============================================= */
.bottom-nav {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--dark);
  border-radius: 50px;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.bottom-nav a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: 40px;
  transition: all 0.3s;
  white-space: nowrap;
}
.bottom-nav a:hover, .bottom-nav a.active {
  color: #fff;
}
.bottom-nav .nav-home {
  width: 40px;
  height: 40px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.bottom-nav .nav-home svg { width: 18px; height: 18px; fill: #fff; }
.bottom-nav .nav-cta {
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  padding: 10px 22px;
}
.bottom-nav .nav-cta:hover { background: #c96800; }

/* side-badge removed */

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; }

/* =============================================
   SECTION HELPERS
   ============================================= */
.container { max-width: var(--site-w); margin: 0 auto; padding: 0 var(--px); }
.section { padding: 100px 0; }
/* Section tag — Gloria Hallelujah (h5 in reference: 18px) */
.section-tag {
  font-family: var(--font-hand);
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
  letter-spacing: 0;
}
/* Section title — General Sans Semibold (h1/h2 in reference: 4rem, -3px spacing, line-height 1) */
.section-title {
  font-family: var(--font);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--dark);
}
.section-title .accent { color: var(--accent); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0 120px;
}
/* Hero background video — fills section, blends seamlessly into page bg */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* Soft fade on all edges so video blends into #eaeaea background */
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 45%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 80% at 50% 45%, black 40%, transparent 100%);
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-center {
  text-align: center;
  width: 100%;
}
.hero-name {
  font-family: var(--font);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 600;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -5px;
  margin-bottom: 20px;
}
.hero-badge {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  display: block;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero-sub {
  font-size: 14px;
  color: var(--gray);
  letter-spacing: -0.3px;
}
.hero-meta {
  font-size: 13px;
  color: var(--muted);
}

/* (hero card removed) */

/* =============================================
   SERVICES SECTION
   Sticky stacking cards left, phone mockup sticky right
   ============================================= */
.services { padding-bottom: 60px; }
.services-header { margin-bottom: 40px; }
.services-header .section-desc {
  font-size: 14px;
  color: var(--gray);
  max-width: 500px;
  line-height: 1.7;
  margin-top: 12px;
}
.services-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}
.services-cards {
  flex: 1;
  max-width: 580px;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  position: sticky;
  top: 80px;
  margin-bottom: 30px;
  transition: box-shadow 0.3s, transform 0.3s;
  will-change: transform;
}
/* Latest card on TOP — ascending z-index */
.service-card:nth-child(1) { z-index: 1; }
.service-card:nth-child(2) { z-index: 2; }
.service-card:nth-child(3) { z-index: 3; }
.service-card:nth-child(4) { z-index: 4; }
.service-card:nth-child(5) { z-index: 5; }
.service-card:nth-child(6) { z-index: 6; }
.service-card:nth-child(7) { z-index: 7; }
.service-card:nth-child(8) { z-index: 8; }
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.service-badge {
  font-family: var(--font-hand);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}
/* Service title — General Sans Semibold (h3 in reference: 36px, -2.5px) */
.service-title {
  font-family: var(--font);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.service-desc {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.service-tools {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-tools li {
  font-size: 12px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.service-tools li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--muted);
}

/* Phone mockup on right side */
.services-mockup {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
}
.mockup-device {
  background: var(--dark);
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transform: rotate(3deg);
  overflow: hidden;
  /* Ensure child corners are clipped */
  isolation: isolate;
}
.mockup-screen {
  background: #0a0a0a;
  border-radius: 18px;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  /* Force GPU layer for proper corner clipping */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}
/* Scrolling portfolio thumbnails inside mockup */
.mockup-slideshow {
  display: flex;
  flex-direction: column;
  animation: mockup-scroll 25s linear infinite;
}
.mockup-slide {
  width: 100%;
  flex-shrink: 0;
  display: block;
}
@keyframes mockup-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
/* Dark blurred overlay on top of slideshow */
.mockup-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  text-align: center;
}
.mockup-screen .mockup-name {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.mockup-screen .mockup-role {
  font-size: 12px;
  opacity: 0.7;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about { position: relative; }
.about-top { display: flex; gap: 40px; align-items: flex-start; margin-bottom: 40px; }
.about-text { flex: 1; }
.about-text .about-headline {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.about-text .about-desc {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 520px;
  letter-spacing: -0.3px;
}
.about-text .about-impact {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 24px;
}

/* CTA Buttons row */
.about-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
  letter-spacing: -0.3px;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #c96800; }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--dark); }
.btn-outline:hover { border-color: var(--dark); }

/* About right column */
.about-right-col {
  width: 360px;
  flex-shrink: 0;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.highlight-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.highlight-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.highlight-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.highlight-label {
  display: block;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.2px;
}

/* Rating row */
.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.rating-stars { display: flex; gap: 2px; }
.rating-stars .star { color: var(--accent); font-size: 16px; }
.rating-label { font-size: 13px; color: var(--muted); }

/* Social icons */
.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray);
  transition: all 0.3s;
}
.social-icon:hover { border-color: var(--dark); color: var(--dark); }

/* Marquee ticker */
.marquee-wrap {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-text {
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
  padding-right: 20px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* About closing — General Sans Medium, large (reference: clamp 1.5-2rem) */
.about-closing {
  font-family: var(--font);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.35;
  letter-spacing: -1.5px;
  max-width: 800px;
}

/* =============================================
   PORTFOLIO SECTION
   ============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.portfolio-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.4s;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.portfolio-card-image {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: #ddd;
}
.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}
/* Dark overlay on hover with title + CTA */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
}
.portfolio-overlay-cta {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.portfolio-cta-block {
  text-align: center;
  padding: 60px 0 20px;
}
.portfolio-cta-block h3 {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -1px;
}
.portfolio-cta-block p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.review-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.review-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}
.review-author { display: flex; justify-content: space-between; align-items: flex-end; }
.review-name {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.3px;
}
.review-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.review-date { font-size: 12px; color: var(--muted); }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section { background: var(--bg); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}
.contact-email {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-submit {
  background: var(--accent);
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form .btn-submit:hover { background: #c96800; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  background: var(--bg);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { flex: 1; }
.footer-logo {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.footer-tagline { font-size: 13px; color: var(--muted); }
.footer-cols { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 6px; }
.footer-col h4 {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.footer-col a { font-size: 13px; color: var(--muted); transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--dark); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1000px) {
  .hero-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .services-layout { flex-direction: column; }
  .services-mockup { display: none; }
  .about-top { flex-direction: column; }
  .about-right-col { width: 100%; max-width: 360px; }
  .contact-layout { grid-template-columns: 1fr; }
  .bottom-nav { bottom: 16px; padding: 8px 6px; }
  .bottom-nav a { padding: 8px 14px; font-size: 12px; }
}
@media (max-width: 640px) {
  :root { --px: 20px; }
  .section { padding: 60px 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-cols { flex-direction: column; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .marquee-track { animation: none; }
}

/* Toast notification — positioned near triggering element */
.toast {
  position: fixed;
  background: var(--dark);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
}
.toast-show {
  opacity: 1;
  transform: translateY(0) !important;
}
.toast-error {
  background: #d32f2f;
}

/* Form inline errors */
.form-error {
  display: block;
  font-family: var(--font);
  font-size: 12px;
  color: #d32f2f;
  margin-top: 4px;
  letter-spacing: -0.2px;
}

/* =============================================
   Glass Modal (success, error, privacy, terms)
   ============================================= */
.glass-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.glass-modal-open {
  opacity: 1;
  visibility: visible;
}
.glass-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 23, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.glass-modal-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 48px 44px 40px;
  max-width: 440px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 32px 100px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.04);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}
/* For legal content — wider */
.glass-modal-card.modal-wide {
  max-width: 600px;
  text-align: left;
}
.glass-modal-open .glass-modal-card {
  transform: translateY(0) scale(1);
}
.glass-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  line-height: 1;
}
.glass-modal-icon.icon-success {
  background: rgba(45, 138, 26, 0.1);
  color: #2d8a1a;
}
.glass-modal-icon.icon-error {
  background: rgba(211, 47, 47, 0.1);
  color: #d32f2f;
}
.glass-modal-icon.icon-info {
  background: rgba(226, 117, 0, 0.1);
  color: var(--accent);
}
.glass-modal-title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.glass-modal-subtitle {
  font-family: var(--font);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 4px;
}
.glass-modal-body {
  font-family: var(--font);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  letter-spacing: -0.2px;
}
.glass-modal-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin: 20px 0 6px;
  letter-spacing: -0.3px;
}
.glass-modal-body ul {
  padding-left: 18px;
  margin: 6px 0;
}
.glass-modal-body li {
  margin-bottom: 4px;
  list-style: disc;
}
.glass-modal-body p {
  margin-bottom: 8px;
}
.glass-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.glass-modal-close {
  padding: 12px 36px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: -0.2px;
}
.glass-modal-close:hover {
  background: #c96800;
  transform: translateY(-1px);
}
.glass-modal-card::-webkit-scrollbar { width: 4px; }
.glass-modal-card::-webkit-scrollbar-track { background: transparent; }
.glass-modal-card::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 4px; }
