/**
 * Shopper Details Page Styles
 * 
 * @package BrandLock Child
 * @since 1.0.0
 */

/* ===== CSS Variables ===== */
:root {
    --sd-primary-light-background: #EDEDED;
    --sd-primary-dark: #050714;
    --sd-primary-blue: #417ECF;
    --sd-text-white: #FFFFFF;
    --sd-text-light: #E5E7EB;
    --sd-text-gray: #9CA3AF;
    --sd-text-dark: #202020;
    --sd-problem-red: rgba(32, 32, 32, 0.90);
    --sd-problem-red-bg: rgba(189, 29, 29, 0.20);
    --sd-problem-red-border:#BD1D1D;
    --sd-solution-green: rgba(32, 32, 32, 0.90);
    --sd-solution-green-bg: rgba(37, 132, 18, 0.20);
    --sd-solution-green-border: #258412;
    --sd-glass-bg: rgba(255, 255, 255, 0.1);
    --sd-glass-border: rgba(255, 255, 255, 0.2);
    --sd-card-glass-bg: rgba(5, 7, 20, 0.02);
    --sd-card-glass-border: rgba(255, 255, 255, 0.1);
    --sd-font-primary: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --sd-blue-primary: #2F64AA;
	--sd-blue-hover: #2563eb;
    --sd-border-radius: 6px;
	--sd-transition: all 0.3s ease;
	font-size: unset;
}


/* ==========================================================================
   PLP Header Styles
   ========================================================================== */

.shopper-header {
	background: var(--sd-primary-light-background);
	color: var(--sd-text-white);
	padding: 1rem 0;
	position: relative;
	z-index: 100;
	/* border-bottom: 1px solid var(--sd-border-dark); */
	position: sticky;
	top: 0;
}

.shopper-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.shopper-header-logo {
	flex: 1;
}

.shopper-logo-link {
	color: var(--sd-blue-primary);
	text-decoration: none;
	transition: var(--sd-transition);
}

.shopper-logo-link:hover {
	color: var(--sd-blue-primary);
}

.shopper-logo-text {
	font-family: var(--sd-font-primary);
	font-size: 2.75rem;
	font-weight: 700;
	letter-spacing: -0.025em;
}

.shopper-header-nav {
	flex: 2;
	display: flex;
	justify-content: center;
}

.shopper-nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2rem;
}

.shopper-nav-menu li {
	margin: 0;
}

.shopper-nav-menu a {
	color: var(--sd-text-light);
	text-decoration: none;
	font-family: var(--sd-font-primary);
	font-weight: 500;
	transition: var(--sd-transition);
}

.shopper-nav-menu a:hover {
	color: var(--sd-blue-primary);
}

.shopper-header-cta {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	color: #FAFAFA;
	font-family: var(--sd-font-primary);
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}



/* ==========================================================================
   PLP Button Styles
   ========================================================================== */

   .shopper-cta-button,
   .shopper-button-primary {
       display: inline-block;
       background: var(--sd-blue-primary);
       color: var(--sd-text-white);
       padding: 12px 24px;
       border: none;
       border-radius: var(--sd-border-radius);
       font-family: var(--sd-font-primary);
       font-weight: 600;
       font-size: 20px;
       text-decoration: none;
       cursor: pointer;
       transition: var(--sd-transition);
       text-align: center;
   }
   
   .shopper-cta-button:hover,
   .shopper-button-primary:hover {
       background: var(--sd-blue-hover);
       color: var(--sd-text-white);
       transform: translateY(-2px);
       box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
   }
   
   .shopper-cta-button:focus,
   .shopper-button-primary:focus {
       outline: 2px solid var(--sd-blue-primary);
       outline-offset: 2px;
   }

   
   
/* ===== Base Styles ===== */
.shopper-details-page {
    font-family: var(--sd-font-primary);
    line-height: 1.6;
}

/* ===== Hero Section ===== */
.shopper-hero {
    background: #EDEDED;
    min-height: 100vh;
    padding: 100px 0;
    overflow: hidden;
    display: flex;
}

/* ===== Shopper Tabs ===== */
.shopper-tabs {
    padding: 10px;
    background: linear-gradient(90deg, rgba(189, 206, 229, 0.15) 0%, rgba(18.80, 40, 68, 0.15) 100%);
    border-radius: 16px;
	-webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 8px;
    gap: 4px;
    max-width: 100%;
}

.shopper-tab {
    background: transparent;
    border: none;
    color: var(--sd-text-dark);
    font-family: var(--sd-font-primary);
    font-size: 16px;
    font-weight: 500;
    padding: 2px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.shopper-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.shopper-tab.active {
    background: var(--sd-primary-dark);
    color: var(--sd-text-white);

}

/* ===== Title & Icon Section ===== */
.shopper-title-section {
    animation: fadeInUp 0.8s ease-out;
}

.shopper-icon-container {
    display: inline-block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--sd-glass-border);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.shopper-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.2);
}

.shopper-main-title {
    color: var(--sd-text-dark);
    font-family: var(--sd-font-primary);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.shopper-subtitle {
    color: var(--sd-text-dark);
    font-family: var(--sd-font-primary);
    font-size: clamp(1.1rem, 1.1vw, 1.3rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Metrics Section ===== */
.shopper-metrics-section {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.metrics-container {
    text-align: center;
   	padding: 30px 20px;
    max-width: 750px;
    margin: 0 auto;
}

.metric-block {
    padding: 10px;
}

.metric-block:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    color: var(--sd-primary-blue);
    font-family: var(--sd-font-primary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    color: var(--sd-text-dark);
    font-family: var(--sd-font-primary);
    font-size: clamp(0.5rem, 1vw, 1rem);
    font-weight: 400;
    /* text-transform: capitalize; */
    letter-spacing: 0.05em;
}

/* ===== Problem/Solution Section ===== */
.problem-solution-section {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.problem-solution-card {
    background: var(--sd-card-glass-bg);
    border: 1px solid var(--sd-card-glass-border);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 25px;
    min-height: 186px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.problem-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-solution-card:hover::before {
    opacity: 1;
}

/* .problem-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
} */

.card-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 100px;
    font-family: var(--sd-font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    border: 1.4px solid;
}

.problem-pill {
    background: var(--sd-problem-red-bg);
    color: var(--sd-problem-red);
    border-color: var(--sd-problem-red-border);
}

.solution-pill {
    background: var(--sd-solution-green-bg);
    color: var(--sd-solution-green);
    border-color: var(--sd-solution-green-border);
}

.card-description {
    color: rgba(32, 32, 32, 0.90);;
    font-family: var(--sd-font-primary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ===== Animated Orb ===== */
.animated-orb {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--sd-primary-blue) 0%, rgba(78, 164, 205, 0.4) 50%, transparent 70%);
    border-radius: 9999px;
    filter: blur(50px);
    opacity: 0.6;
    animation: orbPulse 4s ease-in-out infinite;
    z-index: 0;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orbPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.4;
    }
}

/* ===== Responsive Breakpoints ===== */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .shopper-hero {
        padding: 10px 0 54px 0;
    }
    
    .shopper-tabs {
        gap: 6px;
        padding: 10px;
    }
    
    .shopper-tab {
        font-size: 18px;
        padding: 8px 12px;
    }
    
    .metrics-container {
        padding: 0px 30px 40px;
    }
    
    .problem-solution-card {
        padding: 30px;
    }
}

/* Medium devices (tablets, 768px to 991.98px) */
@media (max-width: 991.98px) {
    .shopper-hero {
        padding: 16px 0 80px 0;
    }
    
    .shopper-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .shopper-tab {
        font-size: 15px;
        padding: 10px 16px;
        margin: 2px;
    }
    
    .shopper-icon {
        width: 50px;
        height: 50px;
    }
    
    .metric-block:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .metrics-container {
        padding: 30px 20px;
    }
}

/* Small devices (landscape phones, 576px to 767.98px) */
@media (max-width: 768px) {

    .shopper-header-content {
		flex-direction: column;
		text-align: center;
	}

	.shopper-header-nav {
		order: 3;
	}

	.shopper-nav-menu {
		flex-direction: column;
		gap: 1rem;
	}

	.shopper-cta-button {
		padding: 0.75rem 1.5rem;
	}

    .shopper-hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .shopper-tabs-container {
        padding: 0 10px;
    }
    
    .shopper-tabs {
        padding: 6px;
        gap: 2px;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .shopper-tab {
        font-size: 14px;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
    }
    
    .shopper-icon-container {
        padding: 15px;
    }
    
    .shopper-icon {
        width: 40px;
        height: 40px;
    }
    
    .metrics-container {
        padding: 25px 15px;
    }
    
    .problem-solution-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .card-description {
        font-size: 15px;
    }
    
    .animated-orb {
        width: 150px;
        height: 150px;
        bottom: -75px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .shopper-hero {
        padding: 16px 0 40px 0;
    }
    
    .shopper-tabs-container {
        padding: 0 5px;
    }
    
    .shopper-tab {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .shopper-main-title {
        font-size: 2rem;
    }
    
    .shopper-subtitle {
        font-size: 1rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    .metrics-container {
        padding: 20px 10px;
    }
    
    .problem-solution-card {
        padding: 15px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .animated-orb {
        width: 120px;
        height: 120px;
        bottom: -60px;
    }
}

/* Content transition animations */
.shopper-content-area {
    position: relative;
}

.shopper-content-area.transitioning {
    pointer-events: none;
}

.shopper-content-area.transitioning > * {
    opacity: 0.5;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .animated-orb,
    .shopper-title-section,
    .shopper-metrics-section,
    .problem-solution-section {
        animation: none;
    }
    
    .problem-solution-card:hover {
        transform: none;
    }
    
    .shopper-tab:hover {
        transform: none;
    }
}

/* ===== How It Works Section ===== */
.how-it-works-section {
    background: var(--sd-primary-dark);
    padding: 80px 0;
    color: var(--sd-text-white);
}

.how-it-works-title {
    color: var(--sd-text-white);
    font-family: var(--sd-font-primary);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.how-it-works-subtitle {
    color: var(--sd-text-light);
    font-family: var(--sd-font-primary);
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Primary Tabs (Problem/Solution) ===== */
.primary-tabs-container {
    padding: 0 15px;
    margin-bottom: 20px;
}

.primary-tabs {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 7px;
    padding: 6px;
    gap: 6px;
}

.primary-tab-btn {
    background: transparent;
    border: none;
    color: var(--sd-text-light);
    font-family: var(--sd-font-primary);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 7px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.primary-tab-btn.problem-tab.active {
    border: 1px solid var(--sd-problem-red-border);
}

.primary-tab-btn.solution-tab.active {
    border: 1px solid var(--sd-solution-green-border);
}

.primary-tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--sd-text-white);
    transform: translateY(-2px);
}

.primary-tab-btn.active {
    /* background: var(--sd-solution-green); */
    color: var(--sd-text-white);
}

/* ===== Nested Tabs Container ===== */
.nested-tabs-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--sd-card-glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ===== Vertical Tabs Navigation ===== */
.vertical-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vertical-tab-item {
    background: transparent;
    border: none;
    color: var(--sd-text-light);
    font-family: var(--sd-font-primary);
    font-size: 16px;
    font-weight: 400;
    padding: 16px 20px;
    text-align: left;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.vertical-tab-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--sd-text-white);
    transform: translateX(5px);
}

.vertical-tab-item.active {
    color: var(--sd-text-white);
    font-weight: 600;
    border-right: 1px solid #473BF1;
    border-radius: 0px;
}

/* ===== Image Display ===== */
.vertical-tabs-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    min-height: 400px;
	height: 100%;
}

.how-it-works-image[src=""] {
	display:none;
}

.how-it-works-alt-tag {
	display:none;
}

.how-it-works-image[src=""] + .how-it-works-alt-tag {
	display: flex;
    align-items: center;
	justify-content: center;
    height: 100%;
}

.how-it-works-image-container {
    width: 100%;
	height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--sd-card-glass-border);
    background: var(--sd-card-glass-bg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin: 0 auto;
}

.how-it-works-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
    border-radius: 14px;
	object-fit: contain;
    max-height: 500px;
}

.how-it-works-image:hover {
    transform: scale(1.02);
}

/* ===== Key Points Section ===== */
.key-points-section {
    width: 100%;
    margin: 0 auto;
}

.key-point-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 80px;
}
.key-point-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.key-point-icon-img {
    width: 24px;
    height: 24px;
}

.key-point-text {
    flex: 1;
    color: var(--sd-text-light);
    font-family: var(--sd-font-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

/* ===== Responsive Design ===== */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .how-it-works-section {
        padding: 100px 0;
    }
    
    .nested-tabs-container {
        padding: 40px;
    }
    
    .vertical-tabs-content {
        min-height: 500px;
    }
    
    .key-point-item {
        padding: 24px;
        gap: 18px;
    }
    
    .key-point-text {
        font-size: 16px;
    }
}

/* Medium devices (tablets, 768px to 991.98px) */
@media (max-width: 991.98px) {
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .primary-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .primary-tab-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .nested-tabs-container {
        padding: 20px;
    }
    
    .vertical-tabs-nav {
        margin-bottom: 30px;
    }
    
    .vertical-tabs-content {
        min-height: 300px;
    }
    
    .key-point-item {
        padding: 18px;
        gap: 14px;
    }
    
    .key-point-text {
        font-size: 15px;
    }
}

/* Small devices (landscape phones, 576px to 767.98px) */
@media (max-width: 767.98px) {
    .how-it-works-section {
        padding: 40px 0;
    }
    
    .primary-tabs {
        width: 100%;
        max-width: 280px;
        flex-direction: column;
        gap: 8px;
    }
    
    .primary-tab-btn {
        width: 100%;
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .nested-tabs-container {
        padding: 15px;
    }
    
    .vertical-tab-item {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .vertical-tabs-content {
        min-height: 250px;
    }
    
    .how-it-works-image-container {
        border-radius: 12px;
    }
    
    .key-point-item {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    
    .key-point-icon {
        width: 36px;
        height: 36px;
    }
    
    .key-point-icon-img {
        width: 20px;
        height: 20px;
    }
    
    .key-point-text {
        font-size: 14px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .how-it-works-section {
        padding: 30px 0;
    }
    
    .how-it-works-title {
        font-size: 2rem;
    }
    
    .how-it-works-subtitle {
        font-size: 0.95rem;
    }
    
    .nested-tabs-container {
        padding: 12px;
    }
    
    .vertical-tab-item {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .vertical-tabs-content {
        min-height: 200px;
    }
    
    .key-point-item {
        padding: 12px;
        gap: 10px;
    }
    
    .key-point-icon {
        width: 32px;
        height: 32px;
    }
    
    .key-point-icon-img {
        width: 18px;
        height: 18px;
    }
    
    .key-point-text {
        font-size: 13px;
    }
}

/* Content transition animations */
.how-it-works-image-container.transitioning {
    opacity: 0.7;
    transform: scale(0.98);
    transition: all 0.3s ease;
}

.vertical-tabs-nav.transitioning .vertical-tab-item {
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .shopper-hero {
        background: #000000;
    }
    
    .shopper-tab.active {
        border: 3px solid var(--sd-primary-blue);
    }
    
    .problem-solution-card {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .how-it-works-section {
        background: #000000;
    }
    
    .primary-tab-btn.active {
        border: 2px solid var(--sd-solution-green);
    }
    
    .vertical-tab-item.active {
        border: 2px solid var(--sd-primary-blue);
    }
} 

/****** Remove Distraction Section ******** */

.shopper-details-cta-button {
    display: inline-block;
    background: var(--sd-blue-primary);
    color: var(--sd-text-white);
    padding: 12px 24px;
    border: none;
    border-radius: var(--sd-border-radius);
    font-family: var(--sd-font-primary);
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--sd-transition);
    text-align: center;
}

.section-container {
    padding: 5rem 7.5rem;
}

.section-container-dark {
    background-color: #050714;
}

.section-title {
    text-align: center;
    color: #ededed;
    text-align: center;
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-description {
    text-align: center;
    color: #ededed;
    text-align: center;
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.72px;
    animation: fadeInUp 0.8s ease-out;
}

.features-container {
    width: 92%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin: 4rem auto 2rem auto;
}

.feature-card {
    width: 33.33%;
    display: inline-flex;
    padding: 1.5rem 1.25rem 2rem 1.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(244, 244, 244, 0.08);
    background: linear-gradient(73deg, rgba(25, 26, 38, 0.40) 1.72%, rgba(92, 96, 140, 0.40) 198.29%);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1rem 2.5rem;
    border-color: #746BFD;
}

.feature-card-title {
    color: #FFF;
    text-align: center;
    font-family: Archivo;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.8px;
    margin-bottom: 0;
}

.feature-card-description {
    color: rgba(250, 250, 250, 0.80);
    text-align: center;
    font-family: Archivo;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.72px;
    margin-bottom: 0;
    width: 75%;
}

.feature-card-icon {
    display: flex;
    padding: 0.75rem;
    align-items: center;
    gap: 0.625rem;
    border-radius: 0.75rem;
    border: 0.8px solid #746BFD;
    background: rgba(116, 107, 253, 0.10);
}

.feature-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    aspect-ratio: 1/1;
}

.features-cta-container {
    display: flex;
    justify-content: center;
}

.features-routes-container {
    /* margin-bottom: 4rem; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 164px; */
}

.features-routes {
    /* position: relative; */
    z-index: 1;
    width: 65%;
    height: 100%;
}

.vector-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 101px;
}

.vector-2 {
    position: absolute;
    top: 0;
    left: 50%;
}

.vector-3 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-16%, 18%);
}

.vector-4 {
    position: absolute;
    left: 15%;
    top: 58%;
}

.vector-5 {
    position: absolute;
    right: 0;
    top: 15%;
    transform: translateX(-240%);
}

.vector-all {
    width: 100%;
}

.vector-all g:nth-child(6) path {
    filter: drop-shadow(0px 2px 6px rgba(116, 107, 253, 0.4));
}

.vector-all g:nth-child(7) path {
    filter: drop-shadow(0px 2px 6px rgba(116, 107, 253, 0.4));
}

.vector-all g:nth-child(8) path {
    filter: drop-shadow(0px 2px 6px rgba(116, 107, 253, 0.4));
}

@media (max-width: 1024px) {
    html {
        font-size: 75%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 62.5%;
    }
}

@media (max-width: 480px) {

    .section-container {
        padding: 4rem;
    }

    .features-container {
        flex-direction: column;
    }

    .feature-card {
        width: 100%;
        margin-bottom: 1rem;
    }

    .features-routes-container {
        display: none;
    }
}

@media (max-width: 320px) {
    .features-routes-container {
        display: none;
    }
}