@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("https://domain.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://domain.com/fonts/Gilroy-Regular.woff2") format("woff2");
}
:root {
  --light-color: #ffffff;
  --dark-color: #000000;
  --primary-color: #123453;
  --accent-color: #bc8c62;
  --warning-color: red;
}

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

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

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark-color);
  background: #e5e7eb;
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

a {
  transition: all 0.3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--dark-color);
  width: 100%;
  transition: all 0.3s ease;
}

.error-message {
  font-size: 0.9rem;
  color: red;
  font-weight: 500;
}

/* header */

.hd-top-st {
  background-color: #1e1e1e;
  padding: clamp(15px, 3vw, 5px) 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.6s ease-in-out;
}

.plot-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 50px);
  animation: elegantReveal 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.elite-brand-portal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.elite-brand-portal:hover {
  transform: translateY(-3px);
  filter: brightness(1.2) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.15));
}

.symbol-graphic {
  height: clamp(45px, 6vw, 55px);
  width: auto;
  transition: transform 0.5s ease;
}

.elite-brand-portal:hover .symbol-graphic {
  transform: rotate(10deg) scale(1.1);
}

.brand-title {
  color: #f3f4f6;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.5s ease;
}

.elite-brand-portal:hover .brand-title {
  color: #d4af37;
}

.toggle-interface {
  display: none;
}

@media screen and (max-width: 1200px) {
  .toggle-interface {
    display: flex;
    align-items: center;
  }
}

.core-navigation-hub .navigation-elements {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1200px) {
  .core-navigation-hub .navigation-elements {
    display: flex;
    align-items: center;
    gap: clamp(30px, 4vw, 40px);
  }
}

.link-node {
  position: relative;
  overflow: hidden;
}

.portal-anchor {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 19px);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.burger {
  width: 35px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.burger::before,
.burger::after,
.burger span {
  width: 100%;
  height: 5px;
  background: #e5e7eb;
  border-radius: 3px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger::before {
  content: "";
}

.burger::after {
  content: "";
}

.burger.is-open::before {
  transform: translateY(11.5px) rotate(135deg);
}

.burger.is-open::after {
  transform: translateY(-11.5px) rotate(-135deg);
}

.burger.is-open span {
  transform: scale(0);
  opacity: 0;
}

@media screen and (min-width: 1200px) {
  .burger {
    display: none;
  }
}

.mob-desk-mob {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: radial-gradient(circle at bottom, #1e293b, #0f172a);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 0.6s ease;
  z-index: 98;
}

.mob-desk-mob.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.portable-nav-collection {
  list-style: none;
  margin: 0;
  padding: clamp(25px, 6vw, 35px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.portable-link-unit {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.mob-desk-mob.is-open .portable-link-unit {
  opacity: 1;
  transform: scale(1);
}

.mob-desk-mob.is-open .portable-link-unit:nth-child(1) {
  transition-delay: 0.15s;
}

.mob-desk-mob.is-open .portable-link-unit:nth-child(2) {
  transition-delay: 0.25s;
}

.mob-desk-mob.is-open .portable-link-unit:nth-child(3) {
  transition-delay: 0.35s;
}

.mob-desk-mob.is-open .portable-link-unit:nth-child(4) {
  transition-delay: 0.45s;
}

.mobile-nav-connection {
  color: #e5e7eb;
  text-decoration: none;
  font-size: clamp(22px, 4.5vw, 26px);
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 12px;
  transition: background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}

.mobile-nav-connection:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

@keyframes elegantReveal {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .plot-nav {
    gap: 15px;
  }
  .symbol-graphic {
    height: 45px;
  }
  .brand-title {
    font-size: 20px;
  }
  .mobile-nav-connection {
    font-size: 22px;
  }
}

/* --------------------hero---------------------- */

.start_section {
  padding: clamp(70px, 10vh, 100px) 0;
  background: #e5e7eb;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 140px;
}

.start_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: -1;
}

.vcup {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}

@media screen and (min-width: 992px) {
  .vcup {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: clamp(30px, 6vw, 60px);
  }
}

.dynamic-text-container {
  max-width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  animation: smoothAscent 1s ease-out forwards;
}

@media screen and (min-width: 992px) {
  .dynamic-text-container {
    max-width: 45%;
    text-align: left;
  }
}

.majestic-headline {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.majestic-headline::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #0c3444;
  transition: width 0.4s ease, background 0.4s ease;
}

@media screen and (min-width: 992px) {
  .majestic-headline::after {
    left: 0;
    transform: none;
  }
}

.majestic-headline:hover::after {
  width: 100px;
  background: #eab308;
}

.articulate-statement {
  font-size: clamp(16px, 2vw, 18px);
  color: #000;
  line-height: 1.6;
  margin-bottom: 0px;
  font-weight: 400;
  transition: color 0.3s ease;
}

/* .articulate-statement:hover {
  color: #f5f5f5;
} */

.vibrant-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 30px);
  background: #0c3444;
  color: #1a2a44;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 200px;
}

.vibrant-action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.vibrant-action-btn:hover {
  background: #eab308;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.vibrant-action-btn:hover::before {
  left: 100%;
}

.vcupvv {
  max-width: 100%;
  opacity: 0;
  transform: scale(0.95);
  animation: gentleZoom 1.2s ease-out 0.2s forwards;
}

@media screen and (min-width: 992px) {
  .vcupvv {
    max-width: 50%;
  }
}

.radiant-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.radiant-image:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}

@keyframes smoothAscent {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentleZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .majestic-headline {
    font-size: clamp(24px, 6vw, 32px);
  }
  .articulate-statement {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  .vibrant-action-btn {
    padding: 10px 20px;
    font-size: 14px;
    max-width: 160px;
  }
  .majestic-headline::after {
    width: 50px;
  }
  .majestic-headline:hover::after {
    width: 80px;
  }
}

/* ----------------------stats-section---------------------------- */

.sectionpand {
  padding: clamp(50px, 12vh, 120px) 0;
  background: #e5e7eb;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../img/bg.webp");
  background-size: cover;
  background-position: center;
}

.sectionpand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0.4;
  z-index: -1;
}

.noble-metrics-display {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(220px, 28vw, 280px), 1fr)
  );
  gap: clamp(25px, 4vw, 35px);
  justify-items: center;
  padding: clamp(30px, 5vw, 50px) 0;
}
.ndst {
  grid-template-columns: repeat(1, minmax(clamp(220px, 28vw, 280px), 1fr));
}
.ndst .metric-unit {
  background: #fff;
  max-width: 100%;
}
.metric-unit:hover {
  color: #000 !important;
}

.metric-unit {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(25px, 4vw, 35px);
  text-align: center;
  transition: transform 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: scale(0.9) rotate(-2deg);
  animation: metricPop 1.1s ease-out forwards;
  position: relative;
  width: 100%;
  max-width: 320px;
  backdrop-filter: blur(10px);
  transform: scale(1.05) rotate(0deg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.metric-unit:nth-child(1) {
  animation-delay: 0.1s;
}

.metric-unit:nth-child(2) {
  animation-delay: 0.3s;
}

.metric-unit:nth-child(3) {
  animation-delay: 0.5s;
}

.metric-unit:nth-child(4) {
  animation-delay: 0.7s;
}

.metric-unit:hover {
  transform: scale(1.05) rotate(0deg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.metric-unit:hover::after {
  left: 100%;
}

.metric-value {
  font-size: clamp(40px, 6.5vw, 52px);
  font-weight: 900;
  color: #1c1c1c;
  margin: 0 0 15px 0;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.metric-unit:hover .metric-value::before {
  width: 70px;
}

.metric-caption {
  font-size: clamp(15px, 2.2vw, 17px);
  color: #1c1c1c;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.ndst .metric-unit:hover .metric-caption {
  color: #fff;
}
.sgt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sgt .metric-unit {
  width: 283px;
  height: 283px;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  background: #fff;
}

@keyframes metricPop {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .noble-metrics-display {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .metric-unit {
    max-width: 100%;
    padding: 20px;
  }
  .metric-value {
    font-size: clamp(32px, 5.5vw, 40px);
  }
  .metric-caption {
    font-size: clamp(14px, 2vw, 16px);
  }
}

/* ----------------------stats-section---------------------------- */

/* ----------------------refined-info-section---------------------------- */

.sivvopst {
  padding: clamp(60px, 10vh, 110px) 0;
  background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sivvopst::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: -1;
}

.illustrious-content-frame {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: perspective(800px) rotateX(10deg);
  animation: frameReveal 1.4s ease-out forwards;
}

.dtol {
  font-size: clamp(32px, 4.8vw, 46px);
  font-weight: 800;
  color: #f5f5f5;
  margin-bottom: 25px;
  line-height: 1.25;
  position: relative;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.dtol::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #0c3444, #eab308);
  transition: width 0.5s ease, background 0.5s ease;
}

.dtol:hover::after {
  width: 120px;
  background: linear-gradient(to right, #eab308, #0c3444);
}

.refined-narrative-block {
  max-width: 850px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  animation: narrativeSlide 1.5s ease-out 0.2s forwards;
}

.polished-text {
  font-size: clamp(17px, 2.3vw, 19px);
  color: #d1d5db;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.4px;
  transition: color 0.4s ease;
}

.polished-text:hover {
  color: #f5f5f5;
}

.accentuated-brand {
  font-weight: 700;
  color: #0c3444;
  position: relative;
  padding: 0 4px;
}

.accentuated-brand::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #eab308;
  transition: width 0.4s ease;
}

.accentuated-brand:hover::before {
  width: 100%;
}

@keyframes frameReveal {
  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg);
  }
}

@keyframes narrativeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dtol {
    font-size: clamp(26px, 5.5vw, 34px);
  }
  .polished-text {
    font-size: clamp(15px, 2.8vw, 17px);
  }
  .dtol::after {
    width: 60px;
  }
  .dtol:hover::after {
    width: 90px;
  }
}

/* ----------------------refined-info-section---------------------------- */

/* ----------------------services---------------------------- */

.showsnowgrow {
  padding: clamp(70px, 11vh, 120px) 0;
  background: #e5e7eb;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.showsnowgrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  opacity: 0.5;
  z-index: -1;
}

.majestic-section-header {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  color: #000;
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  position: relative;
  opacity: 0;
  transform: scale(0.9);
  animation: headerZoom 1.2s ease-out forwards;
}

.majestic-section-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #0c3444;
  transition: width 0.5s ease;
}

.majestic-section-header:hover::after {
  width: 120px;
}

.opulent-service-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(260px, 32vw, 320px), 1fr)
  );
  gap: clamp(20px, 3.5vw, 30px);
  justify-items: center;
}

.fverrra {
  background: #0c3444;
  border-radius: 16px;
  padding: clamp(20px, 3.5vw, 30px);
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
  opacity: 0;
  transform: translateY(30px) rotateX(10deg);
  animation: blockRise 1s ease-out forwards;
  position: relative;
  max-width: 360px;
  width: 100%;
  backdrop-filter: blur(8px);
}

.fverrra:nth-child(1) {
  animation-delay: 0.1s;
}
.fverrra:nth-child(2) {
  animation-delay: 0.3s;
}
.fverrra:nth-child(3) {
  animation-delay: 0.5s;
}

.fverrra:hover {
  transform: translateY(-10px) rotateX(0deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.fverrra:hover::before {
  left: 100%;
}

.ig {
  color: #f59e0b;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  transition: transform 0.6s ease, color 0.4s ease;
}

.fverrra:hover .ig {
  transform: scale(1.2) rotate(15deg);
  /* color: #0c3444; */
}

.scnewpol {
  font-size: clamp(22px, 2.8vw, 26px);
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.sntxt {
  font-size: clamp(15px, 2vw, 17px);
  color: #cbd5e1;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
  transition: color 0.4s ease;
}

.fverrra:hover .sntxt {
  color: #f5f5f5;
}

@keyframes headerZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes blockRise {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .showsnowgrow {
    padding: clamp(40px, 8vh, 70px) 0;
  }
  .majestic-section-header {
    font-size: clamp(28px, 5.5vw, 38px);
  }
  .opulent-service-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .fverrra {
    max-width: 100%;
    padding: 20px;
  }
  .scnewpol {
    font-size: clamp(20px, 2.5vw, 24px);
  }
  .sntxt {
    font-size: clamp(14px, 2vw, 16px);
  }
}

/* -----------------------help------------------------ */

.sectionzvott12 {
  padding: clamp(60px, 10vh, 110px) 0;
  background: linear-gradient(to bottom, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.gdddr {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  opacity: 0;
  transform: translateY(-25px);
  animation: titleAscend 1s ease-out forwards;
  letter-spacing: 0.4px;
}

.elite-offer-array {
  display: grid;
  grid-template-columns: repeat(3, minmax(clamp(280px, 30vw, 340px), 1fr));
  gap: clamp(20px, 3vw, 30px);
  justify-items: center;
}

@media (max-width: 992px) {
  .elite-offer-array {
    grid-template-columns: 1fr;
  }
}

.prime-offer-card {
  background: #ffffff;
  border-radius: 10px;
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.97);
  animation: cardPop 0.8s ease-out forwards;
  max-width: 600px;
  width: 100%;
}
.prime-offer-card img {
  width: 100%;
  margin-bottom: 20px;
  max-height: 300px;
  object-fit: cover;
}

.prime-offer-card:nth-child(1) {
  animation-delay: 0.1s;
}
.prime-offer-card:nth-child(2) {
  animation-delay: 0.3s;
}
.prime-offer-card:nth-child(3) {
  animation-delay: 0.5s;
}
.prime-offer-card:nth-child(4) {
  animation-delay: 0.7s;
}

.prime-offer-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-headline {
  font-size: clamp(22px, 2.6vw, 25px);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  letter-spacing: 0.2px;
}

.card-narrative {
  font-size: clamp(15px, 2vw, 17px);
  color: #475569;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.prime-offer-card:hover .card-narrative {
  color: #3464b1;
}

.vibrant-action-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(10px, 1.5vw, 12px) clamp(18px, 2.5vw, 22px);
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.vibrant-action-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.card-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.vibrant-action-link:hover .card-icon {
  transform: translateX(5px);
}

@keyframes titleAscend {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sectionzvott12 {
    padding: clamp(40px, 8vh, 70px) 0;
  }
  .gdddr {
    font-size: clamp(26px, 5vw, 34px);
  }
  .prime-offer-card {
    max-width: 100%;
    padding: 20px;
  }
  .card-headline {
    font-size: clamp(20px, 2.5vw, 23px);
  }
  .card-narrative {
    font-size: clamp(14px, 2vw, 16px);
  }
  .vibrant-action-link {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* ----------------------noble-commitment-section---------------------------- */

.zicfa {
  padding: clamp(60px, 10vh, 100px) 0;
  background: linear-gradient(to bottom, #1f2a44 0%, #2e3b5e 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.stately-integrity-panel {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: panelRise 1.2s ease-out forwards;
}

.regal-title {
  font-size: clamp(34px, 4.7vw, 46px);
  font-weight: 800;
  color: #e5e7eb;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: color 0.3s ease;
}

.dignified-content-block {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.95);
  animation: contentScale 1.3s ease-out 0.2s forwards;
}

.articulate-text {
  font-size: clamp(17px, 2.2vw, 19px);
  color: #d1d5db;
  line-height: 1.75;
  font-weight: 400;
  margin: 0;
  transition: color 0.3s ease;
}

.articulate-text:hover {
  color: #f5f5f5;
}

.prime-accent {
  font-weight: 700;
  color: #0c3444;
  padding: 0 5px;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.prime-accent:hover {
  background: rgba(250, 204, 21, 0.1);
}

@keyframes panelRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contentScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .zicfa {
    padding: clamp(40px, 8vh, 70px) 0;
  }
  .regal-title {
    font-size: clamp(26px, 5.5vw, 34px);
  }
  .articulate-text {
    font-size: clamp(15px, 2.8vw, 17px);
  }
}

/* ----------------------noble-commitment-section---------------------------- */

/* ----------------------join, form---------------------------- */

.areaost {
  padding: clamp(70px, 11vh, 120px) 0;
  background: #e5e7eb;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.oscrijr {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 4vw, 40px);
  align-items: center;
}

@media (min-width: 992px) {
  .oscrijr {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.regal-info-block {
  max-width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: infoFade 1s ease-out forwards;
}

@media (min-width: 992px) {
  .regal-info-block {
    max-width: 48%;
  }
}

.stately-main-title {
  font-size: clamp(32px, 4.5vw, 42px);
  font-weight: 800;
  color: #000;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

@media (min-width: 992px) {
  .stately-main-title {
    text-align: left;
  }
}

.polished-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: #c7d2fe;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
  transition: color 0.3s ease;
}

@media (min-width: 992px) {
  .polished-subtitle {
    text-align: left;
  }
}

.polished-subtitle:hover {
  color: #000;
}

.noble-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-entry {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateX(-15px);
  animation: entrySlide 0.9s ease-out forwards;
}

.contact-entry:nth-child(1) {
  animation-delay: 0.1s;
}
.contact-entry:nth-child(2) {
  animation-delay: 0.3s;
}
.contact-entry:nth-child(3) {
  animation-delay: 0.5s;
}

.entry-icon {
  width: 22px;
  height: 22px;
  color: #155a76;
  margin-top: 2px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-entry:hover .entry-icon {
  transform: scale(1.15);
  color: #0c3444;
}

.entry-title {
  font-size: clamp(17px, 1.9vw, 19px);
  font-weight: 600;
  color: #e6f0ff;
  margin: 0;
}

.entry-detail {
  font-size: clamp(14px, 1.7vw, 16px);
  color: #c7d2fe;
  margin: 4px 0 0 0;
  transition: color 0.3s ease;
}

.entry-detail a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.compliance-notice {
  margin-top: 25px;
  opacity: 0;
  transform: translateY(15px);
  animation: entrySlide 0.9s ease-out 0.7s forwards;
}

.formpostje {
  max-width: 100%;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.98);
  animation: formScale 1s ease-out 0.2s forwards;
}

@media (min-width: 992px) {
  .formpostje {
    max-width: 48%;
  }
}

.join__form {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 22px);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-caption {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  color: #1e293b;
}

.form-input-field,
.form-textarea-field {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: clamp(14px, 1.5vw, 16px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input-field:focus,
.form-textarea-field:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  outline: none;
}

.form-textarea-field {
  resize: vertical;
  min-height: 100px;
}

.form-disclaimer {
  font-size: clamp(12px, 1.3vw, 14px);
  color: #475569;
  text-align: center;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.form-disclaimer:hover {
  color: #1e293b;
}

.disclaimer-link {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.disclaimer-link:hover {
  color: #1e40af;
}

.form-submit-btn {
  max-width: 180px;
  margin: 0 auto;
  padding: 10px 0;
  background: #0c3444;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

@keyframes infoFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes entrySlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes formScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .areaost {
    padding: clamp(40px, 8vh, 70px) 0;
  }
  .stately-main-title {
    font-size: clamp(24px, 5vw, 32px);
  }
  .polished-subtitle {
    font-size: clamp(14px, 2vw, 16px);
  }
  .entry-title {
    font-size: clamp(16px, 1.8vw, 18px);
  }
  .entry-detail {
    font-size: clamp(13px, 1.6vw, 15px);
  }
  .formpostje {
    padding: 18px;
  }
  .form-caption {
    font-size: 14px;
  }
  .form-input-field,
  .form-textarea-field {
    font-size: 14px;
  }
  .form-disclaimer {
    font-size: 12px;
  }
  .form-submit-btn {
    font-size: 14px;
    max-width: 160px;
  }
}

/* --------------------------footer--------------------------- */

.ffblockpanel {
  padding: clamp(50px, 9vh, 90px) 0;
  background-color: #0b0e14;
  overflow: hidden;
  z-index: 1;
}

.stately-disclaimer-area {
  margin: 0 auto clamp(25px, 4vw, 35px) auto;
  opacity: 0;
  transform: translateY(15px);
  animation: disclaimerSlide 1.1s ease-out forwards;
}

.articulate-disclaimer {
  font-size: clamp(14px, 1.7vw, 16px);
  color: #c7d2fe;
  line-height: 1.65;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

/* .articulate-disclaimer:hover {
  color: #1e293b;
} */

.articulate-disclaimer strong {
  color: #fff;
  font-weight: 600;
}

/* .articulate-disclaimer a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.articulate-disclaimer a:hover {
  color: #1e40af;
} */

.regal-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(15px, 2.5vw, 25px);
  opacity: 0;
  transform: scale(0.98);
  animation: contentScale 1s ease-out 0.2s forwards;
}

@media (max-width: 768px) {
  .regal-footer-content {
    flex-direction: column;
    gap: 18px;
  }
}

.nobleopyright-notice,
.noble-copyright-notice {
  font-size: clamp(13px, 1.5vw, 15px);
  color: #fff;
  font-weight: 400;
  transition: color 0.3s ease;
}

.prime-nav-collection {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.8vw, 20px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-unit {
  opacity: 0;
  transform: translateX(-10px);
  animation: navSlide 0.7s ease-out forwards;
}

.footer-nav-unit:nth-child(1) {
  animation-delay: 0.3s;
}
.footer-nav-unit:nth-child(2) {
  animation-delay: 0.4s;
}
.footer-nav-unit:nth-child(3) {
  animation-delay: 0.5s;
}
.footer-nav-unit:nth-child(4) {
  animation-delay: 0.6s;
}

.distinctive-nav-anchor {
  font-size: clamp(13px, 1.5vw, 15px);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.distinctive-nav-anchor:hover {
  color: #06b6d4;
  transform: translateX(3px);
}

@keyframes disclaimerSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contentScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes navSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ffblockpanel {
    padding: clamp(30px, 7vh, 50px) 0;
  }
  .articulate-disclaimer {
    font-size: clamp(12px, 1.4vw, 14px);
  }
  .nobleopyright-notice,
  .noble-copyright-notice {
    font-size: clamp(12px, 1.4vw, 14px);
    text-align: center;
  }
  .prime-nav-collection {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .distinctive-nav-anchor {
    font-size: clamp(12px, 1.4vw, 14px);
  }
}

/* -------------------------cookie------------------------------- */

.elegant-cookie-notice {
  position: fixed;
  bottom: clamp(20px, 3vw, 30px);
  right: clamp(20px, 3vw, 30px);
  max-width: clamp(300px, 35vw, 400px);
  width: 90%;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 31, 63, 0.2);
  z-index: 1000;
  opacity: 0;
  transform: translateY(60px);
  animation: cookieSlideUp 0.8s ease-out forwards;
  transition: box-shadow 0.4s ease;
}

.elegant-cookie-notice:hover {
  box-shadow: 0 12px 35px rgba(0, 31, 63, 0.3);
}

.refined-cookie-content {
  padding: clamp(20px, 3vw, 25px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.prestige-cookie-heading {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 15px;
  position: relative;
}

.prestige-cookie-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #ffd700, #d4af37);
  margin: 10px auto 0;
  transition: width 0.4s ease;
}

.prestige-cookie-heading:hover::after {
  width: 80px;
}

.sophisticated-cookie-text {
  font-size: clamp(13px, 1.6vw, 14px);
  color: #333333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.noble-cookie-actions {
  display: flex;
  gap: clamp(15px, 2vw, 20px);
}

.luxury-accept-button {
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
  background: linear-gradient(135deg, #001f3f 0%, #004080 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.luxury-accept-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 31, 63, 0.3);
}

.luxury-accept-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0);
}

.luxury-accept-button:hover::before {
  opacity: 1;
  transform: scale(1);
}

.luxury-reject-button {
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
  background: #e8edf3;
  color: #001f3f;
  border: none;
  border-radius: 50px;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.luxury-reject-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 31, 63, 0.2);
  background: #d0d4d8;
}

.luxury-reject-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0);
}

.luxury-reject-button:hover::before {
  opacity: 1;
  transform: scale(1);
}

@keyframes cookieSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .elegant-cookie-notice {
    max-width: 90%;
    bottom: 15px;
    right: 15px;
    padding: 15px;
  }
  .prestige-cookie-heading {
    font-size: clamp(16px, 2vw, 18px);
  }
  .sophisticated-cookie-text {
    font-size: clamp(12px, 1.5vw, 13px);
  }
  .luxury-accept-button,
  .luxury-reject-button {
    padding: 8px 20px;
    font-size: clamp(12px, 1.4vw, 13px);
  }
}

/* -------------------------pages--------------------------- */

.main-content {
  min-height: 100vh;
  
}

.ptdcftor {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 8vh, 60px) 0;
  background: #e5e7eb;
}

.ptdcftor-h {
  font-size: clamp(28px, 5vw, 36px);
  margin-bottom: 32px;
  text-align: center;
  color: #0c3444;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.8s ease-out forwards;
}

.ptdcftor-c {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.ptdcftor-c p {
  margin-bottom: 20px;
  transition: color 0.3s ease;
  color: #c7d2fe;
}

.ptdcftor-c h2 {
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: 16px;
  color: #e6f0ff;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.ptdcftor-c h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #0c3444;
  transition: width 0.3s ease;
}

.ptdcftor-c h2:hover::after {
  width: 100px;
}

.ptdcftor-c ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.ptdcftor-c li {
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  list-style-type: disc;
  color: #c7d2fe;
}

.ptdcftor-c li::marker {
  color: #c7d2fe;
}

.ptdcftor-c li:hover {
  transform: translateX(5px);
}

.ptdcftor-c a {
  color: #4da8ff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.ptdcftor-c a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #4da8ff;
  transition: width 0.3s ease;
}

.ptdcftor-c a:hover {
  color: #7373d7;
}

.ptdcftor-c a:hover::after {
  width: 100%;
}

.policy-action-btn {
  max-width: 180px;
  width: 100%;
  margin: 32px auto 0;
  padding: 12px 0;
  background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
  color: #ffffff;
  text-align: center;
  display: block;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.policy-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(77, 168, 255, 0.4);
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ptdcftor-h {
    font-size: clamp(24px, 6vw, 32px);
  }
  .ptdcftor-c {
    font-size: 14px;
  }
  .ptdcftor-c h2 {
    font-size: 20px;
  }
  .policy-action-btn {
    padding: 10px 0;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .ptdcftor {
    padding: 30px 0;
  }
  .ptdcftor-h {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .ptdcftor-c {
    font-size: 13px;
  }
  .ptdcftor-c h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .ptdcftor-c ul {
    margin-left: 15px;
  }
  .ptdcftor-c li {
    margin-bottom: 8px;
  }

  .policy-action-btn {
    max-width: 160px;
    margin-top: 20px;
    padding: 8px 0;
  }
}
.info-toggle {
  cursor: pointer;
  /* border: 1px solid #e2e8f0; */
  border-radius: 8px;
  padding: 12px 16px;
  background: transparent;
  transition: background 0.3s ease;
}

.info-toggle:hover {
  /* background: #f1f5f9; */
}

.info-toggle summary {
  font-weight: bold;
  list-style: none;
}

.info-toggle[open] summary {
  color: #4f46e5;
}
.refined-narrative-block {
  margin-bottom: 30px;
  width: 50%;
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  transition: 0.6s;
  transform: scale(1);
}
.refined-narrative-block img:hover {
  transform: scale(0.97) !important;
  transition: 0.6s;
}
.block-ot-hub {
  display: flex;
  flex-wrap: wrap;
}
.refined-narrative-block p {
  margin-top: 20px;
}
.refined-narrative-block .details-content {
  display: none;
}
.refined-narrative-block.open .details-content {
  display: block;
}
@media screen and (max-width: 800px) {
  .refined-narrative-block {
    width: 100%;
  }
}

.accordion-summary {
  cursor: pointer;
  font-weight: bold;
  font-size: 22px;
  background: transparent;
  text-align: left;
  color: #fff;
}
.accordion-item {
  background: transparent;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}
.accordion-item .accordion-content {
  display: none;
  padding: 10px;
  border-left: 3px solid #4f46e5;
  margin-bottom: 10px;
  background: transparent;
  text-align: left;
  color: #fff;
}
.accordion-item .accordion-content .prime-accent {
  color: #fff;
}

.accordion-item.open .accordion-content {
  display: block;
}

.elipse-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 260px;
  height: 75px;
  margin-bottom: 40px;
  margin-top: 40px;
  position: relative;
  color: #c7d2fe;
  padding-left: 30px;
  padding-right: 30px;
}
.elipse-link .elipse {
  border: 1px solid #0c3444;
  box-sizing: border-box;
  transform: rotate(-21.99deg);
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  position: absolute;
}

.elipse-link .e1 {
  transform: rotate(-21.99deg);
  transition: 0.3s;
}
.elipse-link .e2 {
  transform: rotate(-10.86deg);
  transition: 0.3s;
}
.elipse-link:hover .e1 {
  transform: rotate(-10.99deg);
  transition: 0.3s;
}

.elipse-link:hover .e2 {
  transform: rotate(0.86deg);
  transition: 0.3s;
}
.prime-offer-card .elipse-link {
  color: #c7d2fe;
}
.section-f-a {
  background: #0c3444;
}

.block-ff {
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 15px;
  margin-top: 50px;
  color: #000;
  width: 100%;
  box-shadow: 1px 4px 4px rgba(0, 0, 0, 0.15);
}

.bt-th {
  display: flex;
  justify-content: center;
}
.bt-th a::after {
  height: 0px;
}

.bfzicfa {
  display: flex;

  align-items: stretch;
}
.bfzicfa .bl {
  max-width: 50%;
  padding: 0px 10px;
  flex: 1;
}
.bfzicfa .bl img {
  height: 100%;
}
.bfzicfa .dignified-content-block {
  max-width: 360px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .bfzicfa .bl {
    max-width: 100%;
    width: 100%;
    flex: auto;
  }
  .bfzicfa {
    flex-wrap: wrap;
    justify-content: center;
  }
  .bfzicfa .dignified-content-block {
    max-width: 100%;
    width: 100%;
  }
}

/* ====================== AUR THEME (new unique styles) ====================== */

/* Accessibility helpers */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.aur-skip-link {
  position: fixed;
  left: -9999px;
  top: 16px;
  background: #7c3aed;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
  z-index: 9999;
}
.aur-skip-link:focus {
  left: 16px;
}

/* Palette (direct usage for isolation) */
/* bg: #0b0e14, surface: #141a24, text: #e6f0ff, primary: #7c3aed, secondary: #06b6d4, accent: #22c55e */

/* Header */
.aur-header {
  background: linear-gradient(180deg, #0b0e14 0%, #141a24 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.aur-logo {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.aur-nav-list {
  gap: clamp(18px, 3vw, 28px);
}
.aur-nav-link {
  color: #e6f0ff;
  font-weight: 700;
  position: relative;
}
.aur-nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #06b6d4, transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}
.aur-nav-link:hover {
  color: #06b6d4;
}
.aur-nav-link:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.aur-nav-link:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.6);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Burger */
.aur-burger::before,
.aur-burger::after,
.aur-burger span {
  background: #e6f0ff;
}

/* Mobile menu */
.aur-mobile-menu {
  background: linear-gradient(
    180deg,
    rgba(20, 26, 36, 0.98) 0%,
    rgba(11, 14, 20, 0.98) 100%
  );
  border-top: 1px solid rgba(124, 58, 237, 0.25);
}
.aur-mobile-link {
  color: #e6f0ff;
}
.aur-mobile-link:hover {
  color: #7c3aed;
}

/* Hero */
.aur-hero {
  background: radial-gradient(
      1200px 400px at 10% -10%,
      rgba(124, 58, 237, 0.45),
      transparent 60%
    ),
    radial-gradient(
      800px 300px at 90% 0%,
      rgba(6, 182, 212, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, #0b0e14 0%, #141a24 100%);
  padding-top: 140px;
}
.aur-hero-title {
  color: #e6f0ff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}
.aur-hero-title::after {
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
}
.aur-hero-subtitle {
  color: #c7d2fe !important;
}
.aur-hero-media .aur-hero-image {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.2), 0 4px 20px rgba(0, 0, 0, 0.45);
}

/* Ellipse CTA */
.aur-cta-ellipse {
  color: #e6f0ff;
}
.aur-cta-ellipse .aur-ellipse {
  border-color: #7c3aed;
}
.aur-cta-ellipse:hover .aur-ellipse {
  border-color: #06b6d4;
}

/* About */
.aur-about {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}
.aur-section-title {
  color: #e6f0ff;
}
.aur-about-list .aur-feature {
  background: rgba(20, 26, 36, 0.4);
  border: 1px solid rgba(124, 58, 237, 0.2);
}
.aur-feature-text {
  color: #c7d2fe;
}

/* Stats */
.aur-stats {
  background: linear-gradient(180deg, #141a24 0%, #0b0e14 100%);
}
.aur-stats-grid {
  gap: 28px;
}
.aur-stat-card {
  background: rgba(20, 26, 36, 0.65);
  border: 1px solid rgba(6, 182, 212, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.aur-stat-value {
  color: #06b6d4;
  text-shadow: 0 6px 18px rgba(6, 182, 212, 0.25);
}
.aur-stat-caption {
  color: #1f2123;
}

/* Benefits cards */
.aur-benefits {
  background: linear-gradient(180deg, #0b0e14 0%, #141a24 100%);
}
.aur-card-grid {
  gap: 24px;
}
.aur-card {
  background: #1b2433;
  border: 1px solid rgba(124, 58, 237, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  color: #dbeafe;
  transform: perspective(1000px) translateZ(0);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease;
}
.aur-card:hover {
  transform: perspective(1000px) translateZ(6px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 16px 50px rgba(124, 58, 237, 0.25);
}
.aur-card-title {
  color: #e6f0ff;
}
.aur-card-text {
  color: #c7d2fe;
}

/* Audience/services */
.aur-audience {
  background: linear-gradient(180deg, #141a24 0%, #0b0e14 100%);
}
.aur-service-grid {
  gap: 22px;
}
.aur-service-item {
  background: linear-gradient(
    145deg,
    rgba(124, 58, 237, 0.22),
    rgba(6, 182, 212, 0.18)
  );
  border: 1px solid rgba(6, 182, 212, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 40px rgba(0, 0, 0, 0.45);
}
.aur-service-icon {
  color: #22c55e;
}
.aur-service-title {
  color: #e6f0ff;
}
.aur-service-text {
  color: #c7d2fe;
}
.aur-service-item:hover {
  box-shadow: 0 22px 60px rgba(6, 182, 212, 0.25);
}

/* Integrity/accordion */
.aur-integrity {
  background: linear-gradient(180deg, #0b0e14 0%, #141a24 100%);
}
.aur-integrity-panel .aur-section-title {
  color: #e6f0ff;
}
.aur-integrity-content .accordion-summary {
  color: #e6f0ff;
}
.aur-integrity-content .accordion-item {
  border-bottom-color: rgba(230, 240, 255, 0.2);
}
.aur-integrity-content .accordion-content {
  color: #c7d2fe;
}

/* Join/form */
.aur-join {
  background: linear-gradient(180deg, #141a24 0%, #0b0e14 100%);
}
.aur-form-card {
  background: #0f172a;
  border: 1px solid rgba(124, 58, 237, 0.25);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}
.aur-label {
  color: #c7d2fe;
}
.aur-input,
.aur-textarea {
  background: #0b1220;
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: #e6f0ff;
}
.aur-input:focus,
.aur-textarea:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.25);
}
.aur-form-note {
  color: #93c5fd;
}
.aur-inline-link {
  color: #06b6d4;
}
.aur-inline-link:hover {
  color: #7c3aed;
}
.aur-btn {
  background: linear-gradient(90deg, #7c3aed 0%, #06b6d4 100%);
  color: #0b0e14;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  padding: 12px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.2);
}
.aur-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(124, 58, 237, 0.28);
  filter: brightness(1.05);
}
.aur-btn.alt {
  background: #162032;
  color: #e6f0ff;
  border: 1px solid rgba(6, 182, 212, 0.35);
}

/* Error state harmonized */
.aur-form-card .error-message {
  color: #ef4444;
}

/* Footer */
.aur-footer {
  background: #0b0e14;
}
.aur-footer-text {
  color: #c7d2fe;
}
.aur-footer-link {
  color: #e6f0ff;
}
.aur-footer-link:hover {
  color: #06b6d4;
}

/* Cookie banner */
.aur-cookie {
  background: #141a24;
  border: 1px solid rgba(124, 58, 237, 0.25);
}
.aur-cookie-title {
  color: #e6f0ff;
}
.aur-cookie-text {
  color: #c7d2fe;
}
.aur-cookie-actions .aur-btn {
  border-radius: 999px;
}

/* Focus visibility generic */
.aur-hero a:focus-visible,
.aur-benefits a:focus-visible,
.aur-footer a:focus-visible,
.aur-join a:focus-visible {
  outline: 3px solid rgba(6, 182, 212, 0.6);
  outline-offset: 3px;
  border-radius: 6px;
}

/* New animations */
@keyframes aurFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes aurTiltIn {
  from {
    opacity: 0;
    transform: perspective(800px) rotateX(8deg) translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes aurGlowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(124, 58, 237, 0);
  }
  50% {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.35);
  }
}
@keyframes aurSlideReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* Apply animations to aur blocks */
.aur-hero-wrap,
.aur-card,
.aur-service-item,
.aur-form-card,
.aur-integrity-panel {
  animation: aurFadeUp 0.9s ease both;
}
.aur-section-title {
  animation: aurSlideReveal 0.9s ease both;
}
.aur-cta-ellipse:hover {
  animation: aurGlowPulse 1.6s ease infinite;
}
