/* =========================================================
   NIFAROX — DIGITAL GROWTH AGENCY
   COMPLETE STYLE.CSS
   MATCHED TO CURRENT INDEX.HTML
========================================================= */

/* =========================================================
   01. ROOT / RESET
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --navy: #071426;
  --navy-2: #0b1d33;
  --blue: #1769ff;
  --blue-2: #1677ff;
  --lime: #caff3d;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --soft: #eef3f8;
  --text: #172033;
  --muted: #667085;
  --line: #dce3eb;
  --dark-line: rgba(255,255,255,.13);

  --container: 1240px;
  --radius: 20px;
  --radius-lg: 28px;

  --font-body: "DM Sans", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body);
}

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

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

button {
  border: 0;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 60px;
}

.section-heading h2,
.process-intro h2,
.why-heading h2,
.faq-intro h2,
.feature-content h2,
.web-feature-content h2,
.contact-info h2,
.final-cta-container h2,
.newsletter-grid h2 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 600;
  margin-top: 18px;
}

.section-heading h2 span,
.process-intro h2 span,
.why-heading h2 span,
.faq-intro h2 span,
.feature-content h2 span,
.web-feature-content h2 span,
.contact-info h2 span,
.final-cta-container h2 span,
.newsletter-grid h2 span {
  color: var(--blue);
}

.section-heading p {
  color: var(--muted);
  max-width: 680px;
  margin-top: 22px;
  font-size: 17px;
}

/* =========================================================
   02. HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7,20,38,.08);
}

.nav-wrapper {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.nifarox-logo {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.07em;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-x {
  color: var(--blue);
  font-size: 1.25em;
  margin-left: 1px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-dropdown-toggle {
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  transition: color .2s ease;
}

.desktop-nav > a:hover,
.nav-dropdown-toggle:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle span {
  font-size: 16px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: -20px;
  width: 250px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(7,20,38,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.nav-dropdown-menu a:hover {
  background: var(--soft);
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-search {
  width: 40px;
  height: 40px;
  position: relative;
  background: transparent;
}

.header-search span {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  top: 9px;
  left: 9px;
}

.header-search span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: var(--navy);
  transform: rotate(45deg);
  right: -5px;
  bottom: -3px;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.header-cta {
  background: var(--navy);
  color: white;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
}

.mobile-nav {
  display: none;
}

/* =========================================================
   03. SEARCH OVERLAY
========================================================= */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(7,20,38,.78);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 130px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-box {
  position: relative;
  width: min(760px, 100%);
  background: white;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 30px 100px rgba(0,0,0,.25);
}

.search-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--soft);
  font-size: 25px;
}

.search-box h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1.05;
  margin: 14px 0 30px;
}

.search-input-wrap {
  display: flex;
  gap: 10px;
}

.search-input-wrap input {
  flex: 1;
  min-height: 55px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
}

.search-input-wrap input:focus {
  border-color: var(--blue);
}

.search-input-wrap button {
  padding: 0 24px;
  border-radius: 10px;
  background: var(--blue);
  color: white;
  font-weight: 700;
}

/* =========================================================
   04. HERO
========================================================= */

.hero {
  position: relative;
  min-height: 760px;
  padding: 100px 0 110px;
  background: var(--off-white);
  overflow: hidden;
}

.hero-background-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.shape-one {
  width: 480px;
  height: 480px;
  background: rgba(23,105,255,.08);
  top: -220px;
  right: -120px;
}

.shape-two {
  width: 350px;
  height: 350px;
  background: rgba(202,255,61,.13);
  bottom: -200px;
  left: -120px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.hero-kicker-line {
  width: 34px;
  height: 2px;
  background: var(--blue);
}

.hero h1 {
  max-width: 680px;
  margin: 22px 0 24px;
  font-family: var(--font-heading);
  font-size: clamp(58px, 6.5vw, 92px);
  line-height: .94;
  letter-spacing: -.065em;
  color: var(--navy);
}

.hero h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-primary:hover {
  background: #075be7;
}

.btn-secondary {
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
}

.hero-proof {
  display: flex;
  gap: 30px;
  margin-top: 52px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-proof-item strong {
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 13px;
}

.hero-proof-item span {
  font-size: 12px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-photo {
  position: absolute;
  inset: 35px 0 35px 35px;
  overflow: hidden;
  border-radius: 28px;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
}

.hero-photo-overlay {
  position: absolute;
  inset: 35px 0 35px 35px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(7,20,38,.55), transparent 60%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(23,105,255,.2);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 470px;
  height: 470px;
  right: -80px;
  top: 20px;
}

.orbit-two {
  width: 570px;
  height: 570px;
  right: -130px;
  top: -30px;
}

.growth-card {
  position: absolute;
  z-index: 4;
  width: min(450px, 78%);
  left: 0;
  bottom: 65px;
  background: rgba(7,20,38,.94);
  color: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(7,20,38,.28);
}

.growth-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.card-label {
  display: block;
  color: #91a4bb;
  font-size: 9px;
  letter-spacing: .14em;
  margin-bottom: 5px;
}

.growth-card-top strong {
  font-family: var(--font-heading);
  font-size: 17px;
}

.growth-status {
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
}

.growth-chart {
  position: relative;
  height: 170px;
  margin-top: 18px;
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-grid span {
  display: block;
  height: 1px;
  background: rgba(255,255,255,.1);
}

.growth-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-area {
  fill: url(#chartGradient);
}

.chart-line {
  fill: none;
  stroke: var(--blue-2);
  stroke-width: 4;
}

.growth-card-bottom {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.growth-card-bottom span,
.growth-card-bottom strong {
  display: block;
}

.growth-card-bottom span {
  color: #91a4bb;
  font-size: 10px;
}

.growth-card-bottom strong {
  margin-top: 4px;
  font-size: 11px;
}

.floating-card {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: white;
  border-radius: 13px;
  box-shadow: 0 15px 40px rgba(7,20,38,.15);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 12px;
}

.floating-card span {
  color: var(--muted);
  font-size: 10px;
}

.floating-card-one {
  top: 45px;
  right: -20px;
}

.floating-card-two {
  right: -5px;
  bottom: 35px;
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #edf4ff;
  color: var(--blue);
  font-weight: 700;
}

/* =========================================================
   05. TRUST STRIP
========================================================= */

.trust-strip {
  background: var(--navy);
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.trust-item {
  display: flex;
  gap: 15px;
  padding: 28px 22px;
  border-right: 1px solid var(--dark-line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-number {
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 13px;
}

.trust-item div span {
  margin-top: 3px;
  color: #91a4bb;
  font-size: 10px;
}

/* =========================================================
   06. ABOUT
========================================================= */

.intro-section {
  padding: 125px 0 0;
  background: white;
}

.intro-grid {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.intro-heading h2 {
  max-width: 650px;
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: clamp(42px,5vw,70px);
  line-height: 1;
  letter-spacing: -.055em;
}

.intro-heading h2 span {
  color: var(--blue);
}

.intro-copy {
  align-self: end;
  max-width: 560px;
}

.intro-copy p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
}

.nifarox-about-lead {
  color: var(--text) !important;
  font-size: 20px !important;
  line-height: 1.55;
}

.nifarox-about-link,
.service-link,
.text-link,
.work-link,
.nifarox-insight-read,
.nifarox-about-link,
.nifarox-industries-link,
.nifarox-insights-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  margin-top: 15px;
}

.nifarox-about-link span,
.service-link span,
.text-link span,
.work-link span,
.nifarox-insight-read span,
.nifarox-industries-link span,
.nifarox-insights-all span {
  transition: transform .2s ease;
}

.nifarox-about-link:hover span,
.service-link:hover span,
.text-link:hover span,
.work-link:hover span,
.nifarox-insight-read:hover span {
  transform: translateX(5px);
}

.intro-image-wrap {
  position: relative;
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  height: 520px;
  overflow: hidden;
}

.intro-image-wrap img {
  height: 100%;
  object-fit: cover;
}

.intro-image-badge {
  position: absolute;
  left: 28px;
  top: 28px;
  padding: 9px 13px;
  background: var(--navy);
  color: white;
  font-size: 9px;
  letter-spacing: .12em;
  font-weight: 700;
}

.nifarox-about-image-caption {
  position: absolute;
  bottom: 25px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.nifarox-about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,38,.65), transparent 55%);
  pointer-events: none;
}

.nifarox-about-image-caption,
.intro-image-badge {
  z-index: 2;
}

.nifarox-about-principles {
  width: min(calc(100% - 48px), var(--container));
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.nifarox-principle {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 38px 28px;
  border-right: 1px solid var(--line);
}

.nifarox-principle:first-child {
  padding-left: 0;
}

.nifarox-principle:last-child {
  border-right: 0;
}

.nifarox-principle-number {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.nifarox-principle h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 10px;
}

.nifarox-principle p {
  color: var(--muted);
  font-size: 13px;
}

.nifarox-about-strip {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.nifarox-about-strip-item {
  padding: 22px 20px;
  display: flex;
  gap: 12px;
  border-right: 1px solid var(--line);
  font-size: 12px;
}

.nifarox-about-strip-item:first-child {
  padding-left: 0;
}

.nifarox-about-strip-item:last-child {
  border: 0;
}

.nifarox-about-strip-item strong {
  color: var(--blue);
}

/* =========================================================
   07. SERVICES
========================================================= */

.services-section {
  padding: 125px 0;
  background: var(--off-white);
}

.services-section > .section-heading,
.services-section > .services-grid,
.nifarox-services-cta {
  width: min(calc(100% - 48px), var(--container));
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(7,20,38,.1);
}

.service-card-featured {
  background: var(--navy);
  color: white;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-number {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.service-card-featured .service-number {
  color: var(--lime);
}

.nifarox-service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #edf4ff;
  color: var(--blue);
  font-weight: 700;
}

.service-card-featured .nifarox-service-icon {
  background: rgba(255,255,255,.1);
  color: var(--lime);
}

.service-card-content {
  margin-top: 70px;
}

.service-label,
.industry-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--blue);
}

.service-card-featured .service-label {
  color: var(--lime);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 9px 0 14px;
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
}

.service-card-featured p {
  color: #aebed0;
}

.service-mini-list {
  margin-top: 20px;
}

.service-mini-list li {
  padding: 7px 0;
  border-top: 1px solid var(--line);
  color: #526174;
  font-size: 11px;
}

.service-card-featured .service-mini-list li {
  border-color: rgba(255,255,255,.12);
  color: #c4d0dc;
}

.service-link {
  margin-top: 20px;
}

.service-card-featured .service-link {
  color: var(--lime);
}

.nifarox-services-cta {
  margin-top: 22px;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-radius: 20px;
  background: var(--navy);
  color: white;
}

.nifarox-services-cta-content {
  max-width: 700px;
}

.nifarox-services-cta h3 {
  margin: 9px 0;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.15;
}

.nifarox-services-cta p {
  color: #aebed0;
  font-size: 13px;
}

.nifarox-services-btn {
  flex-shrink: 0;
}

/* =========================================================
   08. INDUSTRIES
========================================================= */

.industries-section {
  padding: 125px 0;
}

.nifarox-industries-heading,
.nifarox-industries-grid,
.nifarox-industries-bottom {
  width: min(calc(100% - 48px), var(--container));
  margin-left: auto;
  margin-right: auto;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.industry-card {
  min-height: 330px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  transition: .25s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: #b9c8d8;
  box-shadow: 0 18px 40px rgba(7,20,38,.07);
}

.nifarox-industry-featured {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.industry-card-top {
  display: flex;
  justify-content: space-between;
}

.industry-number {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.nifarox-industry-featured .industry-number {
  color: var(--lime);
}

.industry-symbol {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  background: #f0f5fb;
  color: var(--blue);
  border-radius: 11px;
  font-weight: 700;
}

.nifarox-industry-featured .industry-symbol {
  background: rgba(255,255,255,.1);
  color: var(--lime);
}

.industry-card-body {
  margin-top: 65px;
}

.industry-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.15;
  margin: 8px 0 12px;
}

.industry-card p {
  color: var(--muted);
  font-size: 13px;
}

.nifarox-industry-featured p {
  color: #afbfce;
}

.industry-card-footer {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #788596;
  font-size: 10px;
  border-top: 1px solid var(--line);
}

.nifarox-industry-featured .industry-card-footer {
  border-color: rgba(255,255,255,.12);
  color: #aebed0;
}

.industry-arrow {
  color: var(--blue);
  font-size: 16px;
}

.nifarox-industries-bottom {
  margin-top: 25px;
  padding: 30px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 25px;
  background: var(--soft);
  border-radius: 18px;
}

.nifarox-industries-bottom-mark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--lime);
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 700;
}

.nifarox-industries-bottom h3 {
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.15;
}

/* =========================================================
   09. PROCESS
========================================================= */

.process-section {
  background: var(--navy);
  color: white;
}

.process-intro {
  max-width: 760px;
}

.process-intro h2 {
  color: white;
}

.process-intro p {
  margin-top: 20px;
  color: #9eb0c3;
  font-size: 16px;
}

.process-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--dark-line);
}

.process-step {
  padding: 35px 25px;
  border-right: 1px solid var(--dark-line);
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  border-right: 0;
}

.process-number {
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
}

.process-step h3 {
  margin: 50px 0 12px;
  font-family: var(--font-heading);
  font-size: 24px;
}

.process-step p {
  color: #94a8bb;
  font-size: 13px;
}

/* =========================================================
   10. SEO FEATURE
========================================================= */

.feature-section {
  background: white;
}

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

.feature-visual {
  min-height: 500px;
  display: grid;
  place-items: center;
  background: var(--soft);
  border-radius: 25px;
  padding: 40px;
}

.feature-panel {
  width: 100%;
  padding: 28px;
  background: var(--navy);
  color: white;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(7,20,38,.2);
}

.feature-panel-header {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
}

.feature-live {
  color: var(--lime);
}

.search-bars {
  margin: 45px 0;
}

.search-bar {
  height: 12px;
  margin: 15px 0;
  border-radius: 20px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}

.search-bar span {
  display: block;
  height: 100%;
  width: 70%;
  background: var(--blue);
  border-radius: inherit;
}

.search-bar:nth-child(2) span {
  width: 82%;
}

.search-bar:nth-child(3) span {
  width: 56%;
}

.search-bar:nth-child(4) span {
  width: 90%;
}

.search-bar:nth-child(5) span {
  width: 68%;
}

.feature-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-line);
}

.feature-metrics small,
.feature-metrics strong {
  display: block;
}

.feature-metrics small {
  color: #91a4bb;
  font-size: 10px;
}

.feature-metrics strong {
  margin-top: 4px;
  font-size: 13px;
}

.feature-content > p {
  margin-top: 25px;
  color: var(--muted);
  font-size: 16px;
  max-width: 570px;
}

.feature-list {
  margin-top: 28px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.feature-list li span {
  color: var(--blue);
  font-weight: 700;
}

/* =========================================================
   11. WEB FEATURE
========================================================= */

.web-feature-section {
  background: var(--off-white);
}

.web-feature-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.web-feature-content > p {
  margin-top: 25px;
  color: var(--muted);
  font-size: 16px;
}

.web-feature-points {
  margin: 28px 0;
}

.web-feature-points > div {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.web-feature-points strong,
.web-feature-points span {
  display: block;
}

.web-feature-points strong {
  font-size: 14px;
}

.web-feature-points span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.website-mockup {
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 25px 70px rgba(7,20,38,.13);
}

.browser-bar {
  height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #dce3eb;
}

.browser-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9aa7b6;
}

.browser-address {
  flex: 1;
  margin-left: 15px;
  padding: 6px 14px;
  background: white;
  border-radius: 6px;
  color: #8390a0;
  font-size: 10px;
}

.website-screen {
  min-height: 430px;
  padding: 28px;
  background: linear-gradient(135deg,#edf4ff,#fff);
}

.screen-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.screen-nav strong {
  font-family: var(--font-heading);
  color: var(--navy);
}

.screen-nav div {
  display: flex;
  gap: 6px;
}

.screen-nav div span {
  width: 30px;
  height: 5px;
  border-radius: 10px;
  background: #cbd5e1;
}

.screen-content {
  padding: 75px 20px 50px;
  max-width: 500px;
}

.screen-content small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.screen-content h3 {
  margin: 14px 0 20px;
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: .98;
  letter-spacing: -.05em;
}

.screen-content h3 span {
  color: var(--blue);
}

.screen-button {
  display: inline-block;
  padding: 11px 18px;
  background: var(--navy);
  color: white;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 700;
}

.screen-blocks {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.screen-blocks span {
  height: 60px;
  background: white;
  border-radius: 8px;
}

/* =========================================================
   12. WHY NIFAROX
========================================================= */

.why-heading {
  max-width: 800px;
}

.why-heading p {
  color: var(--muted);
  margin-top: 22px;
}

.why-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-card {
  padding: 35px 25px;
  border-right: 1px solid var(--line);
}

.why-card:first-child {
  padding-left: 0;
}

.why-card:last-child {
  border-right: 0;
}

.why-number {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.why-card h3 {
  margin: 55px 0 12px;
  font-family: var(--font-heading);
  font-size: 20px;
}

.why-card p {
  color: var(--muted);
  font-size: 13px;
}

/* =========================================================
   13. WORK
========================================================= */

.work-section {
  padding: 125px 0;
  background: var(--off-white);
}

.nifarox-work-heading,
.nifarox-work-grid,
.nifarox-work-cta {
  width: min(calc(100% - 48px), var(--container));
  margin-left: auto;
  margin-right: auto;
}

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

.work-card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.work-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.work-image {
  position: relative;
  min-height: 350px;
  overflow: hidden;
}

.work-card-large .work-image {
  min-height: 470px;
}

.work-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.04);
}

.work-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,38,.65), transparent 60%);
}

.work-category {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 11px;
  background: var(--navy);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

.work-project-number {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: white;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
}

.work-content {
  padding: 35px;
}

.work-content-top,
.work-results {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.work-label,
.work-type {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

.work-label {
  color: var(--blue);
}

.work-type {
  color: #8a96a5;
}

.work-content h3 {
  margin: 18px 0 14px;
  font-family: var(--font-heading);
  font-size: 29px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.work-content p {
  color: var(--muted);
  font-size: 13px;
}

.work-results {
  justify-content: flex-start;
  margin-top: 28px;
}

.work-result {
  padding-right: 25px;
  border-right: 1px solid var(--line);
}

.work-result:last-child {
  border: 0;
}

.work-result strong,
.work-result span {
  display: block;
}

.work-result strong {
  color: var(--navy);
  font-size: 12px;
}

.work-result span {
  color: var(--muted);
  font-size: 9px;
  margin-top: 3px;
}

.nifarox-work-cta {
  margin-top: 22px;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--navy);
  color: white;
  border-radius: 20px;
}

.nifarox-work-cta h3 {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 30px;
}

/* =========================================================
   14. STATEMENT
========================================================= */

.statement-section {
  padding: 125px 0;
  background: white;
  text-align: center;
}

.statement-container {
  max-width: 900px;
}

.statement-mark {
  display: block;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: .5;
}

.statement-container blockquote {
  margin-top: 25px;
  font-family: var(--font-heading);
  font-size: clamp(34px,4vw,55px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.statement-line {
  width: 45px;
  height: 2px;
  background: var(--blue);
  margin: 30px auto 15px;
}

.statement-container p {
  color: var(--muted);
  font-size: 12px;
}

/* =========================================================
   15. INSIGHTS
========================================================= */

.insights-section {
  padding: 125px 0;
}

.nifarox-insights-heading,
.nifarox-featured-insight,
.nifarox-insights-grid,
.nifarox-insights-footer {
  width: min(calc(100% - 48px), var(--container));
  margin-left: auto;
  margin-right: auto;
}

.nifarox-featured-insight {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--navy);
  color: white;
  border-radius: 22px;
  overflow: hidden;
}

.nifarox-featured-insight-image {
  position: relative;
  min-height: 450px;
}

.nifarox-featured-insight-image img {
  height: 100%;
  object-fit: cover;
}

.nifarox-insight-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,38,.7), transparent 65%);
}

.nifarox-featured-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 12px;
  background: var(--lime);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
}

.nifarox-featured-insight-content {
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nifarox-insight-meta {
  display: flex;
  gap: 15px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.nifarox-featured-insight-content h3 {
  margin: 20px 0;
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.nifarox-featured-insight-content p {
  color: #aebed0;
  font-size: 14px;
}

.nifarox-insight-read {
  color: var(--lime);
}

.insights-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.insight-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.insight-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.insight-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.insight-card:hover img {
  transform: scale(1.04);
}

.insight-image > span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 10px;
  background: var(--navy);
  color: white;
  font-size: 9px;
  font-weight: 700;
}

.insight-content {
  padding: 27px;
}

.nifarox-insight-card-meta {
  display: flex;
  justify-content: space-between;
  color: #8491a0;
  font-size: 9px;
  font-weight: 700;
}

.insight-content h3 {
  margin: 14px 0;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.15;
}

.insight-content p {
  color: var(--muted);
  font-size: 12px;
}

.nifarox-insights-footer {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nifarox-insights-footer h3 {
  margin-top: 7px;
  font-family: var(--font-heading);
  font-size: 25px;
}

/* =========================================================
   16. FAQ
========================================================= */

.faq-section {
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px;
}

.faq-intro p {
  margin-top: 22px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  min-height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-size: 15px;
  font-weight: 700;
}

.faq-question strong {
  color: var(--blue);
  font-size: 22px;
  transition: transform .2s ease;
}

.faq-item.active .faq-question strong {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer p {
  padding: 0 30px 25px 0;
  color: var(--muted);
  font-size: 13px;
}

/* =========================================================
   17. FINAL CTA
========================================================= */

.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--blue);
  color: white;
  text-align: center;
}

.final-cta-container {
  position: relative;
  z-index: 2;
}

.final-cta-section .eyebrow {
  color: var(--lime);
}

.final-cta-container h2 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-container h2 span {
  color: var(--lime);
}

.final-cta-container p {
  max-width: 600px;
  margin: 25px auto;
  color: rgba(255,255,255,.82);
}

.btn-light {
  background: white;
  color: var(--navy);
}

.final-cta-glow {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.glow-one {
  width: 500px;
  height: 500px;
  top: -300px;
  left: -120px;
}

.glow-two {
  width: 420px;
  height: 420px;
  bottom: -280px;
  right: -80px;
}

/* =========================================================
   18. CONTACT
========================================================= */

.contact-section {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.contact-info > p {
  margin-top: 25px;
  color: var(--muted);
  font-size: 16px;
  max-width: 550px;
}

.contact-details {
  margin-top: 40px;
}

.contact-detail {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: #edf4ff;
  color: var(--blue);
}

.contact-detail small,
.contact-detail a,
.contact-detail strong {
  display: block;
}

.contact-detail small {
  color: #8793a1;
  font-size: 10px;
  margin-bottom: 3px;
}

.contact-detail a,
.contact-detail strong {
  font-size: 13px;
}

.contact-detail a:hover {
  color: var(--blue);
}

.contact-form-card {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(7,20,38,.07);
}

.form-heading > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.form-heading h3 {
  margin-top: 7px;
  font-family: var(--font-heading);
  font-size: 30px;
}

#contactForm {
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: white;
  padding: 13px 14px;
  font-size: 13px;
  color: var(--text);
  resize: vertical;
}

.form-group input,
.form-group select {
  height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23,105,255,.08);
}

.form-submit {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.form-message {
  margin-top: 12px;
  font-size: 12px;
}

/* =========================================================
   19. NEWSLETTER
========================================================= */

.newsletter-section {
  padding: 85px 0;
  background: var(--soft);
}

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

.newsletter-grid h2 {
  font-size: 45px;
}

.newsletter-grid p {
  max-width: 580px;
  margin-top: 18px;
  color: var(--muted);
}

.newsletter-input {
  display: flex;
  gap: 8px;
}

.newsletter-input input {
  flex: 1;
  height: 55px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.newsletter-input button {
  padding: 0 22px;
  background: var(--navy);
  color: white;
  border-radius: 8px;
  font-weight: 700;
}

.newsletter-form-wrap small {
  display: block;
  margin-top: 12px;
  color: #8491a0;
  font-size: 10px;
}

/* =========================================================
   20. FOOTER
========================================================= */

.site-footer {
  padding: 80px 0 25px;
  background: var(--navy);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -.06em;
}

.footer-tagline {
  margin-top: 8px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
}

.footer-description {
  max-width: 350px;
  margin-top: 18px;
  color: #91a4b8;
  font-size: 12px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 25px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  color: #aab8c7;
  font-size: 10px;
  font-weight: 700;
}

.footer-socials a:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column h4 {
  margin-bottom: 8px;
  color: white;
  font-family: var(--font-heading);
  font-size: 13px;
}

.footer-column a {
  color: #91a4b8;
  font-size: 11px;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-bottom {
  margin-top: 65px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--dark-line);
  color: #73869a;
  font-size: 10px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a:hover {
  color: white;
}

/* =========================================================
   21. COOKIE NOTICE
========================================================= */

.cookie-notice {
  position: fixed;
  z-index: 5000;
  left: 50%;
  bottom: 22px;
  width: min(680px, calc(100% - 30px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px;
  background: white;
  border: 1px solid #d9e1ea;
  border-radius: 17px;
  box-shadow: 0 20px 70px rgba(7,20,38,.18);
}

.cookie-notice strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
}

.cookie-notice p {
  max-width: 390px;
  margin-top: 6px;
  color: #738197;
  font-size: 11px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-actions button {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
}

#cookieAccept {
  background: var(--navy);
  color: white;
}

#cookieDismiss {
  background: #edf2f6;
  color: var(--navy);
}

/* =========================================================
   22. SCROLL TOP
========================================================= */

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 3000;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
  box-shadow: 0 10px 30px rgba(23,105,255,.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================================================
   23. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

  .desktop-nav {
    gap: 15px;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .services-grid,
  .industries-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .process-grid,
  .why-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .why-card:nth-child(2) {
    border-right: 0;
  }

  .work-card-large {
    grid-column: span 2;
  }

  .contact-grid,
  .feature-grid,
  .web-feature-grid {
    gap: 50px;
  }

}

/* =========================================================
   24. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 800px) {

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 80px 0;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-btn {
    display: block;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: max-height .3s ease;
  }

  .mobile-nav.active {
    max-height: 700px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav > a,
  .mobile-services-toggle {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    background: transparent;
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-services-menu {
    display: none;
    background: var(--off-white);
  }

  .mobile-services-menu.active {
    display: block;
  }

  .mobile-services-menu a {
    display: block;
    padding: 13px 38px;
    color: var(--muted);
    font-size: 12px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-cta {
    margin: 15px 20px 20px;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 8px;
    background: var(--blue);
    color: white !important;
  }

  .hero {
    padding: 75px 0;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 78px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 20px;
  }

  .hero-photo {
    inset: 20px 0 30px 0;
  }

  .hero-photo-overlay {
    inset: 20px 0 30px 0;
  }

  .growth-card {
    left: 10px;
    bottom: 45px;
    width: calc(100% - 20px);
  }

  .floating-card-one {
    top: 10px;
    right: 0;
  }

  .floating-card-two {
    right: 0;
    bottom: 10px;
  }

  .hero-proof {
    gap: 15px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .feature-grid,
  .web-feature-grid,
  .contact-grid,
  .newsletter-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .intro-grid {
    margin-bottom: 50px;
  }

  .intro-image-wrap {
    width: calc(100% - 32px);
    height: 390px;
  }

  .nifarox-about-principles {
    grid-template-columns: 1fr;
  }

  .nifarox-principle,
  .nifarox-principle:first-child {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .nifarox-principle:last-child {
    border-bottom: 0;
  }

  .nifarox-about-strip {
    grid-template-columns: repeat(2,1fr);
  }

  .nifarox-about-strip-item,
  .nifarox-about-strip-item:first-child {
    padding: 18px 10px;
    border-bottom: 1px solid var(--line);
  }

  .services-grid,
  .industries-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card-content {
    margin-top: 45px;
  }

  .nifarox-services-cta,
  .nifarox-work-cta,
  .nifarox-insights-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .nifarox-services-cta {
    display: flex;
  }

  .nifarox-industries-bottom {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:first-child,
  .why-card,
  .why-card:first-child {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .why-card {
    border-color: var(--line);
  }

  .process-step:last-child,
  .why-card:last-child {
    border-bottom: 0;
  }

  .process-step h3,
  .why-card h3 {
    margin-top: 30px;
  }

  .feature-visual {
    min-height: 380px;
    padding: 20px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card-large {
    grid-column: auto;
    display: block;
  }

  .work-card-large .work-image {
    min-height: 330px;
  }

  .nifarox-featured-insight {
    grid-template-columns: 1fr;
  }

  .nifarox-featured-insight-image {
    min-height: 330px;
  }

  .nifarox-featured-insight-content {
    padding: 35px 25px;
  }

  .nifarox-featured-insight-content h3 {
    font-size: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 25px;
  }

  .newsletter-input {
    flex-direction: column;
  }

  .newsletter-input input,
  .newsletter-input button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-notice {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }

}

/* =========================================================
   25. SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

  .container {
    width: calc(100% - 28px);
  }

  .nav-wrapper {
    height: 72px;
  }

  .nifarox-logo {
    font-size: 23px;
  }

  .hero h1 {
    font-size: 51px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
  }

  .hero-proof-item span {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .growth-card {
    padding: 17px;
  }

  .growth-card-bottom {
    gap: 7px;
  }

  .growth-card-bottom strong {
    font-size: 9px;
  }

  .floating-card {
    padding: 10px;
  }

  .floating-card strong {
    font-size: 10px;
  }

  .floating-card-one {
    top: 5px;
  }

  .floating-card-two {
    bottom: 5px;
  }

  .intro-heading h2,
  .section-heading h2,
  .process-intro h2,
  .why-heading h2,
  .faq-intro h2,
  .feature-content h2,
  .web-feature-content h2,
  .contact-info h2,
  .final-cta-container h2 {
    font-size: 42px;
  }

  .intro-image-wrap {
    height: 310px;
  }

  .nifarox-about-strip {
    grid-template-columns: 1fr;
  }

  .nifarox-about-strip-item,
  .nifarox-about-strip-item:first-child {
    padding-left: 0;
    padding-right: 0;
  }

  .nifarox-services-cta,
  .nifarox-work-cta {
    padding: 28px 22px;
  }

  .nifarox-services-cta h3,
  .nifarox-work-cta h3 {
    font-size: 24px;
  }

  .website-screen {
    min-height: 350px;
  }

  .screen-content {
    padding: 50px 5px 35px;
  }

  .screen-content h3 {
    font-size: 36px;
  }

  .work-content {
    padding: 25px;
  }

  .work-content h3 {
    font-size: 24px;
  }

  .statement-container blockquote {
    font-size: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-legal {
    flex-wrap: wrap;
  }

  .cookie-notice {
    bottom: 10px;
    padding: 20px;
  }

}
/* =========================================================
   INDUSTRIES SECTION
========================================================= */

.industries-section {
  padding: 110px 0;
  background: #f7f9fc;
}

.section-container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #1769ff;
}

.section-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: #071426;
}

.section-heading p {
  margin: 0;
  max-width: 650px;
  font-size: 17px;
  line-height: 1.8;
  color: #64748b;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.industry-card {
  position: relative;
  padding: 34px;
  min-height: 290px;
  background: #ffffff;
  border: 1px solid #e5eaf1;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-7px);
  border-color: #caff3d;
  box-shadow: 0 20px 45px rgba(7, 20, 38, 0.08);
}

.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 12px;
  background: #071426;
  color: #caff3d;
  font-size: 13px;
  font-weight: 800;
}

.industry-card h3 {
  margin: 0 0 13px;
  font-size: 22px;
  color: #071426;
}

.industry-card p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
}

.industry-card a {
  color: #1769ff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.industry-card a:hover {
  color: #071426;
}

/* INDUSTRIES RESPONSIVE */

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

@media (max-width: 600px) {
  .industries-section {
    padding: 80px 0;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    padding: 28px;
  }

  .section-heading {
    margin-bottom: 40px;
  }
}
/* =========================================================
   OUR WORK / CASE STUDIES
========================================================= */

.work-section {
  padding: 120px 0;
  background: #ffffff;
}

.work-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}

.work-top .section-heading {
  margin-bottom: 0;
}

.work-top-link {
  flex-shrink: 0;
  padding: 15px 22px;
  border: 1px solid #dce3ec;
  border-radius: 100px;
  color: #071426;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.work-top-link:hover {
  background: #071426;
  color: #ffffff;
  border-color: #071426;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
}

.work-card {
  overflow: hidden;
  border: 1px solid #e5eaf1;
  border-radius: 22px;
  background: #ffffff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(7, 20, 38, 0.1);
}

.work-large {
  grid-row: span 2;
}

.work-image {
  position: relative;
  height: 310px;
  overflow: hidden;
}

.work-large .work-image {
  height: 410px;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.05);
}

.work-category {
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 8px 12px;
  border-radius: 100px;
  background: #caff3d;
  color: #071426;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.work-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 215px;
  padding: 28px;
}

.work-large .work-content {
  min-height: 240px;
}

.work-number {
  display: block;
  margin-bottom: 12px;
  color: #1769ff;
  font-size: 12px;
  font-weight: 800;
}

.work-content h3 {
  margin: 0 0 12px;
  color: #071426;
  font-size: 25px;
  letter-spacing: -0.5px;
}

.work-content p {
  max-width: 560px;
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}

.work-link {
  align-self: flex-start;
  margin-top: 25px;
  color: #1769ff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.work-link:hover {
  color: #071426;
}

.work-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e5eaf1;
}

.work-bottom p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
}

.work-bottom a {
  color: #071426;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.work-bottom a:hover {
  color: #1769ff;
}


/* =========================================================
   OUR WORK RESPONSIVE
========================================================= */

@media (max-width: 850px) {

  .work-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-large {
    grid-row: auto;
  }

  .work-large .work-image,
  .work-image {
    height: 330px;
  }
}

@media (max-width: 600px) {

  .work-section {
    padding: 80px 0;
  }

  .work-image,
  .work-large .work-image {
    height: 260px;
  }

  .work-content,
  .work-large .work-content {
    min-height: auto;
    padding: 24px;
  }

  .work-content h3 {
    font-size: 22px;
  }

  .work-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
/* =========================================================
   INSIGHTS SECTION
========================================================= */

.insights-section {
  padding: 120px 0;
  background: #f7f9fc;
}

.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}

.insights-header .section-heading {
  margin-bottom: 0;
}

.insights-all-link {
  flex-shrink: 0;
  color: #1769ff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.insights-all-link:hover {
  color: #071426;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 24px;
}

.insight-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5eaf1;
  border-radius: 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.insight-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 55px rgba(7, 20, 38, 0.1);
}

.insight-image {
  position: relative;
  height: 245px;
  overflow: hidden;
}

.insight-featured .insight-image {
  height: 310px;
}

.insight-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insight-card:hover .insight-image img {
  transform: scale(1.05);
}

.insight-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 100px;
  background: #caff3d;
  color: #071426;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.insight-content {
  padding: 27px;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
}

.insight-content h3 {
  margin: 0 0 14px;
  color: #071426;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.insight-featured .insight-content h3 {
  font-size: 28px;
}

.insight-content p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}

.insight-link {
  display: inline-block;
  margin-top: 24px;
  color: #1769ff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.insight-link:hover {
  color: #071426;
}


/* =========================================================
   INSIGHTS RESPONSIVE
========================================================= */

@media (max-width: 950px) {

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-featured {
    grid-column: span 2;
  }

  .insight-featured .insight-image {
    height: 330px;
  }
}

@media (max-width: 650px) {

  .insights-section {
    padding: 80px 0;
  }

  .insights-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-featured {
    grid-column: auto;
  }

  .insight-image,
  .insight-featured .insight-image {
    height: 250px;
  }

  .insight-content,
  .insight-featured .insight-content {
    padding: 24px;
  }

  .insight-featured .insight-content h3 {
    font-size: 23px;
  }
}
/* =========================================================
   CONTACT / LET'S TALK
========================================================= */

.contact-section {
  padding: 120px 0;
  background: #071426;
  color: #ffffff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro .section-label {
  color: #caff3d;
}

.contact-intro h2 {
  margin: 0 0 24px;
  max-width: 600px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -2.5px;
}

.contact-intro h2 span {
  display: block;
  color: #caff3d;
}

.contact-intro > p {
  max-width: 520px;
  margin: 0;
  color: #a9b6c8;
  font-size: 16px;
  line-height: 1.8;
}

.contact-details {
  margin-top: 50px;
}

.contact-detail {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail-label {
  display: block;
  margin-bottom: 8px;
  color: #7f8da1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.contact-detail a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.contact-detail a:hover {
  color: #caff3d;
}

.contact-detail p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.contact-socials a {
  color: #a9b6c8;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-socials a:hover {
  color: #caff3d;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-box {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: #0b1d31;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  color: #dbe4ef;
  font-size: 13px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 16px;
  border: 1px solid #263b51;
  border-radius: 10px;
  outline: none;
  background: #071426;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #65758a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1769ff;
  box-shadow: 0 0 0 3px rgba(23, 105, 255, 0.12);
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 20px;
  border: none;
  border-radius: 10px;
  background: #caff3d;
  color: #071426;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-submit span {
  font-size: 20px;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.form-note {
  margin: 15px 0 0;
  color: #66788e;
  font-size: 11px;
  line-height: 1.6;
}


/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-intro h2 {
    max-width: 700px;
  }
}

@media (max-width: 600px) {

  .contact-section {
    padding: 80px 0;
  }

  .contact-form-box {
    padding: 25px;
    border-radius: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-intro h2 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 80px 0 25px;
  background: #050f1c;
  color: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -1.5px;
  text-decoration: none;
}

.footer-logo span {
  color: #caff3d;
  font-size: 40px;
  line-height: 0;
}

.footer-brand p {
  max-width: 330px;
  margin: 0 0 25px;
  color: #8291a5;
  font-size: 14px;
  line-height: 1.8;
}

.footer-email {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-email:hover {
  color: #caff3d;
}


/* FOOTER COLUMNS */

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h4 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-column a {
  margin-bottom: 13px;
  color: #8291a5;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-column a:hover {
  color: #caff3d;
}

.footer-column .footer-talk {
  margin-top: 15px;
  color: #caff3d;
  font-weight: 800;
}


/* FOOTER BOTTOM */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;
  color: #617187;
  font-size: 11px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-legal a {
  color: #617187;
  font-size: 11px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #ffffff;
}


/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 850px) {

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .footer-brand {
    grid-column: span 2;
    max-width: 500px;
  }

}

@media (max-width: 550px) {

  .site-footer {
    padding-top: 60px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
    padding-bottom: 45px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-legal {
    gap: 12px 18px;
  }

}
/* =========================================================
   NIFAROX MOBILE MENU
========================================================= */

@media (max-width: 800px) {

  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 1002;
  }

  .menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #071426;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* HAMBURGER → X */

  .menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* MOBILE NAV */

  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    padding: 105px 25px 40px;
    background: #ffffff;
    overflow-y: auto;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;

    z-index: 1000;
  }

  .mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav > a,
  .mobile-services-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid #e5eaf1;
    background: transparent;
    color: #071426;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
  }

  .mobile-nav > a:hover,
  .mobile-services-toggle:hover {
    color: #1769ff;
  }

  /* SERVICES */

  .mobile-services-menu {
    display: none;
    padding: 8px 0 12px 18px;
  }

  .mobile-services-menu.active {
    display: block;
  }

  .mobile-services-menu a {
    display: block;
    padding: 10px 0;
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
  }

  .mobile-services-menu a:hover {
    color: #1769ff;
  }

  .mobile-services-toggle > span {
    font-size: 22px;
    font-weight: 400;
    transition: transform 0.25s ease;
  }

  .mobile-services-toggle.active > span {
    transform: rotate(45deg);
  }

  /* MOBILE CTA */

  .mobile-nav .mobile-cta {
    justify-content: center;
    margin-top: 28px;
    padding: 17px 20px;
    border: none;
    border-radius: 10px;
    background: #caff3d;
    color: #071426;
    font-size: 15px;
  }

  .mobile-nav .mobile-cta:hover {
    background: #1769ff;
    color: #ffffff;
  }

}


/* PREVENT PAGE SCROLL WHEN MOBILE MENU IS OPEN */

body.mobile-menu-open {
  overflow: hidden;
}


/* HIDE MOBILE MENU ON DESKTOP */

@media (min-width: 801px) {

  .mobile-nav {
    display: none;
  }

  .menu-btn {
    display: none;
  }

}
/* =========================================================
   NIFAROX HEADER FUNCTIONALITY
========================================================= */

.mobile-nav {
  display: none;
}

.menu-btn {
  display: none;
}


/* MOBILE */

@media (max-width: 800px) {

  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-btn {
    display: flex;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 0;

    background: transparent;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    cursor: pointer;
  }

  .menu-btn span {
    display: block;

    width: 22px;
    height: 2px;

    background: currentColor;

    transition: 0.25s ease;
  }


  /* MOBILE NAV */

  .mobile-nav {
    display: flex;

    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    flex-direction: column;

    padding: 20px;

    background: #071426;

    border-top: 1px solid rgba(255,255,255,0.08);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;

    z-index: 999;
  }

  .mobile-nav.active {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
  }


  .mobile-nav > a,
  .mobile-services-toggle {
    width: 100%;

    padding: 15px 0;

    color: #ffffff;

    background: transparent;

    border: 0;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    text-align: left;

    font-family: inherit;

    font-size: 16px;

    text-decoration: none;

    cursor: pointer;
  }


  /* SERVICES */

  .mobile-services-toggle {
    display: flex;

    align-items: center;
    justify-content: space-between;
  }

  .mobile-services-menu {
    display: none;

    padding-left: 15px;
  }

  .mobile-services-menu.active {
    display: block;
  }

  .mobile-services-menu a {
    display: block;

    padding: 11px 0;

    color: rgba(255,255,255,0.65);

    font-size: 14px;

    text-decoration: none;
  }


  /* CTA */

  .mobile-cta {
    margin-top: 20px;

    padding: 14px 18px !important;

    background: #caff3d;

    color: #071426 !important;

    border-radius: 8px;

    text-align: center !important;

    font-weight: 700;
  }


  /* HAMBURGER → X */

  .menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

}


/* =========================================================
   SEARCH
========================================================= */

.search-overlay {
  position: fixed;

  inset: 0;

  z-index: 9999;

  background: rgba(7,20,38,0.98);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  overflow-y: auto;

  transition: 0.25s ease;
}

.search-overlay.active {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

.search-container {
  width: min(900px, calc(100% - 40px));

  margin: auto;

  padding: 70px 0;
}

.search-header {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 30px;
}

.search-title {
  color: #caff3d;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.15em;
}

.search-close {
  width: 45px;
  height: 45px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,0.2);

  background: transparent;

  color: white;

  font-size: 30px;

  line-height: 1;

  cursor: pointer;
}

.search-close:hover {
  background: #caff3d;

  color: #071426;
}

.search-input-wrapper {
  display: flex;

  align-items: center;

  min-height: 72px;

  padding: 0 20px;

  background: #0b1d31;

  border: 1px solid rgba(255,255,255,0.15);

  border-radius: 12px;
}

.search-big-icon {
  width: 20px;
  height: 20px;

  border: 2px solid #caff3d;

  border-radius: 50%;

  position: relative;

  flex-shrink: 0;
}

.search-big-icon::after {
  content: "";

  position: absolute;

  width: 8px;
  height: 2px;

  background: #caff3d;

  right: -6px;
  bottom: -3px;

  transform: rotate(45deg);
}

.search-input-wrapper input {
  flex: 1;

  border: 0;
  outline: 0;

  background: transparent;

  color: white;

  font-family: inherit;

  font-size: 19px;

  padding: 0 18px;
}

.search-input-wrapper input::placeholder {
  color: rgba(255,255,255,0.45);
}

.search-esc {
  color: rgba(255,255,255,0.45);

  font-size: 11px;

  border: 1px solid rgba(255,255,255,0.15);

  border-radius: 5px;

  padding: 6px 8px;
}

.search-results {
  margin-top: 25px;
}

.search-placeholder {
  color: rgba(255,255,255,0.5);
}

.search-result-item {
  display: block;

  padding: 20px;

  margin-bottom: 10px;

  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.1);

  border-radius: 10px;

  text-decoration: none;

  transition: 0.2s ease;
}

.search-result-item:hover {
  border-color: #caff3d;

  transform: translateY(-2px);
}

.result-category {
  display: block;

  margin-bottom: 6px;

  color: #caff3d;

  font-size: 11px;

  font-weight: 800;

  text-transform: uppercase;
}

.result-title {
  display: block;

  margin-bottom: 6px;

  color: white;

  font-size: 18px;
}

.result-description {
  display: block;

  color: rgba(255,255,255,0.55);

  font-size: 14px;

  line-height: 1.5;
}

.search-no-results {
  padding: 30px 0;

  color: rgba(255,255,255,0.6);
}

.search-no-results strong {
  display: block;

  color: white;

  font-size: 20px;

  margin-bottom: 8px;
}

.search-no-results p {
  margin: 0;
}


/* PREVENT SCROLLING */

body.mobile-menu-open,
body.search-open {
  overflow: hidden;
}


/* MOBILE SEARCH */

@media (max-width: 700px) {

  .search-container {
    width: calc(100% - 28px);

    padding: 40px 0;
  }

  .search-input-wrapper {
    min-height: 62px;

    padding: 0 14px;
  }

  .search-input-wrapper input {
    font-size: 16px;

    padding: 0 12px;
  }

  .search-esc {
    display: none;
  }

}
/* =========================================================
   NIFAROX — INSIGHT ARTICLE PAGE
========================================================= */


/* ---------------------------------------------------------
   ARTICLE HERO
--------------------------------------------------------- */

.article-hero {
  padding: 150px 0 70px;

  background: #071426;

  color: #ffffff;
}

.article-container {
  width: min(1100px, calc(100% - 40px));

  margin: 0 auto;
}

.article-category {
  color: #caff3d;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.15em;
}

.article-hero h1 {
  max-width: 900px;

  margin: 18px 0 24px;

  font-family: "Manrope", sans-serif;

  font-size: clamp(42px, 6vw, 76px);

  line-height: 1.05;

  letter-spacing: -0.04em;
}

.article-intro {
  max-width: 720px;

  margin: 0;

  color: rgba(255,255,255,0.65);

  font-size: 19px;

  line-height: 1.7;
}

.article-meta {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 30px;

  color: rgba(255,255,255,0.45);

  font-size: 13px;
}


/* ---------------------------------------------------------
   ARTICLE IMAGE
--------------------------------------------------------- */

.article-image-section {
  padding: 50px 0 20px;

  background: #f7f7f4;
}

.article-main-image {
  display: block;

  width: 100%;

  height: 550px;

  object-fit: cover;

  border-radius: 16px;
}


/* ---------------------------------------------------------
   ARTICLE CONTENT
--------------------------------------------------------- */

.article-content-section {
  padding: 80px 0;

  background: #f7f7f4;
}

.article-layout {
  width: min(1100px, calc(100% - 40px));

  margin: 0 auto;

  display: grid;

  grid-template-columns: minmax(0, 1fr) 300px;

  gap: 80px;
}

.article-body {
  max-width: 720px;
}

.article-body p {
  margin-bottom: 25px;

  color: #475569;

  font-size: 17px;

  line-height: 1.85;
}

.article-body .article-lead {
  color: #18263a;

  font-size: 21px;

  line-height: 1.7;

  font-weight: 500;
}

.article-body h2 {
  margin-top: 55px;

  margin-bottom: 18px;

  color: #071426;

  font-family: "Manrope", sans-serif;

  font-size: 32px;

  line-height: 1.2;
}


/* ---------------------------------------------------------
   ARTICLE CONCLUSION
--------------------------------------------------------- */

.article-conclusion {
  margin-top: 60px;

  padding: 35px;

  background: #ffffff;

  border-left: 4px solid #caff3d;

  border-radius: 10px;
}

.article-conclusion h2 {
  margin-top: 0;
}


/* ---------------------------------------------------------
   ARTICLE SIDEBAR
--------------------------------------------------------- */

.article-sidebar {
  position: sticky;

  top: 120px;

  align-self: start;
}

.sidebar-card {
  padding: 28px;

  margin-bottom: 20px;

  background: #071426;

  border-radius: 14px;

  color: #ffffff;
}

.sidebar-card span,
.sidebar-links strong {
  color: #caff3d;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.12em;
}

.sidebar-card h3 {
  margin: 15px 0 25px;

  font-family: "Manrope", sans-serif;

  font-size: 24px;

  line-height: 1.25;
}

.sidebar-button {
  display: inline-block;

  padding: 13px 20px;

  background: #caff3d;

  color: #071426;

  border-radius: 7px;

  font-weight: 700;

  text-decoration: none;

  transition: 0.2s ease;
}

.sidebar-button:hover {
  transform: translateY(-2px);
}

.sidebar-links a {
  display: block;

  padding: 13px 0;

  border-bottom: 1px solid rgba(255,255,255,0.1);

  color: rgba(255,255,255,0.7);

  text-decoration: none;

  transition: 0.2s ease;
}

.sidebar-links a:hover {
  color: #caff3d;
}


/* ---------------------------------------------------------
   BACK TO INSIGHTS
--------------------------------------------------------- */

.article-back {
  padding: 30px 20px 80px;

  background: #f7f7f4;

  text-align: center;
}

.article-back a {
  color: #071426;

  font-weight: 700;

  text-decoration: none;
}

.article-back a:hover {
  color: #1769ff;
}


/* ---------------------------------------------------------
   MOBILE ARTICLE
--------------------------------------------------------- */

@media (max-width: 800px) {

  .article-hero {
    padding: 110px 0 55px;
  }

  .article-hero h1 {
    font-size: clamp(38px, 11vw, 55px);
  }

  .article-intro {
    font-size: 17px;
  }

  .article-main-image {
    height: 320px;

    border-radius: 10px;
  }

  .article-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .article-sidebar {
    position: static;
  }

  .article-body h2 {
    font-size: 27px;
  }

  .article-body p {
    font-size: 16px;
  }

  .article-body .article-lead {
    font-size: 19px;
  }

}


/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 500px) {

  .article-container {
    width: calc(100% - 28px);
  }

  .article-hero {
    padding: 100px 0 45px;
  }

  .article-main-image {
    height: 250px;
  }

  .article-content-section {
    padding: 60px 0;
  }

  .article-conclusion {
    padding: 25px;
  }

}
/* =========================================================
   NIFAROX ARTICLE VIEWER
========================================================= */

.article-viewer {
  position: fixed;

  inset: 0;

  z-index: 10000;

  background: #f7f7f4;

  overflow-y: auto;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transform: translateY(20px);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.article-viewer.active {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform: translateY(0);
}

.article-viewer-inner {
  min-height: 100vh;
}


/* ---------------------------------------------------------
   TOP BAR
--------------------------------------------------------- */

.article-viewer-top {
  position: sticky;

  top: 0;

  z-index: 20;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 18px 40px;

  background: rgba(247,247,244,0.94);

  border-bottom: 1px solid rgba(7,20,38,0.08);

  backdrop-filter: blur(15px);
}

.article-back-button {
  color: #071426;

  font-size: 14px;

  font-weight: 700;

  text-decoration: none;
}

.article-back-button:hover {
  color: #1769ff;
}

.article-close {
  width: 44px;

  height: 44px;

  border: 1px solid rgba(7,20,38,0.15);

  border-radius: 50%;

  background: transparent;

  color: #071426;

  font-size: 28px;

  line-height: 1;

  cursor: pointer;

  transition: 0.2s ease;
}

.article-close:hover {
  background: #071426;

  color: #caff3d;
}


/* ---------------------------------------------------------
   ARTICLE HEADER
--------------------------------------------------------- */

.article-page {
  width: min(1200px, calc(100% - 40px));

  margin: 0 auto;

  padding: 90px 0 100px;
}

.article-page-header {
  max-width: 950px;

  margin: 0 auto 55px;

  text-align: center;
}

.article-page-category {
  display: inline-block;

  margin-bottom: 18px;

  color: #1769ff;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.15em;
}

.article-page-header h1 {
  margin: 0;

  color: #071426;

  font-family: "Manrope", sans-serif;

  font-size: clamp(42px, 6vw, 76px);

  line-height: 1.05;

  letter-spacing: -0.04em;
}

.article-page-meta {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  margin-top: 25px;

  color: #718096;

  font-size: 13px;
}


/* ---------------------------------------------------------
   FEATURED IMAGE
--------------------------------------------------------- */

.article-page-image {
  width: 100%;

  margin-bottom: 70px;
}

.article-page-image img {
  display: block;

  width: 100%;

  height: 560px;

  object-fit: cover;

  border-radius: 18px;
}


/* ---------------------------------------------------------
   CONTENT GRID
--------------------------------------------------------- */

.article-page-grid {
  display: grid;

  grid-template-columns: minmax(0, 760px) 300px;

  justify-content: center;

  gap: 80px;
}


/* ---------------------------------------------------------
   ARTICLE CONTENT
--------------------------------------------------------- */

.article-page-content {
  color: #475569;

  font-size: 17px;

  line-height: 1.85;
}

.article-page-content p {
  margin: 0 0 25px;
}

.article-page-content .article-lead {
  margin-bottom: 40px;

  color: #18263a;

  font-size: 21px;

  line-height: 1.7;

  font-weight: 500;
}

.article-page-content h2 {
  margin: 55px 0 18px;

  color: #071426;

  font-family: "Manrope", sans-serif;

  font-size: 32px;

  line-height: 1.2;
}

.article-page-content h2:first-child {
  margin-top: 0;
}


/* ---------------------------------------------------------
   ARTICLE HIGHLIGHT
--------------------------------------------------------- */

.article-highlight {
  margin: 45px 0;

  padding: 30px;

  background: #ffffff;

  border-left: 4px solid #caff3d;

  border-radius: 10px;

  color: #071426;

  font-size: 18px;

  line-height: 1.7;

  font-weight: 600;
}


/* ---------------------------------------------------------
   SIDEBAR
--------------------------------------------------------- */

.article-page-sidebar {
  position: sticky;

  top: 100px;

  align-self: start;
}

.article-sidebar-card {
  padding: 28px;

  margin-bottom: 20px;

  background: #071426;

  border-radius: 14px;

  color: #ffffff;
}

.article-sidebar-card span {
  display: block;

  margin-bottom: 15px;

  color: #caff3d;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.13em;
}

.article-sidebar-card h3 {
  margin: 0 0 15px;

  font-family: "Manrope", sans-serif;

  font-size: 24px;

  line-height: 1.25;
}

.article-sidebar-card p {
  margin: 0 0 22px;

  color: rgba(255,255,255,0.6);

  font-size: 14px;

  line-height: 1.6;
}

.article-sidebar-button {
  display: inline-block;

  padding: 13px 20px;

  background: #caff3d;

  color: #071426;

  border-radius: 7px;

  font-weight: 700;

  text-decoration: none;
}

.article-sidebar-card > a:not(.article-sidebar-button) {
  display: block;

  padding: 12px 0;

  border-bottom: 1px solid rgba(255,255,255,0.1);

  color: rgba(255,255,255,0.7);

  text-decoration: none;
}

.article-sidebar-card > a:not(.article-sidebar-button):hover {
  color: #caff3d;
}


/* ---------------------------------------------------------
   RELATED ARTICLES
--------------------------------------------------------- */

.related-articles {
  margin-top: 120px;

  padding-top: 70px;

  border-top: 1px solid rgba(7,20,38,0.1);
}

.related-heading {
  margin-bottom: 35px;
}

.related-heading > span {
  color: #1769ff;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.14em;
}

.related-heading h2 {
  margin: 10px 0 0;

  color: #071426;

  font-family: "Manrope", sans-serif;

  font-size: 38px;

  line-height: 1.1;
}

.related-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.related-card {
  display: flex;

  min-height: 220px;

  padding: 25px;

  flex-direction: column;

  justify-content: space-between;

  background: #ffffff;

  border: 1px solid rgba(7,20,38,0.08);

  border-radius: 12px;

  text-decoration: none;

  transition: 0.25s ease;
}

.related-card:hover {
  transform: translateY(-5px);

  border-color: #caff3d;

  box-shadow: 0 15px 35px rgba(7,20,38,0.08);
}

.related-card span {
  color: #1769ff;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.12em;
}

.related-card strong {
  display: block;

  margin: 20px 0;

  color: #071426;

  font-family: "Manrope", sans-serif;

  font-size: 20px;

  line-height: 1.3;
}

.related-card small {
  color: #64748b;

  font-weight: 700;
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 900px) {

  .article-page-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .article-page-sidebar {
    position: static;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 700px) {

  .article-viewer-top {
    padding: 14px 18px;
  }

  .article-page {
    width: calc(100% - 28px);

    padding: 60px 0 70px;
  }

  .article-page-header {
    margin-bottom: 35px;
  }

  .article-page-header h1 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .article-page-image {
    margin-bottom: 45px;
  }

  .article-page-image img {
    height: 300px;

    border-radius: 10px;
  }

  .article-page-content {
    font-size: 16px;
  }

  .article-page-content .article-lead {
    font-size: 19px;
  }

  .article-page-content h2 {
    font-size: 27px;

    margin-top: 45px;
  }

  .related-articles {
    margin-top: 80px;

    padding-top: 50px;
  }

  .related-heading h2 {
    font-size: 30px;
  }

}
/* =========================================================
   COOKIE NOTICE FIX
========================================================= */

.cookie-notice {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 18px 20px;

  background: #ffffff;
  border: 1px solid #e5e9ef;
  border-radius: 12px;

  box-shadow: 0 15px 45px rgba(7, 20, 38, 0.16);

  opacity: 1;
  visibility: visible;
  transform: translateY(0);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}


/* HIDE COOKIE NOTICE */

.cookie-notice:not(.active) {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
}


/* COOKIE TEXT */

.cookie-notice strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
}

.cookie-notice p {
  max-width: 390px;
  margin-top: 6px;
  color: #738197;
  font-size: 11px;
  line-height: 1.5;
}


/* BUTTONS */

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-actions button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}


/* ACCEPT */

#cookieAccept {
  background: var(--navy);
  color: white;
}


/* DISMISS */

#cookieDismiss {
  background: #eef1f5;
  color: var(--navy);
}


/* MOBILE */

@media (max-width: 700px) {

  .cookie-notice {
    left: 14px;
    right: 14px;
    bottom: 14px;

    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie-notice p {
    max-width: none;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }

}
=========================================================
   FAQ ACCORDION
========================================================= */

.faq-item {
  border-bottom: 1px solid #dfe5ec;
}

.faq-question {
  width: 100%;
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 20px 0;

  border: 0;
  background: transparent;

  color: var(--navy);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;

  cursor: pointer;
}

.faq-question strong {
  width: 30px;
  height: 30px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #dfe5ec;
  border-radius: 50%;

  color: var(--navy);
  font-size: 18px;
  font-weight: 400;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;

  transition: grid-template-rows 0.35s ease;
}

.faq-answer p {
  overflow: hidden;

  margin: 0;

  color: #718096;
  font-size: 13px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 22px;
}

.faq-item.active .faq-question strong {
  transform: rotate(45deg);
  background: var(--lime);
  border-color: var(--lime);
}
.contact-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon:nth-child(2) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icon:nth-child(2) svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.social-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  transform: translateY(-3px);
}
.contact-socials {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 20px !important;
}

.contact-socials .social-icon {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  margin: 0 !important;

  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 50% !important;

  background: rgba(255,255,255,0.05) !important;

  color: #ffffff !important;
  text-decoration: none !important;

  line-height: 1 !important;
  font-size: 0 !important;

  box-sizing: border-box !important;
}

.contact-socials .social-icon svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;

  max-width: 18px !important;
  max-height: 18px !important;

  fill: currentColor !important;
  stroke: none !important;
}

.contact-socials .social-icon:nth-child(2) svg {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
}

.contact-socials .social-icon:nth-child(2) svg circle:last-child {
  fill: currentColor !important;
  stroke: none !important;
}

.contact-socials .social-icon:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
}
/* =========================================================
   NIFAROX SOCIAL ICONS — FINAL
========================================================= */

.contact-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.contact-socials .social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  margin: 0;

  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;

  background: rgba(255,255,255,0.04);
  color: #ffffff;

  text-decoration: none;
  font-size: 0;
  line-height: 1;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.contact-socials .social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.contact-socials .social-icon:nth-child(2) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-socials .social-icon:nth-child(2) svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.contact-socials .social-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  transform: translateY(-3px);
}
/* NIFAROX SOCIAL ICONS FIX */

.contact-socials a.social-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 42px !important;
  height: 42px !important;

  padding: 0 !important;
  margin: 0 !important;

  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 50% !important;

  background: rgba(255,255,255,0.05) !important;

  color: #ffffff !important;

  font-size: 0 !important;
  line-height: 0 !important;
  text-decoration: none !important;

  box-sizing: border-box !important;
}

.contact-socials a.social-icon svg {
  display: block !important;

  width: 19px !important;
  height: 19px !important;

  visibility: visible !important;
  opacity: 1 !important;

  fill: currentColor !important;
}

.contact-socials a.social-icon:nth-child(2) svg {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
}

.contact-socials a.social-icon:nth-child(2) svg circle:last-child {
  fill: currentColor !important;
  stroke: none !important;
}

.contact-socials a.social-icon:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  transform: translateY(-3px) !important;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;

  color: #ffffff;
  background: rgba(255,255,255,0.04);

  text-decoration: none;

  transition: all 0.25s ease;
}

.footer-social-icon svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.footer-social-icon:nth-child(3) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social-icon:nth-child(3) svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.footer-social-icon:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  transform: translateY(-3px);
}
