/* ==========================================================================   SHORAGES PREMIUM THEME - MAIN STYLESHEET   Premium White / Midnight Blue / Scarlet Red Palette   Fonts: Poppins (headings + body)   ========================================================================== *//* ============ CSS VARIABLES ============ */:root {    /* Colors - Set dynamically via PHP, fallbacks here */    --color-primary: #0F172A;
--color-secondary: #BE123C;
--color-accent: #3B82F6;
--color-bg: #FEFCFB;
--color-text: #1E293B;
--color-text-light: #64748B;
--color-border: #E2E8F0;
/* Derived Colors */    --color-primary-light: #1E293B;
--color-primary-dark: #020617;
--color-secondary-light: #E11D48;
--color-secondary-dark: #9F1239;
--color-accent-light: #60A5FA;
--color-accent-dark: #2563EB;
/* Backgrounds */    --bg-white: #FFFFFF;
--bg-cream: #FEFCFB;
--bg-light: #F8FAFC;
--bg-muted: #F1F5F9;
--bg-dark: #0F172A;
/* Typography */    --font-heading: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
--font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
/* Font Sizes */    --fs-xs: 0.75rem;
--fs-sm: 0.875rem;
--fs-base: 1rem;
--fs-lg: 1.125rem;
--fs-xl: 1.25rem;
--fs-2xl: 1.5rem;
--fs-3xl: 1.875rem;
--fs-4xl: 2.25rem;
--fs-5xl: 3rem;
--fs-6xl: 3.75rem;
--fs-7xl: 4.5rem;
/* Spacing */    --space-xs: 0.5rem;
--space-sm: 1rem;
--space-md: 1.5rem;
--space-lg: 2rem;
--space-xl: 3rem;
--space-2xl: 4rem;
--space-3xl: 6rem;
/* Layout */    --container-max: 1280px;
--container-narrow: 960px;
--container-wide: 1440px;
/* Border Radius */    --radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 16px;
--radius-xl: 24px;
--radius-full: 9999px;
/* Shadows */    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
--shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
--shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
--shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
--shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
--shadow-red: 0 10px 30px -5px rgba(190, 18, 60, 0.3);
--shadow-blue: 0 10px 30px -5px rgba(15, 23, 42, 0.3);
/* Transitions */    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
--transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
--transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
/* Z-index */    --z-header: 1000;
--z-mobile-menu: 1100;
--z-overlay: 900;
--z-back-to-top: 1200;
}
/* ============ RESET & BASE ============ */*, *::before, *::after {    box-sizing: border-box;
}
html {    scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
scroll-padding-top: 100px;
}
body {    font-family: var(--font-body);
font-size: var(--fs-base);
line-height: 1.7;
color: var(--color-text);
background-color: var(--color-bg);
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {    font-family: var(--font-heading);
font-weight: 700;
line-height: 1.2;
color: var(--color-primary);
margin: 0 0 var(--space-sm);
letter-spacing: -0.02em;
}
h1 { font-size: var(--fs-5xl);
}
h2 { font-size: var(--fs-4xl);
}
h3 { font-size: var(--fs-2xl);
}
h4 { font-size: var(--fs-xl);
}
h5 { font-size: var(--fs-lg);
}
h6 { font-size: var(--fs-base);
}
p {    margin: 0 0 var(--space-sm);
}
a {    color: var(--color-secondary);
text-decoration: none;
transition: color var(--transition-fast);
}
a:hover {    color: var(--color-secondary-dark);
}
img {    max-width: 100%;
height: auto;
display: block;
}
ul, ol {    margin: 0 0 var(--space-sm);
padding-left: var(--space-md);
}
/* ============ LAYOUT ============ */.container {    width: 100%;
max-width: var(--container-max);
margin: 0 auto;
padding: 0 var(--space-md);
}
.container-narrow {    max-width: var(--container-narrow);
}
.container-wide {    max-width: var(--container-wide);
}
.site-content {    min-height: 60vh;
}
/* ============ TYPOGRAPHY UTILITIES ============ */.text-center { text-align: center;
}
.text-left { text-align: left;
}
.text-right { text-align: right;
}
.text-primary { color: var(--color-primary);
}
.text-secondary { color: var(--color-secondary);
}
.text-accent { color: var(--color-accent);
}
.text-light { color: var(--color-text-light);
}
.text-white { color: white;
}
.bg-primary { background-color: var(--color-primary);
}
.bg-secondary { background-color: var(--color-secondary);
}
.bg-light { background-color: var(--bg-light);
}
.bg-white { background-color: var(--bg-white);
}
/* ============ BUTTONS ============ */.btn {    display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.875rem 1.75rem;
font-family: var(--font-heading);
font-size: var(--fs-sm);
font-weight: 600;
line-height: 1;
text-decoration: none;
border: 2px solid transparent;
border-radius: var(--radius-full);
cursor: pointer;
transition: all var(--transition-base);
position: relative;
overflow: hidden;
white-space: nowrap;
}
.btn-text { display: inline-block;
}
.btn-icon {    display: inline-flex;
transition: transform var(--transition-base);
}
.btn:hover .btn-icon {    transform: translateX(4px);
}
.btn-primary {    background: var(--color-secondary);
color: white;
box-shadow: var(--shadow-red);
}
.btn-primary:hover {    background: var(--color-secondary-dark);
color: white;
transform: translateY(-2px);
box-shadow: 0 15px 35px -5px rgba(190, 18, 60, 0.4);
}
.btn-outline {    background: transparent;
color: var(--color-primary);
border-color: var(--color-border);
}
.btn-outline:hover {    background: var(--color-primary);
color: white;
border-color: var(--color-primary);
}
.btn-light {    background: white;
color: var(--color-primary);
}
.btn-light:hover {    background: var(--bg-light);
color: var(--color-secondary);
transform: translateY(-2px);
}
.btn-dark {    background: var(--color-primary);
color: white;
}
.btn-dark:hover {    background: var(--color-primary-light);
color: white;
}
.btn-lg {    padding: 1.125rem 2.25rem;
font-size: var(--fs-base);
}
.btn-sm {    padding: 0.625rem 1.25rem;
font-size: var(--fs-xs);
}
.btn-block {    display: flex;
width: 100%;
}
/* ============ TOP BAR ============ */.topbar {    background: var(--color-primary);
color: rgba(255, 255, 255, 0.85);
font-size: var(--fs-sm);
padding: 0.5rem 0;
}
.topbar-inner {    display: flex;
justify-content: space-between;
align-items: center;
gap: var(--space-md);
}
.topbar-text {    font-weight: 500;
}
.topbar-right {    display: flex;
gap: var(--space-md);
align-items: center;
}
.topbar-link {    color: rgba(255, 255, 255, 0.85);
display: inline-flex;
align-items: center;
gap: 0.4rem;
transition: color var(--transition-fast);
}
.topbar-link:hover {    color: white;
}
.topbar-link svg {    color: var(--color-secondary-light);
}
/* ============ HEADER ============ */.site-header {    background: white;
border-bottom: 1px solid var(--color-border);
position: relative;
z-index: var(--z-header);
}
.site-header.sticky-header {    position: sticky;
top: 0;
transition: box-shadow var(--transition-base);
}
.site-header.sticky-header.scrolled {    box-shadow: var(--shadow-md);
}
.header-inner {    display: flex;
align-items: center;
justify-content: space-between;
padding-top: 1rem;
padding-bottom: 1rem;
gap: var(--space-md);
}
/* Logo */.site-logo {    flex-shrink: 0;
}
.logo-text {    display: inline-flex;
align-items: center;
gap: 0.6rem;
text-decoration: none;
}
.logo-mark {    display: inline-flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
color: white;
font-family: var(--font-heading);
font-weight: 700;
font-size: 1.4rem;
border-radius: var(--radius-md);
box-shadow: var(--shadow-red);
}
.logo-name {    font-family: var(--font-heading);
font-weight: 700;
font-size: var(--fs-xl);
color: var(--color-primary);
letter-spacing: -0.02em;
}
/* Primary Navigation */.main-navigation {    flex: 1;
display: flex;
justify-content: center;
}
.main-navigation ul {    list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 0.5rem;
align-items: center;
}
.main-navigation li {    position: relative;
}
.main-navigation a {    display: block;
padding: 0.6rem 1rem;
color: var(--color-text);
font-weight: 500;
font-size: var(--fs-sm);
border-radius: var(--radius-md);
transition: all var(--transition-fast);
position: relative;
}
.main-navigation a:hover,.main-navigation .current-menu-item > a {    color: var(--color-secondary);
background: rgba(190, 18, 60, 0.05);
}
/* Dropdown */.main-navigation .sub-menu {    position: absolute;
top: 100%;
left: 0;
background: white;
box-shadow: var(--shadow-lg);
border-radius: var(--radius-md);
padding: 0.5rem;
min-width: 220px;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all var(--transition-base);
flex-direction: column;
gap: 0;
}
.main-navigation li:hover > .sub-menu {    opacity: 1;
visibility: visible;
transform: translateY(0);
}
.main-navigation .sub-menu a {    padding: 0.6rem 1rem;
}
/* Header Actions */.header-actions {    display: flex;
gap: var(--space-sm);
align-items: center;
}
.header-cta {    flex-shrink: 0;
}
/* Mobile Menu Toggle */.mobile-menu-toggle {    display: none;
flex-direction: column;
gap: 5px;
background: transparent;
border: none;
padding: 0.5rem;
cursor: pointer;
width: 36px;
height: 36px;
justify-content: center;
}
.menu-bar {    width: 24px;
height: 2px;
background: var(--color-primary);
transition: all var(--transition-base);
border-radius: 2px;
}
.mobile-menu-toggle.active .menu-bar:nth-child(1) {    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active .menu-bar:nth-child(2) {    opacity: 0;
}
.mobile-menu-toggle.active .menu-bar:nth-child(3) {    transform: translateY(-7px) rotate(-45deg);
}
/* Mobile Menu */.mobile-menu {    display: none;
position: fixed;
top: 0;
right: -100%;
width: 85%;
max-width: 380px;
height: 100vh;
background: white;
box-shadow: var(--shadow-2xl);
padding: 5rem 2rem 2rem;
transition: right var(--transition-slow);
z-index: var(--z-mobile-menu);
overflow-y: auto;
}
.mobile-menu.active {    right: 0;
}
.mobile-menu-inner ul {    list-style: none;
padding: 0;
margin: 0 0 2rem;
}
.mobile-menu-inner li {    border-bottom: 1px solid var(--color-border);
}
.mobile-menu-inner a {    display: block;
padding: 1rem 0;
color: var(--color-text);
font-weight: 500;
font-size: var(--fs-lg);
}
.mobile-menu-inner a:hover {    color: var(--color-secondary);
}
.mobile-cta {    margin-top: 1rem;
}
/* ============ SECTION HEADER ============ */.section-header {    margin-bottom: var(--space-2xl);
max-width: 720px;
}
.section-header.center {    margin-left: auto;
margin-right: auto;
text-align: center;
}
.section-badge {    display: inline-block;
background: rgba(190, 18, 60, 0.08);
color: var(--color-secondary);
font-size: var(--fs-xs);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
padding: 0.4rem 1rem;
border-radius: var(--radius-full);
margin-bottom: var(--space-sm);
}
.section-title {    font-size: var(--fs-4xl);
margin-bottom: var(--space-sm);
}
.section-subtitle {    font-size: var(--fs-lg);
color: var(--color-text-light);
margin: 0;
}
/* ============ HERO SECTION ============ */.hero-section {    position: relative;
background: linear-gradient(135deg, var(--color-primary) 0%, #1E293B 100%);
color: white;
padding: var(--space-3xl) 0 var(--space-3xl);
overflow: hidden;
}
.hero-bg-image {    position: absolute;
inset: 0;
background-size: cover;
background-position: center;
opacity: 0.3;
}
.hero-overlay {    position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 100%);
}
.hero-container {    position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: var(--space-2xl);
align-items: center;
}
.hero-content {    max-width: 600px;
}
.hero-badge {    display: inline-flex;
align-items: center;
gap: 0.5rem;
background: rgba(190, 18, 60, 0.15);
border: 1px solid rgba(190, 18, 60, 0.3);
color: #FDA4AF;
padding: 0.5rem 1rem;
border-radius: var(--radius-full);
font-size: var(--fs-sm);
font-weight: 500;
margin-bottom: var(--space-md);
}
.hero-badge-dot {    width: 8px;
height: 8px;
background: var(--color-secondary);
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse {    0%, 100% { opacity: 1;
transform: scale(1);
}
50% { opacity: 0.5;
transform: scale(1.3);
}
}
.hero-title {    color: white;
font-size: var(--fs-6xl);
line-height: 1.1;
margin-bottom: var(--space-md);
}
.hero-subtitle {    font-size: var(--fs-lg);
color: rgba(255, 255, 255, 0.8);
margin-bottom: var(--space-xl);
line-height: 1.6;
}
.hero-actions {    display: flex;
gap: var(--space-sm);
flex-wrap: wrap;
}
.hero-btn-primary {    background: var(--color-secondary);
color: white;
box-shadow: var(--shadow-red);
}
.hero-btn-primary:hover {    background: var(--color-secondary-dark);
color: white;
transform: translateY(-2px);
}
.hero-btn-secondary {    background: transparent;
color: white;
border-color: rgba(255, 255, 255, 0.3);
}
.hero-btn-secondary:hover {    background: white;
color: var(--color-primary);
border-color: white;
}
/* Hero Visual */.hero-visual {    position: relative;
min-height: 400px;
}
.hero-card {    position: absolute;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: var(--radius-lg);
padding: 1rem 1.25rem;
display: flex;
align-items: center;
gap: 0.75rem;
color: white;
transition: all var(--transition-base);
}
.hero-card:hover {    background: rgba(255, 255, 255, 0.15);
transform: translateY(-4px);
}
.hero-card-1 {    top: 0;
right: 0;
animation: float 6s ease-in-out infinite;
}
.hero-card-2 {    top: 50%;
left: 0;
transform: translateY(-50%);
animation: float 6s ease-in-out infinite 2s;
}
.hero-card-3 {    bottom: 80px;
right: 20%;
animation: float 6s ease-in-out infinite 4s;
}
@keyframes float {    0%, 100% { transform: translateY(0);
}
50% { transform: translateY(-10px);
}
}
.hero-card-2 {    animation-delay: 2s;
}
.hero-card-icon {    font-size: 1.5rem;
width: 40px;
height: 40px;
background: rgba(190, 18, 60, 0.3);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.hero-card-title {    font-family: var(--font-heading);
font-weight: 600;
font-size: var(--fs-sm);
}
.hero-card-sub {    font-size: var(--fs-xs);
color: rgba(255, 255, 255, 0.7);
}
.hero-stats-pill {    position: absolute;
bottom: 0;
right: 0;
background: var(--color-secondary);
color: white;
padding: 1rem 1.5rem;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-red);
text-align: center;
}
.hero-stats-number {    font-family: var(--font-heading);
font-size: var(--fs-3xl);
font-weight: 700;
line-height: 1;
}
.hero-stats-label {    font-size: var(--fs-xs);
opacity: 0.9;
margin-top: 0.25rem;
}
/* ============ HERO DASHBOARD MOCKUP ============ */.hero-visual-dashboard {    min-height: 420px;
display: flex;
align-items: center;
justify-content: center;
}
.sh-dash-wrap {    position: relative;
width: 100%;
max-width: 560px;
}
.sh-dash-panel {    position: relative;
z-index: 2;
background: #ffffff;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.08);
}
.sh-dash-topbar {    display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.65rem 0.9rem;
background: #f3f4f6;
border-bottom: 1px solid #e5e7eb;
}
.sh-dash-topbar-dots {    display: flex;
gap: 6px;
flex-shrink: 0;
}
.sh-dash-topbar-dots span {    width: 11px;
height: 11px;
border-radius: 50%;
display: inline-block;
}
.sh-dash-topbar-title {    flex: 1;
text-align: center;
font-size: 0.78rem;
font-weight: 600;
color: #475569;
font-family: var(--font-heading);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.sh-dash-live-dot {    width: 10px;
height: 10px;
border-radius: 50%;
background: #28c840;
flex-shrink: 0;
box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.5);
animation: sh-dash-pulse 2s ease-out infinite;
}
@keyframes sh-dash-pulse {    0% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.5);
}
70% { box-shadow: 0 0 0 8px rgba(40, 200, 64, 0);
}
100% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0);
}
}
.sh-dash-screenshot {    display: block;
width: 100%;
height: auto;
}
.sh-dash-screenshot--placeholder {    display: flex;
align-items: center;
justify-content: center;
text-align: center;
min-height: 280px;
padding: 2rem;
color: #64748b;
font-size: 0.85rem;
background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
}
/* Floating glass cards */.sh-glass-float {    position: absolute;
z-index: 3;
display: flex;
align-items: center;
gap: 0.6rem;
padding: 0.7rem 0.9rem;
border-radius: 14px;
background: rgba(255, 255, 255, 0.12);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5);
color: #fff;
}
.sh-glass-float-icon {    width: 30px;
height: 30px;
border-radius: 9px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: #fff;
}
.sh-glass-float-icon--coral {    background: linear-gradient(135deg, #f43f5e, #be123c);
}
.sh-glass-float-icon--teal {    background: linear-gradient(135deg, #2dd4bf, #0d9488);
}
.sh-glass-float-label {    margin: 0;
font-size: 0.65rem;
text-transform: uppercase;
letter-spacing: 0.04em;
color: rgba(255, 255, 255, 0.7);
}
.sh-glass-float-value {    margin: 0;
font-size: 0.95rem;
font-weight: 700;
font-family: var(--font-heading);
line-height: 1.2;
}
.sh-glass-float-a {    top: -34px;
left: -52px;
animation: float 6s ease-in-out infinite;
}
.sh-glass-float-b {    bottom: 8%;
left: -64px;
animation: float 6s ease-in-out infinite 2s;
}
.sh-glass-float-c {    bottom: -38px;
right: -46px;
animation: float 6s ease-in-out infinite 4s;
}
.hero-wave {    position: absolute;
bottom: -1px;
left: 0;
right: 0;
width: 100%;
height: auto;
line-height: 0;
pointer-events: none;
z-index: 1;
}
.hero-wave svg {    display: block;
width: 100%;
height: 100px;
max-height: 120px;
}
@media (max-width: 768px) {    .hero-wave svg {        height: 60px;
}
}
/* Section wrapper for per-section styling */.section-wrapper {    position: relative;
overflow: hidden;
}
.section-wrapper .section-bg-overlay {    position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
pointer-events: none;
}
.section-wrapper .section-inner {    position: relative;
z-index: 1;
}
/* Apply section text/link color variables */.section-wrapper {    color: var(--section-text-color, inherit);
}
.section-wrapper .section-title,.section-wrapper .service-title,.section-wrapper .step-title,.section-wrapper .location-title,.section-wrapper .testimonial-text,.section-wrapper .blog-card-title,.section-wrapper .cta-title,.section-wrapper .stat-number {    color: var(--section-text-color, var(--color-primary));
}
.section-wrapper .section-subtitle,.section-wrapper .service-desc,.section-wrapper .step-desc,.section-wrapper .location-city,.section-wrapper .testimonial-role,.section-wrapper .blog-card-excerpt,.section-wrapper .cta-subtitle,.section-wrapper .stat-label {    color: var(--section-text-color, var(--color-text-light));
opacity: 0.8;
}
.section-wrapper .service-link,.section-wrapper .blog-read-more,.section-wrapper .section-badge {    color: var(--section-link-color, var(--color-secondary));
}
.section-wrapper .check-icon {    background: var(--section-link-color, var(--color-secondary));
color: #fff !important;
-webkit-text-fill-color: #fff !important;
}
/* ============ STATS SECTION ============ *//* Note: padding, background color/image now controlled via Customizer inline styles */.stats-section {    /* fallback only — overridden by inline styles */}
.stats-grid {    display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--space-md);
}
.stat-item {    text-align: center;
padding: var(--space-lg);
background: white;
border-radius: var(--radius-lg);
border: 2px solid var(--color-border);
transition: all var(--transition-base);
}
.stat-item:hover {    border-color: var(--color-secondary);
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}
.stat-number {    font-family: var(--font-heading);
font-size: var(--fs-5xl);
font-weight: 700;
background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 0.5rem;
}
.stat-label {    color: var(--color-text-light);
font-size: var(--fs-sm);
font-weight: 500;
}
/* ============ SERVICES SECTION ============ *//* Note: padding, background color/image now controlled via Customizer inline styles */.services-section {    /* fallback only */}
.services-grid {    display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--space-md);
}
.service-card {    background: white;
border-radius: var(--radius-xl);
overflow: hidden;
transition: all var(--transition-base);
border: 1px solid var(--color-border);
position: relative;
}
.service-card::before {    content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-light));
transform: scaleX(0);
transform-origin: left;
transition: transform var(--transition-base);
}
.service-card:hover {    transform: translateY(-8px);
box-shadow: var(--shadow-xl);
border-color: var(--color-secondary);
}
.service-card:hover::before {    transform: scaleX(1);
}
.service-card-image {    height: 200px;
overflow: hidden;
}
.service-card-image img {    width: 100%;
height: 100%;
object-fit: cover;
transition: transform var(--transition-slow);
}
.service-card:hover .service-card-image img {    transform: scale(1.05);
}
.service-card-inner {    padding: var(--space-lg);
}
.service-icon {    width: 60px;
height: 60px;
background: linear-gradient(135deg, rgba(190, 18, 60, 0.1), rgba(190, 18, 60, 0.05));
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.75rem;
margin-bottom: var(--space-sm);
border: 1px solid rgba(190, 18, 60, 0.1);
}
.service-title {    font-size: var(--fs-xl);
margin-bottom: 0.5rem;
}
.service-desc {    color: var(--color-text-light);
margin-bottom: var(--space-md);
line-height: 1.6;
}
.service-features {    list-style: none;
padding: 0;
margin: 0 0 var(--space-md);
}
.service-features li {    display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.4rem 0;
font-size: var(--fs-sm);
color: var(--color-text);
}
.service-features li .check-icon {    color: #fff !important;
-webkit-text-fill-color: #fff !important;
}
.services-section .service-features li .check-icon {    color: #fff !important;
-webkit-text-fill-color: #fff !important;
}
.check-icon {    width: 18px;
height: 18px;
background: var(--color-secondary);
color: #fff !important;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 0.7rem;
font-weight: 700;
flex-shrink: 0;
-webkit-text-fill-color: #fff !important;
}
.service-link {    display: inline-flex;
align-items: center;
gap: 0.4rem;
color: var(--color-secondary);
font-weight: 600;
font-size: var(--fs-sm);
transition: gap var(--transition-base);
}
.service-link:hover {    gap: 0.7rem;
}
.link-arrow {    transition: transform var(--transition-base);
}
.service-link:hover .link-arrow {    transform: translateX(3px);
}
/* ============ INTEGRATIONS SECTION ============ */.integrations-section {    position: relative;
}
.integrations-header {    max-width: 1120px;
margin-left: auto;
margin-right: auto;
}
.integrations-badge {    color: #EF5A4F;
background: rgba(239, 90, 79, 0.08);
border-color: rgba(239, 90, 79, 0.22);
letter-spacing: 0.18em;
text-transform: uppercase;
}
.integrations-title {    max-width: 1180px;
margin-left: auto;
margin-right: auto;
font-size: 3.75rem;
line-height: 1.05;
letter-spacing: 0;
}
.integrations-subtitle {    max-width: 760px;
margin-left: auto;
margin-right: auto;
font-size: var(--fs-lg);
line-height: 1.55;
}
.integrations-grid {    display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 1.25rem;
margin-top: var(--space-2xl);
}
.integration-card {    min-height: 142px;
background: #FFFFFF;
border: 1px solid #E2E8F0;
border-radius: 14px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.875rem;
padding: 1.25rem 0.875rem;
box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}
.integration-card:hover {    transform: translateY(-4px);
border-color: rgba(190, 18, 60, 0.35);
box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}
.integration-card h3 {    margin: 0;
color: #64748B;
font-size: 0.95rem;
line-height: 1.25;
text-align: center;
font-weight: 700;
}
.integration-logo {    width: 58px;
height: 58px;
border-radius: 10px;
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--integration-color);
color: #FFFFFF;
font-family: var(--font-heading);
font-weight: 800;
font-size: 0.9rem;
line-height: 1;
box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.08);
overflow: hidden;
}
.integration-logo.has-image {    background: #FFFFFF;
border: 1px solid #E2E8F0;
box-shadow: none;
padding: 0.35rem;
}
.integration-logo img {    width: 100%;
height: 100%;
object-fit: contain;
display: block;
}
.integration-card--ebay .integration-logo,.integration-card--zoho .integration-logo {    color: #0F172A;
}
.integration-card--custom-api {    background: rgba(239, 90, 79, 0.045);
border-color: rgba(239, 90, 79, 0.34);
}
.integration-card--custom-api h3 {    color: #EF5A4F;
}
.integration-card--custom-api .integration-logo {    background: rgba(239, 90, 79, 0.12);
color: #EF5A4F;
box-shadow: none;
}
@media (max-width: 1180px) {    .integrations-title {        font-size: 3.25rem;
}
.integrations-grid {        grid-template-columns: repeat(4, minmax(0, 1fr));
}
}
@media (max-width: 768px) {    .integrations-title {        font-size: 2.25rem;
}
.integrations-grid {        grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.875rem;
}
.integration-card {        min-height: 124px;
border-radius: 12px;
}
}
@media (max-width: 420px) {    .integrations-title {        font-size: 1.875rem;
}
.integrations-grid {        grid-template-columns: 1fr;
}
}
/* ============ HOW IT WORKS ============ *//* Note: padding, background color/image now controlled via Customizer inline styles */.how-section {    position: relative;
}
.steps-grid {    display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--space-md);
position: relative;
}
.steps-grid::before {    content: '';
position: absolute;
top: 50px;
left: 12%;
right: 12%;
height: 2px;
background: linear-gradient(90deg, var(--color-secondary), var(--color-accent), var(--color-secondary));
z-index: 0;
}
.step-item {    text-align: center;
position: relative;
z-index: 1;
padding: var(--space-md);
}
.step-number {    position: absolute;
top: 0;
right: 20px;
font-family: var(--font-heading);
font-size: var(--fs-4xl);
font-weight: 700;
color: rgba(190, 18, 60, 0.1);
line-height: 1;
}
.step-icon {    width: 80px;
height: 80px;
background: white;
border: 3px solid var(--color-secondary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
margin: 0 auto var(--space-md);
box-shadow: var(--shadow-md);
transition: all var(--transition-base);
}
.step-item:hover .step-icon {    background: var(--color-secondary);
color: white;
transform: scale(1.1);
}
.step-title {    font-size: var(--fs-lg);
margin-bottom: 0.5rem;
}
.step-desc {    color: var(--color-text-light);
font-size: var(--fs-sm);
line-height: 1.6;
}
/* ============ LOCATIONS SECTION ============ *//* Note: padding, background color/image now controlled via Customizer inline styles */.locations-section {    /* fallback only */}
.locations-grid {    display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--space-lg);
max-width: 900px;
margin: 0 auto;
}
.location-card {    background: white;
border-radius: var(--radius-xl);
overflow: hidden;
border: 1px solid var(--color-border);
transition: all var(--transition-base);
position: relative;
}
.location-card:hover {    transform: translateY(-6px);
box-shadow: var(--shadow-xl);
border-color: var(--color-accent);
}
.location-card-image {    height: 220px;
overflow: hidden;
}
.location-card-image img {    width: 100%;
height: 100%;
object-fit: cover;
}
.location-card-content {    padding: var(--space-lg);
}
.location-flag {    font-size: 2.5rem;
margin-bottom: var(--space-sm);
}
.location-title {    font-size: var(--fs-2xl);
margin-bottom: 0.25rem;
}
.location-city {    color: var(--color-text-light);
font-size: var(--fs-sm);
margin-bottom: var(--space-md);
}
.location-details {    list-style: none;
padding: 0;
margin: 0 0 var(--space-md);
}
.location-details li {    padding: 0.5rem 0;
border-bottom: 1px solid var(--color-border);
font-size: var(--fs-sm);
}
.location-details li:last-child {    border-bottom: none;
}
.detail-label {    color: var(--color-text-light);
font-weight: 500;
}
/* ============ TESTIMONIALS ============ *//* Note: padding, background color/image now controlled via Customizer inline styles */.testimonials-section {    /* fallback only */}
.testimonials-grid {    display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-md);
}
.testimonial-card {    background: white;
border-radius: var(--radius-xl);
padding: var(--space-lg);
border: 1px solid var(--color-border);
position: relative;
transition: all var(--transition-base);
}
.testimonial-card::before {    content: '"';
position: absolute;
top: -10px;
right: 30px;
font-family: var(--font-heading);
font-size: 5rem;
color: rgba(190, 18, 60, 0.1);
line-height: 1;
}
.testimonial-card:hover {    transform: translateY(-4px);
box-shadow: var(--shadow-lg);
border-color: var(--color-secondary);
}
.testimonial-stars {    margin-bottom: var(--space-sm);
}
.star {    color: var(--color-border);
font-size: var(--fs-lg);
}
.star-filled {    color: #FBBF24;
}
.testimonial-text {    font-size: var(--fs-base);
line-height: 1.7;
color: var(--color-text);
margin: 0 0 var(--space-md);
font-style: italic;
}
.testimonial-author {    display: flex;
align-items: center;
gap: 0.75rem;
padding-top: var(--space-sm);
border-top: 1px solid var(--color-border);
}
.testimonial-avatar {    width: 48px;
height: 48px;
border-radius: 50%;
overflow: hidden;
flex-shrink: 0;
}
.testimonial-avatar img {    width: 100%;
height: 100%;
object-fit: cover;
}
.testimonial-avatar-placeholder {    background: var(--color-secondary);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-heading);
font-weight: 700;
font-size: var(--fs-lg);
}
.testimonial-name {    font-weight: 600;
color: var(--color-primary);
}
.testimonial-role {    font-size: var(--fs-xs);
color: var(--color-text-light);
}
/* ============ BLOG SECTION ============ *//* Note: padding, background color/image now controlled via Customizer inline styles */.blog-section {    /* fallback only */}
.blog-grid {    display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-md);
margin-bottom: var(--space-xl);
}
.blog-card {    background: white;
border-radius: var(--radius-xl);
overflow: hidden;
border: 1px solid var(--color-border);
transition: all var(--transition-base);
}
.blog-card:hover {    transform: translateY(-6px);
box-shadow: var(--shadow-xl);
border-color: var(--color-secondary);
}
.blog-card-image {    display: block;
height: 200px;
overflow: hidden;
background: var(--color-primary);
position: relative;
}
.blog-card-image img {    width: 100%;
height: 100%;
object-fit: cover;
transition: transform var(--transition-slow);
}
.blog-card:hover .blog-card-image img {    transform: scale(1.05);
}
.blog-card-no-image {    display: flex;
align-items: center;
justify-content: center;
color: white;
font-family: var(--font-heading);
font-size: var(--fs-2xl);
font-weight: 700;
}
.blog-card-content {    padding: var(--space-md);
}
.blog-card-meta {    display: flex;
gap: var(--space-sm);
font-size: var(--fs-xs);
color: var(--color-text-light);
margin-bottom: 0.5rem;
}
.blog-card-meta span::before {    content: '•';
margin-right: 0.5rem;
color: var(--color-secondary);
}
.blog-card-meta span:first-child::before {    display: none;
}
.blog-card-title {    font-size: var(--fs-lg);
margin-bottom: 0.5rem;
line-height: 1.3;
}
.blog-card-title a {    color: var(--color-primary);
}
.blog-card-title a:hover {    color: var(--color-secondary);
}
.blog-card-excerpt {    color: var(--color-text-light);
font-size: var(--fs-sm);
margin-bottom: var(--space-sm);
line-height: 1.6;
}
.blog-read-more {    display: inline-flex;
align-items: center;
gap: 0.4rem;
color: var(--color-secondary);
font-weight: 600;
font-size: var(--fs-sm);
}
.blog-read-more:hover {    gap: 0.7rem;
}
.blog-view-all {    text-align: center;
}
/* ============ CTA SECTION ============ *//* Note: padding, background color/image now controlled via Customizer inline styles */.cta-section {    /* Default dark background + padding so standalone CTAs (About page,       single service, [shorages_cta] shortcode) stay readable and spaced.       On the homepage the section-wrapper sets inline background-color and       padding-top/bottom which override these longhands, so it is unaffected. */    background-color: var(--color-primary);
padding: var(--space-3xl) 0;
color: white;
position: relative;
overflow: hidden;
}
.cta-content {    text-align: center;
max-width: 720px;
margin: 0 auto;
position: relative;
z-index: 2;
}
.cta-title {    color: white;
font-size: var(--fs-5xl);
margin-bottom: var(--space-sm);
}
.cta-subtitle {    font-size: var(--fs-lg);
color: rgba(255, 255, 255, 0.85);
margin-bottom: var(--space-xl);
}
.cta-btn {    background: var(--color-secondary);
color: white;
box-shadow: var(--shadow-red);
}
.cta-btn:hover {    background: white;
color: var(--color-secondary);
transform: translateY(-2px);
}
.cta-decoration {    position: absolute;
top: -100px;
right: -100px;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(190, 18, 60, 0.3) 0%, transparent 70%);
border-radius: 50%;
}
/* ============ CTA INLINE QUOTE FORM ============ */.cta-content + .cta-form-card {    margin-top: var(--space-xl);
}
.cta-form-card {    position: relative;
z-index: 2;
max-width: 760px;
margin-left: auto;
margin-right: auto;
background: rgba(255, 255, 255, 0.07);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 24px;
padding: 2.5rem;
box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.45);
text-align: left;
}
.cta-form .form-group label {    color: rgba(255, 255, 255, 0.9);
}
.cta-form .form-group label .optional {    color: rgba(255, 255, 255, 0.5);
font-weight: 400;
}
.cta-form .form-control {    background: rgba(255, 255, 255, 0.96);
border-color: rgba(255, 255, 255, 0.25);
color: var(--color-text);
}
.cta-form .form-control::placeholder {    color: #94A3B8;
}
.cta-form .form-control:focus {    background: #ffffff;
border-color: var(--color-secondary);
box-shadow: 0 0 0 3px rgba(190, 18, 60, 0.25);
}
.cta-form-submit {    margin-top: 0.5rem;
justify-content: center;
}
.cta-form-note {    margin: 1rem 0 0;
text-align: center;
font-size: var(--fs-sm);
color: rgba(255, 255, 255, 0.6);
}
/* ============ FOOTER ============ */.site-footer {    background: var(--color-primary);
color: rgba(255, 255, 255, 0.7);
padding: var(--space-3xl) 0 var(--space-md);
}
.footer-grid {    display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
gap: var(--space-xl);
margin-bottom: var(--space-xl);
}
.footer-logo {    display: flex;
align-items: center;
gap: 0.6rem;
margin-bottom: var(--space-md);
}
.footer-logo .logo-name {    color: white;
}
.footer-about-text {    font-size: var(--fs-sm);
line-height: 1.7;
margin-bottom: var(--space-md);
}
.footer-social {    display: flex;
gap: 0.5rem;
}
.social-link {    width: 36px;
height: 36px;
background: rgba(255, 255, 255, 0.1);
border-radius: var(--radius-md);
display: inline-flex;
align-items: center;
justify-content: center;
color: white;
transition: all var(--transition-base);
}
.social-link:hover {    background: var(--color-secondary);
transform: translateY(-2px);
}
.social-link-disabled {    cursor: default;
}
.social-link-disabled:hover {    background: rgba(255, 255, 255, 0.1);
transform: none;
}
.footer-widget-title {    color: white;
font-size: var(--fs-base);
margin-bottom: var(--space-md);
font-family: var(--font-heading);
}
.footer-links,.footer-contact {    list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {    margin-bottom: 0.5rem;
}
.footer-links a {    color: rgba(255, 255, 255, 0.7);
font-size: var(--fs-sm);
transition: all var(--transition-fast);
display: inline-block;
}
.footer-links a:hover {    color: var(--color-secondary-light);
transform: translateX(3px);
}
.footer-contact li {    display: flex;
gap: 0.75rem;
margin-bottom: var(--space-sm);
font-size: var(--fs-sm);
align-items: flex-start;
}
.footer-contact a {    color: rgba(255, 255, 255, 0.7);
}
.footer-contact a:hover {    color: white;
}
.contact-icon {    flex-shrink: 0;
}
.footer-bottom {    border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: var(--space-md);
display: flex;
justify-content: space-between;
align-items: center;
gap: var(--space-md);
font-size: var(--fs-sm);
}
.footer-copyright {    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom-links {    display: flex;
gap: var(--space-md);
}
.footer-bottom-links a {    color: rgba(255, 255, 255, 0.7);
font-size: var(--fs-sm);
}
.footer-bottom-links a:hover {    color: white;
}
/* ============ BACK TO TOP ============ */#back-to-top {    position: fixed;
bottom: 2rem;
right: 2rem;
width: 48px;
height: 48px;
background: var(--color-secondary);
color: white;
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: var(--shadow-red);
z-index: var(--z-back-to-top);
opacity: 0;
visibility: hidden;
transform: translateY(20px);
transition: all var(--transition-base);
}
#back-to-top.visible {    opacity: 1;
visibility: visible;
transform: translateY(0);
}
#back-to-top:hover {    background: var(--color-secondary-dark);
transform: translateY(-4px);
}
/* ============ ANIMATIONS ============ */.fade-in-up {    opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {    opacity: 1;
transform: translateY(0);
}
.fade-in-left {    opacity: 0;
transform: translateX(-30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible {    opacity: 1;
transform: translateX(0);
}
.fade-in-right {    opacity: 0;
transform: translateX(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible {    opacity: 1;
transform: translateX(0);
}
/* Stagger animation delays */.stagger-1 { transition-delay: 0.1s;
}
.stagger-2 { transition-delay: 0.2s;
}
.stagger-3 { transition-delay: 0.3s;
}
.stagger-4 { transition-delay: 0.4s;
}
/* ============ ACCESSIBILITY ============ */.screen-reader-text {    border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important;
}
.skip-link {    position: absolute;
left: -9999px;
top: 0;
background: var(--color-secondary);
color: white;
padding: 0.75rem 1.5rem;
z-index: 10000;
border-radius: 0 0 var(--radius-md) var(--radius-md);
font-weight: 600;
}
.skip-link:focus {    left: 0;
}
:focus-visible {    outline: 2px solid var(--color-secondary);
outline-offset: 2px;
}
/* ============ SELECTION ============ */::selection {    background: var(--color-secondary);
color: white;
}
/* ============ SCROLLBAR ============ */::-webkit-scrollbar {    width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {    background: var(--color-text-light);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {    background: var(--color-primary);
}
/* ============ WHY SHAMIFY SECTION ============ */.why-section {    position: relative;
}
.why-grid {    display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: var(--space-md);
}
.why-card {    position: relative;
min-height: 230px;
background: #FFFFFF;
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
padding: var(--space-lg);
overflow: hidden;
transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
.why-card::before {    content: '';
position: absolute;
inset: 0 0 auto;
height: 4px;
background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
}
.why-card:hover {    transform: translateY(-4px);
border-color: rgba(190, 18, 60, 0.35);
box-shadow: var(--shadow-lg);
}
.why-card-number {    font-family: var(--font-heading);
font-size: var(--fs-sm);
font-weight: 800;
color: var(--color-secondary);
letter-spacing: 0.08em;
margin-bottom: var(--space-sm);
}
.why-card h3 {    font-size: var(--fs-xl);
margin-bottom: 0.65rem;
}
.why-card p {    color: var(--color-text-light);
margin: 0;
line-height: 1.65;
}
/* ============ MARKET OPPORTUNITY SECTION ============ */.market-section {    position: relative;
}
.market-layout {    display: grid;
grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
gap: var(--space-2xl);
align-items: center;
}
.market-copy {    max-width: 760px;
}
.market-subtitle {    color: var(--color-text-light);
font-size: var(--fs-lg);
line-height: 1.8;
margin-bottom: var(--space-lg);
}
.market-highlights {    display: grid;
gap: var(--space-sm);
}
.market-highlight {    background: #FFFFFF;
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
padding: var(--space-md);
box-shadow: var(--shadow-sm);
}
.market-highlight span {    display: block;
color: var(--color-secondary);
font-size: var(--fs-xs);
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 0.35rem;
}
.market-highlight strong {    display: block;
color: var(--color-primary);
font-size: var(--fs-lg);
line-height: 1.35;
}
@media (max-width: 992px) {    .why-grid,    .market-layout {        grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 768px) {    .why-grid,    .market-layout {        grid-template-columns: 1fr;
}
.why-card {        min-height: 0;
}
}
/* ============ ICON RENDERING HARDENING ============ */.service-icon,.step-icon,.value-icon,.service-hero-icon,.service-hero-visual-icon,.auth-features .feature-icon {    overflow: hidden;
color: var(--color-secondary);
flex-shrink: 0;
}
.service-icon svg,.step-icon svg,.value-icon svg,.service-hero-icon svg,.service-hero-visual-icon svg,.auth-features .feature-icon svg {    display: block;
width: 32px;
height: 32px;
max-width: 70%;
max-height: 70%;
stroke: currentColor;
}
.step-icon svg {    width: 34px;
height: 34px;
}
.value-icon svg,.service-hero-icon svg {    width: 36px;
height: 36px;
}
.icon-emoji {    display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
line-height: 1;
}
/* ============ ABOUT VALUES ============ */.values-grid {    display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: var(--space-lg);
}
.value-card {    background: #FFFFFF;
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
padding: var(--space-lg);
text-align: center;
box-shadow: var(--shadow-sm);
transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
.value-card:hover {    transform: translateY(-4px);
border-color: rgba(190, 18, 60, 0.28);
box-shadow: var(--shadow-lg);
}
.value-icon {    width: 64px;
height: 64px;
margin: 0 auto var(--space-md);
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(190, 18, 60, 0.1), rgba(59, 130, 246, 0.08));
border: 1px solid rgba(190, 18, 60, 0.12);
}
.value-card h4 {    font-size: var(--fs-lg);
margin-bottom: 0.6rem;
}
.value-card p {    color: var(--color-text-light);
line-height: 1.65;
margin: 0;
}
.service-hero-icon {    width: 72px;
height: 72px;
margin-bottom: var(--space-md);
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.12);
border: 1px solid rgba(255, 255, 255, 0.16);
color: #FFFFFF;
}
.service-hero-visual-icon {    width: 104px;
height: 104px;
margin: 0 auto 1rem;
border-radius: 24px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.12);
border: 1px solid rgba(255, 255, 255, 0.16);
color: #FFFFFF;
}
.auth-features .feature-icon svg {    width: 22px;
height: 22px;
}
/* ============ CTA / FOOTER SEPARATION ============ */.cta-section {    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
background-image: linear-gradient(135deg, rgba(190, 18, 60, 0.14) 0%, rgba(59, 130, 246, 0.10) 48%, rgba(2, 6, 23, 0) 100%);
}
.cta-section .container,.cta-section .section-inner {    position: relative;
z-index: 2;
}
.cta-section::after {    content: '';
position: absolute;
left: max(1rem, calc((100vw - 1200px) / 2));
right: max(1rem, calc((100vw - 1200px) / 2));
bottom: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
pointer-events: none;
}
.site-footer {    position: relative;
background: #070D1A;
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: calc(var(--space-3xl) + 0.75rem);
}
.site-footer::before {    content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
background: linear-gradient(90deg, var(--color-secondary), var(--color-accent), var(--color-secondary));
}
@media (max-width: 992px) {    .values-grid {        grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 640px) {    .values-grid {        grid-template-columns: 1fr;
}
.service-hero-icon {        width: 64px;
height: 64px;
}
}




/* ============ FOOTER SOCIAL ICON FIX ============ */.social-link,.social-link:visited,.social-link svg {    color: #FFFFFF !important;
fill: currentColor;
}
.social-link:hover,.social-link:focus-visible {    color: #FFFFFF !important;
}
.social-link:hover svg,.social-link:focus-visible svg {    color: #FFFFFF !important;
fill: currentColor;
}
.social-link-disabled,.social-link-disabled:hover,.social-link-disabled:focus-visible {    color: #FFFFFF !important;
}
.social-link-disabled svg,.social-link-disabled:hover svg {    color: #FFFFFF !important;
fill: currentColor;
}
