﻿@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Inter",  sans-serif;
  --heading-font: "Inter",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

:root { 
  --background-color: #ebebeb;
  --default-color: #666666;
  --heading-color: #000000;
  --accent-color: #0068a9;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #999999;
  --nav-hover-color: #000000;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #666666;
  --nav-dropdown-hover-color: #313131;
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #e3e3e3;
  --heading-color: #ffffff;
  --accent-color: #bdb5b5;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: padding 0.38s ease, border-color 0.38s ease, box-shadow 0.38s ease;
  z-index: 997;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease, backdrop-filter 0.38s ease;
  z-index: -1;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.scrolled .header {
  isolation: isolate;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.scrolled .header::before {
  opacity: 1;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  border-top: 2px solid #6161612f;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 90px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 82px;
  z-index: 99999;
  background-color: var(--brans-blue);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--brans-blue-dark);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.fixed-call-button {
  position: fixed;
  left: 18px;
  bottom: 82px;
  z-index: 99998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 104, 169, 0.96), rgba(6, 79, 127, 0.96)),
    rgba(0, 104, 169, 0.94);
  box-shadow:
    0 16px 34px rgba(21, 50, 67, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.fixed-call-button i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.10);
  font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.20);
  animation: call-icon-nudge 2.4s ease-in-out infinite;
}

.fixed-call-button:hover {
  color: #ffffff;
  background: var(--brans-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(21, 50, 67, 0.22);
}

@keyframes call-icon-nudge {
  0%, 72%, 100% {
    transform: translateX(0) rotate(0);
  }

  78% {
    transform: translateX(1px) rotate(-9deg);
  }

  84% {
    transform: translateX(-1px) rotate(9deg);
  }

  90% {
    transform: translateX(0) rotate(-5deg);
  }
}

@media (max-width: 575px) {
  .fixed-call-button {
    left: 18px;
    right: auto;
    bottom: 76px;
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
  }

  .fixed-call-button span {
    display: none;
  }

  .scroll-top {
    bottom: 76px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Page Title Section
--------------------------------------------------------------*/

:root {
  --header-height: 86px;
}

.page-title-section {
  position: relative;
  min-height: 175px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
  background: #08766f;
}

.page-title-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-title-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 27, 55, 0.46) 0%,
      rgba(0, 32, 61, 0.43) 35%,
      rgba(0, 47, 83, 0.28) 62%,
      rgba(0, 39, 78, 0.08) 100%
    );
}

.page-title-section .container {
  position: relative;
  z-index: 3;
}

.page-title-content {
  max-width: 620px;
  padding: 34px 0;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.page-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.25s ease;
}

.page-breadcrumb a:hover {
  color: #ffffff;
}

.page-breadcrumb i {
  font-size: 13px;
  line-height: 1;
}

.page-breadcrumb span {
  color: rgba(255, 255, 255, 0.72);
}

.page-breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.92);
}

.page-title-content h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .page-title-section {
    min-height: 150px;
  }

  .page-title-content {
    padding: 28px 0;
  }

  .page-breadcrumb {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .page-title-content h1 {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 87px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.5rem;
  }
}

.section-title .subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title .subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

.section-title p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  align-items: center;
}

@media (max-width: 576px) {
  .hero .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.hero .hero-cta .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-cta .btn-secondary {
  color: var(--heading-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .hero-cta .btn-secondary i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-cta .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.hero .hero-stats {
  display: flex;
  gap: 3rem;
}

@media (max-width: 768px) {
  .hero .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.hero .hero-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.hero .hero-image {
  position: relative;
}

.hero .hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .hero-image .floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

@media (max-width: 768px) {
  .hero .hero-image .floating-card {
    bottom: 10px;
    left: 10px;
    padding: 1rem;
    min-width: 160px;
  }
}

.hero .hero-image .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-image .floating-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-image .floating-card .card-content h5 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
}

.hero .hero-image .floating-card .card-content .growth-percentage {
  font-size: 1.25rem;
  font-weight: 700;
  color: #22c55e;
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero::before {
    display: none;
  }

  .hero .row {
    flex-direction: column-reverse;
  }

  .hero .col-lg-6:first-child {
    margin-top: 3rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  position: relative;
  padding: 92px 0;
  background: #ffffff;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 119, 111, 0),
    rgba(0, 119, 111, 0.08),
    rgba(0, 119, 111, 0)
  );
  pointer-events: none;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-row {
  position: relative;
}

.about-row-second {
  margin-top: 74px;
}

.about-content {
  max-width: 620px;
}

.about-content-right {
  margin-left: auto;
}

.about-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #00776f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.about-subtitle::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #00776f;
}

.about-content h2 {
  margin: 0 0 22px;
  color: #10293d;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.about-content p {
  margin: 0 0 16px;
  color: #5f707c;
  font-size: 16px;
  line-height: 1.78;
  font-weight: 400;
}

.about-media {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #eef4f5;
  border: 1px solid rgba(16, 41, 61, 0.08);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 41, 61, 0) 55%,
    rgba(16, 41, 61, 0.1) 100%
  );
  opacity: 0.55;
  pointer-events: none;
}

.about-media img {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.about-media:hover img {
  transform: scale(1.035);
}

.about-media-right {
  margin-left: auto;
}

.about-media-left {
  margin-right: auto;
}

.about-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #203746;
  font-size: 15px;
  font-weight: 600;
}

.about-list-item i {
  width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 23px;
  border-radius: 50%;
  background: rgba(0, 119, 111, 0.1);
  color: #00776f;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 991px) {
  .about {
    padding: 76px 0;
  }

  .about::before {
    display: none;
  }

  .about-row-second {
    margin-top: 58px;
  }

  .about-content,
  .about-content-right {
    max-width: 100%;
    margin-left: 0;
  }

  .about-media-right,
  .about-media-left {
    margin-left: 0;
    margin-right: 0;
  }

  .about-media img {
    height: 360px;
  }
}

@media (max-width: 575px) {
  .about {
    padding: 64px 0;
  }

  .about-row-second {
    margin-top: 48px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-subtitle {
    font-size: 13px;
  }

  .about-media {
    border-radius: 14px;
  }

  .about-media img {
    height: 280px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services {
  padding: 110px 0;
  background: #f7f9f8;
  overflow: hidden;
}

.services-header {
  margin-bottom: 58px;
}

.services-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--brans-blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.35px;
}

.services-subtitle::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--brans-blue);
}

.services-title-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: end;
}

.services h2 {
  max-width: 760px;
  margin: 0;
  color: #163247;
  font-size: 50px;
  line-height: 1.06;
  font-weight: 850;
  letter-spacing: -1.6px;
}

.services-header p {
  max-width: 560px;
  margin: 0;
  color: #62716c;
  font-size: 16px;
  line-height: 1.85;
}

.services-slider {
  position: relative;
  overflow: hidden;
}

.services-slider .swiper-wrapper {
  counter-reset: service-card;
  align-items: stretch;
}

.services-slider .swiper-slide {
  height: auto;
}

/* Card */
.service-card {
  position: relative;
  counter-increment: service-card;
  height: 100%;
  min-height: 430px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 104, 169, 0.10);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(12, 43, 64, 0.045);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 104, 169, 0.18);
  box-shadow: 0 16px 34px rgba(12, 43, 64, 0.075);
}

.services .row,
.services-slider .swiper-wrapper {
  counter-reset: service-card;
}

.service-card::before {
  content: attr(data-service-number);
  position: absolute;
  left: 34px;
  top: 194px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #ffffff;
  background: var(--brans-blue);
  border: 5px solid #ffffff;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(0, 104, 169, 0.16);
}

.service-card:not([data-service-number])::before {
  content: counter(service-card, decimal-leading-zero);
}

/* Visual */
.service-card-visual {
  position: relative;
  height: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background:
    linear-gradient(135deg, #f7fbfd 0%, #edf7fc 100%);
  overflow: hidden;
}

.service-card-visual::after {
  content: none;
}

.service-card-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card-visual img {
  transform: translateY(-6px) scale(1.055);
}

.services .col-lg-4:nth-child(3n + 1) .service-card-visual {
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.78) 0 14%, transparent 15%),
    linear-gradient(135deg, #e9f6fc 0%, #cfe7f3 100%);
}

.services .col-lg-4:nth-child(3n + 2) .service-card-visual {
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.72) 0 13%, transparent 14%),
    linear-gradient(135deg, #f3f7f8 0%, #dcebf2 56%, #c8dfec 100%);
}

.services .col-lg-4:nth-child(3n) .service-card-visual {
  background:
    radial-gradient(circle at 70% 26%, rgba(255, 255, 255, 0.66) 0 16%, transparent 17%),
    linear-gradient(135deg, #e4f4fb 0%, #cae5f2 48%, #b8d8ea 100%);
}

.services-slider .swiper-slide:nth-child(3n + 1) .service-card-visual {
  background: linear-gradient(135deg, #f7fbfd 0%, #edf7fc 100%);
}

.services-slider .swiper-slide:nth-child(3n + 2) .service-card-visual {
  background: linear-gradient(135deg, #f5f9fa 0%, #e8f4fa 100%);
}

.services-slider .swiper-slide:nth-child(3n) .service-card-visual {
  background: linear-gradient(135deg, #f3fafc 0%, #e3f1f8 100%);
}

/* Content */
.service-card-content {
  display: flex;
  flex-direction: column;
  min-height: 204px;
  padding: 48px 24px 28px;
}

.service-card h3 {
  margin: 0 0 16px;
  color: var(--brans-ink);
  font-size: 22px;
  line-height: 1.24;
  font-weight: 850;
  letter-spacing: -0.25px;
}

.service-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 14px;
  background: var(--brans-blue);
}

.service-card p {
  margin: 0;
  color: var(--brans-muted);
  font-size: 15px;
  line-height: 1.78;
}

.service-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
  color: transparent;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transform: translateX(-10px);
  transition: color 0.28s ease, transform 0.28s ease;
}

.service-card a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: calc(50% + 13px);
  width: 38px;
  height: 2px;
  background: var(--brans-blue);
  transition: width 0.28s ease, opacity 0.28s ease;
}

.service-card a i {
  color: var(--brans-blue);
  font-size: 15px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.service-card:hover a,
.service-card a:hover {
  color: var(--brans-blue);
  transform: translateX(0);
}

.service-card:hover a::before,
.service-card a:hover::before {
  width: 0;
  opacity: 0;
}

.service-card:hover a i,
.service-card a:hover i {
  opacity: 1;
  transform: translateX(4px);
}

.services-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.services-slider-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--brans-blue-border);
  border-radius: 50%;
  color: var(--brans-blue);
  background: #ffffff;
  transition: 0.25s ease;
}

.services-slider-nav:hover {
  color: #ffffff;
  background: var(--brans-blue);
  border-color: var(--brans-blue);
}

.services-slider-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-width: 78px;
}

.services-slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  background: rgba(0, 104, 169, 0.28);
  opacity: 1;
}

.services-slider-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: var(--brans-blue);
}

/* Responsive */
@media (max-width: 1199px) {
  .services h2 {
    font-size: 42px;
  }

  .services-title-row {
    gap: 44px;
  }

  .service-card-visual img {
    max-width: 240px;
    max-height: 164px;
  }
}

@media (max-width: 991px) {
  .services {
    padding: 84px 0;
  }

  .services-header {
    margin-bottom: 46px;
  }

  .services-title-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .services h2 {
    max-width: 100%;
    font-size: 36px;
  }

  .services-header p {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .services {
    padding: 66px 0;
  }

  .services-subtitle::before {
    display: none;
  }

  .services h2 {
    font-size: 31px;
    letter-spacing: -0.7px;
  }

  .services-header p {
    font-size: 15px;
  }

  .service-card {
    min-height: auto;
    border-radius: 24px;
  }

  .service-card::before {
    left: 28px;
    top: 168px;
    width: 50px;
    height: 50px;
    border-width: 5px;
    font-size: 16px;
  }

  .service-card-visual {
    height: 190px;
    padding: 0;
  }

  .service-card-visual img {
    max-width: none;
    max-height: none;
  }

  .service-card-content {
    min-height: auto;
    padding: 44px 22px 28px;
  }

  .service-card h3 {
    font-size: 21px;
  }

  .service-card p {
    font-size: 14px;
  }
}



/*--------------------------------------------------------------
# Service List Section
--------------------------------------------------------------*/

.service-list {
  padding: 110px 0;
  background: #f7f9f8;
  overflow: hidden;
}

.service-list-header {
  margin-bottom: 58px;
}

.service-list-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--brans-blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.35px;
}

.service-list-subtitle::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--brans-blue);
}

.service-list-title-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: end;
}

.service-list h2 {
  max-width: 760px;
  margin: 0;
  color: #163247;
  font-size: 50px;
  line-height: 1.06;
  font-weight: 850;
  letter-spacing: -1.6px;
}

.service-list-header p {
  max-width: 560px;
  margin: 0;
  color: #62716c;
  font-size: 16px;
  line-height: 1.85;
}

/* Card */
.service-list-card {
  position: relative;
  counter-increment: service-list-card;
  height: 100%;
  min-height: 430px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 104, 169, 0.10);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(12, 43, 64, 0.045);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.service-list-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 104, 169, 0.18);
  box-shadow: 0 16px 34px rgba(12, 43, 64, 0.075);
}

.service-list .row {
  counter-reset: service-list-card;
}

.service-list-card::before {
  content: counter(service-list-card, decimal-leading-zero);
  position: absolute;
  left: 34px;
  top: 194px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #ffffff;
  background: var(--brans-blue);
  border: 5px solid #ffffff;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(0, 104, 169, 0.16);
}

/* Visual */
.service-list-visual {
  position: relative;
  height: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background:
    linear-gradient(135deg, #f7fbfd 0%, #edf7fc 100%);
  overflow: hidden;
}

.service-list-visual::after {
  content: none;
}

.service-list-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-list-card:hover .service-list-visual img {
  transform: translateY(-5px) scale(1.045);
}

/* Slight visual variation */
.service-list .col-lg-4:nth-child(3n + 1) .service-list-visual {
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.78) 0 14%, transparent 15%),
    linear-gradient(135deg, #e9f6fc 0%, #cfe7f3 100%);
}

.service-list .col-lg-4:nth-child(3n + 2) .service-list-visual {
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.72) 0 13%, transparent 14%),
    linear-gradient(135deg, #f3f7f8 0%, #dcebf2 56%, #c8dfec 100%);
}

.service-list .col-lg-4:nth-child(3n) .service-list-visual {
  background:
    radial-gradient(circle at 70% 26%, rgba(255, 255, 255, 0.66) 0 16%, transparent 17%),
    linear-gradient(135deg, #e4f4fb 0%, #cae5f2 48%, #b8d8ea 100%);
}

/* Content */
.service-list-content {
  display: flex;
  flex-direction: column;
  min-height: 204px;
  padding: 48px 24px 28px;
}

.service-list-card h3 {
  margin: 0 0 16px;
  color: var(--brans-ink);
  font-size: 22px;
  line-height: 1.24;
  font-weight: 850;
  letter-spacing: -0.25px;
}

.service-list-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 14px;
  background: var(--brans-blue);
}

.service-list-card p {
  margin: 0;
  color: var(--brans-muted);
  font-size: 15px;
  line-height: 1.78;
}

.service-list-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
  color: transparent;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transform: translateX(-10px);
  transition: color 0.28s ease, transform 0.28s ease;
}

.service-list-card a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: calc(50% + 13px);
  width: 38px;
  height: 2px;
  background: var(--brans-blue);
  transition: width 0.28s ease, opacity 0.28s ease;
}

.service-list-card a i {
  color: var(--brans-blue);
  font-size: 15px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.service-list-card:hover a,
.service-list-card a:hover {
  color: var(--brans-blue);
  transform: translateX(0);
}

.service-list-card:hover a::before,
.service-list-card a:hover::before {
  width: 0;
  opacity: 0;
}

.service-list-card:hover a i,
.service-list-card a:hover i {
  opacity: 1;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1199px) {
  .service-list h2 {
    font-size: 42px;
  }

  .service-list-title-row {
    gap: 44px;
  }

  .service-list-visual img {
    max-width: 240px;
    max-height: 164px;
  }
}

@media (max-width: 991px) {
  .service-list {
    padding: 84px 0;
  }

  .service-list-header {
    margin-bottom: 46px;
  }

  .service-list-title-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-list h2 {
    max-width: 100%;
    font-size: 36px;
  }

  .service-list-header p {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .service-list {
    padding: 66px 0;
  }

  .service-list-subtitle::before {
    display: none;
  }

  .service-list h2 {
    font-size: 31px;
    letter-spacing: -0.7px;
  }

  .service-list-header p {
    font-size: 15px;
  }

  .service-list-card {
    min-height: auto;
    border-radius: 24px;
  }

  .service-list-card::before {
    left: 28px;
    top: 168px;
    width: 50px;
    height: 50px;
    border-width: 5px;
    font-size: 16px;
  }

  .service-list-visual {
    height: 190px;
    padding: 0;
  }

  .service-list-visual img {
    max-width: none;
    max-height: none;
  }

  .service-list-content {
    min-height: auto;
    padding: 44px 22px 28px;
  }

  .service-list-card h3 {
    font-size: 21px;
  }

  .service-list-card p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Damage Support Section
--------------------------------------------------------------*/

.damage-support {
  padding: 92px 0;
  background: #ffffff;
  overflow: hidden;
}

.damage-support-wrap {
  position: relative;
}

.damage-support-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  max-width: 500px;
}

.damage-support-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--brans-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.damage-support-subtitle::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brans-blue);
}

.damage-support h2 {
  margin: 0 0 20px;
  color: #163247;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1.1px;
}

.damage-support h2 span {
  display: block;
  color: var(--brans-blue);
}

.damage-support p {
  margin: 0;
  color: #66746f;
  font-size: 16px;
  line-height: 1.8;
}

.damage-support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 30px;
}

.damage-support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.damage-support-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.damage-support-btn.primary {
  color: #ffffff;
  background: var(--brans-blue);
  box-shadow: 0 12px 26px rgba(0, 104, 169, 0.16);
}

.damage-support-btn.primary:hover {
  color: #ffffff;
  background: var(--brans-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 104, 169, 0.22);
}

.damage-support-btn:hover i {
  transform: translateX(4px);
}

.damage-support-points {
  display: inline-grid;
  grid-template-columns: repeat(3, max-content);
  align-self: flex-start;
  gap: 0 46px;
  margin-top: 32px;
}

.damage-support-point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 102px;
  min-width: 112px;
  padding: 0;
  color: #163247;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
}

.damage-support-point:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: -23px;
  width: 1px;
  height: 58px;
  background: rgba(0, 104, 169, 0.10);
}

.damage-support-point i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  margin-bottom: 14px;
  color: var(--brans-blue);
  background: var(--brans-blue-light);
  border-radius: 50%;
  font-size: 23px;
}

/* Visual Area */
.damage-support-visual {
  position: relative;
  min-height: 460px;
  max-width: 660px;
  margin-left: auto;
  aspect-ratio: 1.28 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fbff 0%, var(--brans-blue-light) 100%);
  border: 1px solid var(--brans-blue-border);
  box-shadow: 0 18px 36px rgba(22, 50, 71, 0.06);
}

.damage-support-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, var(--brans-blue-soft), rgba(255, 255, 255, 0.08));
}

.damage-support-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Top Badge */
.damage-support-top-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #31506a;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid var(--brans-blue-soft);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(22, 50, 71, 0.06);
  font-size: 13px;
  font-weight: 700;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2fd198;
  box-shadow: 0 0 0 6px rgba(47, 209, 152, 0.16);
}

/* Bottom Panel */
.damage-support-bottom-panel {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.damage-support-bottom-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 64px;
  padding: 14px 16px;
  border-radius: 18px;
  text-align: center;
  color: #1f3d55;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow: 0 14px 30px rgba(15, 45, 68, 0.12);
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.damage-support-bottom-item i {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: var(--brans-blue);
  background: rgba(0, 104, 169, 0.09);
  border: 1px solid rgba(0, 104, 169, 0.13);
  border-radius: 50%;
  font-size: 16px;
  transform: none;
}

.damage-support-bottom-item small {
  display: block;
  margin-bottom: 6px;
  color: #163247;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.damage-support-bottom-item strong {
  display: block;
  color: #1f3d55;
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
}

.damage-support-bottom-item:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.70)),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 36px rgba(15, 45, 68, 0.16);
}

.damage-support-bottom-divider {
  display: none;
}

/* Responsive */
@media (max-width: 1199px) {
  .damage-support h2 {
    font-size: 40px;
  }

  .damage-support-visual {
    min-height: 420px;
    aspect-ratio: 1.22 / 1;
  }

  .damage-support-bottom-item strong {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .damage-support {
    padding: 85px 0;
  }

  .damage-support-content {
    max-width: 100%;
  }

  .damage-support h2 {
    font-size: 40px;
  }

  .damage-support-visual {
    min-height: 400px;
    max-width: 100%;
    aspect-ratio: 1.2 / 1;
  }

  .damage-support-bottom-panel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .damage-support-bottom-divider {
    display: none;
  }
}

@media (max-width: 575px) {
  .damage-support {
    padding: 68px 0;
  }

  .damage-support h2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .damage-support p {
    font-size: 15px;
  }

  .damage-support-actions {
    flex-direction: column;
  }

  .damage-support-btn {
    width: 100%;
  }

  .damage-support-points {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .damage-support-point {
    min-height: auto;
    min-width: 0;
    align-items: flex-start;
    flex-direction: row;
    gap: 12px;
    text-align: left;
  }

  .damage-support-point:not(:last-child)::after {
    display: none;
  }

  .damage-support-point i {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    margin: 0;
    font-size: 19px;
  }

  .damage-support-visual {
    min-height: 340px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
  }

  .damage-support-visual img {
    object-position: center 42%;
  }

  .damage-support-top-badge {
    top: 16px;
    left: 16px;
    padding: 10px 14px;
  }

  .damage-support-bottom-panel {
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0;
    border-radius: 0;
  }
}


/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/

.insurance-cta {
  padding: 68px 0;
  background: #ffffff;
}

.insurance-cta-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 34px;
  min-height: 400px;
  padding: 54px clamp(480px, 47vw, 680px) 54px 54px;
  border-radius: 22px;
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.14);
  overflow: hidden;
}

.insurance-cta-wrapper::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 4px;
  border-radius: 0 20px 20px 0;
  background: #064f7f;
}

.insurance-cta-wrapper::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: -48px;
  bottom: 0;
  width: min(68%, 720px);
  background-image: url("../img/brans-sigorta-cta-visual.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.insurance-cta-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.insurance-cta-subtitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: #064f7f;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insurance-cta-subtitle::before {
  display: none;
}

.insurance-cta h2 {
  margin: 0 0 12px;
  max-width: 500px;
  color: #05395c;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.insurance-cta p {
  max-width: 460px;
  margin: 0;
  color: #05395ca2;
  font-size: 15px;
  line-height: 1.75;
}

.insurance-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.insurance-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.insurance-cta-btn.primary {
  color: #ffffff;
  background: var(--brans-blue);
  box-shadow: 0 12px 24px rgba(0, 104, 169, 0.14);
}

.insurance-cta-btn.primary:hover {
  color: #ffffff;
  background: var(--brans-blue-dark);
  transform: translateY(-2px);
}

.insurance-cta-btn.secondary {
  color: #101828;
  background: #ffffff;
  border: 1px solid #d8e1ea;
}

.insurance-cta-btn.secondary:hover {
  color: var(--brans-blue);
  border-color: var(--brans-blue-border);
  transform: translateY(-2px);
}

.insurance-cta-side {
  display: none;
}

.insurance-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--brans-blue);
  background: rgba(0, 116, 184, 0.08);
  font-size: 22px;
}

.insurance-cta-side strong {
  display: block;
  margin-bottom: 6px;
  color: #101828;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.insurance-cta-side span {
  display: block;
  color: #667085;
  font-size: 13px;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 1199px) {
  .insurance-cta-wrapper {
    padding-right: 330px;
  }

  .insurance-cta-wrapper::after {
    right: 18px;
    width: 310px;
  }

  .insurance-cta-content,
  .insurance-cta h2 {
    max-width: 470px;
  }

  .insurance-cta p {
    max-width: 430px;
  }
}

@media (max-width: 991px) {
  .insurance-cta {
    padding: 62px 0;
  }

  .insurance-cta-wrapper {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 310px;
    padding: 42px 260px 42px 38px;
  }

  .insurance-cta-wrapper::after {
    top: 44px;
    right: -18px;
    bottom: 44px;
    width: 270px;
  }

  .insurance-cta-content,
  .insurance-cta h2 {
    max-width: 360px;
  }

  .insurance-cta p {
    max-width: 340px;
  }

  .insurance-cta-side {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .insurance-cta-wrapper {
    min-height: 0;
    padding: 196px 28px 34px;
  }

  .insurance-cta-wrapper::after {
    top: 18px;
    left: 50%;
    right: auto;
    bottom: auto;
    width: 260px;
    height: 160px;
    transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .insurance-cta {
    padding: 54px 0;
  }

  .insurance-cta-wrapper {
    min-height: 0;
    padding: 190px 22px 30px;
    border-radius: 20px;
  }

  .insurance-cta-wrapper::after {
    top: 18px;
    left: 50%;
    right: auto;
    width: 250px;
    height: 154px;
    transform: translateX(-50%);
  }

  .insurance-cta-wrapper::before {
    top: 24px;
    bottom: 24px;
  }

  .insurance-cta h2 {
    font-size: 25px;
    letter-spacing: -0.5px;
  }

  .insurance-cta p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .insurance-cta-actions {
    flex-direction: column;
    margin-top: 22px;
  }

  .insurance-cta-btn {
    width: 100%;
  }

  .insurance-cta-side {
    padding: 18px;
  }
}

/*--------------------------------------------------------------
# Offer Process Section
--------------------------------------------------------------*/

.offer-process {
  position: relative;
  padding: 106px 0;
  background: #ffffff;
  overflow: hidden;
}

.offer-process::before {
  content: "";
  position: absolute;
  left: 0;
  top: 52%;
  width: 100%;
  height: 1px;
  background: rgba(22, 50, 71, 0.045);
  pointer-events: none;
}

.offer-process::after {
  content: "";
  position: absolute;
  right: -240px;
  top: 70px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 104, 169, 0.055),
    rgba(0, 104, 169, 0) 68%
  );
  pointer-events: none;
}

.offer-process .container {
  position: relative;
  z-index: 2;
}

/* Header */
.offer-process-header {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 74px;
  align-items: end;
  margin-bottom: 86px;
}

.offer-process-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--brans-blue);
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.48px;
}

.offer-process-subtitle::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(0, 104, 169, 0.85);
}

.offer-process h2 {
  max-width: 760px;
  margin: 0;
  color: #163247;
  font-size: 49px;
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -1.45px;
}

.offer-process-header p {
  max-width: 520px;
  margin: 0;
  color: #65746f;
  font-size: 16px;
  line-height: 1.84;
}

/* Timeline */
.offer-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 62px;
  padding-top: 58px;
}

.offer-process-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 29px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 104, 169, 0),
    rgba(0, 104, 169, 0.12) 10%,
    rgba(0, 104, 169, 0.32) 50%,
    rgba(0, 104, 169, 0.12) 90%,
    rgba(0, 104, 169, 0)
  );
}

.offer-process-step {
  position: relative;
  padding-right: 24px;
}

.offer-process-step::before {
  content: "";
  position: absolute;
  top: -35px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #0068a9;
  box-shadow: 0 0 0 8px rgba(0, 104, 169, 0.055);
  z-index: 2;
}

.offer-process-step::after {
  content: "";
  position: absolute;
  top: -28px;
  left: 31px;
  width: 42px;
  height: 1px;
  background: rgba(0, 104, 169, 0.16);
}

.offer-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  margin-bottom: 26px;
  border-radius: 0;
  color: rgba(0, 104, 169, 0.18);
  background: transparent;
  border: 0;
  font-size: 52px;
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: -2.6px;
}

.offer-process-content {
  position: relative;
}

.offer-process-content span {
  display: block;
  margin-bottom: 12px;
  color: var(--brans-blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.offer-process-content h3 {
  max-width: 340px;
  margin: 0 0 14px;
  color: #163247;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -0.45px;
}

.offer-process-content p {
  max-width: 360px;
  margin: 0;
  color: #65746f;
  font-size: 15px;
  line-height: 1.76;
}

/* Footer */
.offer-process-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 78px;
  padding: 32px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(22, 50, 71, 0.10);
}

.offer-process-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 120px;
  height: 1px;
  background: var(--brans-blue);
}

.offer-process-footer-text {
  position: relative;
  max-width: 720px;
  padding-left: 22px;
}

.offer-process-footer-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: calc(100% - 12px);
  min-height: 38px;
  border-radius: 999px;
  background: rgba(0, 104, 169, 0.85);
}

.offer-process-footer-text strong {
  display: block;
  margin-bottom: 8px;
  color: #163247;
  font-size: 21px;
  line-height: 1.32;
  font-weight: 850;
  letter-spacing: -0.25px;
}

.offer-process-footer-text span {
  display: block;
  max-width: 680px;
  color: #65746f;
  font-size: 14px;
  line-height: 1.72;
}

.offer-process-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brans-blue);
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 850;
  box-shadow: none;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease;
}

.offer-process-btn i {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.28s ease;
}

.offer-process-btn:hover {
  color: #ffffff;
  background: var(--brans-blue-dark);
  transform: translateY(-2px);
}

.offer-process-btn:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1199px) {
  .offer-process h2 {
    font-size: 43px;
  }

  .offer-process-header {
    gap: 54px;
  }

  .offer-process-timeline {
    gap: 42px;
  }

  .offer-process-number {
    font-size: 45px;
  }

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

@media (max-width: 991px) {
  .offer-process {
    padding: 84px 0;
  }

  .offer-process::before,
  .offer-process::after {
    display: none;
  }

  .offer-process-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 58px;
  }

  .offer-process h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .offer-process-header p {
    max-width: 100%;
  }

  .offer-process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }

  .offer-process-line {
    left: 31px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(0, 104, 169, 0),
      rgba(0, 104, 169, 0.26),
      rgba(0, 104, 169, 0)
    );
  }

  .offer-process-step {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 24px;
    padding: 0 0 42px;
  }

  .offer-process-step:last-child {
    padding-bottom: 0;
  }

  .offer-process-step::before {
    top: 19px;
    left: 24px;
    width: 13px;
    height: 13px;
    border-width: 4px;
    box-shadow: 0 0 0 7px rgba(0, 104, 169, 0.055);
  }

  .offer-process-step::after {
    display: none;
  }

  .offer-process-number {
    justify-content: center;
    width: 62px;
    margin-bottom: 0;
    padding-top: 1px;
    font-size: 34px;
    letter-spacing: -1.35px;
  }

  .offer-process-content {
    padding-top: 3px;
  }

  .offer-process-content h3 {
    max-width: 100%;
  }

  .offer-process-content p {
    max-width: 100%;
  }

  .offer-process-footer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 58px;
    padding-top: 28px;
  }

  .offer-process-footer-text {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .offer-process {
    padding: 66px 0;
  }

  .offer-process-subtitle {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .offer-process-subtitle::before {
    display: none;
  }

  .offer-process h2 {
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: -0.7px;
  }

  .offer-process-header p {
    font-size: 15px;
    line-height: 1.75;
  }

  .offer-process-step {
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding-bottom: 38px;
  }

  .offer-process-line {
    left: 25px;
  }

  .offer-process-step::before {
    top: 15px;
    left: 18px;
    width: 12px;
    height: 12px;
  }

  .offer-process-number {
    width: 52px;
    font-size: 29px;
    letter-spacing: -1px;
  }

  .offer-process-content span {
    font-size: 11px;
  }

  .offer-process-content h3 {
    font-size: 20px;
  }

  .offer-process-content p {
    font-size: 14px;
  }

  .offer-process-footer {
    margin-top: 46px;
    padding-top: 26px;
  }

  .offer-process-footer::before {
    width: 92px;
  }

  .offer-process-footer-text {
    padding-left: 18px;
  }

  .offer-process-footer-text::before {
    width: 3px;
  }

  .offer-process-footer-text strong {
    font-size: 18px;
  }

  .offer-process-btn {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# Service FAQ Section
--------------------------------------------------------------*/

.service-faq {
  position: relative;
  padding: 104px 0;
  background: #ffffff;
  overflow: hidden;
}

.service-faq::before {
  content: "";
  position: absolute;
  left: 0;
  top: 46%;
  width: 100%;
  height: 1px;
  background: rgba(22, 50, 71, 0.045);
  pointer-events: none;
}

.service-faq::after {
  content: "";
  position: absolute;
  right: -240px;
  top: 80px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 104, 169, 0.05),
    rgba(0, 104, 169, 0) 68%
  );
  pointer-events: none;
}

.service-faq .container {
  position: relative;
  z-index: 2;
}

/* Header */
.service-faq-header {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 74px;
  align-items: end;
  margin-bottom: 68px;
}

.service-faq-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--brans-blue);
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.48px;
}

.service-faq-subtitle::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(0, 104, 169, 0.85);
}

.service-faq h2 {
  max-width: 760px;
  margin: 0;
  color: #163247;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -1.45px;
}

.service-faq-header p {
  max-width: 520px;
  margin: 0;
  color: #65746f;
  font-size: 16px;
  line-height: 1.84;
}

/* FAQ */
.service-faq-wrapper {
  max-width: 100%;
  border-top: 1px solid rgba(22, 50, 71, 0.10);
}

.service-faq-item {
  position: relative;
  border-bottom: 1px solid rgba(22, 50, 71, 0.10);
}

.service-faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: var(--brans-blue);
  transition: width 0.35s ease;
}

.service-faq-item.active::before {
  width: 120px;
}

.service-faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: #163247;
  text-align: left;
  cursor: pointer;
}

.service-faq-question span {
  display: block;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: -0.35px;
}

.service-faq-question i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border-radius: 50%;
  color: var(--brans-blue);
  background: rgba(0, 104, 169, 0.075);
  font-size: 20px;
  line-height: 1;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.service-faq-item.active .service-faq-question i {
  color: #ffffff;
  background: var(--brans-blue);
  transform: rotate(45deg);
}

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

.service-faq-answer p {
  max-width: 820px;
  margin: 0;
  padding: 0 70px 30px 0;
  color: #65746f;
  font-size: 15px;
  line-height: 1.78;
}

.service-faq-item.active .service-faq-answer {
  max-height: 220px;
}

/* Hover */
.service-faq-item:hover .service-faq-question span {
  color: var(--brans-blue);
}

.service-faq-item:hover .service-faq-question i {
  background: rgba(0, 104, 169, 0.11);
}

/* Responsive */
@media (max-width: 1199px) {
  .service-faq h2 {
    font-size: 43px;
  }

  .service-faq-header {
    gap: 54px;
  }

  .service-faq-question span {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .service-faq {
    padding: 84px 0;
  }

  .service-faq::before,
  .service-faq::after {
    display: none;
  }

  .service-faq-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 54px;
  }

  .service-faq h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .service-faq-header p {
    max-width: 100%;
  }

  .service-faq-question {
    grid-template-columns: 1fr 40px;
    padding: 25px 0;
  }

  .service-faq-question span {
    font-size: 19px;
  }

  .service-faq-question i {
    width: 40px;
    height: 40px;
  }

  .service-faq-answer p {
    max-width: 100%;
    padding-right: 58px;
  }
}

@media (max-width: 575px) {
  .service-faq {
    padding: 66px 0;
  }

  .service-faq-subtitle {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .service-faq-subtitle::before {
    display: none;
  }

  .service-faq h2 {
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: -0.7px;
  }

  .service-faq-header p {
    font-size: 15px;
    line-height: 1.75;
  }

  .service-faq-header {
    margin-bottom: 42px;
  }

  .service-faq-question {
    grid-template-columns: 1fr 36px;
    gap: 18px;
    padding: 23px 0;
  }

  .service-faq-question span {
    font-size: 17px;
    line-height: 1.4;
  }

  .service-faq-question i {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .service-faq-answer p {
    padding: 0 0 24px;
    font-size: 14px;
    line-height: 1.72;
  }

  .service-faq-item.active::before {
    width: 86px;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 100px 0;
}

.why-us .content {
  margin-bottom: 60px;
}

.why-us .content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .why-us .content h2 {
    font-size: 2rem;
  }
}

.why-us .content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.why-us .image-wrapper {
  position: relative;
}

.why-us .image-wrapper img {
  border-radius: 8px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.4s ease-in-out;
}

.why-us .image-wrapper img:hover {
  transform: translateY(-8px);
}

.why-us .features-grid {
  margin-top: 80px;
}

.why-us .feature-item {
  display: flex;
  gap: 25px;
  padding: 40px 0;
  transition: transform 0.3s ease-in-out;
}

.why-us .feature-item:hover {
  transform: translateY(-5px);
}

.why-us .feature-item:hover .icon-wrapper {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .why-us .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 0;
  }
}

.why-us .icon-wrapper {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 768px) {
  .why-us .icon-wrapper {
    margin: 0 auto;
  }
}

.why-us .feature-content {
  flex: 1;
}

.why-us .feature-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .why-us .feature-content h3 {
    font-size: 1.25rem;
  }
}

.why-us .feature-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

@media (max-width: 992px) {
  .why-us .content {
    margin-bottom: 40px;
    text-align: center;
  }

  .why-us .features-grid {
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 80px;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    margin-bottom: 60px;
    gap: 8px;
  }
}

.portfolio .portfolio-filters li {
  padding: 20px 0;
  margin: 0 40px;
  font-size: 0.95rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.4s ease;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  position: relative;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters li {
    margin: 0 20px;
    padding: 16px 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .portfolio .portfolio-filters li {
    margin: 0 12px;
    padding: 14px 0;
    font-size: 0.85rem;
  }
}

.portfolio .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--default-color);
}

.portfolio .portfolio-filters li:hover::after {
  width: 100%;
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--default-color);
  font-weight: 400;
}

.portfolio .portfolio-filters li.filter-active::after {
  width: 100%;
}

.portfolio .portfolio-card {
  height: 100%;
}

.portfolio .portfolio-card .project-visual {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.portfolio .portfolio-card .project-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (max-width: 768px) {
  .portfolio .portfolio-card .project-visual img {
    height: 250px;
  }
}

.portfolio .portfolio-card .project-visual .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(54, 144, 231, 0.85), rgba(54, 144, 231, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.portfolio .portfolio-card .project-visual .project-overlay .overlay-content {
  display: flex;
  gap: 20px;
}

.portfolio .portfolio-card .project-visual .project-overlay .overlay-content a {
  width: 48px;
  height: 48px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .project-visual .project-overlay .overlay-content a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio .portfolio-card .project-visual:hover img {
  transform: scale(1.05);
}

.portfolio .portfolio-card .project-visual:hover .project-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card .project-details {
  padding: 20px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio .portfolio-card .project-details .project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.portfolio .portfolio-card .project-details .project-header .project-category {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.portfolio .portfolio-card .project-details .project-header .project-year {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 300;
}

.portfolio .portfolio-card .project-details .project-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .portfolio .portfolio-card .project-details .project-title {
    font-size: 1.35rem;
  }
}

.portfolio .portfolio-card .project-details .project-description {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.7;
  flex-grow: 1;
}

.portfolio .portfolio-card .project-details .project-meta {
  margin-top: auto;
}

.portfolio .portfolio-card .project-details .project-meta .client-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 16px;
}

.portfolio .portfolio-card .project-details .project-meta .project-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portfolio .portfolio-card .project-details .project-meta .project-scope .scope-item {
  font-size: 0.8rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 6px 0;
  position: relative;
}

.portfolio .portfolio-card .project-details .project-meta .project-scope .scope-item:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -8px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.portfolio .portfolio-conclusion {
  margin-top: 120px;
  text-align: center;
}

@media (max-width: 768px) {
  .portfolio .portfolio-conclusion {
    margin-top: 80px;
  }
}

.portfolio .portfolio-conclusion .conclusion-content {
  max-width: 600px;
  margin: 0 auto;
}

.portfolio .portfolio-conclusion .conclusion-content h4 {
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .portfolio .portfolio-conclusion .conclusion-content h4 {
    font-size: 1.5rem;
  }
}

.portfolio .portfolio-conclusion .conclusion-content p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
  line-height: 1.7;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

@media (max-width: 576px) {
  .portfolio .portfolio-conclusion .conclusion-content .conclusion-actions {
    flex-direction: column;
    gap: 20px;
  }
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-1px);
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action:hover i {
  transform: translateX(2px);
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action {
  color: var(--default-color);
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--default-color);
  transition: width 0.3s ease;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action:hover {
  color: var(--default-color);
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action:hover::after {
  width: 100%;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  text-align: center;
  margin-bottom: 40px;
  transition: all 0.3s ease-in-out;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}

.team .team-member .member-img img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.team .team-member .member-info h4 {
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.3;
}

.team .team-member .member-info span {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.team .team-member .member-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
  padding: 0 10px;
}

.team .team-member .member-info .social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50%;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.team .team-member .member-info .social a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.team .team-member:hover .member-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .team .team-member .member-info h4 {
    font-size: 1.3rem;
  }

  .team .team-member .member-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .team .team-member .member-info h4 {
    font-size: 1.2rem;
  }

  .team .team-member .member-info p {
    padding: 0;
    font-size: 0.85rem;
  }

  .team .team-member .member-info .social {
    gap: 12px;
  }

  .team .team-member .member-info .social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Hero Benefits Section
--------------------------------------------------------------*/
.hero-benefits {
  position: relative;
  z-index: 3;
  padding: 34px 0 24px;
  background: linear-gradient(180deg, #f8fbfd 0%, #f7f9f8 100%);
  border: 0;
}

.hero-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 6vw, 88px);
}

.hero-benefit-item {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: start;
  gap: 20px;
  min-height: 94px;
  padding: 0 34px 0 0;
}

.hero-benefit-item::before {
  content: attr(data-index);
  position: absolute;
  z-index: -1;
  top: -22px;
  right: 0;
  color: var(--brans-blue);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  opacity: 0.045;
}

.hero-benefit-icon {
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--brans-blue);
  font-size: 32px;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease;
}

.hero-benefit-item:hover .hero-benefit-icon {
  color: var(--brans-blue-dark);
  transform: translateY(-3px);
}

.hero-benefit-item h2 {
  margin: 0 0 7px;
  color: #173246;
  font-size: clamp(18px, 1.45vw, 21px);
  font-weight: 760;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.hero-benefit-item p {
  max-width: 340px;
  margin: 0;
  color: #607585;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .hero-benefits-grid {
    gap: 30px;
  }

  .hero-benefit-item {
    gap: 14px;
    padding-right: 12px;
  }

  .hero-benefit-icon {
    flex-basis: 36px;
    font-size: 30px;
  }

  .hero-benefit-item p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .hero-benefits {
    padding: 18px 0 0;
  }

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

  .hero-benefit-item {
    gap: 15px;
    min-height: 0;
    padding: 20px 38px 20px 0;
    border: 0;
  }

  .hero-benefit-item::before {
    display: block;
    top: 13px;
    right: 2px;
    font-size: 48px;
    opacity: 0.04;
  }

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

  .hero-benefit-item h2 {
    margin-bottom: 5px;
    font-size: 17px;
  }

  .hero-benefit-item p {
    max-width: none;
    font-size: 13.5px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

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

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/* Branş Sigorta - linear contact redesign */
.contact {
  background: #ffffff;
}

.contact .container {
  max-width: 1180px;
}

.contact .contact-wrapper {
  align-items: start;
  gap: clamp(56px, 7vw, 104px);
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  }
}

.contact .contact-info-panel {
  position: relative;
  padding: 0;
  background: transparent;
  color: #173246;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.contact .contact-info-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -28px;
  width: 3px;
  height: 72px;
  background: var(--accent-color);
}

.contact .contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact .contact-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  max-width: 390px;
  margin: 0 0 16px;
  color: #153044;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.contact .contact-info-panel .contact-info-header p {
  max-width: 430px;
  margin: 0;
  color: #607585;
  font-size: 15px;
  line-height: 1.75;
  opacity: 1;
}

.contact .contact-info-cards {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.contact .info-card {
  gap: 18px;
  padding: 13px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  transition: border-color 0.25s ease;
}

.contact .info-card:hover {
  padding-left: 0;
  background: transparent;
  transform: none;
}

.contact .info-card .icon-container {
  width: 28px;
  height: 36px;
  background: transparent;
  border: 0;
  border-radius: 0;
  justify-content: flex-start;
}

.contact .info-card .icon-container i {
  color: var(--accent-color);
  font-size: 20px;
}

.contact .info-card .card-content h4 {
  margin: 0 0 4px;
  color: #6b7e8c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact .info-card .card-content a {
  color: #173246;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
  transition: color 0.25s ease;
}

.contact .info-card .card-content a:hover {
  color: var(--accent-color);
}

.contact .social-links-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(21, 48, 68, 0.12);
}

.contact .social-links-panel h5 {
  margin: 0;
  color: #173246;
  font-size: 13px;
  font-weight: 750;
}

.contact .social-links-panel .social-icons {
  gap: 8px;
}

.contact .social-links-panel .social-icons a {
  width: 30px;
  height: 30px;
  color: var(--accent-color);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 16px;
}

.contact .social-links-panel .social-icons a:hover {
  color: #173246;
  background: transparent;
  transform: none;
}

.contact .contact-form-panel {
  gap: 38px;
  background: transparent;
}

.contact .map-container {
  height: 260px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  filter: saturate(0.65) contrast(0.96);
}

.contact .form-container {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.contact .form-container h3 {
  margin: 0 0 12px;
  color: #153044;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 760;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.contact .form-container p {
  max-width: 560px;
  margin: 0 0 28px;
  color: #687c8b;
  line-height: 1.7;
}

.contact .form-container .form-floating {
  margin-bottom: 18px;
}

.contact .form-container .form-floating .form-control {
  height: 62px;
  padding: 25px 0 7px;
  color: #173246;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(21, 48, 68, 0.22);
  border-radius: 0;
  box-shadow: none;
}

.contact .form-container .form-floating textarea.form-control {
  min-height: 145px;
  padding-top: 29px;
  resize: vertical;
}

.contact .form-container .form-floating .form-control:focus {
  background: transparent;
  border-color: var(--accent-color);
  box-shadow: inset 0 -1px 0 var(--accent-color);
}

.contact .form-container .form-floating label {
  padding: 1rem 0;
  color: #7b8d99;
  font-size: 14px;
}

.contact .form-container .btn-submit {
  min-height: 56px;
  padding: 16px 20px;
  color: #ffffff;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.contact .form-container .btn-submit:hover {
  background: #173246;
  border-color: #173246;
  box-shadow: none;
  transform: none;
}

@media (max-width: 991px) {
  .contact .contact-wrapper {
    gap: 64px;
  }

  .contact .contact-info-panel {
    border: 0;
  }
}

@media (max-width: 576px) {
  .contact .contact-wrapper {
    gap: 54px;
  }

  .contact .contact-info-panel,
  .contact .form-container {
    padding: 0;
  }

  .contact .contact-info-panel::before {
    left: 0;
    top: -24px;
    width: 48px;
    height: 2px;
  }

  .contact .map-container {
    height: 240px;
  }

  .contact .social-links-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 6rem;
  --content-spacing: 4rem;
}

.portfolio-details .project-intro {
  margin-bottom: var(--section-spacing);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-details .project-intro .intro-content .project-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.portfolio-details .project-intro .intro-content .project-meta .project-type,
.portfolio-details .project-intro .intro-content .project-meta .project-year {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  position: relative;
}

.portfolio-details .project-intro .intro-content .project-meta .project-type::after {
  content: "•";
  position: absolute;
  right: -1rem;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.portfolio-details .project-intro .intro-content .project-title {
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.portfolio-details .project-intro .intro-content .project-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-details .project-showcase {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .project-showcase .showcase-slider {
  border-radius: 12px;
  overflow: hidden;
}

.portfolio-details .project-showcase .showcase-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .project-showcase .showcase-slider .swiper-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.portfolio-details .project-showcase .showcase-slider .swiper-pagination {
  bottom: 30px;
}

.portfolio-details .project-showcase .showcase-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.portfolio-details .project-showcase .showcase-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white;
  transform: scale(1.2);
}

.portfolio-details .project-details-grid {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .project-details-grid .project-narrative h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.portfolio-details .project-details-grid .project-narrative p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.portfolio-details .project-details-grid .project-narrative p:last-child {
  margin-bottom: 0;
}

.portfolio-details .project-details-grid .project-info {
  padding-left: 3rem;
}

.portfolio-details .project-details-grid .project-info .info-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .project-details-grid .project-info .info-block:last-child {
  border-bottom: none;
}

.portfolio-details .project-details-grid .project-info .info-block .info-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.5rem;
}

.portfolio-details .project-details-grid .project-info .info-block .info-value {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--heading-color);
}

.portfolio-details .solution-approach {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .solution-approach .approach-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.portfolio-details .solution-approach .approach-header h2 {
  font-size: 2.75rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.portfolio-details .solution-approach .approach-header p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.portfolio-details .solution-approach .approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.portfolio-details .solution-approach .approach-steps .step-item .step-number {
  font-size: 3rem;
  font-weight: 200;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  margin-bottom: 1rem;
  line-height: 1;
}

.portfolio-details .solution-approach .approach-steps .step-item h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .solution-approach .approach-steps .step-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.portfolio-details .project-gallery {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .project-gallery h2 {
  font-size: 2.75rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.portfolio-details .project-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.portfolio-details .project-gallery .gallery-grid .gallery-item {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.portfolio-details .project-gallery .gallery-grid .gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-details .project-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-details .project-gallery .gallery-grid .gallery-item:hover {
  transform: translateY(-8px);
}

.portfolio-details .project-gallery .gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}

.portfolio-details .technologies-used {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .technologies-used h2 {
  font-size: 2.75rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  letter-spacing: -0.01em;
}

.portfolio-details .technologies-used p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.portfolio-details .technologies-used .tech-stack .tech-group {
  margin-bottom: 2.5rem;
}

.portfolio-details .technologies-used .tech-stack .tech-group:last-child {
  margin-bottom: 0;
}

.portfolio-details .technologies-used .tech-stack .tech-group h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.portfolio-details .technologies-used .tech-stack .tech-group .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.portfolio-details .technologies-used .tech-stack .tech-group .tech-tags .tech-tag {
  padding: 0.5rem 1.25rem;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.portfolio-details .technologies-used .tech-stack .tech-group .tech-tags .tech-tag:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.portfolio-details .project-outcomes {
  background-color: color-mix(in srgb, var(--surface-color), transparent 60%);
  padding: 4rem 3rem;
  border-radius: 12px;
  margin-bottom: var(--section-spacing);
}

.portfolio-details .project-outcomes .outcomes-header {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-details .project-outcomes .outcomes-header h2 {
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.portfolio-details .project-outcomes .outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.portfolio-details .project-outcomes .outcomes-grid .outcome-card {
  text-align: center;
}

.portfolio-details .project-outcomes .outcomes-grid .outcome-card .outcome-stat {
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.portfolio-details .project-outcomes .outcomes-grid .outcome-card .outcome-label {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.4;
}

.portfolio-details .project-navigation {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 3rem;
}

.portfolio-details .project-navigation .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-details .project-navigation .nav-container .nav-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio-details .project-navigation .nav-container .nav-item.prev,
.portfolio-details .project-navigation .nav-container .nav-item.next {
  color: var(--heading-color);
}

.portfolio-details .project-navigation .nav-container .nav-item.prev .nav-label,
.portfolio-details .project-navigation .nav-container .nav-item.next .nav-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0.25rem;
}

.portfolio-details .project-navigation .nav-container .nav-item.prev .nav-title,
.portfolio-details .project-navigation .nav-container .nav-item.next .nav-title {
  font-size: 1.125rem;
  font-weight: 400;
}

.portfolio-details .project-navigation .nav-container .nav-item.prev:hover,
.portfolio-details .project-navigation .nav-container .nav-item.next:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.portfolio-details .project-navigation .nav-container .nav-item.next {
  text-align: right;
}

.portfolio-details .project-navigation .nav-container .nav-item.center {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 6px;
  color: var(--heading-color);
  font-weight: 400;
  transition: all 0.3s ease;
}

.portfolio-details .project-navigation .nav-container .nav-item.center i {
  font-size: 1.125rem;
}

.portfolio-details .project-navigation .nav-container .nav-item.center:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 1200px) {
  .portfolio-details .project-details-grid .project-info {
    padding-left: 2rem;
  }

  .portfolio-details .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .portfolio-details .gallery-grid .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 992px) {
  .portfolio-details .project-intro .intro-content .project-title {
    font-size: 3rem;
  }

  .portfolio-details .project-details-grid .project-info {
    padding-left: 0;
    margin-top: 3rem;
  }

  .portfolio-details .approach-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .portfolio-details .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

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

@media (max-width: 768px) {
  .portfolio-details {
    --section-spacing: 4rem;
  }

  .portfolio-details .project-intro .intro-content .project-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .portfolio-details .project-intro .intro-content .project-meta .project-type::after {
    display: none;
  }

  .portfolio-details .project-intro .intro-content .project-title {
    font-size: 2.5rem;
  }

  .portfolio-details .project-intro .intro-content .project-description {
    font-size: 1.125rem;
  }

  .portfolio-details .project-showcase .showcase-slider .swiper-slide img {
    height: 400px;
  }

  .portfolio-details .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .portfolio-details .gallery-grid .gallery-item.featured {
    grid-column: span 1;
  }

  .portfolio-details .project-outcomes {
    padding: 3rem 2rem;
  }

  .portfolio-details .project-outcomes .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-details .project-navigation .nav-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .portfolio-details .project-navigation .nav-container .nav-item.prev,
  .portfolio-details .project-navigation .nav-container .nav-item.next {
    text-align: center;
  }

  .portfolio-details .project-navigation .nav-container .nav-item.center {
    order: -1;
  }
}

@media (max-width: 576px) {
  .portfolio-details .project-outcomes {
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 0;
  }
}


/*--------------------------------------------------------------
# Service Detail Section
--------------------------------------------------------------*/

.service-detail {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.service-detail-wrapper {
  position: relative;
}

.service-detail .row {
  --bs-gutter-x: 5rem;
}

.service-detail-content {
  max-width: 585px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #344054;
}

.service-detail-label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 20px;
  background: var(--brans-blue);
}

.service-detail h1,
.service-detail h2 {
  margin: 0 0 24px;
  max-width: 560px;
  font-size: clamp(38px, 3.8vw, 58px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.052em;
  color: #101828;
}

.service-detail-lead {
  margin: 0 0 18px;
  max-width: 545px;
  font-size: 16.5px;
  line-height: 1.76;
  font-weight: 600;
  color: #344054;
}

.service-detail-content > p:not(.service-detail-lead) {
  margin: 0;
  max-width: 530px;
  font-size: 15.5px;
  line-height: 1.84;
  color: #667085;
}

/* Linear Meta */

.service-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 555px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid #e4e7ec;
}

.service-detail-meta div {
  position: relative;
  padding-right: 22px;
}

.service-detail-meta div + div {
  padding-left: 22px;
}

.service-detail-meta div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, #d8dee7 0%, rgba(216, 222, 231, 0) 100%);
}

.service-detail-meta span {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brans-blue);
}

.service-detail-meta strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  color: #101828;
}

.service-detail-meta small {
  display: block;
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 500;
  color: #667085;
}

/* Visual */

.service-detail-visual {
  position: relative;
  min-height: 430px;
  margin-left: -42px;
}

.service-detail-frame {
  position: absolute;
  top: 34px;
  right: 6px;
  width: 91%;
  height: 360px;
  border-radius: 28px;
  background: #eaf2f8;
  transform: rotate(-2.3deg);
  z-index: 1;
}

.service-detail-frame::before {
  content: "";
  position: absolute;
  inset: 21px;
  border: 1px solid rgba(0, 116, 184, 0.15);
  border-radius: 23px;
}

.service-detail-image {
  position: relative;
  z-index: 2;
  width: 92%;
  height: 400px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 28px;
  background: #dfe6ee;
  box-shadow: 0 26px 54px rgba(16, 24, 40, 0.105);
}

.service-detail-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(16, 24, 40, 0.01) 0%,
    rgba(16, 24, 40, 0.08) 100%
  );
  pointer-events: none;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*--------------------------------------------------------------
# Service Detail Reverse Section
--------------------------------------------------------------*/

.service-detail-reverse {
  background: #ffffff;
}

.service-detail-reverse .service-detail-visual {
  margin-left: 0;
  margin-right: -42px;
}

.service-detail-reverse .service-detail-frame {
  left: 6px;
  right: auto;
  transform: rotate(2.3deg);
}

.service-detail-reverse .service-detail-image {
  margin-left: 0;
  margin-right: auto;
}

.service-detail-reverse .service-detail-content {
  margin-left: auto;
}

/* Responsive */

@media (max-width: 991px) {
  .service-detail {
    padding: 78px 0;
  }

  .service-detail .row {
    --bs-gutter-x: 1.5rem;
    row-gap: 2.5rem;
  }

  .service-detail-content {
    max-width: 100%;
    min-height: auto;
    justify-content: flex-start;
  }

  .service-detail h1,
  .service-detail h2,
  .service-detail-lead,
  .service-detail-content > p:not(.service-detail-lead),
  .service-detail-meta {
    max-width: 100%;
  }

  .service-detail-visual,
  .service-detail-reverse .service-detail-visual {
    min-height: 410px;
    margin-left: 0;
    margin-right: 0;
  }

  .service-detail-frame,
  .service-detail-reverse .service-detail-frame {
    left: auto;
    right: 0;
    width: calc(100% - 24px);
    height: 340px;
    transform: rotate(-2.3deg);
  }

  .service-detail-image,
  .service-detail-reverse .service-detail-image {
    width: calc(100% - 24px);
    height: 370px;
    margin-left: auto;
    margin-right: 0;
  }

  .service-detail-reverse .service-detail-content {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .service-detail {
    padding: 64px 0;
  }

  .service-detail-label {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .service-detail h1,
  .service-detail h2 {
    margin-bottom: 22px;
    font-size: 36px;
    line-height: 1.06;
  }

  .service-detail-lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .service-detail-content > p:not(.service-detail-lead) {
    font-size: 15px;
  }

  .service-detail-meta {
    grid-template-columns: 1fr;
    margin-top: 30px;
    padding-top: 18px;
  }

  .service-detail-meta div {
    padding: 15px 0;
  }

  .service-detail-meta div + div {
    padding-left: 0;
    border-top: 1px solid #e4e7ec;
  }

  .service-detail-meta div + div::before {
    display: none;
  }

  .service-detail-meta span {
    margin-bottom: 8px;
  }

  .service-detail-visual,
  .service-detail-reverse .service-detail-visual {
    min-height: auto;
    margin-top: 8px;
  }

  .service-detail-frame,
  .service-detail-reverse .service-detail-frame {
    display: none;
  }

  .service-detail-image,
  .service-detail-reverse .service-detail-image {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    margin-left: 0;
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-content {
  font-size: 16px;
  line-height: 1.7;
}

.privacy .privacy-content .last-updated {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}

.privacy .privacy-content .last-updated p {
  margin: 0;
  color: var(--heading-color);
}

.privacy .privacy-content .privacy-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .privacy-section h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}

.privacy .privacy-content .privacy-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.privacy .privacy-content .privacy-section h4 {
  color: var(--heading-color);
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.privacy .privacy-content .privacy-section h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section ul,
.privacy .privacy-content .privacy-section ol {
  margin: 20px 0;
  padding-left: 30px;
}

.privacy .privacy-content .privacy-section ul li,
.privacy .privacy-content .privacy-section ol li {
  margin-bottom: 10px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .info-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .info-box h4 {
  color: var(--heading-color);
  margin-top: 0;
}

.privacy .privacy-content .privacy-section .highlight-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: var(--contrast-color);
  margin: 40px 0;
}

.privacy .privacy-content .privacy-section .highlight-box i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .highlight-box h4 {
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .highlight-box p {
  color: var(--contrast-color);
  margin: 0;
  opacity: 0.9;
}

.privacy .privacy-content .privacy-section .security-measures {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy .privacy-content .privacy-section .security-measures .measure-item i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item h5 {
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .rights-list {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  margin-bottom: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .rights-list .right-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.privacy .privacy-content .privacy-section .rights-list .right-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 20px;
  margin-top: 5px;
  min-width: 24px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div {
  flex: 1;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div h5 {
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .cookie-types {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .cookie-types h4 {
  margin-bottom: 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table {
  margin: 0;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead th {
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 15px 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody td {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 15px 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.privacy .privacy-content .contact-section {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .contact-section h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.privacy .privacy-content .contact-section h3:after {
  background: var(--accent-color);
}

.privacy .privacy-content .contact-section .contact-info {
  margin-top: 30px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 18px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item span {
  color: var(--default-color);
}

@media (max-width: 768px) {
  .privacy .privacy-content {
    font-size: 15px;
  }

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

  .privacy .privacy-content .privacy-section h4 {
    font-size: 20px;
  }

  .privacy .privacy-content .privacy-section .security-measures .row>div {
    margin-bottom: 20px;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item {
    flex-direction: column;
    text-align: center;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}

.error-404 .error-content {
  margin-bottom: 80px;
}

.error-404 .error-content .error-number {
  font-size: 8rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-number {
    font-size: 6rem;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .error-number {
    font-size: 4.5rem;
  }
}

.error-404 .error-content .error-title {
  font-size: 3rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .error-title {
    font-size: 2rem;
  }
}

.error-404 .error-content .error-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

.error-404 .error-content .error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.error-404 .error-content .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-content .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .error-404 .error-content .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .error-404 .error-content .error-actions .btn-primary,
  .error-404 .error-content .error-actions .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.error-404 .error-content .search-section .search-label {
  font-size: 1rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.error-404 .error-content .search-section .search-form {
  max-width: 400px;
  margin: 0 auto;
}

.error-404 .error-content .search-section .search-form .search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input {
  width: 100%;
  padding: 16px 60px 16px 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn {
  position: absolute;
  right: 8px;
  background: var(--accent-color);
  border: none;
  border-radius: 6px;
  padding: 12px;
  color: var(--contrast-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn i {
  font-size: 1rem;
}

.error-404 .helpful-links .links-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .error-404 .helpful-links .links-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
}

.error-404 .helpful-links .link-item {
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-10px);
}

.error-404 .helpful-links .link-item .link-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.error-404 .helpful-links .link-item h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.error-404 .helpful-links .link-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.error-404 .helpful-links .link-item .link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  gap: 12px;
}

.error-404 .helpful-links .link-item .link-cta i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover i {
  transform: translateX(3px);
}

.error-404 .helpful-links .link-item:hover .link-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .helpful-links .link-item {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
    min-height: auto;
  }

  .error-404 .error-content {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-title {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Brans Sigorta Custom Styles
--------------------------------------------------------------*/
:root {
  --brans-blue: #0068a9;
  --brans-blue-dark: #064f7f;
  --brans-blue-deep: #153243;
  --brans-blue-light: #eaf6fc;
  --brans-green: #a1cc2f;
  --brans-yellow: #F8C301;
  --brans-ink: #1c2f3e;
  --brans-muted: #657585;
  --brans-blue-soft: rgba(0, 104, 169, 0.08);
  --brans-blue-border: rgba(0, 104, 169, 0.18);
  --accent-color: var(--brans-blue);
}

.header {
  --background-color: transparent;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid transparent;
  isolation: isolate;
  transition: padding 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.header::before {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  opacity: 0;
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.scrolled .header,
.mobile-nav-active .header {
  background: transparent;
  border-bottom-color: rgba(0, 104, 169, 0.14);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 10px 0;
}

.mobile-nav-active .header {
  background: transparent;
}

.scrolled .header::before,
.mobile-nav-active .header::before {
  opacity: 1;
}

.header .brand-logo {
  text-decoration: none;
  min-width: auto;
}

.header .brand-logo-mark {
  width:  158px;
  height: auto;
  flex: 0 0 auto;
}

.header .header-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 150px;
  padding: 12px 24px;
  border: 1px solid var(--brans-blue-border);
  border-radius: 999px;
  color: var(--brans-blue);
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: 0.3s;
}

.header .header-contact-btn:hover {
  background: var(--brans-blue);
  color: #ffffff;
}

.header .header-contact-btn i {
  font-size: 18px;
  line-height: 1;
}

.footer.dark-background {
  --background-color: #f4faff8e;
  --default-color: #4d5965;
  --heading-color: #1d252c;
  --accent-color: var(--brans-blue);
  --surface-color: #ffffff;
  color: var(--default-color);
}

.footer .footer-top {
  padding-top: 0;
  border-top: 0;
}

.footer .footer-about .logo span,
.footer h4 {
  font-family: var(--heading-font);
  font-weight: 700;
}

.footer .footer-about p {
  max-width: 420px;
  color: #4d5965;
  font-family: var(--default-font);
  line-height: 1.7;
}

.footer h4 {
  color: #202a33;
  font-size: 15px;
  letter-spacing: 0;
  margin-bottom: 18px;
  padding-bottom: 13px;
  text-transform: uppercase;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: rgba(0, 116, 184, 0.30);
}

.footer .footer-links ul a,
.footer .footer-contact a {
  color: #2f3942;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer .footer-links ul a:hover,
.footer .footer-contact a:hover,
.footer .social-links a:hover {
  color: var(--brans-blue-dark);
  border-color: rgba(0, 116, 184, 0.34);
}

.footer .footer-links ul a:hover,
.footer .footer-contact a:hover {
  transform: translateX(4px);
}

.footer .social-links a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(47, 57, 66, 0.16);
  color: #2f3942;
  background: rgba(255, 255, 255, 0);
  padding: 0;
  margin-right: 0;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1;
}

.footer .social-links a:hover {
  background: rgba(0, 116, 184, 0.08);
  transform: translateY(-1px);
  color: var(--brans-blue-dark);
  border-color: rgba(0, 116, 184, 0.34);
}

.footer .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-contact p {
  color: #4d5965;
  line-height: 1.55;
}

.footer .footer-hotline {
  display: flex;
  justify-content: center;
  padding: 26px 0 30px;
  border-bottom: 1px solid rgba(12, 65, 107, 0.10);
}

.footer .footer-hotline-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brans-blue);
  text-decoration: none;
}

.footer .footer-hotline-link i {
  font-size: 24px;
  line-height: 1;
}

.footer .footer-hotline-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer .footer-hotline-copy strong {
  color: #202a33;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  font-weight: 500;
}

.footer .footer-hotline-copy span {
  color: #7a8793;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer .footer-main-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(140px, 1fr)) minmax(220px, 1.1fr);
  gap: 38px;
  align-items: start;
  padding-top: 42px;
}

.footer .footer-brand-block {
  padding-right: 18px;
}

.footer .footer-brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  text-decoration: none;
}

.footer .footer-brand-mark img {
  width: 124px;
  height: 124px;
  max-height: none;
  display: block;
}

.footer .footer-brand-mark .sitename {
  color: #202a33;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.footer .footer-contact-panel {
  justify-self: end;
  max-width: 260px;
}

.footer .footer-contact-panel .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.footer .copyright {
  background-color: transparent;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 24px;
  padding-top: 24px;
  padding-bottom: 4px;
  border-top: 1px solid rgba(12, 65, 107, 0.10);
  text-align: left;
  font-size: 13px;
  color: #6f7c88;
}

.footer .copyright p {
  margin: 0;
}

.footer .credits {
  justify-self: end;
  margin: 0;
  font-size: 12px;
  color: #7a8793;
  text-align: right;
  line-height: 1.5;
}

.footer .credits a {
  color: #2f3942;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer .credits a:hover {
  color: var(--brans-blue);
}

@media (max-width: 575px) {
  .footer .footer-hotline-link {
    gap: 10px;
  }

  .footer .footer-hotline-link i {
    font-size: 24px;
  }

  .footer .copyright {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 8px;
  }

  .footer .copyright p,
  .footer .credits {
    grid-column: auto;
  }

  .footer .credits {
    justify-self: start;
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .header .navmenu {
    flex: 1;
  }

  .header .navmenu>ul {
    justify-content: center;
  }

  .header .navmenu a,
  .header .navmenu a:focus {
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 500;
  }

  .header .navmenu .dropdown ul {
    left: 50%;
    top: calc(100% + 16px);
    width: 316px;
    min-width: 316px;
    padding: 8px 0 12px;
    border: 1px solid rgba(0, 104, 169, 0.14);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    background: rgba(255, 255, 255, 0.78);
    background-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    transform: translateX(-50%);
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
  }

  .header .navmenu .dropdown:hover>ul,
  .header .navmenu .dropdown:focus-within>ul {
    top: calc(100% + 16px);
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
  }

  .header .navmenu .dropdown ul a {
    padding: 9px 20px;
    border-radius: 0;
    color: rgba(21, 34, 48, 0.72);
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.35;
  }

  .header .navmenu .dropdown ul a:hover {
    color: var(--brans-blue);
    background: transparent;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-active .header {
    background: #ffffff;
    border-bottom-color: rgba(0, 104, 169, 0.14);
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
  }

  .header .container-fluid {
    min-height: 48px;
  }

  .header .brand-logo {
    min-width: auto;
  }

  .header .brand-logo-mark {
    width: 162px;
    height: auto;
  }

  .header .mobile-nav-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0 0 0 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: transparent;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
  }

  .header .mobile-nav-toggle span {
    position: absolute;
    left: 6px;
    height: 2px;
    border-radius: 999px;
    background: var(--brans-ink);
    transform-origin: center;
    transition: top 0.28s ease, width 0.28s ease, transform 0.28s ease, opacity 0.2s ease;
  }

  .header .mobile-nav-toggle span:nth-child(1) {
    top: 11px;
    width: 24px;
  }

  .header .mobile-nav-toggle span:nth-child(2) {
    top: 19px;
    width: 15px;
  }

  .header .mobile-nav-toggle span:nth-child(3) {
    display: none;
  }

  .mobile-nav-active .header .mobile-nav-toggle {
    position: relative;
    top: auto;
    right: auto;
    background: transparent;
  }

  .mobile-nav-active .header .mobile-nav-toggle span {
    top: 16px;
    width: 24px;
    background: var(--brans-ink);
  }

  .mobile-nav-active .header .mobile-nav-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .mobile-nav-active .header .mobile-nav-toggle span:nth-child(2) {
    opacity: 1;
    transform: rotate(-45deg);
  }

  .mobile-nav-active .header .mobile-nav-toggle span:nth-child(3) {
    display: none;
  }

  .header .navmenu>ul {
    display: block;
    position: fixed;
    inset: 76px 0 0 0;
    width: 100%;
    height: calc(100vh - 76px);
    margin: 0;
    padding: 28px 22px;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    overflow-y: auto;
    pointer-events: none;
    transform: translateX(-105%);
    transition: transform 0.36s ease;
    z-index: 9998;
  }

  .header .navmenu a,
  .header .navmenu a:focus {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--brans-ink);
    font-size: 17px;
    font-weight: 500;
  }

  .header .navmenu .dropdown ul {
    position: static;
    display: none;
    width: 100%;
    height: auto;
    inset: auto;
    padding: 6px 0 10px 16px;
    margin: 0;
    box-shadow: none;
    background: transparent;
    transform: none;
    pointer-events: auto;
  }

  .header .navmenu .dropdown ul.dropdown-active {
    display: block;
  }

  .header .navmenu .dropdown ul a {
    padding: 11px 8px;
    font-size: 15px;
    color: #506273;
  }

  .mobile-nav-active .header .navmenu {
    position: static;
    background: transparent;
    transition: 0.3s;
  }

  .mobile-nav-active .header .navmenu>ul {
    display: block;
    pointer-events: auto;
    transform: translateX(0);
  }

  .header .header-contact-btn {
    display: none;
  }
}

.insurance-hero {
  min-height: 100vh;
  padding: 118px 0 72px;
  background:
    linear-gradient(112deg, rgba(0, 104, 169, 0.05) 0 16%, transparent 16% 100%),
    linear-gradient(155deg, rgba(161, 204, 47, 0.035) 0 20%, transparent 20% 100%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  position: relative;
  overflow: hidden;
}

.insurance-hero::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -115px;
  width: 560px;
  height: 1060px;
  background:
    linear-gradient(180deg, rgba(0, 104, 169, 0.052), rgba(0, 104, 169, 0)),
    linear-gradient(90deg, rgba(248, 195, 1, 0.035), rgba(255, 255, 255, 0));
  clip-path: polygon(0 0, 64% 0, 42% 100%, 0 100%);
  pointer-events: none;
}

.insurance-hero::after {
  display: none;
}

.insurance-hero .container {
  position: relative;
  z-index: 1;
}

.insurance-hero .container,
.insurance-hero .insurance-rotator {
  min-height: calc(100vh - 190px);
}

@media (min-width: 1200px) {
  .insurance-hero .container {
    max-width: 1320px;
  }
}

.insurance-hero .insurance-rotator {
  position: relative;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.insurance-hero .insurance-rotator>div:first-child {
  position: relative;
  min-height: calc(100vh - 190px);
}

.insurance-hero .insurance-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(26px);
  will-change: opacity, transform;
  visibility: hidden;
  transition: opacity 0.94s ease, transform 0.94s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.94s;
}

.insurance-hero .insurance-copy.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
  z-index: 2;
  transition-delay: 0s;
}

.insurance-hero .insurance-copy.leaving {
  opacity: 0;
  transform: translateX(-26px);
  visibility: visible;
  z-index: 1;
  transition-delay: 0s;
}

.insurance-hero .insurance-visual-stage {
  position: relative;
  width: min(34vw, 500px);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  border-radius: 32px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(248, 195, 1, 0.12), rgba(255, 255, 255, 0) 34%),
    linear-gradient(315deg, rgba(161, 204, 47, 0.10), rgba(255, 255, 255, 0) 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 252, 0.9));
  box-shadow: 0 30px 80px rgba(21, 50, 67, 0.10);
  isolation: isolate;
}

.insurance-hero .insurance-rotator.is-dragging {
  cursor: grabbing;
}

.insurance-hero .insurance-visual-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 104, 169, 0.10);
  border-radius: 32px;
  z-index: -1;
}

.insurance-hero .insurance-visual-stage::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0, 104, 169, 0.10), rgba(255, 255, 255, 0) 42%),
    linear-gradient(315deg, rgba(248, 195, 1, 0.10), rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
  z-index: 1;
}

.insurance-hero .insurance-visual-stage img {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  border-radius: 24px;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.985);
  will-change: opacity, transform;
  visibility: hidden;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.96s ease, transform 0.96s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.96s;
}

.insurance-hero .insurance-visual-stage img.active {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  z-index: 3;
  transition-delay: 0s;
}

.insurance-hero .insurance-visual-stage img.leaving {
  opacity: 0;
  transform: scale(0.985);
  visibility: visible;
  z-index: 2;
  transition-delay: 0s;
}

.insurance-hero .insurance-kicker {
  display: none;
  align-items: center;
  margin-bottom: 18px;
  color: var(--brans-blue);
  font-size: 13px;
  font-weight: 700;
}

.insurance-hero .insurance-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  margin-right: 10px;
  background: var(--brans-blue);
  border-radius: 999px;
}

.insurance-hero .insurance-copy h1 {
  margin: 0 0 20px;
  color: var(--brans-ink);
  font-family: var(--heading-font);
  font-size: clamp(2.85rem, 4.05vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
}

.insurance-hero .insurance-copy p {
  max-width: 520px;
  margin: 0 0 22px;
  color: var(--brans-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.insurance-hero .insurance-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 48px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(0, 104, 169, 0.16);
  border-radius: 999px;
  color: var(--brans-ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 28px rgba(21, 50, 67, 0.07);
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s;
}

.insurance-hero .insurance-detail-link i {
  font-size: 18px;
}

.insurance-hero .insurance-detail-link:hover {
  border-color: rgba(0, 104, 169, 0.28);
  color: var(--brans-blue);
  background: #ffffff;
  transform: translateX(3px);
  box-shadow: 0 18px 34px rgba(21, 50, 67, 0.10);
}

.insurance-hero .insurance-pagination {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 44%;
  text-align: left;
}

.insurance-hero .insurance-pagination button {
  width: 8px;
  height: 8px;
  margin: 0 6px 0 0 !important;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #9aa7a4;
  opacity: 0.55;
}

.insurance-hero .insurance-pagination button.active {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 104, 169, 0.38);
  background: transparent;
  opacity: 1;
  transform: translateY(3px);
}

.insurance-hero .promo-visual {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 20%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(145deg, #f8fbfd 0%, #eaf6fc 50%, #ddecf4 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.insurance-hero .promo-visual::before,
.insurance-hero .promo-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 18px solid rgba(0, 104, 169, 0.08);
}

.insurance-hero .promo-visual::before {
  width: 105px;
  height: 105px;
  left: 40px;
  top: 56px;
}

.insurance-hero .promo-visual::after {
  width: 86px;
  height: 86px;
  right: 50px;
  top: 64px;
}

.insurance-hero .promo-ticket {
  width: 70%;
  min-height: 230px;
  padding: 26px 22px 34px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(21, 50, 67, 0.94), rgba(0, 104, 169, 0.9)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 14px);
  box-shadow: 0 24px 40px rgba(21, 50, 67, 0.18);
  transform: rotate(-4deg);
  position: relative;
  z-index: 1;
}

.insurance-hero .promo-ticket span {
  display: block;
  color: #f4f9fc;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
}

.insurance-hero .promo-ticket strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  margin: 22px auto 12px;
  padding: 14px 20px;
  border-radius: 18px;
  background: var(--brans-yellow);
  color: var(--brans-blue);
  font-size: 3.35rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 0 rgba(21, 50, 67, 0.16);
}

.insurance-hero .promo-ticket small {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  font-weight: 700;
}

.insurance-hero .promo-brand {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 8px;
  white-space: nowrap;
  z-index: 2;
}

.insurance-hero .quote-form {
  display: grid;
  gap: 15px;
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  position: relative;
  z-index: 5;
  box-sizing: border-box;
}

.insurance-hero .quote-form-title {
  display: none;
}

.insurance-hero .quote-form-title span {
  color: var(--brans-blue);
  font-size: 13px;
  font-weight: 700;
}

.insurance-hero .quote-form-title h2 {
  margin: 6px 0 0;
  color: #25313c;
  font-size: 1.45rem;
  font-weight: 700;
}

.insurance-hero .quote-select-toggle,
.insurance-hero .quote-form input {
  width: 100%;
  box-sizing: border-box;
  height: 66px;
  padding: 0 17px;
  border: 1px solid var(--brans-blue-border);
  border-radius: 14px;
  color: #4d5968;
  background: #ffffff;
  font-size: 15px;
  outline: none;
  transition: 0.25s;
}

.insurance-hero .quote-select {
  position: relative;
}

.insurance-hero .quote-native-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.insurance-hero .quote-select-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.insurance-hero .quote-select-toggle i {
  color: var(--brans-blue);
  font-size: 14px;
  transition: transform 0.25s ease;
}

.insurance-hero .quote-select.open .quote-select-toggle {
  border-color: var(--brans-blue);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 0 0 4px rgba(0, 104, 169, 0.10);
}

.insurance-hero .quote-select.open .quote-select-toggle i {
  transform: rotate(180deg);
}

.insurance-hero .quote-select-list {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0;
  padding: 8px 0;
  border: 1px solid var(--brans-blue-border);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 0.22s ease;
}

.insurance-hero .quote-select.open .quote-select-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.insurance-hero .quote-select-list li {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: #344154;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s ease;
}

.insurance-hero .quote-select-list li:hover,
.insurance-hero .quote-select-list li.active {
  color: var(--brans-blue);
  background: rgba(0, 104, 169, 0.07);
}

.insurance-hero .quote-form input::placeholder {
  color: #9aa9bf;
}

.insurance-hero .quote-select-toggle:focus,
.insurance-hero .quote-form input:focus {
  border-color: var(--brans-blue);
  box-shadow: 0 0 0 4px rgba(0, 104, 169, 0.12);
}

.insurance-hero .quote-form .quote-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  height: 66px;
  border: 1px solid rgba(0, 104, 169, 0.16);
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brans-blue), color-mix(in srgb, var(--brans-blue), #ffffff 10%));
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s;
  box-shadow: 0 14px 28px rgba(0, 104, 169, 0.14);
}

.insurance-hero .quote-form .quote-submit i {
  font-size: 18px;
  transition: transform 0.25s;
}

.insurance-hero .quote-form .quote-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 104, 169, 0.20);
}

.insurance-hero .quote-form .quote-submit:hover i {
  transform: translateX(4px);
}

.hero-products {
  padding: 88px 0 90px;
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(0, 104, 169, 0.035), rgba(255, 255, 255, 0) 32%),
    #ffffff;
  position: relative;
  z-index: 2;
}

.hero-products .quick-access {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  min-height: 122px;
  padding: 24px 40px 56px;
  border-radius: 22px;
  background: linear-gradient(90deg, var(--brans-blue) 0%, #2f88bd 100%);
  color: #ffffff;
}

.hero-products .quick-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.98;
}

.hero-products .quick-item i {
  color: rgba(255, 255, 255, 0.42);
  font-size: 29px;
}

.hero-products .products-panel {
  max-width: 1180px;
  margin: -48px auto 0;
  padding: 60px 54px 76px;
  border: 1px solid rgba(0, 104, 169, 0.14);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.07);
  position: relative;
  z-index: 3;
}

.hero-products .products-heading {
  margin: 0 auto 46px;
  max-width: 640px;
  text-align: center;
}

.hero-products .products-heading h2 {
  margin: 0 0 14px;
  color: var(--brans-ink);
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-products .products-heading p {
  margin: 0;
  color: #8b98a7;
  font-size: 13px;
  line-height: 1.55;
}

.hero-products .products-slider {
  width: 100%;
  padding: 0 0 86px;
  overflow: hidden;
}

.hero-products .products-grid {
  align-items: stretch;
}

.hero-products .swiper-slide {
  height: auto;
}

.hero-products .product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}

.hero-products .product-visual {
  width: 250px;
  aspect-ratio: 1;
  margin: 0 auto 34px;
  border-radius: 50%;
  padding: 18px;
  background: radial-gradient(circle, #ffffff 50%, rgba(0, 104, 169, 0.06) 51%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-products .product-visual img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.hero-products .product-card h3 {
  margin: 0 0 12px;
  color: #2f3946;
  font-size: 1rem;
  font-weight: 700;
}

.hero-products .product-card p {
  margin: 0 auto 26px;
  max-width: 255px;
  color: #8794a4;
  font-size: 13px;
  line-height: 1.55;
  min-height: 60px;
}

.hero-products .product-card a {
  margin-top: auto;
  min-width: 108px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(0, 104, 169, 0.4);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brans-blue);
  background: rgba(255, 255, 255, 0.94);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: 0.22s ease;
}

.hero-products .product-card a:hover {
  color: #ffffff;
  background: var(--brans-blue);
  border-color: var(--brans-blue);
}

.hero-products .products-controls {
  position: absolute;
  left: 54px;
  right: 54px;
  bottom: 4px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.hero-products .products-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-products .products-button-prev,
.hero-products .products-button-next {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 104, 169, 0.55);
  border-radius: 50%;
  color: var(--brans-blue);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.hero-products .products-button-prev:hover,
.hero-products .products-button-next:hover {
  color: #ffffff;
  background: var(--brans-blue);
}

.hero-products .products-pagination {
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-products .products-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 5px;
  background: #a9b7b4;
  opacity: 0.65;
}

.hero-products .products-pagination .swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  border: 2px solid rgba(0, 104, 169, 0.55);
  background: transparent;
  opacity: 1;
}

.hero-products .products-all-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--brans-blue);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.hero-products .products-all-link i {
  font-size: 15px;
}

@media (max-width: 1199px) {
  .insurance-hero {
    padding: 118px 0 105px;
  }

  .insurance-hero .insurance-copy h1 {
    font-size: clamp(2.6rem, 6vw, 4rem);
  }

  .insurance-hero .insurance-visual-stage {
    width: min(38vw, 440px);
    padding: 16px;
  }

  .insurance-hero .insurance-visual-stage img {
    inset: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
  }

  .insurance-hero .quote-form {
    max-width: 100%;
    margin: 0 0 0 auto;
  }

  .hero-products .quick-access {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
  }

  .hero-products .product-visual {
    width: 220px;
  }
}

@media (min-width: 1200px) {
  .insurance-hero .insurance-rotator>div:nth-child(1) {
    width: 34%;
  }

  .insurance-hero .insurance-rotator>div:nth-child(2) {
    width: 40%;
  }

  .insurance-hero .insurance-rotator>div:nth-child(3) {
    width: 26%;
  }
}

@media (max-width: 991px) {
  .insurance-hero {
    min-height: auto;
    padding: 108px 0 96px;
  }

  .insurance-hero .row {
    flex-direction: row;
  }

  .insurance-hero .insurance-rotator,
  .insurance-hero .insurance-rotator>div:first-child {
    min-height: 122px;
    position: relative;
  }

  .insurance-hero .insurance-copy {
    position: relative;
    inset: auto;
    min-height: 270px;
  }

  .insurance-hero .insurance-visual-stage {
    width: min(66vw, 390px);
    padding: 16px;
  }

  .insurance-hero .insurance-visual-stage img {
    inset: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
  }

  .hero-products {
    margin-top: 0;
    padding-top: 78px;
  }

  .hero-products .quick-access {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px 26px 58px;
  }

  .hero-products .products-panel {
    margin-top: -34px;
    padding: 44px 24px 94px;
  }

  .hero-products .products-controls {
    left: 24px;
    right: 24px;
    bottom: 6px;
  }
}

@media (max-width: 575px) {
  .insurance-hero {
    min-height: auto;
    padding: 82px 0 92px;
  }

  .insurance-hero::before {
    left: -170px;
    top: -70px;
    width: 360px;
    height: 820px;
  }

  .insurance-hero::after {
    display: none;
  }

  .insurance-hero .container {
    padding-left: 0;
    padding-right: 0;
  }

  .insurance-hero .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    gap: 0 !important;
  }

  .insurance-hero .col-lg-8,
  .insurance-hero .col-lg-4 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .insurance-hero .insurance-rotator {
    width: 100vw;
    margin-left: 50%;
    padding-bottom: 0;
    transform: translateX(-50%);
    min-height: auto;
  }

  .insurance-hero .insurance-rotator>div:first-child {
    min-height: auto;
  }

  .insurance-hero .insurance-rotator .col-lg-4 {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100vw;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(1) {
    order: 2;
    background: #ffffff;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(2) {
    order: 1;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(3) {
    order: 3;
    position: relative;
    margin-top: 0;
    padding-top: 20px;
    background: #ffffff;
  }

  .insurance-hero .insurance-visual-stage {
    order: 1;
    width: calc(100vw - 28px);
    max-width: none;
    height: 320px;
    aspect-ratio: auto;
    margin: 0 auto;
    padding: 0;
    transform: none;
    border-radius: 0 0 24px 24px;
    background:
      linear-gradient(145deg, rgba(0, 104, 169, 0.08), rgba(248, 195, 1, 0.05)),
      #eef7fc;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(21, 50, 67, 0.10);
  }

  .insurance-hero .insurance-visual-stage::before {
    display: none;
  }

  .insurance-hero .insurance-visual-stage img {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: center top;
  }

  .insurance-hero .insurance-visual-stage::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    z-index: 3;
    height: 42%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 62%, #ffffff 100%);
    pointer-events: none;
  }

  .insurance-hero .promo-visual {
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(0, 57, 92, 0.16) 0%, rgba(0, 57, 92, 0.03) 48%, rgba(255, 255, 255, 0.72) 78%, #ffffff 100%),
      url("assets/img/person/person-m-7.webp") center 14% / cover no-repeat;
  }

  .insurance-hero .promo-visual::before {
    display: block;
    inset: 0;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(0, 104, 169, 0.04) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.62) 76%, #ffffff 100%);
    box-shadow: inset 0 -150px 110px rgba(255, 255, 255, 0.98);
  }

  .insurance-hero .promo-visual::after {
    display: none;
  }

  .insurance-hero .promo-ticket,
  .insurance-hero .promo-brand {
    display: none;
  }

  .insurance-hero .insurance-copy {
    inset: auto;
    order: 2;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    z-index: 4;
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 24px 30px 4px;
    background: #ffffff;
    border-radius: 0;
    text-align: center;
  }

  .insurance-hero .insurance-copy:not(.active) {
    pointer-events: none;
  }

  .insurance-hero .insurance-copy h1 {
    max-width: 350px;
    margin: 0 auto 12px;
    color: var(--brans-ink);
    font-size: 1.92rem;
    font-weight: 700;
    line-height: 1.15;
    text-shadow: none;
  }

  .insurance-hero .insurance-copy p {
    display: block;
    max-width: 330px;
    margin: 0 auto;
    color: var(--brans-muted);
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .insurance-hero .insurance-pagination {
    display: none;
  }

  .insurance-hero .insurance-detail-link {
    display: none;
  }

  .insurance-hero .quote-form {
    max-width: none;
    margin: 12px auto 0;
    gap: 11px;
    position: relative;
    z-index: 4;
    justify-items: center;
    padding: 0 44px;
    background: transparent;
  }

  .insurance-hero .quote-select-toggle,
  .insurance-hero .quote-form input {
    padding: 0 15px;
    font-size: 15px;
  }

  .insurance-hero .quote-select,
  .insurance-hero .quote-select-toggle,
  .insurance-hero .quote-form input,
  .insurance-hero .quote-form .quote-submit {
    width: min(326px, calc(100vw - 72px)) !important;
    max-width: min(326px, calc(100vw - 72px)) !important;
    min-width: 0;
    justify-self: center;
    height: 65px;
    border-radius: 12px;
  }

  .hero-products .product-visual {
    width: 170px;
    padding: 14px;
  }

  .hero-products {
    margin-top: 0;
    padding-top: 64px;
  }

  .hero-products .quick-access {
    margin: 0 28px;
    border-radius: 22px;
  }

  .hero-products .products-panel {
    padding: 42px 24px 40px;
  }

  .hero-products .products-heading {
    max-width: 320px;
    margin-bottom: 28px;
  }

  .hero-products .products-heading h2 {
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero-products .products-heading p {
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-products .products-controls {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 44px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .hero-products .products-nav {
    display: none;
  }

  .hero-products .products-button-prev,
  .hero-products .products-button-next {
    width: 40px;
    height: 40px;
  }

  .hero-products .product-card {
    max-width: 326px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .hero-products .products-all-link {
    max-width: none;
    gap: 7px;
    margin-top: 10px;
    justify-self: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    line-height: 1.15;
  }

  .hero-products .products-all-link i {
    font-size: 16px;
  }

  .hero-products .product-visual {
    width: 236px;
    margin-bottom: 34px;
    padding: 18px;
  }

  .hero-products .product-card h3 {
    font-size: 1.34rem;
    margin-bottom: 16px;
  }

  .hero-products .product-card p {
    max-width: 278px;
    min-height: 0;
    margin-bottom: 38px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-products .product-card a {
    min-width: 114px;
    min-height: 36px;
    padding: 0 16px;
    font-size: 11px;
  }
}

/* Hero responsive reset */
@media (max-width: 1199px) {
  .insurance-hero {
    min-height: auto;
    padding: 112px 0 76px;
  }

  .insurance-hero .container,
  .insurance-hero .insurance-rotator,
  .insurance-hero .insurance-rotator>div:first-child {
    min-height: 0;
  }

  .insurance-hero .insurance-rotator {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: 34px 30px !important;
    align-items: center;
    cursor: default;
  }

  .insurance-hero .insurance-rotator>div {
    width: auto;
    max-width: none;
  }

  .insurance-hero .insurance-rotator>div:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    min-height: 330px;
  }

  .insurance-hero .insurance-rotator>div:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .insurance-hero .insurance-rotator>div:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .insurance-hero .insurance-copy h1 {
    max-width: 620px;
    font-size: clamp(2.5rem, 5.8vw, 3.65rem);
  }

  .insurance-hero .insurance-copy p {
    max-width: 560px;
  }

  .insurance-hero .insurance-pagination {
    bottom: 0;
    width: 100%;
  }

  .insurance-hero .insurance-visual-stage {
    width: 100%;
    max-width: 390px;
    aspect-ratio: 4 / 5;
    padding: 14px;
  }

  .insurance-hero .insurance-visual-stage img {
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
  }

  .insurance-hero .insurance-visual-stage::after {
    inset: 14px;
  }

  .insurance-hero .quote-form {
    width: min(100%, 760px);
    max-width: 760px;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insurance-hero .quote-select,
  .insurance-hero .quote-form .quote-submit,
  .insurance-hero .quote-form .loading,
  .insurance-hero .quote-form .error-message,
  .insurance-hero .quote-form .sent-message {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .insurance-hero {
    padding: 104px 0 72px;
  }

  .insurance-hero::before {
    opacity: 0.72;
  }

  .insurance-hero .insurance-rotator {
    grid-template-columns: 1fr;
    gap: 28px !important;
  }

  .insurance-hero .insurance-rotator>div:nth-child(1),
  .insurance-hero .insurance-rotator>div:nth-child(2),
  .insurance-hero .insurance-rotator>div:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .insurance-hero .insurance-rotator>div:nth-child(2) {
    order: 1;
  }

  .insurance-hero .insurance-rotator>div:nth-child(1) {
    order: 2;
    min-height: 0;
  }

  .insurance-hero .insurance-rotator>div:nth-child(3) {
    order: 3;
  }

  .insurance-hero .insurance-copy {
    display: none;
    position: relative;
    inset: auto;
    min-height: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .insurance-hero .insurance-copy.active {
    display: flex;
    align-items: center;
    text-align: center;
    pointer-events: auto;
  }

  .insurance-hero .insurance-copy.leaving {
    display: none;
  }

  .insurance-hero .insurance-copy h1 {
    max-width: 640px;
    margin: 0 auto 14px;
    font-size: clamp(2.18rem, 6.2vw, 3.05rem);
    line-height: 1.1;
  }

  .insurance-hero .insurance-copy p {
    max-width: 600px;
    margin: 0 auto 18px;
  }

  .insurance-hero .insurance-detail-link {
    margin: 0 auto;
  }

  .insurance-hero .insurance-pagination {
    display: none;
  }

  .insurance-hero .insurance-visual-stage {
    max-width: 520px;
    height: clamp(340px, 56vw, 480px);
    aspect-ratio: auto;
  }

  .insurance-hero .quote-form {
    width: min(100%, 520px);
    max-width: 520px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .insurance-hero {
    padding: 84px 0 64px;
    background:
      linear-gradient(180deg, rgba(0, 104, 169, 0.035) 0%, rgba(255, 255, 255, 0) 42%),
      #ffffff;
    overflow: hidden;
  }

  .insurance-hero::before {
    left: -210px;
    top: -220px;
    width: 460px;
    height: 760px;
    opacity: 0.45;
  }

  .insurance-hero .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .insurance-hero .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }

  .insurance-hero .insurance-rotator {
    width: 100%;
    margin: 0;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 0 !important;
  }

  .insurance-hero .insurance-rotator .col-lg-4 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(2) {
    order: 1;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(1) {
    order: 2;
    background: transparent;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(3) {
    order: 3;
    padding-top: 0;
    background: transparent;
  }

  .insurance-hero .insurance-visual-stage {
    width: 100%;
    max-width: none;
    height: clamp(272px, 70vw, 390px);
    margin: 0 auto;
    padding: 0;
    border-radius: 0 0 24px 24px;
    background: #eef7fc;
    box-shadow: 0 18px 36px rgba(21, 50, 67, 0.12);
    overflow: hidden;
  }

  .insurance-hero .insurance-visual-stage::before {
    display: none;
  }

  .insurance-hero .insurance-visual-stage::after {
    inset: auto;
    left: 0;
    right: 0;
    bottom: 0;
    height: 44%;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.78) 68%, #ffffff 100%);
    z-index: 4;
  }

  .insurance-hero .insurance-visual-stage img {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-position: center top;
  }

  .insurance-hero .insurance-copy.active {
    padding: 22px 4px 0;
    background: transparent;
  }

  .insurance-hero .insurance-copy h1 {
    max-width: 360px;
    margin-bottom: 10px;
    color: var(--brans-blue);
    font-size: clamp(1.86rem, 7.6vw, 2.34rem);
    line-height: 1.12;
  }

  .insurance-hero .insurance-copy p {
    max-width: 350px;
    margin-bottom: 0;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .insurance-hero .insurance-detail-link {
    display: none;
  }

  .insurance-hero .quote-form {
    width: min(100%, 360px);
    max-width: 360px;
    margin: 18px auto 0;
    padding: 0;
    gap: 10px;
    justify-items: stretch;
  }

  .insurance-hero .quote-select,
  .insurance-hero .quote-select-toggle,
  .insurance-hero .quote-form input,
  .insurance-hero .quote-form .quote-submit {
    width: 100% !important;
    max-width: none !important;
    height: 58px;
    border-radius: 12px;
  }

  .insurance-hero .quote-select-list {
    max-height: 246px;
    overflow-y: auto;
  }
}

@media (max-width: 420px) {
  .insurance-hero {
    padding-top: 78px;
  }

  .insurance-hero .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .insurance-hero .insurance-visual-stage {
    height: 308px;
  }

  .insurance-hero .insurance-copy.active {
    padding-top: 18px;
  }

  .insurance-hero .insurance-copy h1 {
    max-width: 330px;
    font-size: 1.86rem;
  }

  .insurance-hero .insurance-copy p {
    max-width: 320px;
    font-size: 0.88rem;
  }

  .insurance-hero .quote-form {
    width: min(100%, 332px);
    margin-top: 16px;
  }
}

/* Mobile polish: hero and damage support */
@media (max-width: 767px) {
  .insurance-hero .insurance-rotator>div:nth-child(1) {
    min-height: 164px;
  }

  .insurance-hero .insurance-visual-stage {
    width: min(100%, 390px);
    height: auto;
    aspect-ratio: 4 / 4.6;
    padding: 8px;
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(248, 195, 1, 0.10), rgba(255, 255, 255, 0) 32%),
      linear-gradient(315deg, rgba(161, 204, 47, 0.08), rgba(255, 255, 255, 0) 38%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 252, 0.9));
  }

  .insurance-hero .insurance-visual-stage::after {
    display: none;
  }

  .insurance-hero .insurance-visual-stage img {
    inset: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 18px;
    object-position: center center;
  }

  .insurance-hero .insurance-copy.active {
    justify-content: flex-start;
    min-height: 164px;
  }

  .insurance-hero .insurance-copy h1 {
    min-height: 84px;
  }

  .insurance-hero .insurance-copy p {
    min-height: 44px;
  }

  .damage-support {
    padding: 58px 0;
  }

  .damage-support .row {
    --bs-gutter-y: 34px;
  }

  .damage-support-visual {
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .damage-support-visual::before {
    display: none;
  }

  .damage-support-visual img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1.12 / 1;
    border-radius: 24px;
    object-fit: cover;
    object-position: center center;
    background: #eaf4f8;
    box-shadow: 0 10px 24px rgba(16, 35, 29, 0.07);
  }

  .damage-support-top-badge {
    top: 16px;
    left: 16px;
    color: #31506a;
    background: rgba(255, 255, 255, 0.90);
    border-color: rgba(0, 104, 217, 0.08);
    backdrop-filter: blur(8px);
  }

  .damage-support-bottom-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .damage-support-bottom-divider {
    display: none;
  }

  .damage-support-bottom-item {
    min-height: 48px;
    justify-content: flex-start;
    padding: 13px 15px;
    border-bottom: 0;
  }

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

  .damage-support-bottom-item small {
    margin-bottom: 4px;
    color: var(--brans-blue);
    font-size: 12px;
  }

  .damage-support-bottom-item strong {
    color: #263646;
    font-size: 13px;
    line-height: 1.35;
  }
}

@media (max-width: 420px) {
  .insurance-hero .insurance-rotator>div:nth-child(1),
  .insurance-hero .insurance-copy.active {
    min-height: 156px;
  }

  .insurance-hero .insurance-visual-stage {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 4.6;
  }

  .insurance-hero .insurance-copy h1 {
    min-height: 78px;
  }

  .insurance-hero .insurance-copy p {
    min-height: 42px;
  }

  .damage-support-visual img {
    border-radius: 22px;
  }
}

/* Final mobile stabilizers */
@media (max-width: 767px) {
  .insurance-hero .insurance-rotator>div:nth-child(1) {
    display: none;
  }

  .insurance-hero .insurance-copy {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.82s ease, transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.82s;
  }

  .insurance-hero .insurance-copy.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .insurance-hero .insurance-copy.leaving {
    display: flex;
    opacity: 0;
    visibility: visible;
    transform: translateY(-8px);
    transition-delay: 0s;
  }

  .insurance-hero .insurance-copy h1 {
    min-height: 76px;
    margin-bottom: 8px;
  }

  .insurance-hero .insurance-copy p {
    min-height: 42px;
  }

  .insurance-hero .quote-form {
    margin-top: 16px;
  }

  .footer {
    padding-bottom: 32px;
  }

  .footer .footer-top {
    padding-top: 0;
  }

  .footer .footer-hotline {
    padding: 22px 0 24px;
  }

  .footer .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 34px;
  }

  .footer .footer-about,
  .footer .footer-contact,
  .footer .footer-links,
  .footer .footer-contact-panel {
    text-align: center;
    justify-self: center;
    max-width: 100%;
  }

  .footer .footer-about .logo,
  .footer .footer-brand-mark {
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
  }

  .footer .footer-about p {
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer .social-links {
    justify-content: center;
    gap: 10px;
  }

  .footer .footer-contact-panel .social-links {
    margin-bottom: 22px;
  }

  .footer .social-links a {
    margin-right: 0;
  }

  .footer h4 {
    margin-bottom: 12px;
  }

  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-links ul li {
    justify-content: center;
    padding: 6px 0;
  }

  .footer .footer-contact p {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer .footer-brand-mark img {
    width: 96px;
    height: 96px;
  }

  .footer .footer-brand-mark .sitename {
    font-size: 27px;
  }

  .footer .copyright {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    margin-top: 28px !important;
    padding-top: 18px;
    text-align: center;
  }

  .footer .copyright p,
  .footer .credits {
    grid-column: auto;
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .insurance-hero .insurance-rotator>div:nth-child(1) {
    display: none;
  }

  .insurance-hero .insurance-copy h1 {
    min-height: 72px;
  }

  .insurance-hero .insurance-copy p {
    min-height: 40px;
  }
}

/* Footer reference layout */
.footer.dark-background {
  --background-color: #f6fbff;
  --default-color: #526071;
  --heading-color: #202a33;
  --accent-color: var(--brans-blue);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 105, 171, 0.14) 0, rgba(0, 105, 171, 0.045) 18%, transparent 38%),
    radial-gradient(circle at 86% 82%, rgba(161, 205, 46, 0.09) 0, transparent 25%),
    linear-gradient(135deg, #f8fcff 0%, #edf7fc 48%, #f7fbfe 100%);
  border-top: 0;
  color: var(--default-color);
  padding-bottom: 0;
}

.footer.dark-background::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -310px;
  right: -210px;
  width: 690px;
  height: 690px;
  border: 1px solid rgba(0, 105, 171, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(0, 105, 171, 0.026),
    0 0 0 144px rgba(0, 105, 171, 0.018),
    0 0 0 216px rgba(0, 105, 171, 0.012);
  pointer-events: none;
}

.footer.dark-background::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -52px;
  bottom: -118px;
  width: clamp(260px, 27vw, 470px);
  aspect-ratio: 1;
  background: url("../img/brans-logo-mark.svg") center / contain no-repeat;
  opacity: 0.035;
  transform: rotate(-8deg);
  filter: grayscale(1);
  pointer-events: none;
}

.footer.dark-background > .container {
  position: relative;
  z-index: 1;
}

.footer .footer-action-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(17, 41, 64, 0.11);
}

.footer .footer-action-copy {
  display: grid;
  gap: 7px;
}

.footer .footer-action-copy span {
  color: var(--brans-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.footer .footer-action-copy strong {
  color: #202a33;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 740;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.footer .footer-action-links {
  display: flex;
  align-items: center;
}

.footer .footer-action-links a {
  display: grid;
  grid-template-columns: 38px minmax(0, auto);
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 5px 24px;
  color: #2f3942;
  text-decoration: none;
  border-left: 1px solid rgba(17, 41, 64, 0.11);
  transition: color 0.22s ease;
}

.footer .footer-action-links a i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brans-blue);
  background: rgba(0, 116, 184, 0.06);
  border-radius: 50%;
  font-size: 16px;
}

.footer .footer-action-links a span {
  display: grid;
  gap: 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.footer .footer-action-links a small {
  color: #7a8793;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer .footer-action-links a:hover {
  color: var(--brans-blue-dark);
}

.footer .footer-top {
  padding: clamp(40px, 4vw, 56px) 0 clamp(38px, 4vw, 56px);
  border-top: 0;
}

.footer .footer-main-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) minmax(130px, 0.8fr) minmax(150px, 0.95fr) minmax(210px, 1.15fr) minmax(260px, 1.25fr);
  gap: clamp(34px, 4.8vw, 78px);
  align-items: start;
  padding-top: 0;
}

.footer .footer-about,
.footer .footer-links,
.footer .footer-contact-panel {
  min-width: 0;
}

.footer .footer-brand-block {
  padding-right: 0;
}

.footer .footer-about .logo.footer-brand-mark,
.footer .footer-brand-mark {
  display: inline-flex;
  margin-bottom: 26px;
}

.footer .footer-about .logo.footer-brand-mark img,
.footer .footer-brand-mark img {
  width: clamp(220px, 18vw, 285px);
  height: auto;
  max-height: none;
  margin-right: 0;
  display: block;
}

.footer .footer-about p {
  max-width: 300px;
  margin: 0;
  color: #526071;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  font-weight: 500;
}

.footer .footer-brand-text {
  margin: -4px 0 24px !important;
}

.footer h4 {
  position: relative;
  color: #202a33;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 30px;
  padding-bottom: 16px;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: rgba(0, 116, 184, 0.46);
}

.footer .footer-links ul,
.footer .footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .footer-links ul li,
.footer .footer-contact ul li {
  padding: 0;
  margin: 0 0 22px;
}

.footer .footer-links ul a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  color: #4a5563;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer .footer-links ul a::before {
  content: "\203A";
  flex: 0 0 auto;
  color: var(--brans-blue);
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
  opacity: 0.7;
}

.footer .footer-links ul a:hover,
.footer .footer-contact a:hover {
  color: var(--brans-blue-dark);
  transform: translateX(3px);
}

.footer .footer-contact-panel {
  justify-self: stretch;
  max-width: none;
}

.footer .footer-contact a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  max-width: 100%;
  color: #4a5563;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer .footer-contact a i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #344153;
  background: rgba(0, 116, 184, 0.045);
  border: 1px solid rgba(0, 116, 184, 0.06);
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
}

.footer .copyright {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0 34px;
  margin-top: 0 !important;
  border-top: 1px solid rgba(17, 41, 64, 0.10);
  background: transparent;
  color: #667384;
  font-size: 14px;
  text-align: left;
}

.footer .copyright p {
  margin: 0;
}

.footer .copyright strong {
  color: #202a33;
  font-weight: 800;
}

.footer .footer-social-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.footer .footer-social-bottom a {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #344153;
  border: 1px solid rgba(47, 57, 66, 0.14);
  border-radius: 50%;
  background: transparent;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer .footer-social-bottom a:hover {
  color: var(--brans-blue-dark);
  border-color: rgba(0, 116, 184, 0.34);
  transform: translateY(-2px);
}

.footer .footer-credit {
  justify-self: end;
  color: #667384;
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}

.footer .footer-credit a {
  color: #202a33;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer .footer-credit a:hover {
  color: var(--brans-blue-dark);
}

@media (max-width: 1399px) {
  .footer .footer-main-grid {
    grid-template-columns: minmax(210px, 1.25fr) minmax(118px, 0.8fr) minmax(140px, 0.95fr) minmax(185px, 1.1fr) minmax(230px, 1.25fr);
    gap: 32px;
  }

  .footer .footer-about .logo.footer-brand-mark img,
  .footer .footer-brand-mark img {
    width: clamp(205px, 17vw, 250px);
  }

  .footer .footer-links ul a,
  .footer .footer-contact a {
    font-size: 14.5px;
  }
}

@media (max-width: 1199px) {
  .footer .footer-main-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 34px;
  }

  .footer .footer-brand-block {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 28px;
  }

  .footer .footer-about .logo.footer-brand-mark,
  .footer .footer-brand-mark {
    margin-bottom: 0;
  }

  .footer .footer-about .logo.footer-brand-mark img,
  .footer .footer-brand-mark img {
    width: min(260px, 36vw);
  }

  .footer .footer-contact-panel {
    grid-column: 1 / -1;
  }

  .footer .footer-contact ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
  }

  .footer .footer-contact ul li {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .footer .footer-action-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .footer .footer-action-links {
    width: 100%;
  }

  .footer .footer-action-links a {
    flex: 1 1 50%;
    min-width: 0;
  }

  .footer .footer-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 34px;
  }

  .footer .footer-brand-block,
  .footer .footer-contact-panel {
    grid-column: 1 / -1;
  }

  .footer .footer-brand-block {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .footer .footer-about .logo.footer-brand-mark img,
  .footer .footer-brand-mark img {
    width: min(250px, 48vw);
  }
}

@media (max-width: 767px) {
  .footer .footer-action-bar {
    display: none;
  }

  .footer .footer-action-links {
    align-items: stretch;
    flex-direction: column;
  }

  .footer .footer-action-links a {
    width: 100%;
    padding: 12px 0;
    border-left: 0;
    border-top: 1px solid rgba(17, 41, 64, 0.09);
  }

  .footer .footer-action-links a:last-child {
    padding-bottom: 0;
  }

  .footer .footer-top {
    padding: 42px 0 28px;
  }

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

  .footer .footer-about,
  .footer .footer-contact,
  .footer .footer-links,
  .footer .footer-contact-panel {
    width: 100%;
    max-width: none;
    text-align: left;
    justify-self: stretch;
  }

  .footer .footer-contact-panel,
  .footer .footer-brand-block {
    grid-column: auto;
  }

  .footer .footer-brand-block {
    display: block;
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(17, 41, 64, 0.09);
    text-align: center;
  }

  .footer .footer-about .logo.footer-brand-mark,
  .footer .footer-brand-mark {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto 18px;
  }

  .footer .footer-about .logo.footer-brand-mark img,
  .footer .footer-brand-mark img {
    width: min(242px, 76vw);
    height: auto;
    max-height: none;
  }

  .footer .footer-about p {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.55;
  }

  .footer .footer-links,
  .footer .footer-contact-panel {
    padding: 28px 0;
    border-bottom: 1px solid rgba(17, 41, 64, 0.09);
  }

  .footer .footer-contact-panel {
    padding-bottom: 24px;
  }

  .footer h4 {
    margin: 0 0 18px;
    padding-bottom: 12px;
    text-align: left;
  }

  .footer h4::after {
    left: 0;
    transform: none;
  }

  .footer .footer-links ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 14px;
  }

  .footer .footer-links ul li,
  .footer .footer-contact ul li {
    display: block;
    justify-content: flex-start;
    align-items: initial;
    width: 100%;
    padding: 0;
    margin-bottom: 16px;
  }

  .footer .footer-links ul li {
    margin-bottom: 0;
  }

  .footer .footer-links ul a {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    width: 100%;
    line-height: 1.35;
  }

  .footer .footer-links ul a::before {
    font-size: 21px;
  }

  .footer .footer-contact ul {
    display: block;
  }

  .footer .footer-contact a {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    font-size: 14px;
  }

  .footer .footer-contact a i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .footer .copyright {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 22px 0 28px;
    text-align: center;
  }

  .footer .footer-social-bottom {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .footer .footer-top {
    padding: 42px 0 30px;
  }

  .footer .footer-main-grid {
    gap: 0;
  }

  .footer .footer-about .logo.footer-brand-mark img,
  .footer .footer-brand-mark img {
    width: min(230px, 82vw);
  }

  .footer .footer-about p {
    max-width: 100%;
  }

  .footer h4 {
    font-size: 14px;
    margin-bottom: 18px;
    padding-bottom: 13px;
  }

  .footer .footer-links ul a,
  .footer .footer-contact a {
    font-size: 14px;
  }

  .footer .footer-links ul {
    column-gap: 14px;
    row-gap: 13px;
  }

  .footer .footer-contact a {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .footer .footer-contact a i,
  .footer .footer-social-bottom a {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 14px;
  }

  .footer .copyright {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .footer .footer-top {
    padding-top: 36px;
  }

  .footer .footer-about .logo.footer-brand-mark img,
  .footer .footer-brand-mark img {
    width: min(210px, 84vw);
  }

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

  .footer .footer-contact a {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
  }

  .footer .footer-links ul a {
    gap: 10px;
  }
}

/* Reference mobile hero layout */
@media (max-width: 767px) {
  .insurance-hero {
    padding: 82px 0 54px;
  }

  .insurance-hero .container {
    padding-left: 0;
    padding-right: 0;
  }

  .insurance-hero .insurance-rotator {
    gap: 0 !important;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(2) {
    order: 1;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(1) {
    order: 2;
    display: block;
    position: relative;
    height: 64px;
    min-height: 64px;
    margin-top: -70px;
    z-index: 6;
    pointer-events: none;
    overflow: hidden;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(3) {
    order: 3;
    z-index: 7;
  }

  .insurance-hero .insurance-visual-stage {
    width: 100%;
    max-width: none;
    aspect-ratio: 1.18 / 1;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .insurance-hero .insurance-visual-stage img {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-position: center center;
  }

  .insurance-hero .insurance-copy {
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    transform: translateY(6px);
  }

  .insurance-hero .insurance-copy.active,
  .insurance-hero .insurance-copy.leaving {
    display: flex;
  }

  .insurance-hero .insurance-copy h1,
  .insurance-hero .insurance-copy p,
  .insurance-hero .insurance-kicker,
  .insurance-hero .insurance-detail-link {
    display: none;
  }

  .insurance-hero .insurance-copy::after {
    content: attr(data-mobile-title);
    color: var(--brans-blue);
    font-family: var(--heading-font);
    font-size: clamp(2rem, 8.2vw, 2.32rem);
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.84);
  }

  .insurance-hero .quote-form {
    width: calc(100% - 56px);
    max-width: 360px;
    margin: 10px auto 0;
    gap: 10px;
  }

  .insurance-hero .quote-select,
  .insurance-hero .quote-select-toggle,
  .insurance-hero .quote-form input,
  .insurance-hero .quote-form .quote-submit {
    height: 64px;
    border-radius: 14px;
  }
}

@media (max-width: 420px) {
  .insurance-hero .insurance-visual-stage {
    aspect-ratio: 1.16 / 1;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(1) {
    height: 60px;
    min-height: 60px;
    margin-top: -66px;
  }

  .insurance-hero .insurance-copy::after {
    font-size: clamp(1.9rem, 8vw, 2.18rem);
  }

  .insurance-hero .quote-form {
    width: calc(100% - 48px);
    max-width: 348px;
  }
}

/* Mobile hero exact reference pass */
@media (max-width: 767px) {
  .insurance-hero {
    min-height: 100svh;
    padding: 84px 0 40px;
    background:
      linear-gradient(112deg, rgba(0, 104, 169, 0.035) 0 14%, transparent 14% 100%),
      linear-gradient(156deg, rgba(161, 204, 47, 0.045) 0 24%, transparent 24% 100%),
      #ffffff;
  }

  .insurance-hero::before,
  .insurance-hero::after {
    display: none;
  }

  .insurance-hero .insurance-rotator {
    width: 100%;
    min-height: 0;
    gap: 0 !important;
  }

  .insurance-hero .insurance-visual-stage {
    width: 100%;
    height: clamp(286px, 78vw, 320px);
    max-width: none;
    aspect-ratio: auto;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #eef7fc;
    box-shadow: none;
  }

  .insurance-hero .insurance-visual-stage img {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: center center;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(1) {
    display: block;
    position: relative;
    order: 2;
    height: 60px;
    min-height: 60px;
    margin-top: -66px;
    z-index: 8;
    overflow: hidden;
    pointer-events: none;
  }

  .insurance-hero .insurance-copy {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.82s ease, transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.82s;
  }

  .insurance-hero .insurance-copy.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .insurance-hero .insurance-copy.leaving {
    display: flex;
    opacity: 0;
    visibility: visible;
    transform: translateY(-8px);
  }

  .insurance-hero .insurance-copy h1,
  .insurance-hero .insurance-copy p,
  .insurance-hero .insurance-kicker,
  .insurance-hero .insurance-detail-link,
  .insurance-hero .insurance-pagination {
    display: none;
  }

  .insurance-hero .insurance-copy::after {
    content: attr(data-mobile-title);
    color: var(--brans-blue);
    font-family: var(--heading-font);
    font-size: clamp(2.02rem, 8.4vw, 2.38rem);
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.92);
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(3) {
    order: 3;
    position: relative;
    z-index: 9;
  }

  .insurance-hero .quote-form {
    width: min(348px, calc(100% - 56px));
    max-width: 348px;
    margin: 8px auto 0;
    gap: 10px;
    padding: 0;
  }

  .insurance-hero .quote-select,
  .insurance-hero .quote-select-toggle,
  .insurance-hero .quote-form input,
  .insurance-hero .quote-form .quote-submit {
    width: 100% !important;
    max-width: none !important;
    height: 64px;
    border-radius: 14px;
  }

  .insurance-hero .quote-select-toggle,
  .insurance-hero .quote-form input {
    border-color: rgba(0, 104, 169, 0.34);
    background: rgba(255, 255, 255, 0.96);
  }
}

@media (max-width: 420px) {
  .insurance-hero {
    padding-top: 82px;
  }

  .insurance-hero .insurance-visual-stage {
    height: clamp(278px, 76vw, 304px);
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(1) {
    height: 58px;
    min-height: 58px;
    margin-top: -62px;
  }

  .insurance-hero .insurance-copy::after {
    font-size: clamp(1.92rem, 8.2vw, 2.18rem);
  }

  .insurance-hero .quote-form {
    width: min(348px, calc(100% - 48px));
    margin-top: 8px;
  }

  .insurance-hero .quote-select,
  .insurance-hero .quote-select-toggle,
  .insurance-hero .quote-form input,
  .insurance-hero .quote-form .quote-submit {
    height: 64px;
  }
}

/* Mobile hero locked to reference */
@media (max-width: 767px) {
  .insurance-hero {
    min-height: 100svh;
    padding: 103px 0 52px;
    background:
      linear-gradient(112deg, rgba(0, 104, 169, 0.05) 0 12%, transparent 12% 100%),
      linear-gradient(156deg, rgba(161, 204, 47, 0.05) 0 23%, transparent 23% 100%),
      #ffffff;
    overflow: hidden;
  }

  .insurance-hero::before,
  .insurance-hero::after {
    display: none;
  }

  .insurance-hero .container {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .insurance-hero .insurance-rotator {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    margin: 0;
    gap: 0 !important;
    transform: none;
  }

  .insurance-hero .insurance-rotator .col-lg-4 {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(2) {
    order: 1;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(1) {
    order: 2;
    display: block;
    position: relative;
    height: 70px;
    min-height: 70px;
    margin-top: -78px;
    z-index: 8;
    overflow: visible;
    pointer-events: none;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(3) {
    order: 3;
    position: relative;
    z-index: 9;
    margin-top: 0;
    padding-top: 0;
    background: transparent;
  }

  .insurance-hero .insurance-visual-stage {
    position: relative;
    width: 100%;
    max-width: none;
    height: clamp(278px, 72vw, 304px);
    aspect-ratio: auto;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #eef7fc;
    box-shadow: none;
    overflow: hidden;
  }

  .insurance-hero .insurance-visual-stage::before {
    display: none;
  }

  .insurance-hero .insurance-visual-stage::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48%;
    z-index: 5;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 63%, #ffffff 100%);
    pointer-events: none;
  }

  .insurance-hero .insurance-visual-stage img {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: center center;
  }

  .insurance-hero .insurance-copy {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 24px 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.82s ease, transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.82s;
  }

  .insurance-hero .insurance-copy.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .insurance-hero .insurance-copy.leaving {
    display: flex;
    opacity: 0;
    visibility: visible;
    transform: translateY(-8px);
  }

  .insurance-hero .insurance-copy h1,
  .insurance-hero .insurance-copy p,
  .insurance-hero .insurance-kicker,
  .insurance-hero .insurance-detail-link,
  .insurance-hero .insurance-pagination {
    display: none;
  }

  .insurance-hero .insurance-copy::after {
    content: attr(data-mobile-title);
    max-width: 348px;
    color: var(--brans-blue);
    font-family: var(--heading-font);
    font-size: clamp(2.05rem, 8.5vw, 2.42rem);
    font-weight: 800;
    line-height: 1.04;
    text-align: center;
    text-shadow: 0 3px 18px rgba(255, 255, 255, 0.96);
  }

  .insurance-hero .quote-form {
    width: min(348px, calc(100% - 56px));
    max-width: 348px;
    margin: 6px auto 0;
    padding: 0;
    gap: 10px;
    justify-items: stretch;
  }

  .insurance-hero .quote-select,
  .insurance-hero .quote-select-toggle,
  .insurance-hero .quote-form input,
  .insurance-hero .quote-form .quote-submit {
    width: 100% !important;
    max-width: none !important;
    height: 64px;
    border-radius: 14px;
  }

  .insurance-hero .quote-select-toggle,
  .insurance-hero .quote-form input {
    padding: 0 15px;
    border-color: rgba(0, 104, 169, 0.34);
    background: rgba(255, 255, 255, 0.97);
  }

  .insurance-hero .quote-form .quote-submit {
    margin-top: 0;
    background: linear-gradient(135deg, var(--brans-blue), color-mix(in srgb, var(--brans-blue), #ffffff 14%));
  }
}

@media (max-width: 420px) {
  .insurance-hero {
    padding-top: 103px;
  }

  .insurance-hero .insurance-visual-stage {
    height: clamp(276px, 71vw, 300px);
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(1) {
    height: 68px;
    min-height: 68px;
    margin-top: -76px;
  }

  .insurance-hero .insurance-copy::after {
    font-size: clamp(1.98rem, 8.4vw, 2.26rem);
  }

  .insurance-hero .quote-form {
    width: min(348px, calc(100% - 48px));
    margin-top: 5px;
  }
}

/* Mobile hero form exact spacing */
@media (max-width: 767px) {
  .insurance-hero .quote-form {
    width: min(348px, calc(100% - 56px));
    max-width: 348px;
    margin: 11px auto 0;
    padding: 0;
    gap: 10px;
    justify-items: stretch;
  }

  .insurance-hero .quote-select,
  .insurance-hero .quote-select-toggle,
  .insurance-hero .quote-form input,
  .insurance-hero .quote-form .quote-submit {
    width: 100% !important;
    max-width: none !important;
    height: 65px;
    min-height: 65px;
    border-radius: 13px;
    box-sizing: border-box;
  }

  .insurance-hero .quote-select-toggle,
  .insurance-hero .quote-form input {
    padding: 0 14px;
    border: 1px solid rgba(0, 104, 169, 0.38);
    background: rgba(255, 255, 255, 0.97);
    color: #51606f;
    font-size: 15px;
    box-shadow: none;
  }

  .insurance-hero .quote-select-toggle span,
  .insurance-hero .quote-form input::placeholder {
    color: #9cadc4;
    opacity: 1;
  }

  .insurance-hero .quote-select-toggle i {
    color: var(--brans-blue);
    font-size: 14px;
  }

  .insurance-hero .quote-select-list {
    border-color: rgba(0, 104, 169, 0.26);
  }

  .insurance-hero .quote-form .quote-submit {
    margin-top: 0;
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brans-blue), color-mix(in srgb, var(--brans-blue), #ffffff 10%));
    font-size: 15px;
    font-weight: 700;
    box-shadow: none;
  }

  .insurance-hero .quote-form .quote-submit i {
    display: none;
  }
}

@media (max-width: 420px) {
  .insurance-hero .quote-form {
    width: min(348px, calc(100% - 48px));
    margin-top: 11px;
  }
}

/* Mobile hero final title/form alignment */
@media (max-width: 767px) {
  .insurance-hero .insurance-rotator .col-lg-4:nth-child(1) {
    height: 106px;
    min-height: 106px;
    margin-top: -106px;
    overflow: visible;
  }

  .insurance-hero .insurance-copy {
    align-items: center;
    justify-content: flex-end;
    padding: 0 26px 18px;
  }

  .insurance-hero .insurance-copy::after {
    max-width: 348px;
    font-size: clamp(1.96rem, 8vw, 2.22rem);
    line-height: 1.08;
  }

  .insurance-hero .quote-form {
    margin-top: 4px;
  }
}

@media (max-width: 420px) {
  .insurance-hero .insurance-rotator .col-lg-4:nth-child(1) {
    height: 104px;
    min-height: 104px;
    margin-top: -104px;
  }

  .insurance-hero .insurance-copy {
    padding-bottom: 18px;
  }

  .insurance-hero .insurance-copy::after {
    font-size: clamp(1.86rem, 7.8vw, 2.08rem);
  }

  .insurance-hero .quote-form {
    margin-top: 4px;
  }
}

/* Mobile hero brand-color and seamless image finish */
@media (max-width: 767px) {
  .insurance-hero .insurance-visual-stage {
    background: #ffffff;
  }

  .insurance-hero .insurance-visual-stage::after {
    bottom: -16px;
    height: 78%;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.20) 28%,
      rgba(255, 255, 255, 0.72) 62%,
      rgba(255, 255, 255, 0.98) 88%,
      #ffffff 100%
    );
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(1) {
    height: 112px;
    min-height: 112px;
    margin-top: -112px;
  }

  .insurance-hero .insurance-rotator .col-lg-4:nth-child(1)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -76px;
    bottom: -8px;
    z-index: 0;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.36) 34%,
      rgba(255, 255, 255, 0.88) 72%,
      #ffffff 100%
    );
    pointer-events: none;
  }

  .insurance-hero .insurance-copy {
    z-index: 1;
    padding: 0 26px 20px;
  }

  .insurance-hero .insurance-copy::after {
    color: var(--brans-blue);
    text-shadow: 0 3px 18px rgba(255, 255, 255, 0.98);
  }

  .insurance-hero .quote-form {
    margin-top: 13px;
  }

  .insurance-hero .quote-select-toggle,
  .insurance-hero .quote-form input {
    border-color: rgba(0, 104, 169, 0.38);
    color: var(--brans-ink);
  }

  .insurance-hero .quote-select-toggle span,
  .insurance-hero .quote-form input::placeholder {
    color: rgba(101, 117, 133, 0.62);
  }

  .insurance-hero .quote-select-toggle i {
    color: var(--brans-blue);
  }

  .insurance-hero .quote-select.open .quote-select-toggle {
    border-color: var(--brans-blue);
    box-shadow: 0 0 0 4px rgba(0, 104, 169, 0.10);
  }

  .insurance-hero .quote-select-list {
    border-color: rgba(0, 104, 169, 0.26);
  }

  .insurance-hero .quote-form .quote-submit {
    background: linear-gradient(135deg, var(--brans-blue), color-mix(in srgb, var(--brans-blue), #ffffff 10%));
    box-shadow: 0 14px 28px rgba(0, 104, 169, 0.14);
  }

  .insurance-hero .insurance-copy {
    transform: translate3d(0, 5px, 0);
    will-change: opacity, transform;
    backface-visibility: hidden;
    transition:
      opacity 0.58s ease,
      transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.58s;
  }

  .insurance-hero .insurance-copy.active {
    transform: translate3d(0, 0, 0);
  }

  .insurance-hero .insurance-copy.leaving {
    transform: translate3d(0, 0, 0);
    transition:
      opacity 0.24s ease,
      transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.24s;
  }

  .insurance-hero .insurance-copy::after {
    display: block;
    transform: translateZ(0);
  }

  .insurance-hero .insurance-visual-stage {
    contain: paint;
  }

  .insurance-hero .insurance-visual-stage img {
    transform: scale(1.015);
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 40%,
      rgba(0, 0, 0, 0.74) 56%,
      rgba(0, 0, 0, 0.22) 76%,
      rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 40%,
      rgba(0, 0, 0, 0.74) 56%,
      rgba(0, 0, 0, 0.22) 76%,
      rgba(0, 0, 0, 0) 100%
    );
    transition:
      opacity 0.68s ease,
      transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.68s;
  }

  .insurance-hero .insurance-visual-stage img.active {
    transform: scale(1);
  }

  .insurance-hero .insurance-visual-stage img.leaving {
    transform: scale(1);
  }

  .insurance-hero .insurance-visual-stage img {
    opacity: 0;
    transition:
      opacity 0.42s ease,
      transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.42s;
  }

  .insurance-hero .insurance-visual-stage img.active {
    opacity: 1;
    visibility: visible;
    z-index: 3;
  }

  .insurance-hero .insurance-visual-stage img.leaving {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: none;
  }
}

@media (max-width: 420px) {
  .insurance-hero .insurance-rotator .col-lg-4:nth-child(1) {
    height: 108px;
    min-height: 108px;
    margin-top: -108px;
  }

  .insurance-hero .insurance-copy {
    padding-bottom: 19px;
  }

  .insurance-hero .quote-form {
    margin-top: 12px;
  }
}

/* Final footer responsive polish */
@media (max-width: 991px) {
  .footer.dark-background {
    background:
      radial-gradient(circle at 10% 5%, rgba(0, 105, 171, 0.12) 0, transparent 34%),
      radial-gradient(circle at 90% 88%, rgba(161, 205, 46, 0.08) 0, transparent 25%),
      linear-gradient(135deg, #f8fcff 0%, #edf7fc 52%, #f7fbfe 100%) !important;
  }

  .footer .footer-top {
    padding: 52px 0 34px !important;
  }

  .footer .footer-main-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 34px 30px !important;
    padding-top: 0 !important;
  }

  .footer .footer-brand-block,
  .footer .footer-contact-panel {
    grid-column: 1 / -1 !important;
  }

  .footer .footer-brand-block {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 0 0 34px !important;
    border-bottom: 1px solid rgba(17, 41, 64, 0.09) !important;
  }

  .footer .footer-about .logo.footer-brand-mark,
  .footer .footer-brand-mark {
    width: fit-content !important;
    margin: 0 !important;
    justify-content: flex-start !important;
  }

  .footer .footer-about .logo.footer-brand-mark img,
  .footer .footer-brand-mark img {
    width: min(250px, 42vw) !important;
    height: auto !important;
    max-height: none !important;
  }

  .footer .footer-about p {
    max-width: 310px !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .footer .footer-brand-block .footer-social-bottom {
    justify-content: flex-start !important;
    margin-top: 18px !important;
  }

  .footer .footer-links,
  .footer .footer-contact-panel {
    min-width: 0 !important;
  }

  .footer .footer-links ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 13px !important;
    margin: 0 !important;
  }

  .footer .footer-links ul li,
  .footer .footer-contact ul li {
    display: block !important;
    justify-content: flex-start !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .footer .footer-links ul a {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr) !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: fit-content !important;
    max-width: 100% !important;
    line-height: 1.35 !important;
    text-align: left !important;
  }

  .footer .footer-links ul a::before {
    width: 18px !important;
    text-align: center !important;
  }

  .footer .footer-contact ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 24px !important;
    margin: 0 !important;
  }

  .footer .footer-contact a {
    display: grid !important;
    grid-template-columns: 36px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: center !important;
    text-align: left !important;
  }

  .footer h4 {
    margin: 0 0 18px !important;
    padding-bottom: 12px !important;
    text-align: left !important;
  }

  .footer h4::after {
    left: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .footer .footer-top {
    padding: 42px 0 28px !important;
  }

  .footer .footer-main-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .footer .footer-brand-block {
    display: block !important;
    padding: 0 0 30px !important;
    text-align: center !important;
  }

  .footer .footer-about .logo.footer-brand-mark,
  .footer .footer-brand-mark {
    justify-content: center !important;
    margin: 0 auto 18px !important;
  }

  .footer .footer-about .logo.footer-brand-mark img,
  .footer .footer-brand-mark img {
    width: min(238px, 76vw) !important;
  }

  .footer .footer-about p {
    max-width: 305px !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: 14px !important;
  }

  .footer .footer-brand-block .footer-social-bottom {
    justify-content: center !important;
    margin-top: 18px !important;
  }

  .footer .footer-links,
  .footer .footer-contact-panel {
    width: 100% !important;
    padding: 28px 0 !important;
    border-bottom: 1px solid rgba(17, 41, 64, 0.09) !important;
    text-align: center !important;
  }

  .footer .footer-contact-panel {
    padding-bottom: 24px !important;
  }

  .footer h4 {
    width: fit-content !important;
    margin: 0 auto 20px !important;
    text-align: center !important;
  }

  .footer h4::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .footer .footer-links ul {
    max-width: 270px !important;
    margin: 0 auto !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .footer .footer-links ul li {
    text-align: center !important;
  }

  .footer .footer-links ul a {
    width: auto !important;
    margin: 0 auto !important;
    justify-content: center !important;
  }

  .footer .footer-contact ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    max-width: 315px !important;
    margin: 0 auto !important;
  }

  .footer .footer-contact ul li {
    text-align: left !important;
  }

  .footer .footer-contact a {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 12px !important;
    font-size: 14px !important;
  }

  .footer .footer-contact a i {
    width: 34px !important;
    height: 34px !important;
    font-size: 14px !important;
  }

  .footer .copyright {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 16px !important;
    padding: 22px 0 28px !important;
    text-align: center !important;
  }

  .footer .footer-social-bottom {
    justify-content: center !important;
  }

  .footer .footer-credit {
    justify-self: center !important;
    text-align: center !important;
  }
}

@media (max-width: 380px) {
  .footer .footer-top {
    padding-top: 36px !important;
  }

  .footer .footer-about .logo.footer-brand-mark img,
  .footer .footer-brand-mark img {
    width: min(212px, 82vw) !important;
  }

  .footer .footer-links ul {
    max-width: 230px !important;
  }

  .footer .footer-contact ul {
    max-width: 280px !important;
  }
}

/* Compact mobile footer columns */
@media (max-width: 767px) {
  .footer .footer-top {
    padding: 38px 0 24px !important;
  }

  .footer .footer-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 20px !important;
    row-gap: 0 !important;
    padding-left: clamp(18px, 5vw, 34px) !important;
    padding-right: clamp(18px, 5vw, 34px) !important;
  }

  .footer .footer-brand-block {
    grid-column: 1 / -1 !important;
    padding: 0 0 28px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(17, 41, 64, 0.10) !important;
  }

  .footer .footer-links,
  .footer .footer-contact-panel {
    width: auto !important;
    min-width: 0 !important;
    padding: 0 0 28px !important;
    border-bottom: 0 !important;
    text-align: left !important;
  }

  .footer .footer-links:nth-of-type(2),
  .footer .footer-links:nth-of-type(4) {
    padding-left: 6px !important;
  }

  .footer .footer-links:nth-of-type(3),
  .footer .footer-contact-panel {
    padding-left: 12px !important;
  }

  .footer .footer-links:nth-of-type(4),
  .footer .footer-contact-panel {
    padding-top: 26px !important;
    border-top: 1px solid rgba(17, 41, 64, 0.10) !important;
  }

  .footer .footer-contact-panel {
    grid-column: auto !important;
  }

  .footer h4 {
    width: auto !important;
    margin: 0 0 16px !important;
    padding-bottom: 10px !important;
    text-align: left !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
  }

  .footer h4::after {
    left: 0 !important;
    transform: none !important;
    width: 24px !important;
  }

  .footer .footer-links ul,
  .footer .footer-contact ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 11px !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .footer .footer-links ul li,
  .footer .footer-contact ul li {
    width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .footer .footer-links ul a {
    grid-template-columns: 14px minmax(0, 1fr) !important;
    gap: 6px !important;
    width: 100% !important;
    margin: 0 !important;
    justify-content: flex-start !important;
    color: #4a5563 !important;
    font-size: 12.5px !important;
    line-height: 1.35 !important;
  }

  .footer .footer-links ul a::before {
    width: 14px !important;
    font-size: 18px !important;
  }

  .footer .footer-contact a {
    grid-template-columns: 26px minmax(0, 1fr) !important;
    gap: 8px !important;
    align-items: start !important;
    color: #4a5563 !important;
    font-size: 12.5px !important;
    line-height: 1.4 !important;
  }

  .footer .footer-contact a i {
    width: 26px !important;
    height: 26px !important;
    font-size: 12px !important;
  }

  .footer .copyright {
    margin-top: 4px !important;
    padding: 20px 0 26px !important;
  }

  .footer .footer-brand-block .footer-social-bottom {
    justify-content: center !important;
    margin-top: 16px !important;
  }
}

@media (max-width: 380px) {
  .footer .footer-main-grid {
    column-gap: 14px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .footer .footer-links:nth-of-type(2),
  .footer .footer-links:nth-of-type(4) {
    padding-left: 2px !important;
  }

  .footer .footer-links:nth-of-type(3),
  .footer .footer-contact-panel {
    padding-left: 6px !important;
  }

  .footer h4 {
    font-size: 12.5px !important;
  }

  .footer .footer-links ul a,
  .footer .footer-contact a {
    font-size: 12px !important;
  }
}

/* Premium typography scale pass */
body {
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p,
li,
input,
textarea,
select,
button {
  letter-spacing: 0;
}

.navmenu a,
.mobile-nav-toggle,
.header .header-contact-btn,
.fixed-call-button,
.btn,
button,
input,
textarea,
select {
  font-size: 0.94em;
}

.section-title h2 {
  font-size: clamp(2.2rem, 3.15vw, 2.52rem);
  line-height: 1.08;
}

.section-title p,
.hero .hero-content p,
.about-content p,
.damage-support p,
.insurance-cta p,
.offer-process p,
.service-faq p,
.contact p,
.service-detail p {
  font-size: 0.96rem;
  line-height: 1.72;
}

.insurance-hero .insurance-copy h1 {
  font-size: clamp(2.56rem, 3.64vw, 3.6rem);
  letter-spacing: 0;
}

.insurance-hero .insurance-copy p {
  font-size: 0.94rem;
}

.services h2,
.service-list h2,
.offer-process h2,
.service-faq h2 {
  font-size: clamp(2.45rem, 4vw, 2.85rem);
  line-height: 1.08;
}

.about-content h2,
.damage-support h2,
.contact .form-header h3,
.service-detail h1,
.service-detail h2 {
  font-size: clamp(2rem, 3.25vw, 3.05rem);
  line-height: 1.08;
}

.service-card h3,
.service-list-card h3,
.offer-process-content h3,
.why-us .feature-content h3,
.portfolio .portfolio-card .project-details .project-title,
.footer h4 {
  font-size: 0.92em;
}

.service-card p,
.service-list-card p,
.hero-products .product-card p,
.portfolio .portfolio-card .project-details .project-description,
.footer .footer-links ul a,
.footer .footer-contact a,
.footer .footer-about p {
  font-size: 0.92em;
  line-height: 1.62;
}

.service-card a,
.service-list-card a,
.hero-products .product-card a,
.hero-products .products-all-link,
.insurance-hero .quote-select-toggle,
.insurance-hero .quote-form input,
.insurance-hero .quote-form .quote-submit {
  font-size: 0.92em;
}

.page-title-content h1 {
  font-size: clamp(30px, 3.6vw, 41px);
}

@media (max-width: 767px) {
  body {
    font-size: 14.5px;
    line-height: 1.62;
  }

  .section-title h2,
  .services h2,
  .service-list h2,
  .offer-process h2,
  .service-faq h2 {
    font-size: clamp(1.75rem, 7vw, 2.1rem);
  }

  .about-content h2,
  .damage-support h2,
  .contact .form-header h3,
  .service-detail h1,
  .service-detail h2 {
    font-size: clamp(1.72rem, 7vw, 2.15rem);
  }

  .insurance-hero .insurance-copy::after {
    font-size: clamp(1.76rem, 7.5vw, 2rem) !important;
  }

  .insurance-hero .quote-select-toggle,
  .insurance-hero .quote-form input,
  .insurance-hero .quote-form .quote-submit {
    font-size: 14px !important;
  }
}

/* Card title readability pass */
.service-card h3,
.service-list-card h3,
.hero-products .product-card h3,
.offer-process-content h3,
.why-us .feature-content h3,
.portfolio .portfolio-card .project-details .project-title,
.contact .info-card h3,
.service-detail h3 {
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.22;
  font-weight: 750;
  letter-spacing: 0;
}

.service-card p,
.service-list-card p,
.hero-products .product-card p,
.portfolio .portfolio-card .project-details .project-description {
  font-size: 0.93rem;
  line-height: 1.66;
}

.service-card a,
.service-list-card a,
.hero-products .product-card a {
  font-size: 0.86rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .service-card h3,
  .service-list-card h3,
  .hero-products .product-card h3,
  .offer-process-content h3,
  .why-us .feature-content h3,
  .portfolio .portfolio-card .project-details .project-title,
  .contact .info-card h3,
  .service-detail h3 {
    font-size: clamp(1rem, 4.6vw, 1.16rem);
    line-height: 1.24;
    font-weight: 750;
  }

  .service-card p,
  .service-list-card p,
  .hero-products .product-card p,
  .portfolio .portfolio-card .project-details .project-description {
    font-size: 0.9rem;
    line-height: 1.62;
  }
}

/* Serious header/nav polish */
.header {
  padding: 13px 0;
}

.header::before {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(12, 65, 107, 0.08);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.scrolled .header,
.mobile-nav-active .header {
  padding: 9px 0;
  border-bottom-color: rgba(12, 65, 107, 0.12);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.header .brand-logo-mark {
  width: 150px;
}

.header .header-contact-btn {
  min-width: 132px;
  padding: 10px 18px;
  border-color: rgba(0, 104, 169, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--brans-blue-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(0, 104, 169, 0.06);
}

.header .header-contact-btn:hover {
  background: var(--brans-blue);
  border-color: var(--brans-blue);
  box-shadow: 0 12px 28px rgba(0, 104, 169, 0.18);
}

.header .header-contact-btn i {
  font-size: 15px;
}

@media (min-width: 1200px) {
  .header .container-fluid {
    gap: 26px;
  }

  .header .navmenu {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .header .navmenu>ul {
    gap: 6px;
    padding: 4px;
    border: 1px solid rgba(12, 65, 107, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.48);
  }

  .header .navmenu>ul>li>a,
  .header .navmenu>ul>li>a:focus {
    position: relative;
    padding: 10px 14px;
    border-radius: 7px;
    color: #263442;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1;
  }

  .header .navmenu>ul>li>a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    border-radius: 2px;
    background: var(--brans-blue);
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .header .navmenu>ul>li:hover>a,
  .header .navmenu>ul>li>a.active,
  .header .navmenu>ul>li>a.active:focus {
    color: var(--brans-blue-dark);
    background: rgba(0, 104, 169, 0.055);
  }

  .header .navmenu>ul>li:hover>a::after,
  .header .navmenu>ul>li>a.active::after,
  .header .navmenu>ul>li>a.active:focus::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .header .navmenu a i,
  .header .navmenu a:focus i {
    margin-left: 6px;
    font-size: 10px;
    color: color-mix(in srgb, var(--brans-blue-dark), transparent 25%);
  }

  .header .navmenu .dropdown ul {
    left: 0;
    top: calc(100% + 14px);
    min-width: 245px;
    padding: 10px;
    border: 1px solid rgba(12, 65, 107, 0.10);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  }

  .header .navmenu .dropdown:hover>ul,
  .header .navmenu .dropdown:focus-within>ul {
    top: calc(100% + 8px);
  }

  .header .navmenu .dropdown ul a {
    padding: 10px 12px;
    border-radius: 7px;
    color: #3d4a58;
    font-size: 13px;
    font-weight: 600;
  }

  .header .navmenu .dropdown ul a:hover,
  .header .navmenu .dropdown ul li:hover>a {
    color: var(--brans-blue-dark);
    background: rgba(0, 104, 169, 0.07);
  }
}

@media (max-width: 1199px) {
  .header {
    padding: 10px 0;
  }

  .header .brand-logo-mark {
    width: 136px;
  }

  .header .header-contact-btn {
    min-width: auto;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 12px;
  }

  .header .mobile-nav-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(12, 65, 107, 0.12);
    border-radius: 8px;
    color: var(--brans-blue-dark);
    background: rgba(255, 255, 255, 0.72);
  }

  .header .navmenu>ul {
    inset: 64px 16px auto 16px;
    max-height: calc(100vh - 92px);
    padding: 12px;
    border: 1px solid rgba(12, 65, 107, 0.10);
    border-radius: 12px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
  }

  .header .navmenu a,
  .header .navmenu a:focus {
    padding: 12px 12px;
    border-radius: 8px;
    color: #2b3947;
    font-size: 13px;
    font-weight: 650;
  }

  .header .navmenu a:hover,
  .header .navmenu .active,
  .header .navmenu .active:focus {
    color: var(--brans-blue-dark);
    background: rgba(0, 104, 169, 0.07);
  }
}

/* Restore simple header with understated nav underline */
.header {
  padding: 15px 0;
}

.header::before {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 0;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.scrolled .header,
.mobile-nav-active .header {
  padding: 10px 0;
  border-bottom-color: rgba(0, 104, 169, 0.14);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
}

.header .brand-logo-mark {
  width: 158px;
}

.header .header-contact-btn {
  min-width: 150px;
  padding: 12px 24px;
  border: 1px solid var(--brans-blue-border);
  border-radius: 999px;
  background: transparent;
  color: var(--brans-blue);
  font-size: 15px;
  font-weight: 600;
  box-shadow: none;
}

.header .header-contact-btn:hover {
  background: var(--brans-blue);
  border-color: var(--brans-blue);
  box-shadow: none;
}

.header .header-contact-btn i {
  font-size: 18px;
}

@media (min-width: 1200px) {
  .header .container-fluid {
    gap: 0;
  }

  .header .navmenu {
    flex: 1;
    display: block;
  }

  .header .navmenu>ul {
    justify-content: center;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .header .navmenu>ul>li>a,
  .header .navmenu>ul>li>a:focus {
    position: relative;
    padding: 18px 20px;
    border-radius: 0;
    background: transparent;
    color: #455463;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
  }

  .header .navmenu>ul>li>a::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 10px;
    height: 2px;
    border-radius: 2px;
    background: var(--brans-blue);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .header .navmenu>ul>li:hover>a,
  .header .navmenu>ul>li>a.active,
  .header .navmenu>ul>li>a.active:focus {
    color: var(--brans-blue-dark);
    background: transparent;
  }

  .header .navmenu>ul>li:hover>a::after,
  .header .navmenu>ul>li>a.active::after,
  .header .navmenu>ul>li>a.active:focus::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .header .navmenu a i,
  .header .navmenu a:focus i {
    margin-left: 5px;
    font-size: 12px;
    color: inherit;
  }

  .header .navmenu .dropdown ul {
    left: 50%;
    top: calc(100% + 16px);
    width: 316px;
    min-width: 316px;
    padding: 8px 0 12px;
    border: 1px solid rgba(0, 104, 169, 0.14);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    transform: translateX(-50%);
  }

  .header .navmenu .dropdown:hover>ul,
  .header .navmenu .dropdown:focus-within>ul {
    top: calc(100% + 16px);
    transform: translateX(-50%);
  }

  .header .navmenu .dropdown ul a {
    padding: 9px 20px;
    border-radius: 0;
    color: rgba(21, 34, 48, 0.72);
    background: transparent;
    font-size: 15.5px;
    font-weight: 500;
  }

  .header .navmenu .dropdown ul a:hover,
  .header .navmenu .dropdown ul li:hover>a {
    color: var(--brans-blue);
    background: transparent;
  }
}

@media (max-width: 1199px) {
  .header {
    padding: 10px 0;
  }

  .header .brand-logo-mark {
    width: 136px;
  }

  .header .header-contact-btn {
    min-width: auto;
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 12px;
  }

  .header .mobile-nav-toggle {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    color: var(--brans-blue);
    background: transparent;
  }

  .header .navmenu>ul {
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.10);
  }

  .header .navmenu a,
  .header .navmenu a:focus {
    padding: 10px 20px;
    border-radius: 0;
    color: var(--nav-dropdown-color);
    background: transparent;
    font-size: 15px;
    font-weight: 500;
  }

  .header .navmenu a:hover,
  .header .navmenu .active,
  .header .navmenu .active:focus {
    color: var(--brans-blue);
    background: transparent;
  }
}

/* Final hero benefits spacing */
.insurance-hero {
  padding-bottom: 28px;
}

.hero-benefits + .services {
  padding-top: 54px;
}

@media (max-width: 991px) {
  .insurance-hero {
    padding-bottom: 26px;
  }

  .hero-benefits {
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .hero-benefits + .services {
    padding-top: 46px;
  }
}

@media (max-width: 767px) {
  .insurance-hero {
    padding-bottom: 22px;
  }

  .hero-benefits {
    padding-top: 18px;
    padding-bottom: 14px;
  }

  .hero-benefits + .services {
    padding-top: 38px;
  }
}

/* Offer process - connected icon flow */
.offer-process {
  padding: 94px 0 82px;
  background:
    radial-gradient(circle at -3% 92%, rgba(0, 105, 171, 0.055) 0 8%, transparent 8.2%),
    radial-gradient(circle at 103% 18%, rgba(0, 105, 171, 0.045) 0 10%, transparent 10.2%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.offer-process::before {
  content: "";
  display: block;
  left: auto;
  right: 4%;
  top: 54px;
  width: 88px;
  height: 72px;
  background-image: radial-gradient(circle, rgba(0, 105, 171, 0.18) 2px, transparent 2.5px);
  background-size: 17px 17px;
}

.offer-process::after {
  right: -180px;
  top: 72px;
  width: 360px;
  height: 360px;
  border: 46px solid rgba(0, 105, 171, 0.025);
  border-radius: 50%;
  background: transparent;
}

.offer-process-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(54px, 7vw, 104px);
  padding-top: 0;
}

.offer-process-line {
  left: 16.666%;
  right: 16.666%;
  top: 65px;
  height: 1px;
  background: rgba(0, 105, 171, 0.26);
}

.offer-process-line::before,
.offer-process-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  background: #086db1;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 105, 171, 0.18);
  transform: translate(-50%, -50%);
}

.offer-process-line::before {
  left: 25%;
}

.offer-process-line::after {
  left: 75%;
}

.offer-process-step {
  display: block;
  padding: 0;
}

.offer-process-step::before,
.offer-process-step::after {
  display: none;
}

.offer-process-icon {
  position: relative;
  z-index: 3;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: #075493;
  background: linear-gradient(145deg, #ffffff 8%, #eef6fd 100%);
  border: 1px solid rgba(0, 105, 171, 0.10);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(18, 68, 104, 0.09);
}

.offer-process-icon i {
  font-size: 48px;
  line-height: 1;
}

.offer-process-number {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
  margin: 0 0 28px;
  padding: 0 0 0 22px;
  color: #0868ad;
  border-left: 2px solid rgba(0, 105, 171, 0.58);
  font-size: clamp(56px, 5vw, 72px);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.offer-process-number::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -15px;
  width: 34px;
  height: 3px;
  background: var(--brans-blue);
}

.offer-process-content span {
  margin-bottom: 10px;
  color: #0870b8;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.offer-process-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 760;
}

.offer-process-content p {
  max-width: 320px;
  color: #5f7180;
  font-size: 15px;
  line-height: 1.68;
}

.offer-process-footer {
  margin-top: 68px;
  padding-top: 32px;
}

@media (max-width: 991px) {
  .offer-process {
    padding: 72px 0 66px;
  }

  .offer-process::before,
  .offer-process::after {
    display: block;
  }

  .offer-process-timeline {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .offer-process-line {
    left: 48px;
    right: auto;
    top: 48px;
    bottom: 48px;
    width: 1px;
    height: auto;
    background: rgba(0, 105, 171, 0.18);
  }

  .offer-process-line::before,
  .offer-process-line::after {
    display: none;
  }

  .offer-process-step {
    display: grid;
    grid-template-columns: 98px minmax(0, 1fr);
    grid-template-areas:
      "icon number"
      "icon content";
    gap: 0 24px;
    padding: 0;
  }

  .offer-process-icon {
    grid-area: icon;
    width: 96px;
    height: 96px;
    margin: 0;
  }

  .offer-process-icon i {
    font-size: 34px;
  }

  .offer-process-number {
    grid-area: number;
    min-height: 50px;
    margin: 0 0 12px;
    padding-left: 16px;
    font-size: 43px;
  }

  .offer-process-number::after {
    display: none;
  }

  .offer-process-content {
    grid-area: content;
    padding: 0 0 8px 16px;
  }

  .offer-process-content p {
    max-width: 560px;
  }
}

@media (max-width: 575px) {
  .offer-process {
    padding: 58px 0 54px;
  }

  .offer-process::before,
  .offer-process::after {
    display: none;
  }

  .offer-process-timeline {
    gap: 30px;
  }

  .offer-process-line {
    left: 37px;
    top: 38px;
    bottom: 38px;
  }

  .offer-process-step {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 0 16px;
  }

  .offer-process-icon {
    width: 76px;
    height: 76px;
  }

  .offer-process-icon i {
    font-size: 27px;
  }

  .offer-process-number {
    min-height: 42px;
    padding-left: 10px;
    font-size: 36px;
  }

  .offer-process-content {
    padding-left: 10px;
  }

  .offer-process-content h3 {
    font-size: 19px;
  }

  .offer-process-content p {
    font-size: 13.5px;
  }

  .offer-process-footer {
    margin-top: 48px;
  }
}

/* Offer process - minimal linear layout */
.offer-process {
  padding: 86px 0 76px;
  background: #ffffff;
}

.offer-process::before,
.offer-process::after {
  display: none;
}

.offer-process-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(48px, 6vw, 88px);
  padding-top: 0;
}

.offer-process-line {
  display: block;
  left: 0;
  right: 0;
  top: 21px;
  bottom: auto;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 105, 171, 0.34), rgba(0, 105, 171, 0.10));
}

.offer-process-line::before,
.offer-process-line::after {
  display: none;
}

.offer-process-step {
  display: block;
  padding: 0;
}

.offer-process-icon {
  position: relative;
  z-index: 3;
  width: 44px;
  height: 44px;
  justify-content: flex-start;
  margin: 0 0 27px;
  color: var(--brans-blue);
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: 14px 0 0 #ffffff;
}

.offer-process-icon i {
  font-size: 28px;
}

.offer-process-number {
  min-height: 0;
  margin: 0 0 22px;
  padding: 0;
  color: rgba(0, 105, 171, 0.24);
  border: 0;
  font-size: 50px;
  line-height: 1;
  font-weight: 720;
  letter-spacing: -0.045em;
}

.offer-process-number::after {
  display: none;
}

.offer-process-content {
  padding: 0;
}

.offer-process-content span {
  margin-bottom: 9px;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.offer-process-content h3 {
  margin-bottom: 11px;
  color: #173246;
  font-size: 21px;
  font-weight: 740;
}

.offer-process-content p {
  max-width: 340px;
  color: #667985;
  font-size: 14.5px;
  line-height: 1.65;
}

.offer-process-footer {
  margin-top: 58px;
  padding-top: 28px;
}

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

  .offer-process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .offer-process-line {
    display: none;
  }

  .offer-process-step {
    display: grid;
    grid-template-columns: 48px 66px minmax(0, 1fr);
    grid-template-areas: "icon number content";
    align-items: start;
    gap: 18px;
    padding: 24px 0;
    border-top: 1px solid rgba(17, 41, 64, 0.09);
  }

  .offer-process-step:last-child {
    border-bottom: 1px solid rgba(17, 41, 64, 0.09);
  }

  .offer-process-icon {
    grid-area: icon;
    width: 48px;
    height: 48px;
    margin: 0;
    box-shadow: none;
  }

  .offer-process-number {
    grid-area: number;
    margin: 0;
    padding: 0;
    font-size: 38px;
  }

  .offer-process-content {
    grid-area: content;
    padding: 0;
  }

  .offer-process-content p {
    max-width: 620px;
  }
}

@media (max-width: 575px) {
  .offer-process {
    padding: 54px 0 50px;
  }

  .offer-process-step {
    grid-template-columns: 36px 48px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 0;
  }

  .offer-process-icon {
    width: 36px;
    height: 40px;
  }

  .offer-process-icon i {
    font-size: 24px;
  }

  .offer-process-number {
    font-size: 31px;
  }

  .offer-process-content h3 {
    font-size: 18px;
  }

  .offer-process-content p {
    font-size: 13.5px;
  }

  .offer-process-footer {
    margin-top: 38px;
  }
}

/* Header structural depth */
.header {
  padding: 18px 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.header::before {
  background: rgba(255, 255, 255, 0.90);
  border-bottom: 1px solid rgba(17, 41, 64, 0.07);
  box-shadow: 0 8px 28px rgba(19, 50, 72, 0.045);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.header::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: min(1320px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 104, 169, 0.16) 22%, rgba(0, 104, 169, 0.16) 78%, transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.scrolled .header,
.mobile-nav-active .header {
  padding: 11px 0;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
}

.header .brand-logo-mark {
  width: 164px;
}

.header .header-contact-btn {
  gap: 10px;
  min-width: 158px;
  padding: 8px 18px 8px 10px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 22px rgba(15, 67, 103, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.header .header-contact-btn i {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 104, 169, 0.07);
  border-radius: 50%;
  font-size: 15px;
}

.header .header-contact-btn:hover {
  box-shadow: 0 11px 26px rgba(0, 104, 169, 0.16);
  transform: translateY(-1px);
}

.header .header-contact-btn:hover i {
  background: rgba(255, 255, 255, 0.14);
}

@media (min-width: 1200px) {
  .header .brand-logo {
    position: relative;
    padding-right: 30px;
  }

  .header .brand-logo::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, rgba(17, 41, 64, 0.13), transparent);
    transform: translateY(-50%);
  }

  .header .navmenu>ul>li>a,
  .header .navmenu>ul>li>a:focus {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 1199px) {
  .header {
    padding: 12px 0;
  }

  .header .brand-logo-mark {
    width: 142px;
  }

  .header .mobile-nav-toggle {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 104, 169, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 7px 20px rgba(15, 67, 103, 0.06);
  }
}

/* Taller header proportions */
.header {
  padding: 22px 0;
}

.scrolled .header,
.mobile-nav-active .header {
  padding: 13px 0;
}

.header .brand-logo-mark {
  width: 172px;
}

.header .header-contact-btn {
  min-height: 52px;
  min-width: 164px;
}

@media (min-width: 1200px) {
  .header .navmenu>ul>li>a,
  .header .navmenu>ul>li>a:focus {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (max-width: 1199px) {
  .header {
    padding: 14px 0;
  }

  .scrolled .header,
  .mobile-nav-active .header {
    padding: 10px 0;
  }

  .header .brand-logo-mark {
    width: 148px;
  }

  .header .mobile-nav-toggle {
    width: 44px;
    height: 44px;
  }
}

/* Two-tier header architecture */
:root {
  --header-height: 112px;
}

.header {
  flex-direction: column;
  align-items: stretch !important;
  padding: 0;
}

.header::before {
  background: rgba(255, 255, 255, 0.96);
}

.header-utility-bar {
  position: relative;
  z-index: 4;
  width: 100%;
  max-height: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 41, 64, 0.08);
  opacity: 1;
  transition: max-height 0.28s ease, opacity 0.22s ease, border-color 0.22s ease;
}

.header-utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #526071;
  font-size: 11px;
  line-height: 1;
}

.header-utility-note,
.header-utility-links,
.header-utility-links a {
  display: inline-flex;
  align-items: center;
}

.header-utility-note,
.header-utility-links a {
  gap: 7px;
}

.header-utility-note {
  font-weight: 650;
  letter-spacing: 0.015em;
}

.header-utility-note i,
.header-utility-links i {
  color: var(--brans-blue);
  font-size: 12px;
}

.header-utility-links {
  gap: 0;
}

.header-utility-links a {
  padding: 0 16px;
  color: #526071;
  text-decoration: none;
  border-left: 1px solid rgba(17, 41, 64, 0.08);
}

.header-utility-links a:last-child {
  padding-right: 0;
}

.header > .container-fluid {
  width: 100%;
  max-width: 1480px;
  min-height: 78px;
  padding-inline: 24px;
}

.scrolled .header,
.mobile-nav-active .header {
  padding: 0;
}

.scrolled .header-utility-bar {
  max-height: 0;
  border-bottom-color: transparent;
  opacity: 0;
}

.scrolled .header > .container-fluid {
  min-height: 68px;
}

.insurance-hero {
  padding-top: 148px;
}

@media (max-width: 1199px) {
  :root {
    --header-height: 72px;
  }

  .header-utility-bar {
    display: none;
  }

  .header > .container-fluid {
    min-height: 72px;
    padding-inline: 18px;
  }

  .scrolled .header > .container-fluid,
  .mobile-nav-active .header > .container-fluid {
    min-height: 64px;
  }

  .insurance-hero {
    padding-top: 112px;
  }
}

@media (max-width: 767px) {
  .insurance-hero {
    padding-top: 103px;
  }
}

/* Header sizing and mobile navigation correction */
@media (min-width: 1200px) {
  :root {
    --header-height: 124px;
  }

  .header-utility-bar {
    max-height: 42px;
  }

  .header-utility-inner {
    min-height: 42px;
    font-size: 12px;
  }

  .header-utility-note i,
  .header-utility-links i {
    font-size: 13px;
  }

  .header > .container-fluid {
    min-height: 82px;
  }

  .header .brand-logo-mark {
    width: 178px;
  }

  .insurance-hero {
    padding-top: 160px;
  }
}

@media (max-width: 1199px) {
  .header {
    align-items: stretch !important;
    padding: 0;
  }

  .header::before {
    background: rgba(255, 255, 255, 0.97);
  }

  .header > .container-fluid {
    width: 100%;
    max-width: none;
    min-height: 72px;
    padding: 0 18px;
  }

  .header .brand-logo-mark {
    width: 154px;
  }

  .header .mobile-nav-toggle {
    position: relative;
    z-index: 10001;
    width: 44px;
    height: 44px;
    margin: 0;
    flex: 0 0 44px;
  }

  .header .navmenu>ul {
    position: fixed;
    z-index: 9998;
    inset: 72px 0 0 0;
    width: 100%;
    height: calc(100dvh - 72px);
    margin: 0;
    padding: 8px 22px 34px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.985);
    border: 0;
    border-top: 1px solid rgba(17, 41, 64, 0.08);
    border-radius: 0;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .mobile-nav-active .header .navmenu>ul {
    display: block;
    inset: 72px 0 0 0;
    transform: translateX(0);
  }

  .scrolled .header .navmenu>ul,
  .scrolled.mobile-nav-active .header .navmenu>ul {
    inset: 64px 0 0 0;
    height: calc(100dvh - 64px);
  }

  .header .navmenu>ul>li {
    border-bottom: 1px solid rgba(17, 41, 64, 0.08);
  }

  .header .navmenu>ul>li>a,
  .header .navmenu>ul>li>a:focus {
    min-height: 54px;
    padding: 15px 4px;
    background: transparent;
    border-radius: 0;
  }

  .header .navmenu .dropdown ul {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 0 0 8px;
    padding: 4px 0 8px 18px;
    background: rgba(0, 104, 169, 0.035);
    border: 0;
    border-left: 2px solid rgba(0, 104, 169, 0.16);
    border-radius: 0;
    box-shadow: none;
  }

  .header .navmenu .dropdown ul a {
    min-height: 44px;
    padding: 11px 12px;
  }
}

/* Header finishing details */
.header::after {
  display: none;
}

@media (min-width: 1200px) {
  .header .header-contact-btn {
    min-width: 0;
    min-height: 0;
    gap: 8px;
    margin-left: 26px;
    padding: 11px 4px 11px 24px;
    color: var(--brans-blue);
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(17, 41, 64, 0.11);
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .header .header-contact-btn::after {
    content: "\2192";
    margin-left: 3px;
    font-size: 17px;
    line-height: 1;
    transition: transform 0.22s ease;
  }

  .header .header-contact-btn i {
    width: 27px;
    height: 27px;
    background: transparent;
    border-radius: 0;
    font-size: 15px;
  }

  .header .header-contact-btn:hover {
    color: var(--brans-blue);
    background: transparent;
    border-color: rgba(17, 41, 64, 0.11);
    box-shadow: none;
    transform: none;
  }

  .header .header-contact-btn:hover i {
    background: transparent;
  }

  .header .header-contact-btn:hover::after {
    transform: translateX(4px);
  }
}

/* Refined header signature details */
@media (min-width: 1200px) {
  .header-utility-bar {
    background: rgba(255, 255, 255, 0.96);
  }

  .header > .container-fluid {
    isolation: isolate;
  }

  .header > .container-fluid::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: -70px;
    width: 410px;
    background:
      linear-gradient(110deg, rgba(0, 104, 169, 0.055), rgba(161, 205, 46, 0.025) 52%, transparent 53%);
    clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
    pointer-events: none;
  }

  .header .navmenu>ul>li>a::after {
    left: 50%;
    right: auto;
    bottom: 8px;
    width: 26px;
    height: 2px;
    transform: translateX(-50%) scaleX(0);
  }

  .header .navmenu>ul>li:hover>a::after,
  .header .navmenu>ul>li>a.active::after,
  .header .navmenu>ul>li>a.active:focus::after {
    transform: translateX(-50%) scaleX(1);
  }

  .header .brand-logo::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 34px;
    height: 2px;
    background: rgba(0, 104, 169, 0.24);
  }
}

/* Header detail cleanup */
@media (min-width: 1200px) {
  .header > .container-fluid::before,
  .header .brand-logo::before,
  .header .brand-logo::after {
    display: none;
  }

  .header .header-contact-btn::after {
    content: "\2197";
  }
}

/* Header tier alignment */
@media (min-width: 1200px) {
  .header {
    background: #ffffff;
    border-bottom: 1px solid rgba(17, 41, 64, 0.08);
    box-shadow: none;
  }

  .header::before {
    background: #ffffff;
    opacity: 1;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0;
    box-shadow: none;
  }

  .header-utility-bar,
  .header > .container-fluid {
    background: #ffffff;
  }

  .header-utility-inner,
  .header > .container-fluid {
    width: 100%;
    max-width: none;
    padding-left: clamp(40px, 3.4vw, 72px);
    padding-right: clamp(40px, 3.4vw, 72px);
  }

  .header-utility-inner {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile header/menu attachment */
@media (max-width: 1199px) {
  .mobile-nav-active .header {
    border-bottom: 0;
    box-shadow: none;
  }

  .header .mobile-nav-toggle,
  .mobile-nav-active .header .mobile-nav-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .header .navmenu>ul,
  .mobile-nav-active .header .navmenu>ul {
    padding-top: 0;
    border-top: 0;
  }

  .header .navmenu>ul>li>a,
  .header .navmenu>ul>li>a:focus {
    width: 100%;
  }

  .header .navmenu .dropdown>a,
  .header .navmenu .dropdown>a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header .navmenu .dropdown>a .toggle-dropdown {
    margin-left: auto;
  }

  .header .mobile-nav-toggle::before {
    display: none !important;
    content: none !important;
  }
}

/* True fullscreen mobile navigation */
@media (max-width: 1199px) {
  .mobile-nav-active .header {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    max-width: none;
    background: #ffffff;
    overflow: hidden;
  }

  .mobile-nav-active .header::before {
    display: block;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-nav-active .header > .container-fluid {
    position: relative;
    z-index: 10000;
    width: 100vw;
    max-width: none;
    flex: 0 0 72px;
    background: #ffffff;
  }

  .mobile-nav-active .header .navmenu>ul {
    position: fixed;
    inset: 72px 0 0 0;
    width: 100vw;
    height: calc(100dvh - 72px);
    max-width: none;
    background: #ffffff;
    opacity: 1;
  }

  .scrolled.mobile-nav-active .header .navmenu>ul {
    inset: 64px 0 0 0;
    height: calc(100dvh - 64px);
  }

  .mobile-nav-active .fixed-call-button,
  .mobile-nav-active .scroll-top {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

/* Continuous partner logo marquee */
.partner-marquee {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  background-color: rgba(248, 251, 253, 0.78);
  border-top: 1px solid rgba(17, 41, 64, 0.05);
  border-bottom: 1px solid rgba(17, 41, 64, 0.06);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.partner-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partner-marquee-left 105s linear infinite;
  will-change: transform;
}

.partner-logo-group {
  display: flex;
  align-items: center;
  gap: clamp(38px, 4.5vw, 76px);
  padding-right: clamp(38px, 4.5vw, 76px);
}

.partner-logo-item {
  width: 158px;
  height: 58px;
  flex: 0 0 158px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.46;
  transition: filter 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.partner-logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.045);
}

@keyframes partner-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.partner-marquee + .services {
  padding-top: 70px;
}

/* Benefits moved above the footer */
.closing-benefits {
  position: relative;
  padding: 64px 0 58px;
  background: linear-gradient(180deg, #f8fbfd 0%, #f1f8fc 100%);
  border-top: 1px solid rgba(17, 41, 64, 0.06);
}

.closing-benefits .hero-benefit-item {
  min-height: 88px;
}

@media (max-width: 767px) {
  .partner-marquee {
    padding: 20px 0;
  }

  .partner-marquee-track {
    animation-duration: 78s;
  }

  .partner-logo-group {
    gap: 34px;
    padding-right: 34px;
  }

  .partner-logo-item {
    width: 126px;
    height: 46px;
    flex-basis: 126px;
  }

  .partner-marquee + .services {
    padding-top: 46px;
  }

  .closing-benefits {
    padding: 42px 0 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee-track {
    animation-duration: 180s;
  }
}

/*--------------------------------------------------------------
# Insurance Companies Page
--------------------------------------------------------------*/

.insurance-companies-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 74px) 0 76px;
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 105, 171, 0.12), transparent 31%),
    radial-gradient(circle at 92% 22%, rgba(149, 200, 23, 0.13), transparent 28%),
    linear-gradient(135deg, #f9fcfe 0%, #ffffff 48%, #eef8fc 100%);
}

.insurance-companies-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, rgba(0, 105, 171, 0.06) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(0, 105, 171, 0.16) 1px, transparent 1.5px);
  background-size: 92px 92px, 18px 18px;
  background-position: -20px -40px, calc(100% - 160px) 56px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 76%);
}

.companies-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 48px;
  z-index: 1;
}

.companies-hero-copy {
  max-width: 760px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0069ab;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, #0069ab, rgba(0, 105, 171, 0.14));
}

.companies-hero-copy h1 {
  margin: 20px 0 18px;
  color: #183348;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 850;
  max-width: 900px;
}

.companies-hero-copy p {
  max-width: 640px;
  margin: 0;
  color: #667987;
  font-size: 18px;
  line-height: 1.8;
}

.companies-hero-card {
  position: relative;
  padding: 30px 30px 28px;
  border: 1px solid rgba(0, 105, 171, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 70px rgba(0, 67, 115, 0.12);
  backdrop-filter: blur(16px);
}

.companies-hero-card::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #0069ab, #95c817) border-box;
  border: 2px solid transparent;
  opacity: 0.9;
}

.companies-hero-card::after {
  content: "\F633";
  position: absolute;
  top: 34px;
  right: 37px;
  font-family: "bootstrap-icons";
  color: #0069ab;
  font-size: 28px;
  line-height: 1;
}

.companies-hero-card span {
  display: block;
  color: #0069ab;
  font-size: 76px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.08em;
}

.companies-hero-card p {
  margin: 18px 0 0;
  color: #5f7280;
  font-size: 15px;
  line-height: 1.75;
}

.insurance-companies-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 92px;
  background: #fff;
}

.insurance-companies-section::before {
  content: "";
  position: absolute;
  left: -160px;
  bottom: 16%;
  width: 340px;
  height: 340px;
  border: 58px solid rgba(0, 105, 171, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.companies-section-head {
  position: relative;
  max-width: 760px;
  margin-bottom: 36px;
  z-index: 1;
}

.companies-section-head h2 {
  margin: 18px 0 12px;
  color: #183348;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.companies-section-head p {
  margin: 0;
  color: #6a7b87;
  font-size: 17px;
  line-height: 1.7;
}

.companies-logo-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  z-index: 1;
}

.company-logo-card {
  position: relative;
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 26px 22px 22px;
  border: 1px solid rgba(0, 105, 171, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 254, 0.92)),
    #fff;
  box-shadow: 0 14px 42px rgba(22, 58, 83, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.company-logo-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 20px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #0069ab, rgba(149, 200, 23, 0.72));
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.company-logo-frame {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo-frame img {
  display: block;
  width: auto;
  max-width: 168px;
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.58;
  transition: filter 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.company-logo-card h3 {
  margin: 0;
  color: #183348;
  font-size: 15px;
  line-height: 1.3;
  text-align: center;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.company-logo-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 105, 171, 0.22);
  box-shadow: 0 24px 62px rgba(0, 67, 115, 0.12);
}

.company-logo-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.company-logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.companies-bottom-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 38px;
  padding: 26px 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(0, 105, 171, 0.08), rgba(149, 200, 23, 0.08)),
    #f8fcfe;
  border: 1px solid rgba(0, 105, 171, 0.13);
  z-index: 1;
}

.companies-bottom-cta span {
  display: block;
  margin-bottom: 6px;
  color: #0069ab;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.companies-bottom-cta h3 {
  margin: 0;
  color: #183348;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.045em;
  font-weight: 820;
}

.companies-bottom-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  padding: 16px 22px;
  border-radius: 999px;
  color: #fff;
  background: #0069ab;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(0, 105, 171, 0.2);
}

.companies-bottom-cta a:hover {
  color: #fff;
  background: #005f9b;
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .companies-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .insurance-companies-hero {
    padding: calc(var(--header-height) + 48px) 0 58px;
  }

  .companies-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .companies-hero-card {
    max-width: 420px;
  }

  .companies-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .companies-bottom-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .insurance-companies-hero {
    padding: calc(var(--header-height) + 36px) 0 46px;
  }

  .companies-hero-copy h1 {
    font-size: 40px;
  }

  .companies-hero-copy p {
    font-size: 16px;
  }

  .insurance-companies-section {
    padding: 54px 0 62px;
  }

  .companies-logo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .company-logo-card {
    min-height: 138px;
    border-radius: 24px;
  }

  .companies-bottom-cta {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .companies-bottom-cta a {
    width: 100%;
  }
}

/* Insurance companies - global section styles */
.insurance-companies-hero {
  padding: calc(var(--header-height) + 44px) 0 42px;
  background: #fbfdff;
  border-bottom: 1px solid #e5edf3;
}

.insurance-companies-hero::before {
  display: none;
}

.insurance-companies-hero .companies-hero-grid {
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: end;
  gap: 36px;
}

.insurance-companies-hero .section-kicker,
.insurance-companies-section .section-kicker {
  gap: 10px;
  color: #31566f;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.insurance-companies-hero .section-kicker::before,
.insurance-companies-section .section-kicker::before {
  width: 24px;
  background: #9eb3c0;
}

.insurance-companies-hero .companies-hero-copy h1 {
  max-width: 720px;
  margin: 14px 0 12px;
  color: #183348;
  font-size: clamp(32px, 3.5vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 780;
}

.insurance-companies-hero .companies-hero-copy p {
  max-width: 640px;
  color: #5e7483;
  font-size: 16px;
  line-height: 1.7;
}

.insurance-companies-hero .companies-hero-card {
  padding: 0 0 0 20px;
  border: 0;
  border-left: 1px solid #cfdae2;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.insurance-companies-hero .companies-hero-card::before,
.insurance-companies-hero .companies-hero-card::after {
  display: none;
}

.insurance-companies-hero .companies-hero-card span {
  color: #183348;
  font-size: 38px;
  letter-spacing: -0.025em;
  font-weight: 760;
}

.insurance-companies-hero .companies-hero-card p {
  margin-top: 8px;
  color: #607481;
  font-size: 14px;
  line-height: 1.6;
}

.insurance-companies-section {
  padding: 50px 0 66px;
  background: #fff;
}

.insurance-companies-section::before {
  display: none;
}

.insurance-companies-section .companies-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 34px;
  max-width: none;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5edf3;
}

.insurance-companies-section .companies-section-head h2 {
  margin: 12px 0 0;
  color: #183348;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.025em;
  font-weight: 760;
}

.insurance-companies-section .companies-section-head p {
  color: #5e7483;
  font-size: 15px;
  line-height: 1.65;
}

.insurance-companies-section .companies-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 0;
  background: #fff;
}

.insurance-companies-section .company-logo-card {
  min-height: 136px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 22px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
  transition: border-color 0.22s ease;
}

.insurance-companies-section .company-logo-card:not(:nth-child(3n)) {
  border-right: 1px solid #e5edf3;
}

.insurance-companies-section .company-logo-card:nth-child(-n + 21) {
  border-bottom: 1px solid #e5edf3;
}

.insurance-companies-section .company-logo-card::before {
  display: none;
}

.insurance-companies-section .company-logo-card::after {
  display: none;
}

.insurance-companies-section .company-logo-frame {
  position: relative;
  order: 1;
  width: 100%;
  height: 66px;
  flex: 0 0 66px;
  justify-content: center;
  z-index: 1;
}

.insurance-companies-section .company-logo-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 34px;
  height: 1px;
  background: #d4dee5;
  opacity: 0.9;
  translate: -50% 0;
  transition: width 0.22s ease, background-color 0.22s ease;
}

.insurance-companies-section .company-logo-frame img {
  max-width: 170px;
  max-height: 52px;
  filter: grayscale(1);
  opacity: 0.58;
  transform: none;
  transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.insurance-companies-section .company-logo-card h3 {
  display: none;
}

.insurance-companies-section .company-logo-card:hover {
  transform: none;
  background: #fff;
  box-shadow: none;
}

.insurance-companies-section .company-logo-frame:hover::after {
  width: 54px;
  background: #0069ab;
}

.insurance-companies-section .company-logo-frame:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.insurance-companies-section .companies-bottom-cta {
  margin-top: 30px;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid #e5edf3;
  border-radius: 0;
  background: transparent;
}

.insurance-companies-section .companies-bottom-cta span {
  margin-bottom: 5px;
  color: #31566f;
  font-size: 11px;
}

.insurance-companies-section .companies-bottom-cta h3 {
  color: #183348;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.02em;
  font-weight: 740;
}

.insurance-companies-section .companies-bottom-cta a {
  min-width: 0;
  padding: 0;
  border-radius: 0;
  color: #0069ab;
  background: transparent;
  box-shadow: none;
}

.insurance-companies-section .companies-bottom-cta a:hover {
  color: #005f9b;
  background: transparent;
  transform: none;
}

@media (max-width: 1199px) {
  .insurance-companies-section .companies-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .insurance-companies-hero {
    padding: calc(var(--header-height) + 34px) 0 38px;
  }

  .insurance-companies-hero .companies-hero-grid,
  .insurance-companies-section .companies-section-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .insurance-companies-hero .companies-hero-card {
    max-width: none;
  }

  .insurance-companies-section .companies-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insurance-companies-section .company-logo-card:not(:nth-child(3n)) {
    border-right: 0;
  }

  .insurance-companies-section .company-logo-card:not(:nth-child(2n)) {
    border-right: 1px solid #e5edf3;
  }

  .insurance-companies-section .company-logo-card:nth-child(-n + 21) {
    border-bottom: 0;
  }

  .insurance-companies-section .company-logo-card:nth-child(-n + 22) {
    border-bottom: 1px solid #e5edf3;
  }
}

@media (max-width: 575px) {
  .insurance-companies-hero .companies-hero-copy h1 {
    font-size: 32px;
  }

  .insurance-companies-section {
    padding: 38px 0 52px;
  }

  .insurance-companies-section .company-logo-card {
    min-height: 118px;
    gap: 0;
    padding: 22px 16px;
  }

  .insurance-companies-section .company-logo-frame {
    height: 54px;
    flex-basis: 54px;
  }

  .insurance-companies-section .company-logo-frame img {
    max-width: 132px;
    max-height: 42px;
  }

  .insurance-companies-section .companies-bottom-cta {
    gap: 16px;
  }
}

/* Hero copy transition lock: prevent outgoing text from sliding sideways */
.insurance-hero .insurance-copy,
.insurance-hero .insurance-copy.active,
.insurance-hero .insurance-copy.leaving {
  transform: translate3d(0, 0, 0);
}

.insurance-hero .insurance-copy.leaving {
  opacity: 0;
  visibility: visible;
  transition:
    opacity 0.26s ease,
    visibility 0s linear 0.26s;
}

@media (max-width: 767px) {
  .insurance-hero .insurance-copy,
  .insurance-hero .insurance-copy.active,
  .insurance-hero .insurance-copy.leaving {
    transform: translate3d(0, 0, 0);
  }
}

/* Final footer: clean reference layout */
.footer.dark-background {
  --background-color: #ffffff;
  --default-color: #5d6672;
  --heading-color: #111827;
  --accent-color: var(--brans-blue);
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  color: var(--default-color);
  background: #ffffff !important;
  border-top: 1px solid #e5e7eb;
}

.footer.dark-background::before,
.footer .footer-action-bar {
  display: none;
}

.footer.dark-background::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: clamp(-58px, -3vw, -28px);
  bottom: clamp(-64px, -4vw, -36px);
  width: clamp(210px, 18vw, 320px);
  aspect-ratio: 1;
  background: url("../img/brans-logo-mark.svg") center / contain no-repeat;
  opacity: 0.035;
  filter: grayscale(1) saturate(0);
  pointer-events: none;
}

.footer.dark-background > .container {
  position: relative;
  z-index: 1;
}

.footer .footer-top {
  padding: 42px 0 34px;
  border: 0;
}

.footer .footer-main-grid {
  display: grid;
  grid-template-columns: minmax(360px, 2.2fr) minmax(110px, 0.72fr) minmax(130px, 0.78fr) minmax(145px, 0.82fr) minmax(200px, 1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 82px);
  padding: 0;
}

.footer .footer-brand-block {
  padding: 0;
}

.footer .footer-about .logo.footer-brand-mark,
.footer .footer-brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 0 22px;
  padding: 6px 0;
  isolation: isolate;
}

.footer .footer-brand-mark::before {
  display: none;
}

.footer .footer-about .logo.footer-brand-mark img,
.footer .footer-brand-mark img {
  display: block;
  width: clamp(132px, 10vw, 164px);
  height: auto;
  max-height: none;
  margin: 0;
}

.footer .footer-about p,
.footer .footer-brand-text {
  max-width: 405px;
  margin: 0 0 22px !important;
  color: #5d6672;
  font-size: 13px;
  line-height: 1.58;
  font-weight: 450;
}

.footer .footer-social-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.footer .footer-social-bottom a {
  width: auto;
  height: auto;
  flex-basis: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 18px;
  line-height: 1;
  opacity: 0.88;
}

.footer .footer-social-bottom a:hover {
  color: var(--brans-blue);
  background: transparent;
  transform: none;
  opacity: 1;
}

.footer h4 {
  margin: 0 0 17px;
  padding: 0;
  color: #111827;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 760;
  letter-spacing: -0.01em;
  text-transform: none;
}

.footer h4::after {
  display: none;
}

.footer .footer-links ul,
.footer .footer-contact ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .footer-links ul li,
.footer .footer-contact ul li {
  margin: 0;
  padding: 0;
}

.footer .footer-links ul a,
.footer .footer-contact a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0;
  width: auto;
  max-width: 100%;
  padding: 0;
  color: #5d6672;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 450;
  text-decoration: none;
  transform: none;
}

.footer .footer-links ul a::before {
  display: none;
}

.footer .footer-contact a i {
  display: none;
}

.footer .footer-links ul a:hover,
.footer .footer-contact a:hover {
  color: #111827;
  background: transparent;
  transform: none;
}

.footer .copyright.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 23px 0 26px;
  border-top: 1px solid #e5e7eb;
  color: #5d6672;
  font-size: 12.5px;
  line-height: 1.45;
  background: transparent;
}

.footer .copyright p {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.footer .copyright strong {
  color: #111827;
  font-weight: 700;
}

.footer .footer-credit {
  margin: 0;
  color: #5d6672;
  font-size: inherit;
}

.footer .footer-credit a {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer .footer-credit a:hover {
  color: var(--brans-blue);
}

@media (max-width: 1199px) {
  .footer .footer-main-grid {
    grid-template-columns: minmax(240px, 1.5fr) repeat(2, minmax(130px, 1fr));
    gap: 34px 42px;
  }

  .footer .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .footer .footer-top {
    padding: 36px 0 28px;
  }

  .footer .footer-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .footer .footer-brand-block,
  .footer .footer-contact-panel {
    grid-column: 1 / -1;
  }

  .footer .footer-about .logo.footer-brand-mark img,
  .footer .footer-brand-mark img {
    width: 156px;
  }

  .footer .footer-brand-text {
    max-width: 100%;
  }

  .footer .copyright.footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0 24px;
  }
}

@media (max-width: 420px) {
  .footer .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer .footer-brand-block,
  .footer .footer-contact-panel {
    grid-column: auto;
  }
}
