/* Modern refresh - preserves structure, colors, and imagery */
:root {
  --surface: #ffffff;
  --surface-muted: #f5f7fa;
  --text: #1e2a35;
  --muted: #5b6b7a;
  --shadow-1: 0 12px 28px rgba(0, 46, 110, 0.18);
  --shadow-2: 0 8px 20px rgba(0, 46, 110, 0.22);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(231, 238, 246, 0.85) 100%);
  line-height: 1.7;
  padding-bottom: 80px;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -160px;
  right: -120px;
  background: radial-gradient(circle, rgba(15, 45, 106, 0.35), transparent 60%);
}

body::after {
  bottom: -220px;
  left: -140px;
  background: radial-gradient(circle, rgba(15, 45, 106, 0.25), transparent 60%);
}

.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
}

a {
  color: var(--primary);
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover,
a:focus {
  color: var(--secondary);
}

.top {
  background: linear-gradient(90deg, #0f2d6a 0%, #002e6e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-1);
  font-size: 0.85rem;
  letter-spacing: 0.2px;
  animation: fade-slide-down 0.8s ease both;
}

.top a {
  opacity: 0.85;
}

.top a:hover,
.top a:focus {
  opacity: 1;
}

.navbar {
  margin: 1.5rem 0 2.5rem;
  position: relative;
  z-index: 5;
}

.navbar .container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 0.6rem 1.2rem;
  box-shadow: var(--shadow-1);
  animation: fade-scale-in 0.8s ease both;
  animation-delay: 0.1s;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
}

.navbar-brand img {
  max-width: 260px;
  height: auto;
}

.navbar-nav .nav-item .nav-link {
  text-transform: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: rgba(0, 46, 110, 0.85);
  position: relative;
  padding-bottom: 0.35rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-item .nav-link:before {
  display: none !important;
}

.navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #0f2d6a, #1b4ca8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-item:hover .nav-link::after,
.navbar-nav .nav-item:focus .nav-link::after,
.navbar-nav .nav-item.active .nav-link::after {
  transform: scaleX(1);
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:focus .nav-link {
  color: #002e6e;
}

.navbar-toggler {
  font-size: 2.2rem;
  color: #002e6e;
}

.navbar-collapse .dropdown-item {
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-2);
  border-radius: 12px;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
}

.btn-primary,
.btn-secondary,
.btn-success {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0.55rem 1.3rem;
  box-shadow: 0 6px 14px rgba(0, 46, 110, 0.2);
  position: relative;
  overflow: hidden;
}

.form-control {
  border-radius: 12px;
  border: 1px solid #d5dde6;
  height: 48px;
  padding: 0.6rem 0.9rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.section {
  margin: 3rem 0;
  padding: 3.5rem 0;
  background: transparent;
}

.section:not(.home) .container {
  background: rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 16px 34px rgba(0, 46, 110, 0.25);
  animation: fade-up 0.9s ease both;
  border: 1px solid rgba(15, 45, 106, 0.08);
  backdrop-filter: blur(10px);
}

.section h3,
.section .h3 {
  color: #002e6e;
  font-weight: 600;
}

.section h3:before,
.section .h3:before {
  background: rgba(0, 46, 110, 0.85);
  height: 6px;
  border-radius: 999px;
}

.home .slide-1,
.home .slide-2,
.home .slide-3 {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  transform: translateZ(0);
  animation: fade-up 0.9s ease both;
  background-color: transparent;
}

.home {
  position: relative;
  z-index: 0;
}

.home.section {
  padding-top: 1rem;
}

.home .slide-1::after,
.home .slide-2::after,
.home .slide-3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 46, 110, 0.25) 100%);
  opacity: 0.45;
  pointer-events: none;
}

.home .slide-1 header,
.home .slide-2 header,
.home .slide-3 header {
  background: rgba(15, 45, 106, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  width: 70%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: float-up 4s ease-in-out infinite;
  padding: 0.5rem;
}

.home .slide-1 header:before,
.home .slide-2 header:before,
.home .slide-3 header:before {
  display: none;
}

.home .slide-1 > a,
.home .slide-2 > a {
  text-indent: -9999px !important;
  font-size: 0 !important;
  color: transparent !important;
}

.home .slide-3 {
  display: block;
}

.home .slide-3.pipes {
  margin-top: 15px;
  min-height: 160px;
  border-radius: 22px;
  box-shadow: var(--shadow-2);
  background-size: cover;
  background-position: 50%;
  position: relative;
  overflow: hidden;
  animation: fade-up 0.9s ease both;
}

.home .slide-3.pipes::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 46, 110, 0.2) 100%);
  pointer-events: none;
}

.home .slide-1 header h2,
.home .slide-2 header h2,
.home .slide-3 header h2 {
  text-transform: none;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
}

.home .slide-1:hover,
.home .slide-1:focus,
.home .slide-2:hover,
.home .slide-2:focus {
  transform: translateY(-2px) scale(0.995);
}

.home .slide-1,
.home .slide-2,
.home .slide-3 {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home .slide-1:hover,
.home .slide-2:hover,
.home .slide-3:hover {
  box-shadow: 0 18px 40px rgba(0, 46, 110, 0.25);
}

.about {
  background: linear-gradient(180deg, rgba(0, 46, 110, 0.06) 0%, rgba(0, 46, 110, 0.02) 100%);
}

.about img,
.section img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about img:hover,
.section img:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 46, 110, 0.2);
}

.about-text p {
  font-size: 1.05rem;
}

.about-cta {
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f2d6a;
}

.about-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-gallery,
.about-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-gallery img:first-child,
.about-mosaic img:first-child {
  grid-column: span 2;
}

.about-gallery img:last-child,
.about-mosaic img:last-child {
  grid-column: span 2;
}

.about-layout {
  position: relative;
  overflow: hidden;
}

.about-layout::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(15, 45, 106, 0.22), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}

.about-panel,
.about-hero {
  background: rgba(255, 255, 255, 0.58);
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid rgba(15, 45, 106, 0.12);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(12px);
  animation: fade-up 0.9s ease both;
}

.about-kicker {
  display: inline-flex;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 45, 106, 0.12);
  color: #0f2d6a;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.about-callout {
  margin-top: 1.2rem;
  background: rgba(15, 45, 106, 0.08);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(15, 45, 106, 0.18);
}

.about-metrics {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.about-card {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.8rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.54);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(15, 45, 106, 0.12);
  box-shadow: 0 8px 18px rgba(0, 46, 110, 0.12);
  backdrop-filter: blur(10px);
}

.about-card i {
  color: #0f2d6a;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.about-card strong {
  display: block;
  font-weight: 700;
  color: #0f2d6a;
}

.about-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-accent {
  position: absolute;
  left: -80px;
  bottom: -120px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(15, 45, 106, 0.18), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.contact-info {
  display: grid;
  gap: 1.2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(15, 45, 106, 0.12);
  backdrop-filter: blur(8px);
}

.contact-title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: #0f2d6a;
  font-weight: 700;
}

.contact-person {
  display: grid;
  gap: 0.2rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(15, 45, 106, 0.08);
}

.contact-person:first-of-type {
  border-top: none;
  padding-top: 0;
}

.contact-person strong {
  font-weight: 700;
}

.contact-form {
  background: rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(15, 45, 106, 0.12);
  backdrop-filter: blur(10px);
}

.cookie-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: 1.4rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(15, 45, 106, 0.12);
  backdrop-filter: blur(10px);
}

.cookie-aside {
  background: rgba(15, 45, 106, 0.08);
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid rgba(15, 45, 106, 0.18);
  box-shadow: 0 10px 24px rgba(0, 46, 110, 0.15);
}

.cookie-list {
  padding-left: 1.2rem;
  margin: 0.6rem 0 1rem;
}

.cookie-list li {
  margin-bottom: 0.4rem;
}

.breadcrumb {
  background: transparent;
  padding: 0.5rem 0;
}

footer {
  background: linear-gradient(180deg, #0f2d6a 0%, #0b2353 100%);
  color: #e6eef9;
  padding: 2.5rem 0 3rem;
  margin-top: 3rem;
  animation: fade-up 0.9s ease both;
}

footer .container,
.footer {
  background: #0f2d6a;
  color: #e6eef9;
}

footer .container {
  border-radius: 24px;
  box-shadow: var(--shadow-1);
  padding: 2rem;
}

.footer {
  background: #0b2353;
  padding: 1.2rem 0 2.8rem;
  position: relative;
  z-index: 1;
}

.cookiealert,
.cookie-alert {
  z-index: 2;
}

footer a {
  color: #ffffff;
  background: transparent !important;
}

footer p {
  margin-bottom: 0.5rem;
}

footer > .row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: flex-start;
}

footer .row > [class*="col-"] {
  flex: 1 1 280px;
  max-width: 100%;
  text-align: left;
}

nav a[href*="integrisplus"] {
  margin-left: auto;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #0f2d6a 0%, #1b4ca8 100%);
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 46, 110, 0.35);
  animation: pulse-glow 2.6s ease-in-out infinite;
  white-space: nowrap;
}

nav a[href*="integrisplus"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: translateX(-120%);
  animation: shine 2.6s ease-in-out infinite;
}

nav a[href*="integrisplus"]:hover {
  transform: translateY(-1px);
}

.navbar-collapse {
  flex-grow: 1;
}

.section .row > [class*="col"] {
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .navbar .container {
    border-radius: 0;
  }

  .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 1.2rem;
  }

  .section:not(.home) .container {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .home .slide-1 header,
  .home .slide-2 header,
  .home .slide-3 header {
    width: 90%;
  }

  .home .slide-1 header h2,
  .home .slide-2 header h2,
  .home .slide-3 header h2 {
    font-size: 1.1rem;
  }

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

  nav a[href*="integrisplus"] {
    display: inline-block;
    margin: 0.8rem 0 0;
    margin-left: 0;
  }
}

@media (max-width: 1100px) {
  .navbar-collapse {
    flex-basis: 100%;
  }
}

@media (max-width: 576px) {
  .top {
    font-size: 0.75rem;
  }

  .navbar .container {
    padding: 0.6rem 0.8rem;
  }

  .section {
    margin: 2rem 0;
    padding: 2.2rem 0;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-slide-down {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-scale-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float-up {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.hero-card {
  background: rgba(15, 45, 106, 0.85);
  color: #fff;
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-2);
  backdrop-filter: blur(8px);
}

.hero-card h1 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #fff;
}

@media (max-width: 992px) {
  .hero-card {
    padding: 1rem 1.2rem;
  }

  .hero-card h1 {
    font-size: 1.3rem;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 18px rgba(0, 46, 110, 0.35);
  }
  50% {
    box-shadow: 0 12px 28px rgba(0, 46, 110, 0.55);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-120%);
  }
  60% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.offer-hero {
  padding: 80px 0 40px;
}

.offer-intro {
  padding: 32px 36px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(11, 45, 96, 0.12);
  box-shadow: 0 22px 60px rgba(4, 21, 54, 0.15);
  backdrop-filter: blur(14px);
}

.offer-intro h1 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  color: #0a2f66;
  margin-bottom: 12px;
}

.offer-kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2a5f9d;
  font-weight: 600;
  margin-bottom: 12px;
}

.offer-glass {
  padding: 28px;
  border-radius: 22px;
  background: rgba(7, 33, 71, 0.2);
  color: #102a51;
  border: 1px solid rgba(8, 33, 71, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.offer-tiles {
  padding: 20px 0 80px;
}

.offer-card {
  display: block;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(11, 45, 96, 0.12);
  box-shadow: 0 24px 60px rgba(4, 21, 54, 0.18);
  color: inherit;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(4, 21, 54, 0.22);
}

.offer-card__media {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.offer-card__body {
  padding: 24px 28px 30px;
}

.offer-card__body h2 {
  color: #0a2f66;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.offer-card__body p {
  margin: 0;
  color: #2c4d79;
}

@media (max-width: 991px) {
  .offer-hero {
    padding: 60px 0 24px;
  }

  .offer-intro,
  .offer-glass {
    margin-bottom: 24px;
  }

  .offer-card__media {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .navbar-brand img {
    width: 220px;
    height: auto;
  }

  .navbar-collapse {
    background: rgba(8, 33, 71, 0.96);
    padding: 0.8rem 1rem 1rem;
    border-radius: 18px;
    margin-top: 0.8rem;
  }

  .navbar-collapse .nav-link {
    padding: 0.6rem 0.2rem;
    font-size: 1.05rem;
  }

  .home.site .row {
    gap: 16px;
  }

  .home.site .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .home.site header h4.h1 {
    font-size: 1.2rem;
    line-height: 1.35;
    text-align: center;
  }

  .home.site .slide-1,
  .home.site .slide-2,
  .home.site .slide-3 {
    min-height: 220px;
  }

  .home.site .slide-1 header,
  .home.site .slide-2 header {
    width: 80%;
    padding: 12px 16px;
  }

  .home.site .slide-1 header h2,
  .home.site .slide-2 header h2 {
    font-size: 1.05rem;
  }

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

  .about .about-media img {
    border-radius: 18px;
  }

  .about .about-cta {
    text-align: center;
  }

  .contact-info,
  .contact-form {
    padding: 1.2rem;
  }

  .footer {
    padding-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .home.site .slide-1,
  .home.site .slide-2,
  .home.site .slide-3 {
    min-height: 200px;
  }

  .offer-card__media {
    height: 180px;
  }

  .offer-card__body {
    padding: 20px 22px 24px;
  }
}

@media (max-width: 768px) {
  .top {
    display: none;
  }

  .navbar {
    display: none !important;
  }

  .home.site,
  .section.home {
    display: none !important;
  }

  .navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  .navbar-toggler {
    z-index: 10000;
  }

  .navbar-collapse {
    position: relative;
    z-index: 9999;
  }

  .navbar-collapse.show {
    display: block !important;
  }

  footer .col-md-6 {
    text-align: left;
  }

  footer p,
  footer a {
    font-size: 0.95rem;
  }

  .offer-intro {
    padding: 22px 24px;
  }

  .offer-card__body h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .mobile-onepage {
    padding: 24px 0 60px;
    background: radial-gradient(circle at top, rgba(14, 47, 98, 0.25), rgba(247, 249, 252, 0.95) 55%);
  }

  .mobile-hero {
    text-align: center;
    padding: 18px 16px 10px;
  }

  .mobile-logo {
    max-width: 220px;
    margin-bottom: 16px;
  }

  .mobile-hero h1 {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #0a2f66;
  }

  .mobile-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
  }

  .mobile-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    padding: 18px 16px;
    margin: 16px 0;
    box-shadow: 0 14px 36px rgba(4, 21, 54, 0.12);
    border: 1px solid rgba(11, 45, 96, 0.12);
  }

  .mobile-card:hover {
    transform: translateY(-2px);
  }

  .mobile-card h2 {
    color: #0a2f66;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .mobile-card p {
    color: #2b4b76;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .mobile-offer {
    display: grid;
    gap: 12px;
  }

  .mobile-offer__item {
    min-height: 140px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  }

  .mobile-offer__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 33, 71, 0.05), rgba(7, 33, 71, 0.75));
  }

  .mobile-offer__item span {
    position: relative;
    font-weight: 600;
    font-size: 1rem;
  }

  .mobile-link {
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
    padding: 10px 14px;
    background: linear-gradient(120deg, #0b3a76, #1f5aa3);
    color: #fff !important;
    border-radius: 999px;
    font-size: 0.9rem;
  }

  .mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0b3a76, #1f5aa3);
    color: #fff !important;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 22px rgba(4, 21, 54, 0.2);
    position: relative;
    overflow: hidden;
  }

  .mobile-cta::after {
    content: '';
    position: absolute;
    inset: -40% 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-120%);
    animation: shine 3s ease-in-out infinite;
  }

  .mobile-cta.secondary {
    background: rgba(10, 47, 102, 0.12);
    color: #0a2f66 !important;
    border: 1px solid rgba(10, 47, 102, 0.2);
    box-shadow: none;
  }

  .mobile-onepage .mobile-card {
    animation: fade-up 0.8s ease both;
  }

  .mobile-onepage .mobile-card:nth-of-type(2) { animation-delay: 0.1s; }
  .mobile-onepage .mobile-card:nth-of-type(3) { animation-delay: 0.2s; }
  .mobile-onepage .mobile-card:nth-of-type(4) { animation-delay: 0.3s; }
}
