/* Base Scope for Serwis Extra Landing Page */
.serwis-extra-lp {
  --primary-bg: #FFFFFF;
  --secondary-bg: #F0F2F5;
  --tertiary-bg: #E4E6EB;
  --dark-bg: #111111;
  --dark-card: #1C1C1E;

  --text-main: #111111;
  --text-muted: #535359;
  --text-light: #FFFFFF;
  --text-muted-light: #a5a8b4;

  --accent-gold: #E5B80B;
  --accent-blue: #2979FF;

  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Manrope, sans-serif;
  --font-body: 'Manrope', 'Inter', sans-serif;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  /* Snappier bento box shadows */
  --shadow-bento: 0 4px 12px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.08);

  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--primary-bg);
  line-height: 1.7;
  /* Increased for breathing room */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Assume it's placed inside a parent .container, but ensure it behaves well */
  width: 100%;
  position: relative;
  overflow: hidden;
  /* contain animations/elements */
}

.serwis-extra-lp * {
  box-sizing: border-box;
}

/* Typography */
.serwis-extra-lp h1,
.serwis-extra-lp h2,
.serwis-extra-lp h3,
.serwis-extra-lp h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  margin-top: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
  /* Tighter tracking for bold headings */
}

.serwis-extra-lp p {
  color: var(--text-muted);
}

.serwis-extra-lp a {
  text-decoration: none;
  color: inherit;
}


/* Hero Section */
.se-hero {
  position: relative;
  padding: 1.5rem 1rem;
  /* Smaller padding for mobile */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at 10% 10%, rgba(229, 184, 11, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 90% 90%, rgba(140, 150, 160, 0.08) 0%, transparent 50%),
    var(--secondary-bg);
  border-radius: var(--radius-xl);
  margin-top: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-bento);
}

.se-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.25) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: center;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 90%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 90%);
  pointer-events: none;
  z-index: 0;
}

.se-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(160, 165, 170, 0.08) 40%, rgba(0, 0, 0, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 768px) {
  .se-hero {
    padding: 6rem 2rem;
    /* Restore massive padding for tablet/desktop */
  }
}

/* Top Header (Logos) */
.se-top-header {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem auto 2rem;
  position: relative;
  z-index: 5;
}

@media (min-width: 768px) {
  .se-top-header {
    margin: 2rem auto 4rem;
  }
}

.se-top-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.se-logo-center {
  height: 20px;
  width: auto;
}

@media (min-width: 768px) {
  .se-logo-center {
    height: 30px;
  }
}

.se-logo-text {
  font-size: 0.7rem;
  color: var(--text-main);
  font-weight: 600;
  display: none;
  margin-left: 0.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .se-logo-text {
    display: block;
  }
}

@media (min-width: 1024px) {
  .se-logo-text {
    font-size: 0.8rem;
    margin-left: 1rem;
  }
}

.se-logo-sony {
  height: 14px;
  width: auto;
}

@media (min-width: 768px) {
  .se-logo-sony {
    height: 18px;
  }
}

.se-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .se-hero-content {
    padding: 0 2rem;
  }
}

.se-hero-title {
  font-size: clamp(2.2rem, 8vw, 4rem);
  /* Massive bold fluid typography */
  font-weight: 800;
  line-height: 1.05;
  /* Tighter line-height for massive text */
  margin-bottom: 2rem;
  letter-spacing: -0.05em;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--text-main) 0%, #68707E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.se-hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  /* Slightly larger */
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

.se-hero-graphic {
  width: 100%;
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 2;
}

.se-hero-composition {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.se-hero-composition::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -35%);
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(240, 245, 250, 0.8) 50%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse-rings 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulse-rings {

  0%,
  100% {
    box-shadow:
      /* Warstwa 1: Pierwszy złoty obrys */
      0 0 0 1px rgba(212, 175, 55, 0.4),
      /* Warstwa 2: Subtelne mleczne "wypełnienie" w promieniu 30px */
      0 0 0 30px rgba(255, 255, 255, 0.5),
      /* Warstwa 3: Szary, chłodniejszy obrys zamykający to pole */
      0 0 0 31px rgba(140, 150, 160, 0.3),
      /* Warstwa 4: Słabsze rozszerzenie */
      0 0 0 70px rgba(255, 255, 255, 0.3),
      /* Warstwa 5: Lekki lśniący, złoty obrys kolejnej warstwy */
      0 0 0 71px rgba(212, 175, 55, 0.2),
      /* Warstwa 6: Zewnętrzne pole skupiajce */
      0 0 0 120px rgba(255, 255, 255, 0.1),
      /* Warstwa 7: Prawie niewidoczna bariera zewnętrzna */
      0 0 0 121px rgba(140, 150, 160, 0.1);
  }

  50% {
    box-shadow:
      /* Animacja wstrzymuje i rozkurcza powłoki (przyciągając wzrok falami) */
      0 0 0 1px rgba(212, 175, 55, 0.7),
      0 0 0 45px rgba(255, 255, 255, 0.4),
      0 0 0 46px rgba(140, 150, 160, 0.2),
      0 0 0 95px rgba(255, 255, 255, 0.2),
      0 0 0 96px rgba(212, 175, 55, 0.1),
      0 0 0 150px rgba(255, 255, 255, 0.05),
      0 0 0 151px rgba(140, 150, 160, 0.05);
  }
}

.se-hero-shield {
  position: relative;
  width: 100%;
  max-width: 320px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
  margin-bottom: -50px;
  /* Overlap TV */
}

@media (min-width: 768px) {
  .se-hero-shield {
    max-width: 560px;
    margin-bottom: -80px;
  }
}

.se-hero-main {
  width: 100%;
  max-width: 450px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Common Section Styles */
.se-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .se-section {
    padding: 8rem 0;
  }
}

.se-section-dark {
  background-color: var(--dark-bg);
  color: var(--text-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-bento);
}

@media (min-width: 768px) {
  .se-section-dark {
    padding: 5rem 4rem;
    /* Restore massive padding for tablet/desktop */
  }
}

.se-section-dark .se-section-title {
  background: linear-gradient(135deg, var(--text-light) 0%, #8E94A1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text-light);
  line-height: 1.2;
}

.se-section-dark .se-section-subtitle {
  color: var(--text-muted-light);
}

.se-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .se-section-header {
    margin-bottom: 5rem;
  }
}

.se-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: block;
}

.se-section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--text-main) 0%, #68707E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text-main);
}

.se-section-title-flat {
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: inherit !important;
  font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
}

@media (min-width: 768px) {
  .se-section-title-flat {
    font-size: clamp(2.2rem, 3.5vw, 3rem) !important;
  }
}

.se-section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

.text-gold {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  /* Reset previous transparent text */
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  background: none;
  color: inherit;
  z-index: 1;
}

.text-gold::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 0em;
  height: 0.3em;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #F8D86A 100%);
  z-index: -1;
  border-radius: 8px;
}

/* Features Grid - Bento Style */
.se-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .se-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .se-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.se-feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .se-feature-card {
    align-items: flex-start;
    text-align: left;
  }
}

.se-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .se-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 2rem;
  }
}

.se-feature-card:hover .se-feature-icon {
  background: var(--dark-bg);
  color: var(--accent-gold);
  transform: scale(1.05);
}

.se-feature-icon svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .se-feature-icon svg {
    width: 28px;
    height: 28px;
  }
}

.se-feature-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .se-feature-title {
    font-size: 1.4rem;
  }
}

.se-feature-desc {
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Ecosystem Grid */
.se-eco-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .se-eco-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.se-eco-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: var(--dark-card);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.se-eco-card:hover {
  transform: scale(0.98);
}

.se-eco-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.se-eco-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.4s ease;
}

.se-eco-card:hover .se-eco-image {
  transform: scale(1.05);
}

.se-eco-card:hover .se-eco-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 70%);
}

.se-eco-card .se-eco-title {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  transition: transform 0.4s ease;
}

.se-eco-card .se-eco-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
  transition: transform 0.4s ease;
}

.se-eco-card:hover .se-eco-title,
.se-eco-card:hover .se-eco-desc {
  transform: translateY(-10px);
}

/* How To Buy / Process */
.se-process {
  background: var(--primary-bg);
  padding: 3rem 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .se-process {
    padding: 5rem 4rem;
    margin-top: 3rem;
  }
}

.se-process-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .se-process-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
  }
}

.se-process-header {
  text-align: left;
}

.se-process-header .se-section-title {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.se-process-header .se-section-subtitle {
  margin: 0;
  max-width: none;
  text-align: left;
}

.se-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.se-step {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
}

@media (min-width: 768px) {
  .se-step {
    gap: 2rem;
  }
}

.se-step-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-bg);
  border-radius: 20px;
  /* Squircle style */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.02);
  /* Soft shadow */
  border: 1px solid rgba(0, 0, 0, 0.02);
  /* Subtle edge */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  position: relative;
}

@media (min-width: 768px) {
  .se-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 26px;
  }
}

.se-step-overlay-number {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  background: var(--accent-gold);
  color: var(--dark-bg);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

@media (min-width: 768px) {
  .se-step-overlay-number {
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}

.se-step-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

@media (min-width: 768px) {
  .se-step-icon svg {
    width: 32px;
    height: 32px;
  }
}

.se-step-content {
  flex-grow: 1;
}

.se-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .se-step-title {
    font-size: 1.4rem;
  }
}

.se-step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 768px) {
  .se-step-desc {
    font-size: 1rem;
    line-height: 1.6;
  }
}



/* Contact Block */
.se-contact {
  background: var(--dark-bg);
  /* Dark bento CTA */
  color: var(--text-light);
  border-radius: var(--radius-xl);
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-bento);
}

@media (min-width: 768px) {
  .se-contact {
    padding: 4rem 2rem;
  }
}

.se-contact-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.se-contact-title {
  font-size: clamp(2rem, 6vw, 2.65rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text-light) !important;
  /* Ensure white text */
}

.se-contact-desc {
  color: var(--text-muted-light) !important;
  max-width: 550px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .se-contact-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
  }
}

.se-contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.se-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-bg) !important;
  background: var(--accent-gold);
  padding: 1rem 2rem;
  border-radius: 40px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.se-contact-link:hover {
  background: var(--text-light);
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.se-contact-link svg {
  color: inherit;
}

/* Newsletter Section */
.se-newsletter {
  background-color: var(--primary-bg);
  border-radius: var(--radius-xl);
  padding: 0 1.5rem 4rem;
  /* Reduced top padding */
  margin-top: -2rem;
  /* Pull up to reduce gap from the contact section */
  text-align: center;
}

@media (min-width: 768px) {
  .se-newsletter {
    padding: 0 2rem 5rem;
    margin-top: -4rem;
  }
}

.se-newsletter-header {
  margin-bottom: 3rem;
}

.se-newsletter-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.se-newsletter-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.se-newsletter-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .se-newsletter-features {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    align-items: flex-start;
  }
}

.se-newsletter-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.se-newsletter-icon {
  height: 48px;
  /* Fixed height to align all text items regardless of SVG proportions */
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.se-newsletter-feature p {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: var(--text-main);
}

.se-newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-bg);
  background: var(--accent-gold);
  padding: 1rem 2rem;
  border-radius: 40px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
}

.se-newsletter-btn:hover {
  background: #D4AA0A;
  /* Lekko ciemniejszy żółty do efektu hover */
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer Section */
.se-footer {
  padding: 4rem 1.5rem;
  text-align: center;
  background-color: var(--primary-bg);
  font-size: 0.95rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border-top: 1px solid var(--tertiary-bg);
}

.se-footer-dark {
  background-color: var(--dark-bg);
  color: var(--text-muted-light);
}

.se-footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.se-footer-links a {
  color: var(--text-main);
  font-weight: 500;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.se-footer-dark .se-footer-links a {
  color: var(--text-light);
}

.se-footer-links a:hover {
  background-color: var(--accent-gold);
  color: var(--dark-bg);
  box-shadow: 0 4px 12px rgba(229, 184, 11, 0.2);
}

.se-footer-dark .se-footer-links a:hover {
  color: var(--accent-gold);
}

.se-footer-contact {
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 3rem;
  font-weight: 400;
}

.se-footer-dark .se-footer-contact {
  color: var(--text-muted-light);
}

.se-footer-contact strong {
  font-weight: 700;
}

.se-footer-dark .se-footer-contact strong {
  color: var(--text-light);
}

.se-text-orange {
  color: var(--dark-bg) !important;
  font-weight: 600;
  text-decoration: none;
  padding: 2px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  margin: -2px 0;
}

.se-text-orange:hover {
  background-color: var(--accent-gold);
  color: var(--dark-bg) !important;
  box-shadow: 0 4px 12px rgba(229, 184, 11, 0.2);
}

.se-footer-dark .se-text-orange {
  color: var(--accent-gold) !important;
}

.se-footer-dark .se-text-orange:hover {
  background-color: #FFFFFF;
  color: var(--dark-bg) !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.se-footer-logo-img {
  height: 24px;
  width: auto;
}