/* ==========================================================================
   RETENTIVE CO. - MASTER DESIGN SYSTEM & STYLESHEET
   Color Palette: #010401, #0E180E, #B6EF00, #F2F7DF
   ========================================================================== */

/* --- CSS VARIABLES --- */
:root {
  --bg-dark: #010401;
  --bg-card: #0E180E;
  --bg-card-glass: rgba(14, 24, 14, 0.75);
  --bg-card-hover: #142214;
  --border-card: rgba(182, 239, 0, 0.12);
  --border-card-hover: rgba(182, 239, 0, 0.35);
  
  --color-lime: #B6EF00;
  --color-lime-glow: rgba(182, 239, 0, 0.25);
  --color-lime-dark: #98c700;
  
  --text-white: #ffffff;
  --text-light: #F2F7DF;
  --text-muted: rgba(242, 247, 223, 0.65);
  --text-dark: #010401;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

/* --- HEADING TYPOGRAPHY RULES --- */
h1, h2,
.hero-heading,
.section-title,
.cta-heading-large,
.service-title {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important; /* Futura Condensed PT ExtraBold */
  text-transform: uppercase !important; /* ALL CAPS */
  letter-spacing: 0.5px;
}

h3, h4, h5, h6,
.brand-title-serif,
.comp-title,
.trusted-heading,
.category-tag,
.col-title,
.modal-header h3 {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important; /* Futura Condensed PT Bold */
  text-transform: uppercase !important; /* ALL CAPS */
  letter-spacing: 0.5px;
}

.main-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* --- NOISE CANVAS & GLOW SPOTLIGHTS --- */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.04;
}

.glow-spotlight {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  max-width: 100vw;
}

.glow-spotlight-top {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 550px;
  background: radial-gradient(circle, rgba(182, 239, 0, 0.15) 0%, rgba(1, 4, 1, 0) 70%);
}

.glow-spotlight-mid {
  top: 40%;
  right: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(182, 239, 0, 0.1) 0%, rgba(1, 4, 1, 0) 70%);
}

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

.text-center { text-align: center; }
.text-lime { color: var(--color-lime); }
.text-white { color: var(--text-white); }
.text-light { color: var(--text-light); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.hidden { display: none !important; }

.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.subheader-text {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-lime);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0.75rem auto 0;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 239, 0, 0.15), transparent);
}

.section-hero,
.section-highlights,
.section-trusted,
.section-services,
.section-comparison,
.section-metrics,
.section-case-studies,
.section-testimonials,
.section-faq,
.section-cta-banner {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* --- GLASSMORPHISM CARDS --- */
.glass-card {
  background: var(--bg-card-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-2px);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition-fast);

}

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-lime {
  background: var(--color-lime);
  color: var(--text-dark);
  box-shadow: 0 0 25px var(--color-lime-glow);
}

.btn-lime:hover {
  background: #c8f526;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(182, 239, 0, 0.45);
}

.btn-outline-lime {
  background: transparent;
  border: 1px solid var(--color-lime);
  color: var(--text-light);
}

.btn-outline-lime:hover {
  background: rgba(182, 239, 0, 0.1);
  color: var(--color-lime);
  transform: translateY(-2px);
}

/* --- FLOATING HEADER CONTAINER --- */
.floating-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(14, 24, 14, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(182, 239, 0, 0.22);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    box-sizing: border-box;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(182, 239, 0, 0.05);
}

.floating-header.visible,
.floating-header {
    top: 20px;
}

.floating-header .logo { display: flex; align-items: center; }
.floating-header .logo-img { height: 28px; width: auto; object-fit: contain; display: block; }
.floating-header nav { display: flex; gap: 8px; align-items: center; }

.floating-header .nav-link {
    color: #F2F7DF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 18px;
    border-radius: 9999px;
    border: 1px solid transparent;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.floating-header .nav-link:hover,
.floating-header .nav-link.active {
    color: #B6EF00;
    background-color: rgba(182, 239, 0, 0.08);
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.mobile-cta { display: none; }

.floating-header .cta-button {
    background-color: #B6EF00;
    color: #0E180E;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 9999px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.floating-header .cta-button:hover {
    transform: scale(1.05);
    background-color: #c8f526;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    height: 20px;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-lime);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px) {
    .floating-header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 12px;
        background: rgba(14, 24, 14, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(182, 239, 0, 0.25);
        border-radius: 24px;
        padding: 24px;
        flex-direction: column;
        gap: 12px;
        display: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    }
    .floating-header nav.active { display: flex; }
    .floating-header .nav-link { width: 100%; text-align: center; padding: 10px 0; }
    .desktop-cta { display: none; }
    .mobile-cta { display: block; width: 100%; text-align: center; }
    .mobile-toggle { display: flex; }
    .floating-header { padding: 10px 20px; width: 92%; }
}

/* --- HERO SECTION --- */
.section-hero {
  padding: 170px 0 90px;
  position: relative;
}

.hero-content-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(182, 239, 0, 0.08);
  border: 1px solid rgba(182, 239, 0, 0.25);
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 12px var(--color-lime);
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-lime);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-heading {
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.hero-accent-line {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem) !important;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.hero-main-line {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.6rem) !important;
  font-weight: 800;
}

.text-glow {
  text-shadow: 0 0 35px var(--color-lime-glow);
}

.hero-subtext {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}

.checkmarks-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.checkmark-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-light);
  text-align: left;
}

.checkmark-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(182, 239, 0, 0.15);
  color: var(--color-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkmark-icon svg { width: 12px; height: 12px; }

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

/* --- INDUSTRY HIGHLIGHTS CATEGORIES SECTION --- */
.section-highlights { padding: 80px 0; }

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

.category-card-item {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-interactive {
  background: #090909; /* Sleek black/gray default static background */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(242, 247, 223, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* ON HOVER: Switch to dark green theme with neon lime glow */
.glass-card-interactive:hover {
  transform: translateY(-8px);
  background: #0E180E; /* Dark green theme on hover */
  border-color: var(--color-lime);
  box-shadow: 0 20px 45px rgba(182, 239, 0, 0.22), 0 0 25px rgba(182, 239, 0, 0.1);
}

.card-highlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.category-tag {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-light);
}

.category-metric-pill {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-lime);
  background: rgba(182, 239, 0, 0.12);
  border: 1px solid rgba(182, 239, 0, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.mockup-preview-img {
  border-radius: var(--radius-md);
  padding: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #111111; /* Neutral dark gray inner box for default state */
  border: 1px solid rgba(242, 247, 223, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ON HOVER: Inner box transitions to dark green gradient background */
.glass-card-interactive:hover .mockup-preview-img {
  background: linear-gradient(135deg, rgba(20, 36, 20, 0.95), rgba(8, 18, 8, 0.98));
  border-color: rgba(182, 239, 0, 0.3);
}

.preview-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  background: rgba(182, 239, 0, 0.12);
  border: 1px solid rgba(182, 239, 0, 0.2);
  border-radius: var(--radius-pill);
  color: var(--color-lime);
}

.preview-img-box {
  font-size: 2.2rem;
  margin-bottom: 8px;
  transition: transform var(--transition-fast);
}

.glass-card-interactive:hover .preview-img-box {
  transform: scale(1.15) rotate(5deg);
}

.preview-content h3 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 700;
}

.preview-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.45;
}

.preview-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--color-lime);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition-fast);
}

.preview-btn:hover {
  background: #c8f526;
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--color-lime-glow);
}

.preview-btn svg {
  transition: transform var(--transition-fast);
}

.preview-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .highlights-grid { grid-template-columns: 1fr; }
}

.preview-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  background: rgba(182, 239, 0, 0.15);
  border: 1px solid rgba(182, 239, 0, 0.25);
  border-radius: var(--radius-pill);
  color: var(--color-lime);
}

.preview-img-box {
  font-size: 2.2rem;
  margin-bottom: 8px;
  transition: transform var(--transition-fast);
}

.glass-card-interactive:hover .preview-img-box {
  transform: scale(1.15) rotate(5deg);
}

.preview-content h3 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 700;
}

.preview-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.45;
}

.preview-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--color-lime);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition-fast);
}

.preview-btn:hover {
  background: #c8f526;
  transform: translateY(-2px);
  box-shadow: 0 0 15px var(--color-lime-glow);
}

.preview-btn svg {
  transition: transform var(--transition-fast);
}

.preview-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .highlights-grid { grid-template-columns: 1fr; }
}

.swiper-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.swiper-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 24, 14, 0.8);
  border: 1px solid var(--border-card);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.swiper-nav-btn:hover {
  background: var(--color-lime);
  color: var(--text-dark);
  border-color: var(--color-lime);
}

.swiper-nav-btn svg { width: 20px; height: 20px; }

/* --- TRUSTED BY TICKER --- */
.section-trusted { padding: 40px 0; overflow: hidden; }

.trusted-heading {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.ticker-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  will-change: transform;
}

.ticker-left { animation: scroll-left 30s linear infinite; }
.ticker-right { animation: scroll-right 35s linear infinite; }

@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.brand-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 44px;
}

.brand-logo-img {
  height: 24px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.65;
  mix-blend-mode: screen;
  filter: brightness(0.95);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

/* Optical Visual Weight Balancing */
.brand-logo-img[alt="KOLLO"] { height: 20px; }
.brand-logo-img[alt="LUMI"] { height: 18px; }
.brand-logo-img[alt="EVELYN"] { height: 26px; }
.brand-logo-img[alt="100 SENSES"] { height: 26px; }
.brand-logo-img[alt="CAROLINA COFFEE CO."] { height: 26px; }
.brand-logo-img[alt="SAINT JANE"] { height: 20px; }
.brand-logo-img[alt="CHICCABORSE"] { height: 19px; }

/* Subtle brightness highlight on hover only */
.brand-logo-item:hover .brand-logo-img {
  opacity: 1;
  filter: brightness(1.3);
}

/* --- CORE SERVICES SECTION --- */
.section-services { padding: 80px 0; }

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-reverse { direction: ltr; }

.service-title {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.checkmarks-list { display: flex; flex-direction: column; gap: 12px; }
.service-visual { display: flex; justify-content: center; }

.iphone-mockup-wrapper {
  position: relative;
  width: 300px;
  height: 560px;
}

.iphone-frame {
  width: 100%;
  height: 100%;
  background: #0E180E;
  border: 4px solid #1c2b1c;
  border-radius: 44px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
}

.iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #010401;
  border-radius: 12px;
  z-index: 10;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  background: #060c06;
  padding-top: 40px;
  overflow: hidden;
}

.email-mockup-scroll {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: phone-scroll 12s ease-in-out infinite alternate;
}

@keyframes phone-scroll { 0% { transform: translateY(0); } 100% { transform: translateY(-80px); } }

.email-header-bar { font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; color: var(--color-lime); text-align: center; }
.email-hero-banner { background: linear-gradient(135deg, #142414, #081208); border: 1px solid rgba(182, 239, 0, 0.2); border-radius: var(--radius-md); padding: 14px; }
.email-hero-banner .tag { font-size: 0.65rem; font-weight: 700; color: var(--color-lime); }
.email-hero-banner h4 { font-size: 0.95rem; color: var(--text-light); margin-top: 4px; }
.email-body-text { font-size: 0.75rem; color: var(--text-muted); }
.email-cta-btn { margin-top: 8px; padding: 8px; background: var(--color-lime); color: var(--text-dark); font-size: 0.75rem; font-weight: 800; text-align: center; border-radius: var(--radius-sm); }

.email-products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.email-prod-card { background: rgba(182, 239, 0, 0.05); border: 1px solid rgba(182, 239, 0, 0.1); border-radius: var(--radius-sm); padding: 8px; text-align: center; }
.prod-img { font-size: 1.2rem; }
.prod-title { display: block; font-size: 0.7rem; color: var(--text-light); font-weight: 600; }
.prod-price { font-size: 0.65rem; color: var(--color-lime); }

.bg-chat { background: #081208; }
.sms-chat-screen { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-date { font-size: 0.65rem; color: var(--text-muted); text-align: center; }
.chat-bubble { max-width: 85%; padding: 10px 14px; border-radius: 16px; font-size: 0.75rem; line-height: 1.4; }
.bubble-incoming { align-self: flex-start; background: #122212; color: var(--text-light); border: 1px solid rgba(182, 239, 0, 0.15); border-bottom-left-radius: 4px; }
.chat-sender { display: block; font-size: 0.65rem; font-weight: 700; color: var(--color-lime); margin-bottom: 2px; }
.chat-link { font-size: 0.65rem; color: var(--color-lime); margin-top: 4px; text-decoration: underline; }
.bubble-outgoing { align-self: flex-end; background: var(--color-lime); color: var(--text-dark); font-weight: 600; border-bottom-right-radius: 4px; }

.floating-badge {
  position: absolute;
  background: rgba(14, 24, 14, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 20;
}

.badge-top-right { top: 40px; right: -40px; }
.badge-mid-left { top: 220px; left: -40px; }
.badge-bottom-right { bottom: 60px; right: -30px; }
.badge-top-left { top: 50px; left: -40px; }

.badge-val { font-size: 1.4rem; font-weight: 800; color: var(--text-light); }
.badge-lbl { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }

.float-anim-1 { animation: float-1 4s ease-in-out infinite alternate; }
.float-anim-2 { animation: float-2 5s ease-in-out infinite alternate; }
.float-anim-3 { animation: float-3 4.5s ease-in-out infinite alternate; }

@keyframes float-1 { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }
@keyframes float-2 { 0% { transform: translateY(0); } 100% { transform: translateY(12px); } }
@keyframes float-3 { 0% { transform: translateY(0); } 100% { transform: translateY(-8px); } }

/* --- COMPARISON TABLE GRID --- */
.section-comparison { padding: 80px 0; }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.comp-card { padding: 32px; display: flex; flex-direction: column; }
.comp-featured {
  border: 1px solid var(--color-lime);
  box-shadow: 0 0 40px rgba(182, 239, 0, 0.2);
  background: rgba(182, 239, 0, 0.04);
  transform: scale(1.03);
  z-index: 5;
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-lime);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.comp-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 16px; }
.comp-logo-header { margin-bottom: 16px; }
.comp-logo { height: 24px; object-fit: contain; }
.comp-divider { height: 1px; background: var(--border-card); margin-bottom: 20px; }
.comp-row { margin-bottom: 16px; }
.comp-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.comp-val { font-size: 1.05rem; font-weight: 600; color: var(--text-light); }

/* --- IMPACT METRICS SECTION --- */
.section-metrics { padding: 60px 0; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metric-card { padding: 30px 20px; }
.metric-number { display: inline-block; font-size: 3rem; font-weight: 800; color: var(--text-light); line-height: 1; }
.metric-symbol { font-size: 3rem; font-weight: 800; color: var(--text-light); }
.metric-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; margin-top: 8px; }

/* --- CASE STUDIES SHOWCASE SECTION (COMPACT WITH BOTTOM NAV ARROWS) --- */
.section-case-studies {
  padding: 80px 0;
}

.case-study-showcase-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case-studies-swiper {
  width: 100%;
  border-radius: 28px;
}

.case-study-feature-card {
  background: rgba(14, 24, 14, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(242, 247, 223, 0.15);
  border-radius: 28px;
  padding: clamp(24px, 3.5vw, 36px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 36px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.brand-title-serif {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.brand-subtag {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.case-impact-headline {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 12px;
}

.case-impact-desc {
  font-size: 0.9rem;
  color: rgba(242, 247, 223, 0.75);
  line-height: 1.55;
  margin-bottom: 20px;
}

.case-impact-divider {
  height: 1px;
  background: rgba(242, 247, 223, 0.15);
  margin-bottom: 20px;
}

.case-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.metric-val {
  display: block;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-desc {
  font-size: 0.8rem;
  color: rgba(242, 247, 223, 0.75);
  font-weight: 500;
  line-height: 1.3;
}

.case-study-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.case-study-action-btn:hover {
  color: var(--color-lime);
  transform: translateX(4px);
}

.case-study-visual-side {
  background: #EFECE6; /* Off-white light container matching reference image */
  border-radius: 20px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
}

.case-mockup-frame {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.case-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

/* Centered Navigation Row Below Cards */
.case-study-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.showcase-nav-btn {
  position: static;
  transform: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 24, 14, 0.85);
  border: 1px solid rgba(182, 239, 0, 0.3);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.showcase-nav-btn:hover {
  background: var(--color-lime);
  color: var(--text-dark);
  border-color: var(--color-lime);
  box-shadow: 0 0 20px var(--color-lime-glow);
}

@media (max-width: 992px) {
  .case-study-feature-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

/* --- TESTIMONIALS SECTION --- */
.section-testimonials { padding: 80px 0; }
.trust-badges-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.trust-badge-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: rgba(182, 239, 0, 0.06); border: 1px solid rgba(182, 239, 0, 0.2); border-radius: var(--radius-pill); }
.stars-gold { color: var(--color-lime); font-size: 1rem; letter-spacing: 1.5px; }
.trust-text { font-size: 0.85rem; color: var(--text-light); }

.featured-review-card {
  padding: 44px;
  background: linear-gradient(135deg, rgba(14, 24, 14, 0.9), rgba(1, 4, 1, 0.95));
  border: 1px solid rgba(182, 239, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(182, 239, 0, 0.08);
}

.quote-icon-large { font-size: 4rem; line-height: 1; color: var(--color-lime); font-family: Georgia, serif; opacity: 0.5; margin-bottom: -10px; }
.featured-quote-text { font-size: clamp(1.15rem, 2.2vw, 1.45rem); font-weight: 500; line-height: 1.55; color: var(--text-white); margin-bottom: 24px; font-style: italic; }
.featured-author-info { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.author-avatar-gradient { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--color-lime), #7fad00); color: var(--text-dark); font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px var(--color-lime-glow); }
.author-name { font-size: 1.1rem; color: var(--text-white); font-weight: 700; }
.author-title { font-size: 0.85rem; color: var(--text-muted); }
.verified-tag { margin-left: auto; font-size: 0.75rem; font-weight: 700; color: var(--color-lime); background: rgba(182, 239, 0, 0.12); padding: 4px 12px; border-radius: var(--radius-pill); display: inline-flex; align-items: center; gap: 6px; }

.aesthetic-review-card { padding: 30px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.card-stars { color: var(--color-lime); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.review-footer { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border-card); padding-top: 16px; }
.author-avatar-sm { width: 38px; height: 38px; border-radius: 50%; background: rgba(182, 239, 0, 0.15); border: 1px solid var(--color-lime); color: var(--color-lime); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; }
.author-name-sm { font-size: 0.95rem; color: var(--text-white); font-weight: 700; }
.author-sub { font-size: 0.78rem; color: var(--text-muted); }

/* --- SIX2EIGHT INSPIRED LIGHT-BACKGROUND FAQ SECTION --- */
.section-light-theme {
  background-color: var(--text-light); /* #F2F7DF Off-White Brand Surface */
  color: var(--bg-dark); /* #010401 Dark Text */
  padding: 100px 0;
  border-radius: var(--radius-lg);
  position: relative;
}

.text-dark-title {
  color: var(--bg-dark) !important;
}

.text-dark-sub {
  color: rgba(1, 4, 1, 0.7) !important;
}

.badge-pill-dark {
  background: rgba(14, 24, 14, 0.08) !important;
  border: 1px solid rgba(14, 24, 14, 0.2) !important;
}

.badge-dot-dark {
  background: var(--bg-dark) !important;
  box-shadow: 0 0 10px rgba(1, 4, 1, 0.4) !important;
}

.badge-text-dark {
  color: var(--bg-dark) !important;
}

.faq-accordion-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(14, 24, 14, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--bg-card);
  box-shadow: 0 10px 30px rgba(14, 24, 14, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(14, 24, 14, 0.06);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--color-lime);
  color: var(--bg-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  font-size: 0.98rem;
  color: rgba(1, 4, 1, 0.8);
  line-height: 1.65;
}

/* --- SIX2EIGHT INSPIRED "LET'S TALK ABOUT YOUR PROJECT" CTA SECTION --- */
.section-cta-banner {
  padding: 100px 0 60px;
}

.six2eight-cta-box {
  padding: clamp(40px, 6vw, 80px);
  background: linear-gradient(135deg, rgba(14, 24, 14, 0.95), rgba(1, 4, 1, 0.98));
  border: 1px solid var(--border-card-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(182, 239, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(182, 239, 0, 0.1);
  border: 1px solid rgba(182, 239, 0, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-lime);
  letter-spacing: 1.5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 10px var(--color-lime);
}

.cta-heading-large {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

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

/* --- SIX2EIGHT INSPIRED FOOTER --- */
.footer-six2eight {
  padding: 40px 0 60px;
  background: var(--bg-dark);
}

.footer-glass-box {
  background: var(--bg-card-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px);
}

.footer-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo-img {
  height: 32px;
  object-fit: contain;
}

.footer-availability-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(182, 239, 0, 0.08);
  border: 1px solid rgba(182, 239, 0, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.footer-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 239, 0, 0.2), transparent);
  margin: 32px 0;
}

.footer-cols-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 380px;
}

.footer-contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-lime);
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.footer-contact-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.footer-contact-value:hover {
  color: var(--color-lime);
}

.col-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 18px;
}

.col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.col-links a:hover {
  color: var(--color-lime);
}

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

.footer-social-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(242, 247, 223, 0.05);
  border: 1px solid var(--border-card);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.footer-social-pills a:hover {
  background: var(--color-lime);
  color: var(--text-dark);
  border-color: var(--color-lime);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.copyright-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-card);
  background: rgba(14, 24, 14, 0.6);
  transition: all var(--transition-fast);
}

.back-to-top-btn:hover {
  background: var(--color-lime);
  color: var(--text-dark);
  border-color: var(--color-lime);
}

/* --- BIG LOW-OPACITY GRADIENT WATERMARK LOGO BELOW FOOTER --- */
.footer-watermark-container {
  width: 100%;
  overflow: hidden;
  padding: 60px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  user-select: none;
}

.footer-watermark-img {
  width: 90%;
  max-width: 1100px;
  height: auto;
  opacity: 0.12;
  filter: drop-shadow(0 0 40px rgba(182, 239, 0, 0.15));
  transition: opacity 0.5s ease;
}

/* --- MODAL DRAWER --- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(1, 4, 1, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-drawer {
  width: 100%;
  max-width: 500px;
  height: 100%;
  background: #0E180E;
  border-left: 1px solid var(--border-card);
  padding: 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  position: relative;
}

.modal-backdrop.active .modal-drawer { transform: translateX(0); }

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--text-muted);
}

.modal-header h3 { font-size: 1.6rem; color: var(--text-light); margin-top: 4px; }
.modal-header p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }

.modal-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-light); }
.form-group input,
.form-group select {
  padding: 12px 16px;
  background: rgba(1, 4, 1, 0.6);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--color-lime); }
.form-success-msg { text-align: center; padding: 40px 0; }
.success-icon { font-size: 3rem; margin-bottom: 12px; }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-reverse { direction: ltr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comp-featured { transform: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .case-studies-grid { grid-template-columns: 1fr; }
  .footer-cols-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { width: 100%; }
  .metrics-grid { grid-template-columns: 1fr; }
  .footer-cols-grid { grid-template-columns: 1fr; }
  .cta-action-buttons { flex-direction: column; width: 100%; }
  .cta-action-buttons .btn { width: 100%; }
  .featured-review-card { padding: 24px; }
  .verified-tag { margin-left: 0; margin-top: 8px; width: 100%; }
}

/* --- CUSTOM INTERACTIVE CURSOR --- */
@media (pointer: fine) {
  body, a, button, input, select, textarea, [role="button"] {
    cursor: none !important;
  }
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 0 10px var(--color-lime);
}

.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(182, 239, 0, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, border-color 0.25s ease;
}

/* Hover Interactive State */
body.cursor-hover .custom-cursor-ring {
  width: 56px;
  height: 56px;
  background-color: rgba(182, 239, 0, 0.12);
  border-color: var(--color-lime);
  box-shadow: 0 0 24px rgba(182, 239, 0, 0.25);
}

body.cursor-hover .custom-cursor-dot {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  box-shadow: 0 0 14px #ffffff;
}

@media (pointer: coarse) {
  .custom-cursor-dot,
  .custom-cursor-ring {
    display: none !important;
  }
  body, a, button, input, select, textarea {
    cursor: auto !important;
  }
}
