/* ========================================
   NEFROON Services - Premium Professional Design
   ======================================== */

:root {
  --primary: #A78B51;
  --primary-600: #EDE7DD;
  --secondary: #1A222B;
  --neutral: #7e8080;
  --dark: #171a1c;
  --muted: #8A8A8A;
  --surface: #0b0d0f;
  --border: #e6e6e6;
  --bg: #F5F3EF;
  --card: #ffffff;
  --shadow: 0 10px 20px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.04);
  --shadow-hover: 0 20px 40px rgba(167,139,81,.15), 0 8px 16px rgba(0,0,0,.08);
  --accent: #D6B36A;
  --text: #232323;
  --text-light: #4b5563;
  --gold-gradient: linear-gradient(135deg, #D6B36A 0%, #A78B51 100%);
}

body {
  background: var(--bg);
  color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  font-weight: 700;
}

a {
  color: var(--primary);
  transition: color 0.25s ease;
}
a:hover, a:focus, a:active {
  color: var(--accent);
}

.btn, .button, button, input[type="submit"], input[type="button"] {
  background: var(--gold-gradient);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn:hover, .button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ========================================
   MAIN LAYOUT
   ======================================== */

.nefroon-services {
  color: var(--text);
  background: var(--bg);
}

.nefroon-services .container {
  max-width: 1240px;
  margin-inline: auto;
  padding: 80px 24px;
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */

.nefroon-services .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nefroon-services section.in-view .reveal {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i, 0) * 100ms);
}

/* ========================================
   HERO SECTION
   ======================================== */

.nefroon-services .hero {
  padding: 120px 0 80px;
  background: 
    radial-gradient(1400px 500px at 30% -10%, rgba(214,179,106,0.15) 0%, rgba(255,255,255,0) 65%),
    linear-gradient(180deg, #ffffff 0%, #F5F3EF 100%);
  position: relative;
  overflow: hidden;
}

.nefroon-services .hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(214,179,106,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.nefroon-services .hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% -20%;
  height: 280px;
  background: radial-gradient(60% 140% at 50% 0%, rgba(167,139,81,.08), rgba(167,139,81,0));
  pointer-events: none;
}

.nefroon-services .hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.nefroon-services .hero .eyebrow {
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(214,179,106,0.15), rgba(167,139,81,0.12));
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(214,179,106,0.25);
}

.nefroon-services .hero h1 {
  font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nefroon-services .hero .lead {
  font-size: clamp(1.1rem, 0.8vw + 1rem, 1.25rem);
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.nefroon-services .hero-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
  border: 1px solid #e9e2d2;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 
    0 20px 50px rgba(167,139,81,0.12),
    0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.nefroon-services .hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nefroon-services .hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 70px rgba(167,139,81,0.18),
    0 12px 30px rgba(0,0,0,0.08);
}

.nefroon-services .hero-card:hover::before {
  opacity: 1;
}

.nefroon-services .hero-card h3 {
  font-size: 1.25rem;
  margin: 12px 0 8px;
  color: var(--secondary);
}

.nefroon-services .hero-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.nefroon-services .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff 0%, #f9f6ef 60%, #e9e2d2 100%) !important;
  color: var(--primary) !important;
  box-shadow: 
    0 8px 20px rgba(167,139,81,0.15),
    0 2px 8px rgba(167,139,81,0.08) !important;
  border: 2px solid #e9e2d2 !important;
  margin-bottom: 16px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.nefroon-services .hero-card:hover .icon-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 30px rgba(167,139,81,0.25),
    0 4px 12px rgba(167,139,81,0.12) !important;
}

.nefroon-services .icon-circle.small {
  width: 52px;
  height: 52px;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #fff 0%, #f9f6ef 60%, #e9e2d2 100%) !important;
  color: var(--primary) !important;
  box-shadow: 
    0 6px 16px rgba(167,139,81,0.12),
    0 2px 6px rgba(167,139,81,0.08) !important;
  border: 2px solid #e9e2d2 !important;
}

/* ========================================
   SERVICES CARDS OVERVIEW
   ======================================== */

.nefroon-services .services-overview {
  padding: 40px 0;
}

.nefroon-services .cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.nefroon-services .card {
  background: linear-gradient(135deg, #ffffff 0%, #fdfcfa 100%);
  border: 1px solid #e9e2d2;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.02);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.nefroon-services .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nefroon-services .card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 25px 50px rgba(167,139,81,0.15),
    0 10px 25px rgba(0,0,0,0.08);
  border-color: rgba(214,179,106,0.4);
}

.nefroon-services .card:hover::before {
  transform: scaleX(1);
}

.nefroon-services .card:hover .icon-circle.small {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 
    0 10px 25px rgba(167,139,81,0.20),
    0 4px 12px rgba(167,139,81,0.12) !important;
}

.nefroon-services .card h3 {
  margin: 16px 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
}

.nefroon-services .card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 16px;
}

.nefroon-services .card-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.nefroon-services .card-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nefroon-services .card:hover .card-link {
  color: var(--accent);
}

.nefroon-services .card:hover .card-link::after {
  transform: translateX(6px);
}

/* ========================================
   SERVICE DETAILS GRID
   ======================================== */

.nefroon-services .services-details {
  padding: 60px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.5) 100%);
}

.nefroon-services .services-details h2 {
  text-align: center;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  margin: 0 0 48px;
  font-weight: 800;
  color: var(--secondary);
}

.nefroon-services .details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.nefroon-services .detail {
  background: #ffffff;
  border: 1px solid #e9e2d2;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.02);
  scroll-margin-top: 96px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.nefroon-services .detail::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nefroon-services .detail:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 50px rgba(167,139,81,0.15),
    0 8px 25px rgba(0,0,0,0.08);
  border-color: rgba(214,179,106,0.5);
}

.nefroon-services .detail:hover::after {
  transform: scaleX(1);
}

.nefroon-services .detail h3 {
  margin: 0 0 20px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.nefroon-services .detail h3::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold-gradient);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(214,179,106,0.6);
}

.nefroon-services .detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nefroon-services .detail li {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.975rem;
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.nefroon-services .detail li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
  font-size: 0.85rem;
}

.nefroon-services .detail p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* ========================================
   PILL LISTS
   ======================================== */

.nefroon-services .pill-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.nefroon-services .pill-group h3 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
}

.nefroon-services .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nefroon-services .pills li {
  background: linear-gradient(135deg, #ffffff 0%, #fdfcfa 100%);
  border: 1px solid #e9e2d2;
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.925rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  cursor: default;
}

.nefroon-services .pills li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(167,139,81,0.15);
  border-color: var(--accent);
  color: var(--accent);
}

/* ========================================
   PROCESS & CTA SECTIONS
   ======================================== */

.nefroon-services .process-detailed {
  padding: 48px 0 32px;
}

.nefroon-services .process-detailed h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
}

.nefroon-services .process-detailed p {
  color: var(--text-light);
  margin: 0 0 32px;
  font-size: 1.05rem;
}

.nefroon-services .steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
}

.nefroon-services .steps li {
  position: relative;
  padding: 56px 24px 24px 24px;
  border: 1px solid #e9e2d2;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fdfcfa 100%);
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nefroon-services .steps li:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 50px rgba(167,139,81,0.15),
    0 8px 25px rgba(0,0,0,0.08);
  border-color: rgba(214,179,106,0.5);
}

.nefroon-services .steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  inset-inline-start: 24px;
  top: 20px;
  background: var(--gold-gradient);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 
    0 8px 20px rgba(167,139,81,0.25),
    0 2px 8px rgba(167,139,81,0.15);
}

/* CTA Section */
.nefroon-services .cta {
  text-align: center;
  margin-top: 48px;
}

.nefroon-services .btn.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-gradient) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 
    0 10px 30px rgba(167,139,81,0.20),
    0 4px 12px rgba(167,139,81,0.12) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  position: relative;
  overflow: hidden;
}

.nefroon-services .btn.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.nefroon-services .btn.btn-primary:hover::before {
  left: 100%;
}

.nefroon-services .btn.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 15px 40px rgba(167,139,81,0.30),
    0 6px 18px rgba(167,139,81,0.18) !important;
}

.nefroon-services .btn.btn-primary i {
  transition: transform 0.3s ease;
}

.nefroon-services .btn.btn-primary:hover i {
  transform: translateX(4px);
}

/* ========================================
   NEFROON MAGAZINE SECTION
   ======================================== */

.nefroon-magazine {
  padding: 80px 0;
  background: 
    radial-gradient(1200px 600px at 70% 50%, rgba(214,179,106,0.08) 0%, transparent 70%),
    linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  border-radius: 32px;
  margin: 80px 0;
  box-shadow: 
    0 20px 60px rgba(167,139,81,0.08),
    0 8px 30px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.nefroon-magazine::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(214,179,106,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.nefroon-magazine .magazine-intro {
  text-align: center;
  margin-bottom: 48px;
}

.nefroon-magazine .eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(214,179,106,0.15), rgba(167,139,81,0.12));
  border: 1px solid rgba(214,179,106,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.nefroon-magazine h2 {
  font-family: 'Candal', Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--secondary);
  margin-bottom: 16px;
  font-weight: 800;
}

.nefroon-magazine .lead {
  color: var(--text-light);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.nefroon-magazine .magazine-content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: center;
  justify-content: center;
  margin: 48px 0 32px;
}

.nefroon-magazine .magazine-visual {
  flex: 0 0 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nefroon-magazine .magazine-mockup-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
  border-radius: 24px;
  box-shadow: 
    0 20px 60px rgba(167,139,81,0.15),
    0 8px 30px rgba(0,0,0,0.08);
  padding: 24px 24px 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #e9e2d2;
}

.nefroon-magazine .magazine-mockup-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(167,139,81,0.20),
    0 12px 40px rgba(0,0,0,0.10);
}

.nefroon-magazine .magazine-mockup-card img {
  max-width: 320px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.nefroon-magazine .magazine-badge {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 
    0 6px 20px rgba(167,139,81,0.25),
    0 2px 8px rgba(167,139,81,0.15);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nefroon-magazine .magazine-details {
  flex: 1 1 420px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nefroon-magazine .magazine-features {
  list-style: none;
  color: var(--secondary);
  font-size: 1.05rem;
  margin: 0;
  padding: 0;
}

.nefroon-magazine .magazine-features li {
  margin-bottom: 20px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s ease;
}

.nefroon-magazine .magazine-features li:hover {
  transform: translateX(8px);
}

.nefroon-magazine .magazine-features i {
  color: var(--primary);
  font-size: 1.25em;
  margin-top: 3px;
  min-width: 20px;
}

.nefroon-magazine .magazine-features strong {
  color: var(--secondary);
  font-weight: 700;
}

.nefroon-magazine .magazine-quote {
  background: linear-gradient(135deg, #fdfcfa 0%, #f8f6f2 100%);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 12px;
  color: #7a6a3a;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 4px 12px rgba(167,139,81,0.08);
}

.nefroon-magazine .magazine-quote i {
  color: var(--primary);
  font-size: 1.4em;
  margin-top: 4px;
  opacity: 0.7;
}

.nefroon-magazine .magazine-cta-btn {
  margin-top: 8px;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 
    0 8px 24px rgba(167,139,81,0.15),
    0 2px 8px rgba(167,139,81,0.08);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.nefroon-magazine .magazine-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(167,139,81,0.25),
    0 4px 12px rgba(167,139,81,0.15);
}

@media (max-width: 900px) {
  .nefroon-magazine .magazine-content-grid {
    flex-direction: column;
    gap: 40px;
  }
  
  .nefroon-magazine .magazine-visual {
    margin-top: 0;
  }
}
/* ========================================
   UTILITIES
   ======================================== */

.nefroon-services .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .nefroon-services .container {
    padding: 64px 20px;
  }
  
  .nefroon-services .hero {
    padding: 96px 0 64px;
  }
  
  .nefroon-services .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .nefroon-services .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  
  .nefroon-services .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  
  .nefroon-services .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  
  .nefroon-magazine {
    padding: 64px 0;
    margin: 64px 0;
  }
}

@media (max-width: 680px) {
  .nefroon-services .container {
    padding: 48px 16px;
  }
  
  .nefroon-services .hero {
    padding: 72px 0 48px;
  }
  
  .nefroon-services .hero h1 {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
  }
  
  .nefroon-services .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .nefroon-services .card {
    padding: 28px 24px;
  }
  
  .nefroon-services .details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .nefroon-services .detail {
    padding: 28px 24px;
  }
  
  .nefroon-services .steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .nefroon-services .pill-lists {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .nefroon-magazine {
    padding: 48px 20px;
    margin: 48px 0;
    border-radius: 24px;
  }
  
  .nefroon-magazine .magazine-visual {
    flex: 0 0 auto;
  }
  
  .nefroon-magazine .magazine-mockup-card {
    padding: 20px 20px 40px 20px;
  }
  
  .nefroon-magazine .magazine-mockup-card img {
    max-width: 280px;
  }
}

/* ========================================
   RTL SUPPORT
   ======================================== */

body.is-ar .nefroon-services {
  direction: rtl;
}

body.is-ar .nefroon-services .card-link::after {
  transform: scaleX(-1);
}

body.is-ar .nefroon-services .card:hover .card-link::after {
  transform: scaleX(-1) translateX(-6px);
}

body.is-ar .nefroon-services .detail li {
  padding-left: 0;
  padding-right: 28px;
}

body.is-ar .nefroon-services .detail li::before {
  left: auto;
  right: 0;
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  .nefroon-services .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .nefroon-services .card,
  .nefroon-services .detail,
  .nefroon-services .btn,
  .nefroon-services .steps li,
  .nefroon-services .magazine-mockup-card {
    transition: none;
  }
  
  .nefroon-services .btn.btn-primary::before {
    display: none;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .nefroon-services .hero {
    background: #fff;
    padding: 40px 0;
  }
  
  .nefroon-services .hero::before,
  .nefroon-services .hero::after {
    display: none;
  }
  
  .nefroon-services .reveal {
    opacity: 1;
    transform: none;
  }
  
  .nefroon-services .card,
  .nefroon-services .detail {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
}
