@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);
}

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 */

.prestige-header {
  background-color: #1a1a1a;
  padding: clamp(15px, 3vw, 20px) 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.5s ease;
}

.prestige-header:hover {
  background-color: #2a2a2a;
}

.executive-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(15px, 3vw, 30px);
  animation: fadeIn 1.2s ease-out forwards;
}

.signature-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.signature-brand-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.signature-emblem {
  height: clamp(45px, 6vw, 55px);
  width: auto;
  border-radius: 8px;
  border: 2px solid #d4a017;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.signature-brand-link:hover .signature-emblem {
  border-color: #e8b923;
  transform: rotate(5deg);
}

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

.signature-brand-link:hover .brand-title {
  color: #d4a017;
}

.elite-navigation .navigation-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1200px) {
  .elite-navigation .navigation-list {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 30px);
  }
}

.navigation-item {
  position: relative;
}

.nav-anchor {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(16px, 1.9vw, 19px);
  font-weight: 500;
  padding: 8px 12px;
  position: relative;
  transition: color 0.4s ease;
}

.nav-anchor::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #d4a017;
  transition: width 0.4s ease, left 0.4s ease;
}

.nav-anchor:hover::before {
  width: 100%;
  left: 0;
}

.nav-anchor:hover {
  color: #d4a017;
}

.mobile-nav-toggle {
  display: none;
}

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

.burger {
  width: 32px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.burger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  margin: 6px 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.burger.is-open .burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger.is-open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.is-open .burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.sidebar-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: #2a2a2a;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
  z-index: 99;
}

.sidebar-menu.is-open {
  display: block;
  transform: translateX(0);
}

.sidebar-menu-list {
  list-style: none;
  margin: 0;
  padding: clamp(60px, 12vw, 100px) 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-menu-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sidebar-menu.is-open .sidebar-menu-item {
  opacity: 1;
  transform: translateY(0);
}

.sidebar-menu.is-open .sidebar-menu-item:nth-child(1) {
  transition-delay: 0.1s;
}

.sidebar-menu.is-open .sidebar-menu-item:nth-child(2) {
  transition-delay: 0.2s;
}

.sidebar-menu.is-open .sidebar-menu-item:nth-child(3) {
  transition-delay: 0.3s;
}

.sidebar-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(22px, 4.5vw, 26px);
  font-weight: 600;
  padding: 10px 15px;
  display: block;
  border-left: 4px solid transparent;
  transition: border-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.sidebar-nav-link:hover {
  color: #d4a017;
  border-left-color: #d4a017;
  transform: translateX(5px);
}

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

@media (max-width: 768px) {
  .executive-nav-wrapper {
    gap: 8px;
  }
  .signature-emblem {
    height: 40px;
  }
  .brand-title {
    font-size: 20px;
  }
  .sidebar-menu {
    width: 260px;
  }
  .sidebar-nav-link {
    font-size: 22px;
  }
}

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

/* ===== Hero — Executive / Premium Look ===== */
.signature-hero {
  background-color: #212121;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  z-index: 1;
}

.prestige-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  animation: slideIn 1s ease-out;
}

@media (min-width: 992px) {
  .prestige-content-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 7vw, 90px);
  }
}

.content-block {
  order: 2;
}

.media-block {
  order: 1;
}

@media (min-width: 992px) {
  .content-block {
    order: 1;
  }
  .media-block {
    order: 2;
  }
}

.intro-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background-color: rgba(212, 160, 23, 0.1);
  color: #d4a017;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid rgba(212, 160, 23, 0.3);
  transition: transform 0.3s ease;
}

.intro-label:hover {
  transform: scale(1.05);
}

.intro-icon {
  display: inline-block;
}

.main-heading {
  margin: 20px 0;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.brand-highlight {
  color: #d4a017;
  font-style: italic;
}

.lead-text {
  margin: 15px 0 30px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: #d1d1d1;
  max-width: 55ch;
}

.action-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #212121;
  background-color: #d4a017;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(212, 160, 23, 0.4);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-cta:hover {
  background-color: #e8b923;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(212, 160, 23, 0.5);
}

.cta-icon {
  flex: 0 0 auto;
}

.secondary-link {
  color: #d1d1d1;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid rgba(212, 160, 23, 0.3);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.secondary-link:hover {
  color: #d4a017;
  border-color: #d4a017;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #d1d1d1;
}

.trust-indicators li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.trust-indicators li:hover {
  background-color: rgba(212, 160, 23, 0.1);
  transform: translateX(5px);
}

.visual-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.visual-container:hover {
  transform: scale(1.02);
}

.visual-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.visual-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 8px 12px;
  background-color: rgba(33, 33, 33, 0.7);
  color: #ffffff;
  font-size: 13px;
  border-radius: 999px;
  backdrop-filter: blur(3px);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .prestige-content-wrapper,
  .intro-label,
  .primary-cta,
  .trust-indicators li,
  .visual-container {
    animation: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: clamp(26px, 6vw, 36px);
  }
  .lead-text {
    font-size: clamp(15px, 2.5vw, 17px);
  }
  .visual-caption {
    font-size: 12px;
  }
}

.primary-cta:focus-visible,
.secondary-link:focus-visible {
  outline: 2px solid #d4a017;
  outline-offset: 2px;
  border-radius: 10px;
}

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

/* ===== Premium Stats Section (business look) ===== */
.metrics-showcase {
  background-color: #1c1c1c;
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  z-index: 1;
}

.metrics-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 60px);
}

.metrics-subtitle {
  display: inline-block;
  padding: 8px 14px;
  background-color: rgba(212, 160, 23, 0.15);
  color: #d4a017;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.metrics-subtitle:hover {
  transform: scale(1.05);
  background-color: rgba(212, 160, 23, 0.25);
}

.metrics-title {
  margin: 16px 0 10px;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.metrics-description {
  margin: 0 auto;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: #d1d1d1;
  max-width: 65ch;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 25vw, 280px), 1fr));
  gap: clamp(20px, 3vw, 30px);
  position: relative;
  z-index: 1;
}

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

.metric-item {
  background-color: #252525;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 0.8s ease-out forwards;
}

.metric-item:nth-child(1) { animation-delay: 0.1s; }
.metric-item:nth-child(2) { animation-delay: 0.2s; }
.metric-item:nth-child(3) { animation-delay: 0.3s; }
.metric-item:nth-child(4) { animation-delay: 0.4s; }

.metric-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 160, 23, 0.3);
}

.metric-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d4a017;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(212, 160, 23, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.metric-icon:hover {
  transform: rotate(10deg);
  background-color: #e8b923;
}

.metric-value {
  font-size: clamp(34px, 5.5vw, 50px);
  font-weight: 900;
  line-height: 1;
  color: #d4a017;
  margin: 8px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.metric-label {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #d1d1d1;
  line-height: 1.5;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .metric-item,
  .metrics-subtitle,
  .metric-icon {
    animation: none;
    transition: none;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .metrics-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  .metrics-description {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  .metric-value {
    font-size: clamp(30px, 8vw, 40px);
  }
}

.metric-item:focus-within {
  outline: 2px solid #d4a017;
  outline-offset: 3px;
  border-radius: 16px;
}


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

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

/* ===== Premium About Section (business look) ===== */
.executive-briefing {
  background-color: #1c1c1c;
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  z-index: 1;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

@media (min-width: 992px) {
  .content-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(50px, 7vw, 90px);
  }
}

.sidebar-panel {
  background-color: #252525;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  animation: slideIn 0.8s ease-out forwards;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background-color: rgba(212, 160, 23, 0.15);
  color: #d4a017;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.trust-badge:hover {
  transform: scale(1.05);
  background-color: rgba(212, 160, 23, 0.25);
}

.sidebar-heading {
  margin: 14px 0 8px;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}

.sidebar-text {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #d1d1d1;
  line-height: 1.7;
}

.sidebar-meta {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-size: 14px;
  color: #d1d1d1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.meta-item:hover {
  background-color: rgba(212, 160, 23, 0.1);
  transform: translateX(5px);
}

.content-header {
  margin-bottom: 12px;
}

.section-label {
  display: inline-block;
  padding: 8px 14px;
  background-color: rgba(212, 160, 23, 0.15);
  color: #d4a017;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.3s ease;
}

.section-label:hover {
  transform: scale(1.05);
}

.content-title {
  margin: 14px 0 0;
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.brand-emphasis {
  color: #d4a017;
  position: relative;
}

.brand-emphasis::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background-color: #d4a017;
  transition: width 0.4s ease;
}

.content-title:hover .brand-emphasis::after {
  width: 100%;
}

.content-lead {
  margin: 16px 0 20px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.8;
  color: #d1d1d1;
  max-width: 60ch;
}

.highlight-text {
  font-weight: 700;
  color: #e8b923;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(14px, 2.5vw, 20px);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #d1d1d1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-item:hover {
  background-color: rgba(212, 160, 23, 0.1);
  transform: translateY(-3px);
}

.feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d4a017;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(212, 160, 23, 0.3);
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: rotate(8deg);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-panel,
  .trust-badge,
  .section-label,
  .feature-item,
  .meta-item,
  .feature-icon {
    animation: none;
    transition: none;
  }
}

@media (max-width: 992px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
  .sidebar-panel {
    order: 2;
  }
  .main-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .content-title {
    font-size: clamp(26px, 6vw, 34px);
  }
  .content-lead {
    font-size: clamp(15px, 2.5vw, 17px);
  }
}

.trust-badge:focus-visible,
.section-label:focus-visible,
.feature-item:focus-within,
.meta-item:focus-within {
  outline: 2px solid #d4a017;
  outline-offset: 3px;
  border-radius: 12px;
}


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

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

/* ===== Premium Services Section (business look) ===== */
.portfolio-overview {
  background-color: #1c1c1c;
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  z-index: 1;
}

.portfolio-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 60px);
}

.portfolio-label {
  display: inline-block;
  padding: 8px 14px;
  background-color: rgba(212, 160, 23, 0.15);
  color: #d4a017;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.portfolio-label:hover {
  transform: scale(1.05);
  background-color: rgba(212, 160, 23, 0.25);
}

.portfolio-title {
  margin: 16px 0 10px;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.brand-accent {
  color: #d4a017;
  position: relative;
}

.brand-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background-color: #d4a017;
  transition: width 0.4s ease;
}

.portfolio-title:hover .brand-accent::after {
  width: 100%;
}

.portfolio-description {
  margin: 0 auto;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: #d1d1d1;
  max-width: 65ch;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 28vw, 300px), 1fr));
  gap: clamp(20px, 3vw, 30px);
  position: relative;
  z-index: 1;
}

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

.portfolio-card {
  background-color: #252525;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 0.8s ease-out forwards;
}

.portfolio-card:nth-child(1) { animation-delay: 0.1s; }
.portfolio-card:nth-child(2) { animation-delay: 0.2s; }
.portfolio-card:nth-child(3) { animation-delay: 0.3s; }

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 160, 23, 0.3);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d4a017;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(212, 160, 23, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.card-icon:hover {
  transform: scale(1.1);
  background-color: #e8b923;
}

.card-title {
  margin: 8px 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.card-text {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
  color: #d1d1d1;
  max-width: 45ch;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-card,
  .portfolio-label,
  .card-icon {
    animation: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .portfolio-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  .portfolio-description {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  .card-title {
    font-size: clamp(16px, 2vw, 20px);
  }
}

.portfolio-card:focus-within,
.portfolio-label:focus-visible {
  outline: 2px solid #d4a017;
  outline-offset: 3px;
  border-radius: 12px;
}


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

/* ===== Premium Offer Section (business look) ===== */
.solutions-hub {
  background-color: #1c1c1c;
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  z-index: 1;
}

.solutions-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 60px);
}

.solutions-label {
  display: inline-block;
  padding: 8px 14px;
  background-color: rgba(212, 160, 23, 0.15);
  color: #d4a017;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.solutions-label:hover {
  transform: scale(1.05);
  background-color: rgba(212, 160, 23, 0.25);
}

.solutions-title {
  margin: 16px 0 10px;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.brand-highlight {
  color: #d4a017;
  position: relative;
}

.brand-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background-color: #d4a017;
  transition: width 0.4s ease;
}

.solutions-title:hover .brand-highlight::after {
  width: 100%;
}

.solutions-description {
  margin: 0 auto;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: #d1d1d1;
  max-width: 65ch;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 28vw, 300px), 1fr));
  gap: clamp(20px, 3vw, 30px);
  position: relative;
  z-index: 1;
}

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

.solution-card {
  background-color: #252525;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 0.8s ease-out forwards;
}

.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }
.solution-card:nth-child(4) { animation-delay: 0.4s; }

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 160, 23, 0.3);
}

.solution-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d4a017;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(212, 160, 23, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.solution-icon:hover {
  transform: scale(1.1);
  background-color: #e8b923;
}

.solution-title {
  margin: 8px 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.solution-text {
  margin: 0 0 14px;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
  color: #d1d1d1;
  max-width: 45ch;
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #1c1c1c;
  background-color: #d4a017;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(212, 160, 23, 0.4);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-cta:hover {
  background-color: #e8b923;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(212, 160, 23, 0.5);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-card,
  .solutions-label,
  .solution-icon,
  .solution-cta {
    animation: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .solutions-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  .solutions-description {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  .solution-title {
    font-size: clamp(16px, 2vw, 20px);
  }
}

.solution-cta:focus-visible,
.solution-card:focus-within {
  outline: 2px solid #d4a017;
  outline-offset: 3px;
  border-radius: 12px;
}



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

.connect-suite {
  background-color: #1c1c1c;
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  z-index: 1;
}

.connect-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

@media (min-width: 992px) {
  .connect-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(40px, 6vw, 80px);
  }
}

.info-header {
  margin-bottom: 10px;
}

.info-label {
  display: inline-block;
  padding: 8px 14px;
  background-color: rgba(212, 160, 23, 0.15);
  color: #d4a017;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.info-label:hover {
  transform: scale(1.05);
  background-color: rgba(212, 160, 23, 0.25);
}

.info-title {
  margin: 14px 0 8px;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  animation: slideIn 0.8s ease-out forwards;
}

.brand-emphasis {
  color: #d4a017;
  position: relative;
}

.brand-emphasis::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background-color: #d4a017;
  transition: width 0.4s ease;
}

.info-title:hover .brand-emphasis::after {
  width: 100%;
}

.info-lead {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: #d1d1d1;
  max-width: 60ch;
  animation: slideIn 0.8s ease-out 0.1s forwards;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 16px;
}

.contact-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  animation: fadeUp 0.8s ease-out forwards;
}

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

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d4a017;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(212, 160, 23, 0.3);
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.contact-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.contact-text {
  margin: 4px 0 0;
  font-size: 14px;
  color: #d1d1d1;
}

.contact-link {
  color: #d4a017;
  text-decoration: none;
  border-bottom: 1px dashed rgba(212, 160, 23, 0.4);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-link:hover {
  color: #e8b923;
  border-color: #e8b923;
}

.compliance-note {
  margin-top: 20px;
  padding: 16px;
  background-color: #252525;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.compliance-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.compliance-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #d1d1d1;
}

.form-column {
  background-color: #252525;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  animation: slideIn 0.8s ease-out 0.2s forwards;
}

.join-form {
  display: grid;
  gap: clamp(14px, 2vw, 18px);
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-label {
  font-size: 14px;
  color: #ffffff;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: #1c1c1c;
  border: 1px solid #333333;
  color: #ffffff;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #8a8a8a;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #d4a017;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
  background-color: #212121;
}

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

.form-legal {
  margin: 4px 0;
  font-size: 12px;
  color: #d1d1d1;
  line-height: 1.6;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
  background-color: #d4a017;
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(212, 160, 23, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit:hover {
  background-color: #e8b923;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(212, 160, 23, 0.5);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .info-title,
  .info-lead,
  .contact-item,
  .compliance-note,
  .form-column,
  .form-submit {
    animation: none;
    transition: none;
  }
}

@media (max-width: 992px) {
  .connect-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .info-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  .info-lead {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  .form-column {
    padding: 16px;
  }
  .form-submit {
    width: 100%;
    justify-content: center;
  }
}

.contact-link:focus-visible,
.form-submit:focus-visible {
  outline: 2px solid #d4a017;
  outline-offset: 3px;
  border-radius: 12px;
}


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

.signature-footer {
  background-color: #1c1c1c;
  padding: clamp(50px, 7vw, 100px) 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  z-index: 1;
  border-top: 2px solid rgba(212, 160, 23, 0.2);
}

.footer-content {
  display: grid;
  gap: clamp(25px, 4vw, 50px);
}

.legal-section {
  background-color: #252525;
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.8s ease-out forwards;
}

.legal-header {
  margin-bottom: 10px;
}

.legal-title {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 700;
  color: #d4a017;
}

.legal-text {
  display: grid;
  gap: 12px;
}

.legal-paragraph {
  margin: 0;
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 1.7;
  color: #d1d1d1;
}

.legal-paragraph strong {
  color: #ffffff;
  font-weight: 700;
}

.legal-paragraph a {
  color: #d4a017;
  text-decoration: none;
  border-bottom: 1px dashed rgba(212, 160, 23, 0.4);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.legal-paragraph a:hover {
  color: #e8b923;
  border-color: #e8b923;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(15px, 3vw, 30px);
  animation: fadeUp 0.8s ease-out 0.2s forwards;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.copyright-text {
  margin: 0;
  font-size: clamp(12px, 1.5vw, 14px);
  color: #d1d1d1;
  transition: color 0.3s ease;
}

.copyright-text:hover {
  color: #e8b923;
}

.footer-nav {
  position: relative;
}

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

.nav-item {
  animation: slideIn 0.6s ease-out forwards;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  font-size: clamp(12px, 1.5vw, 14px);
  color: #d1d1d1;
  text-decoration: none;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
  background-color: rgba(212, 160, 23, 0.2);
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .legal-section,
  .footer-bottom,
  .nav-item {
    animation: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .signature-footer {
    padding: clamp(40px, 6vw, 80px) 0;
  }
  .legal-title {
    font-size: clamp(16px, 2.5vw, 18px);
  }
  .legal-paragraph {
    font-size: clamp(12px, 2.2vw, 14px);
  }
  .nav-list {
    gap: 8px;
  }
}

.nav-link:focus-visible,
.legal-paragraph a:focus-visible {
  outline: 2px solid #d4a017;
  outline-offset: 3px;
  border-radius: 10px;
}


/* -------------------------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--------------------------- */


.policy-section {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 8vh, 60px) 0;
}

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

.policy-content {
  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;
}

.policy-content p {
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.policy-content p:hover {
  color: #2a2a4e;
}

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

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

.policy-content h2:hover::after {
  width: 100px;
}

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

.policy-content li {
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.policy-content li:hover {
  transform: translateX(5px);
}

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

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

.policy-content a:hover {
  color: #2a2a4e;
}

.policy-content 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) {
  .policy-heading {
    font-size: clamp(24px, 6vw, 32px);
  }
  .policy-content {
    font-size: 14px;
  }
  .policy-content h2 {
    font-size: 20px;
  }
  .policy-action-btn {
    padding: 10px 0;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .policy-section {
    padding: 30px 0;
  }
  .policy-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .policy-content {
    font-size: 13px;
  }
  .policy-content h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .policy-content ul {
    margin-left: 15px;
  }
  .policy-content li {
    margin-bottom: 8px;
  }
  .policy-action-btn {
    max-width: 160px;
    margin-top: 20px;
    padding: 8px 0;
  }
}
