:root {
--primary-color: #0088EE;
--primary-dark: #0055AA;
--text-color: #1A1A1A;
--text-light: #666666;
--bg-color: #FFFFFF;
--bg-light: #F8F9FA;
--bg-dark: #121212;
--white: #FFFFFF;
--border-color: #E5E5E5;
--spacing-xs: 0.5rem;
--spacing-sm: 1rem;
--spacing-md: 2rem;
--spacing-lg: 4rem;
--spacing-xl: 8rem;
--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
--font-family: 'Inter', system-ui, -apple-system, sans-serif;
--font-size-base: 16px;
--font-size-h1: 3.5rem;
--font-size-h2: 2.5rem;
--font-size-h3: 1.5rem;
--radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 16px;
--success-color: #10B981;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: var(--font-family);
color: var(--text-color);
background-color: var(--bg-color);
line-height: 1.6;
font-size: var(--font-size-base);
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
text-decoration: none;
color: inherit;
transition: color 0.2s ease;
}
ul {
list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
line-height: 1.2;
font-weight: 700;
margin-bottom: var(--spacing-sm);
}
h1 {
font-size: var(--font-size-h1);
letter-spacing: -0.02em;
}
h2 {
font-size: var(--font-size-h2);
letter-spacing: -0.01em;
}
h3 {
font-size: var(--font-size-h3);
}
p {
margin-bottom: var(--spacing-sm);
color: var(--text-light);
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
box-sizing: border-box;
}
.container-wide {
max-width: 1400px;
}
.container-fluid {
width: 100%;
max-width: 100%;
padding: 0 var(--spacing-md);
}
.section {
padding: 1.25rem 0;
}
.section.hero + .section {
padding-top: calc(1.25rem + 30px);
padding-bottom: calc(1.25rem + 30px);
}
.grid {
display: grid;
gap: var(--spacing-md);
}
.grid-2 {
grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
grid-template-columns: repeat(4, 1fr);
}
.services-bento {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: auto auto;
gap: var(--spacing-md);
}
.services-bento-wide-left {
grid-column: 1 / 7;
grid-row: 1;
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}
.services-bento-narrow-1 {
grid-column: 7 / 10;
grid-row: 1;
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}
.services-bento-narrow-2 {
grid-column: 10 / 13;
grid-row: 1;
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}
.services-bento-narrow-3 {
grid-column: 1 / 4;
grid-row: 2;
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}
.services-bento-narrow-4 {
grid-column: 4 / 7;
grid-row: 2;
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}
.services-bento-wide-right {
grid-column: 7 / 13;
grid-row: 2;
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}
@media (max-width: 767px) {
.services-bento {
grid-template-columns: 1fr;
grid-template-rows: auto;
}
.services-bento-wide-left,
.services-bento-narrow-1,
.services-bento-narrow-2,
.services-bento-narrow-3,
.services-bento-narrow-4,
.services-bento-wide-right {
grid-column: 1;
grid-row: auto;
}
}
.flex {
display: flex;
gap: var(--spacing-md);
}
.flex-center {
align-items: center;
justify-content: center;
}
.flex-between {
justify-content: space-between;
align-items: center;
}
.btn {
display: inline-block;
padding: 12px 24px;
border-radius: var(--radius-md);
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
border: 2px solid transparent;
}
.btn-primary {
background-color: var(--primary-color);
color: var(--white);
}
.btn-primary:hover {
background-color: var(--primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.btn-secondary {
background-color: transparent;
border-color: var(--text-color);
color: var(--text-color);
}
.btn-secondary:hover {
background-color: var(--text-color);
color: var(--white);
}
header {
position: relative;
width: 100%;
z-index: 1000;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border-color);
padding: calc(var(--spacing-sm) + 10px) var(--spacing-md);
}
.main-nav {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.logo {
display: flex;
align-items: center;
text-decoration: none;
}
.logo img {
height: 60px;
width: auto;
max-width: 100%;
object-fit: contain;
}
.nav-links {
display: flex;
gap: 1.5rem;
align-items: center;
}
@media (min-width: 1920px) {
.nav-links { gap: 2.5rem; }
}
@media (max-width: 1199px) and (min-width: 992px) {
header { padding: 0.5rem 1rem; }
.logo img { height: 46px; }
.nav-links { gap: 0.6rem; }
.nav-link { font-size: 0.85rem; }
.nav-cta { padding: 0.4rem 0.8rem; font-size: 0.82rem; margin-left: 0.25rem; }
}
@media (min-width: 1441px) {
.mobile-nav-layer--root {
display: contents;
}
.mobile-nav-layer--sub {
display: none !important;
}
}
@media (max-width: 1440px) {
header {
position: relative !important;
}
header .container-fluid {
position: relative !important;
}
.main-nav {
position: relative !important;
}
.mobile-menu-btn {
display: block !important;
}
.nav-links {
position: fixed !important;
top: var(--mobile-nav-top, 4.75rem);
left: 0 !important;
right: auto !important;
width: 100vw !important;
min-width: 100vw !important;
max-width: 100vw !important;
max-height: calc(100dvh - var(--mobile-nav-top, 4.75rem)) !important;
background: var(--white);
box-shadow: none !important;
border-top: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
z-index: 999;
padding: var(--spacing-md);
padding-bottom: calc(var(--spacing-md) + env(safe-area-inset-bottom, 0px));
overflow-y: auto;
overflow-x: hidden;
box-sizing: border-box;
transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1);
text-align: left;
}
.nav-links:not(.active):not(.nav-closing) {
transform: translateX(-100%) !important;
pointer-events: none !important;
visibility: hidden !important;
}
.nav-links.active {
display: flex !important;
flex-direction: column !important;
align-items: stretch !important;
gap: 0 !important;
transform: translateX(0) !important;
pointer-events: auto !important;
visibility: visible !important;
overflow: hidden;
min-height: calc(100dvh - var(--mobile-nav-top, 4.75rem));
}
.nav-links.nav-closing {
display: flex !important;
flex-direction: column !important;
visibility: visible !important;
transform: translateX(-100%) !important;
}
.nav-links:not(.active) {
box-shadow: none !important;
}
.nav-links .nav-cta {
margin-left: 0 !important;
margin-right: 0 !important;
margin-top: 0;
margin-bottom: 0;
width: 100%;
max-width: none;
align-self: stretch;
text-align: center;
box-sizing: border-box;
flex-shrink: 0;
}
.nav-links > .nav-cta.nav-cta--mobile-root {
flex-shrink: 0;
margin-top: auto;
padding-top: var(--spacing-sm);
border-top: 1px solid var(--border-color);
box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
}
.nav-links > .nav-cta.nav-cta--mobile-root.btn-primary,
.mobile-nav-layer--sub > .nav-cta.btn-primary {
background-color: var(--primary-color);
color: var(--white);
border-color: transparent;
}
.nav-links > .nav-cta.nav-cta--mobile-root.btn-primary:hover,
.mobile-nav-layer--sub > .nav-cta.btn-primary:hover {
background-color: var(--primary-dark);
color: var(--white);
transform: none;
box-shadow: var(--shadow-md);
}
.nav-links.mobile-nav--sub-open > .nav-cta.nav-cta--mobile-root {
display: none !important;
}
.mobile-nav-layer--root {
position: relative;
display: flex;
flex-direction: column;
flex: 0 1 auto;
align-self: stretch;
width: 100%;
min-height: 0;
max-height: calc(100dvh - var(--mobile-nav-top, 4.75rem) - 6.5rem);
overflow-x: hidden;
overflow-y: auto;
transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-nav-layer--root .mega-menu,
.mobile-nav-layer--root .dropdown-menu {
display: none !important;
}
.nav-item.active .mega-menu,
.nav-item.active .dropdown-menu {
display: none !important;
}
.mobile-nav-layer--sub {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
padding: var(--spacing-md);
padding-bottom: calc(var(--spacing-md) + env(safe-area-inset-bottom, 0px));
overflow-x: hidden;
overflow-y: hidden;
background: var(--white);
transform: translateX(100%);
transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
z-index: 2;
box-sizing: border-box;
}
.mobile-nav-layer--sub > .nav-cta {
flex-shrink: 0;
align-self: stretch;
margin-top: auto;
margin-left: 0 !important;
margin-right: 0 !important;
margin-bottom: 0;
width: 100%;
max-width: none;
display: block;
text-align: center;
box-sizing: border-box;
padding-top: var(--spacing-sm);
border-top: 1px solid var(--border-color);
box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
}
.mobile-nav-layer--sub > .nav-cta.btn {
border-radius: var(--radius-md);
}
.mobile-nav-layer--sub[hidden] {
display: none !important;
}
.nav-links.mobile-nav--sub-open .mobile-nav-layer--root {
transform: translateX(-100%);
}
.nav-links.mobile-nav--sub-open .mobile-nav-layer--sub:not([hidden]) {
display: flex !important;
transform: translateX(0);
}
.mobile-nav-back {
flex-shrink: 0;
align-self: flex-start;
margin: 0 0 1rem 0;
padding: 0.5rem 0.75rem 0.5rem 0;
border: none;
background: transparent;
font: inherit;
font-weight: 700;
font-size: 1rem;
color: var(--primary-color);
cursor: pointer;
text-align: left;
}
.mobile-nav-back:hover,
.mobile-nav-back:focus-visible {
text-decoration: underline;
outline: none;
}
.mobile-nav-subheading {
flex-shrink: 0;
font-size: 1.125rem;
font-weight: 800;
color: var(--text-color);
margin: 0 0 1rem 0;
padding-bottom: 0.75rem;
border-bottom: 1px solid var(--border-color);
}
.mobile-nav-sublist {
flex: 1 1 0;
min-height: 0;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: stretch;
justify-content: flex-start;
gap: 0;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overscroll-behavior: contain;
padding-bottom: 0;
}
.nav-links,
.mobile-nav-layer--root,
.mobile-nav-sublist {
scrollbar-width: none;
-ms-overflow-style: none;
}
.nav-links::-webkit-scrollbar,
.mobile-nav-layer--root::-webkit-scrollbar,
.mobile-nav-sublist::-webkit-scrollbar {
width: 0;
height: 0;
display: none;
}
.mobile-nav-sublist > * {
flex-shrink: 0;
}
.mobile-nav-sublist .mobile-nav-subgroup-title {
font-size: 0.75rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-light);
margin: 1rem 0 0.5rem 0;
padding-top: 0.5rem;
border-top: 1px solid var(--border-color);
}
.mobile-nav-sublist .mobile-nav-subgroup-title:first-child {
margin-top: 0;
padding-top: 0;
border-top: none;
}
.mobile-nav-sublist a {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.75rem;
padding: 14px 0;
font-weight: 600;
font-size: 1rem;
color: var(--text-color);
text-decoration: none;
border-bottom: 1px solid var(--border-color);
box-sizing: border-box;
}
.mobile-nav-sublist a:hover,
.mobile-nav-sublist a:focus-visible {
color: var(--primary-color);
outline: none;
}
.mobile-nav-sublist .mobile-nav-drill-item {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
margin: 0;
padding: 14px 0;
border: none;
border-bottom: 1px solid var(--border-color);
background: transparent;
font: inherit;
font-weight: 600;
font-size: 1rem;
color: var(--text-color);
text-align: left;
cursor: pointer;
box-sizing: border-box;
}
.mobile-nav-sublist .mobile-nav-drill-item:hover,
.mobile-nav-sublist .mobile-nav-drill-item:focus-visible {
color: var(--primary-color);
outline: none;
}
.logo img {
height: 50px;
width: auto;
max-width: 200px;
object-fit: contain;
}
}
.nav-item {
position: relative;
padding: var(--spacing-sm) 0;
}
.nav-link {
font-weight: 600;
font-size: 1rem;
color: var(--text-color);
transition: color 0.3s ease;
display: flex;
align-items: center;
gap: 4px;
}
.nav-item.has-dropdown>.nav-link::after {
content: '\25BE';
font-size: 0.8rem;
transition: transform 0.3s ease;
}
.nav-item:hover>.nav-link {
color: var(--primary-color);
}
.nav-item:hover>.nav-link::after {
transform: rotate(180deg);
}
@media (max-width: 1440px) {
.mobile-nav-layer--root .nav-item > .nav-link::after,
.mobile-nav-sublist .mobile-nav-drill-item::after,
.mobile-nav-sublist a::after {
content: '';
display: block;
width: 0.5em;
height: 0.5em;
margin-left: auto;
margin-right: 0.2em;
flex-shrink: 0;
align-self: center;
border: none;
border-right: 2px solid currentColor;
border-bottom: 2px solid currentColor;
transform: rotate(-45deg);
opacity: 0.38;
font-size: inherit;
font-weight: inherit;
transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.mobile-nav-layer--root .nav-item > .nav-link:hover::after,
.mobile-nav-layer--root .nav-item > .nav-link:focus-visible::after,
.mobile-nav-sublist .mobile-nav-drill-item:hover::after,
.mobile-nav-sublist .mobile-nav-drill-item:focus-visible::after,
.mobile-nav-sublist a:hover::after,
.mobile-nav-sublist a:focus-visible::after {
opacity: 0.72;
border-right-color: var(--primary-color);
border-bottom-color: var(--primary-color);
}
.mobile-nav-layer--root .nav-item:hover > .nav-link::after,
.mobile-nav-layer--root .nav-item:focus-within > .nav-link::after {
transform: rotate(-45deg);
}
.mobile-nav-layer--root .nav-item.active > .nav-link::after {
transform: rotate(-45deg);
}
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
background: var(--white);
min-width: 220px;
box-shadow: var(--shadow-lg);
border-radius: var(--radius-md);
padding: var(--spacing-sm) 0;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.3s ease;
z-index: 100;
}
.dropdown-menu ul {
padding: 0;
}
.dropdown-menu li a {
display: block;
padding: 10px 20px;
font-weight: 500;
color: var(--text-color);
transition: background 0.2s, color 0.2s;
}
.dropdown-menu li a:hover {
background: var(--bg-light);
color: var(--primary-color);
}
.mega-menu {
position: fixed;
top: calc(81px + 2rem);
left: 2vw;
right: 2vw;
transform: translateY(10px);
background: var(--white);
box-shadow: var(--shadow-lg);
border-radius: var(--radius-md);
padding: var(--spacing-lg);
display: grid;
grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
gap: var(--spacing-md);
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
z-index: 999;
}
.mega-menu-cols-2 { grid-template-columns: repeat(2, 1fr); }
.mega-menu-cols-3 { grid-template-columns: repeat(3, 1fr); }
.mega-menu-cols-4 { grid-template-columns: repeat(4, 1fr); }
.mega-menu-cols-5 { grid-template-columns: repeat(5, 1fr); }
.nav-item:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.nav-item:hover .mega-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.mega-menu-section {
min-width: 0;
}
.mega-menu-section h4 {
font-size: 1.05rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: var(--spacing-sm);
letter-spacing: 0;
border-bottom: 1px solid var(--border-color);
padding-bottom: 6px;
white-space: nowrap;
}
.mega-menu-section h4 a {
color: inherit;
text-decoration: none;
}
.mega-menu-section h4 a:hover {
color: var(--primary-dark);
text-decoration: underline;
}
.mega-menu-section ul {
display: flex;
flex-direction: column;
gap: 6px;
}
.mega-menu-section li a {
font-size: 0.95rem;
color: var(--text-color);
transition: color 0.2s;
}
.mega-menu-section li a:hover {
color: var(--primary-color);
}
.nav-cta {
margin-left: var(--spacing-md);
white-space: nowrap;
}
.mobile-menu-btn {
display: none;
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
color: var(--text-color);
}
.hero {
padding-top: calc(var(--spacing-xl) + 1.5rem);
padding-bottom: 0 !important;
text-align: center;
background-color: #F8F9FA;
background-image: url('../img/hero-bg.png');
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
position: relative;
overflow: hidden;
}
.section.hero {
padding: 4rem 0 3rem 0 !important;
}
body:has(.hero[style*="padding-top: 140px"]) .section.hero,
.section.hero[style*="padding-top: 140px"] {
padding: 4.5rem 0 3rem 0 !important;
}
.section.hero[style*="padding-top: 180px"] {
padding-top: 5rem !important;
}
main > section.section.hero:first-child,
body:not([class*="admin"]) main > section.section.hero:first-child {
padding-top: 5rem !important;
}
.section.hero .container {
padding-bottom: 1rem;
}
.hero h1 {
font-size: clamp(2rem, 5vw, 3.25rem);
font-weight: 800;
max-width: 900px;
margin: 0 auto var(--spacing-md);
position: relative;
z-index: 10;
text-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
letter-spacing: -0.02em;
line-height: 1.15;
}
.hero .lead {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto var(--spacing-md);
position: relative;
z-index: 10;
font-weight: 500;
line-height: 1.6;
}
.hero-actions {
display: flex;
gap: var(--spacing-sm);
justify-content: center;
margin-top: var(--spacing-md);
position: relative;
z-index: 10;
}
.hero-partner-logos {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: var(--spacing-md);
margin-top: var(--spacing-md);
padding-top: var(--spacing-md);
position: relative;
z-index: 10;
}
.hero-partner-logos .partner-logo {
height: 100px;
width: auto;
opacity: 0.7;
transition: opacity 0.3s ease, transform 0.3s ease;
filter: grayscale(100%);
}
.hero-partner-logos .partner-logo:hover {
opacity: 1;
transform: scale(1.1);
filter: grayscale(0%);
}
.hero-partner-logos.hero-partner-logos--marquee {
display: block !important;
overflow: hidden;
width: 100%;
max-width: 100%;
margin-left: auto;
margin-right: auto;
-webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.hero-partner-logos--marquee .hero-partner-logos__track {
display: flex !important;
flex-direction: row !important;
flex-wrap: nowrap !important;
align-items: center;
width: max-content;
max-width: none;
animation: heroPartnerMarquee 65s linear infinite;
will-change: transform;
}
.hero-partner-logos--marquee .hero-partner-logos__group {
display: flex !important;
flex-direction: row !important;
flex-wrap: nowrap !important;
align-items: center;
flex-shrink: 0;
gap: 2.5rem;
padding-right: 2.5rem;
}
@keyframes heroPartnerMarquee {
0% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(-50%, 0, 0);
}
}
@media (hover: hover) {
.hero-partner-logos--marquee:hover .hero-partner-logos__track {
animation-play-state: paused;
}
}
@media (prefers-reduced-motion: reduce) {
.hero-partner-logos--marquee .hero-partner-logos__track {
animation: none;
flex-wrap: wrap !important;
justify-content: center;
width: 100% !important;
max-width: 100% !important;
}
.hero-partner-logos.hero-partner-logos--marquee {
-webkit-mask-image: none;
mask-image: none;
overflow: visible;
}
.hero-partner-logos--marquee .hero-partner-logos__group--duplicate {
display: none !important;
}
.hero-partner-logos--marquee .hero-partner-logos__group {
flex-wrap: wrap !important;
justify-content: center;
padding-right: 0;
}
}
@media (max-width: 768px) {
.hero-partner-logos {
gap: var(--spacing-sm);
margin-top: var(--spacing-sm);
padding-top: var(--spacing-sm);
}
.hero-partner-logos .partner-logo {
height: 70px;
}
.hero-partner-logos__group {
gap: 1.75rem;
padding-right: 1.75rem;
}
}
.service-card {
background: #fff;
padding: var(--spacing-md);
border-radius: var(--radius-lg);
border: 1px solid var(--border-color);
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
height: 100%;
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
border-color: transparent;
}
.service-card:hover::before {
opacity: 1;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
opacity: 0;
transition: opacity 0.3s ease;
}
.service-icon {
margin-bottom: var(--spacing-sm);
display: flex;
align-items: center;
justify-content: flex-start;
height: 48px;
}
.service-icon-svg {
width: 48px;
height: 48px;
stroke: var(--primary-color);
transition: transform 0.3s ease;
}
.service-logo {
height: 60px;
width: auto;
max-width: 120px;
object-fit: contain;
transition: transform 0.3s ease;
filter: grayscale(100%) brightness(0);
}
.service-logo-gambio {
height: 70px;
max-width: 140px;
}
.service-card:hover .service-icon-svg,
.service-card:hover .service-logo {
transform: scale(1.1);
}
.service-card h3 {
margin-bottom: var(--spacing-xs);
}
.service-card p {
flex-grow: 1;
}
.service-link {
font-weight: 600;
color: var(--primary-color);
margin-top: var(--spacing-sm);
display: inline-flex;
align-items: center;
gap: 0.25rem;
}
.feature-card {
background: var(--white);
padding: var(--spacing-sm);
border-radius: var(--radius-lg);
border: 1px solid var(--border-color);
transition: all 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
}
.feature-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
border-color: var(--primary-color);
}
.feature-icon {
width: 56px;
height: 56px;
background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: var(--spacing-sm);
flex-shrink: 0;
}
.feature-icon svg {
width: 28px;
height: 28px;
fill: var(--white);
}
.feature-card h3 {
margin-bottom: var(--spacing-xs);
font-size: 1.25rem;
color: var(--text-color);
line-height: 1.3;
}
.feature-card p {
color: var(--text-light);
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 0;
flex-grow: 1;
}
.section-title-bar {
background: #d1d5db;
padding: 0.75rem 1.25rem 0.75rem 1.5rem;
margin-bottom: 2rem;
border-radius: 8px;
}
.section-title {
color: var(--text-color);
font-size: 1.3rem;
font-weight: 700;
margin: 0;
padding: 0;
letter-spacing: -0.01em;
line-height: 1.3;
}
.features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-sm);
}
@media (max-width: 768px) {
.features-grid {
grid-template-columns: 1fr;
}
}
.process-steps {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
margin-top: 1.75rem;
padding: 0 5px 1rem;
}
.process-step {
padding: 1.5rem 2rem 1.5rem 0;
border-bottom: 1px solid var(--border-color, #e5e7eb);
}
.process-step:nth-child(even) {
padding-left: 2rem;
padding-right: 0;
border-left: 1px solid var(--border-color, #e5e7eb);
}
.process-step:nth-last-child(-n+2) {
border-bottom: none;
}
.process-step-label {
display: flex;
align-items: center;
justify-content: center;
width: 2.25rem;
height: 2.25rem;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
color: #fff;
font-size: 0.95rem;
font-weight: 700;
margin-bottom: 0.85rem;
flex-shrink: 0;
box-shadow: 0 3px 12px rgba(0, 136, 238, 0.32);
}
.process-step h3 {
margin: 0 0 0.4rem;
font-size: 1rem;
color: var(--text-color);
line-height: 1.35;
}
.process-step p {
margin: 0;
color: var(--text-light);
font-size: 0.93rem;
line-height: 1.7;
}
@media (max-width: 768px) {
.process-steps {
grid-template-columns: 1fr;
}
.process-step:nth-child(even) {
padding-left: 0;
border-left: none;
}
.process-step:nth-last-child(-n+2) {
border-bottom: 1px solid var(--border-color, #e5e7eb);
}
.process-step:last-child {
border-bottom: none;
}
}
.stats-section {
background: linear-gradient(135deg, rgba(20, 39, 60, 0.95), rgba(30, 50, 75, 0.95)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%2314273C" width="1200" height="600"/></svg>');
background-size: cover;
background-position: center;
background-attachment: fixed;
color: var(--white);
text-align: center;
padding: var(--spacing-xl) 0;
position: relative;
overflow: hidden;
}
.stats-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(74, 149, 209, 0.1) 0%, transparent 50%);
pointer-events: none;
}
.stats-section .container {
position: relative;
z-index: 1;
}
.stats-section h2 {
color: var(--white);
font-size: 2.5rem;
margin-bottom: var(--spacing-md);
font-weight: 700;
}
.stats-description {
max-width: 800px;
margin: 0 auto var(--spacing-md);
font-size: 1.15rem;
line-height: 1.7;
color: rgba(255, 255, 255, 0.9);
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--spacing-md);
margin-bottom: var(--spacing-md);
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
.stat-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: var(--radius-lg);
padding: var(--spacing-lg);
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
position: relative;
overflow: visible;
}
.stat-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
transform: scaleX(0);
transition: transform 0.3s ease;
}
.stat-card:hover {
transform: translateY(-8px);
background: rgba(255, 255, 255, 0.08);
border-color: rgba(74, 149, 209, 0.3);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
.stat-card:hover::before {
transform: scaleX(1);
}
.stat-card .stat-number {
font-size: 3.5rem;
font-weight: 800;
color: var(--white);
line-height: 1;
margin-bottom: var(--spacing-sm);
background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
white-space: nowrap;
overflow: visible;
padding-right: 0.2em;
}
.stat-card .stat-label {
font-size: 0.95rem;
color: rgba(255, 255, 255, 0.8);
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: 600;
}
.stats-cta {
margin-top: var(--spacing-md);
}
.btn-outline {
background: transparent;
border: 2px solid var(--white);
color: var(--white);
padding: 1rem 2.5rem;
font-size: 1.1rem;
font-weight: 600;
border-radius: var(--radius-md);
transition: all 0.3s ease;
display: inline-block;
text-decoration: none;
}
.btn-outline:hover {
background: var(--white);
color: var(--primary-color);
transform: translateY(-2px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
@media (max-width: 968px) {
.stats-grid {
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-md);
}
.stats-section h2 {
font-size: 2rem;
}
.stat-card .stat-number {
font-size: 2.5rem;
}
}
@media (max-width: 768px) {
.stats-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 568px) {
.stats-grid {
grid-template-columns: 1fr;
}
.stats-section {
padding: var(--spacing-xl) 0;
background-attachment: scroll;
}
.stats-section h2 {
font-size: 1.75rem;
}
.stat-card .stat-number {
font-size: 2rem;
}
}
.trust-section {
background: #ffffff;
text-align: center;
padding: var(--spacing-lg) 0;
position: relative;
overflow: hidden;
}
.trust-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(74, 149, 209, 0.2), transparent);
}
.trust-content {
position: relative;
z-index: 1;
}
.trust-stats {
display: flex;
justify-content: center;
gap: var(--spacing-xl);
margin-bottom: var(--spacing-lg);
flex-wrap: wrap;
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 3.5rem;
font-weight: 800;
background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 0.5rem;
}
.stat-label {
font-size: 0.95rem;
color: var(--text-light);
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.trust-section h2 {
margin-bottom: var(--spacing-sm);
margin-top: var(--spacing-lg);
padding-top: var(--spacing-lg);
font-size: 2.25rem;
line-height: 1.3;
border-top: 2px solid rgba(0, 0, 0, 0.06);
}
.trust-intro {
max-width: 800px;
margin: 0 auto var(--spacing-md);
font-size: 1.1rem;
line-height: 1.7;
color: var(--text-light);
text-align: center;
}
.trust-highlights {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-md);
margin: var(--spacing-md) auto;
max-width: 1200px;
}
.trust-highlight-item {
background: var(--white);
padding: var(--spacing-lg);
border-radius: 12px;
border: 1px solid var(--border-color);
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
height: 100%;
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
}
.trust-highlight-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
opacity: 0;
transition: opacity 0.3s ease;
}
.trust-highlight-item:hover {
transform: translateY(-8px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
border-color: transparent;
}
.trust-highlight-item:hover::before {
opacity: 1;
}
.trust-icon {
margin-bottom: var(--spacing-sm);
display: flex;
align-items: center;
justify-content: center;
height: 50px;
}
.trust-icon-svg {
width: 50px;
height: 50px;
stroke: var(--primary-color);
transition: transform 0.3s ease;
}
.trust-highlight-item:hover .trust-icon-svg {
transform: scale(1.1);
}
.trust-highlight-item h3 {
font-size: 1.25rem;
font-weight: 700;
color: var(--text-color);
margin-bottom: var(--spacing-xs);
transition: color 0.3s ease;
}
.trust-highlight-item:hover h3 {
color: var(--primary-color);
}
.trust-highlight-item p {
font-size: 0.95rem;
line-height: 1.7;
color: var(--text-light);
flex-grow: 1;
margin: 0;
}
.trust-partners-section {
margin-top: var(--spacing-lg);
padding-top: var(--spacing-lg);
border-top: 2px solid rgba(0, 0, 0, 0.06);
}
.trust-partners-title {
font-size: 1.75rem;
font-weight: 700;
color: var(--text-color);
margin: 0 0 var(--spacing-lg) 0;
text-align: center;
}
.trust-logos {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-lg);
margin-top: var(--spacing-md);
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
.partner-card {
background: var(--white);
padding: var(--spacing-lg);
border-radius: var(--radius-lg);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(0, 0, 0, 0.06);
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
display: flex;
flex-direction: column;
align-items: center;
gap: var(--spacing-md);
position: relative;
overflow: hidden;
}
.trust-logos .partner-card {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 132px auto;
justify-items: center;
align-items: center;
gap: var(--spacing-md);
}
.trust-logos .partner-card > .partner-logo-img {
grid-row: 1;
align-self: center;
justify-self: center;
margin: 0;
}
.trust-logos .partner-card > .partner-info {
grid-row: 2;
align-self: start;
gap: 0.5rem;
}
.partner-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
transform: scaleX(0);
transition: transform 0.3s ease;
}
.partner-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 24px rgba(74, 149, 209, 0.15);
border-color: var(--primary-color);
}
.partner-card:hover::before {
transform: scaleX(1);
}
.partner-logo-img {
width: auto;
height: auto;
max-height: 108px;
max-width: 280px;
min-width: 0;
object-fit: contain;
filter: grayscale(100%);
opacity: 0.8;
transition: all 0.3s ease;
}
.partner-card:hover .partner-logo-img {
filter: grayscale(0%);
opacity: 1;
transform: scale(1.05);
}
.partner-logo-img--shopify {
max-height: 88px;
max-width: 200px;
}
.partner-info {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}
.partner-name {
font-weight: 700;
font-size: 1.25rem;
color: var(--text-color);
transition: color 0.3s ease;
}
.partner-card:hover .partner-name {
color: var(--primary-color);
}
.partner-badge {
font-size: 0.78rem;
font-weight: 600;
text-transform: uppercase;
background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
color: #666;
padding: 6px 14px;
border-radius: 12px;
letter-spacing: 0.05em;
transition: all 0.3s ease;
}
.partner-card:hover .partner-badge {
background: linear-gradient(135deg, rgba(74, 149, 209, 0.1), rgba(74, 149, 209, 0.15));
color: var(--primary-color);
}
.benefits-section {
background: linear-gradient(135deg, rgba(20, 39, 60, 0.95), rgba(30, 50, 75, 0.95)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%2314273C" width="1200" height="600"/></svg>');
background-size: cover;
background-position: center;
background-attachment: fixed;
color: var(--white);
text-align: center;
padding: var(--spacing-xl) 0;
position: relative;
overflow: hidden;
}
.benefits-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(74, 149, 209, 0.1) 0%, transparent 50%);
pointer-events: none;
}
.benefits-section .container {
position: relative;
z-index: 1;
}
.benefits-section h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: var(--spacing-md);
color: var(--white);
font-weight: 700;
}
.benefits-intro {
text-align: center;
max-width: 700px;
margin: 0 auto var(--spacing-lg);
font-size: 1.15rem;
line-height: 1.7;
color: rgba(255, 255, 255, 0.9);
}
.benefits-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--spacing-md);
max-width: 1200px;
margin: 0 auto;
}
.benefit-item {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: var(--spacing-lg);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.2);
text-align: center;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.benefit-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
opacity: 0;
transition: opacity 0.3s ease;
}
.benefit-item:hover {
transform: translateY(-6px);
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
border-color: rgba(255, 255, 255, 0.5);
background: rgba(255, 255, 255, 0.2);
}
.benefit-item:hover::before {
opacity: 1;
}
.benefit-icon {
width: 60px;
height: 60px;
margin: 0 auto var(--spacing-sm);
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.15);
border-radius: 12px;
transition: all 0.3s ease;
}
.benefit-item:hover .benefit-icon {
background: rgba(255, 255, 255, 0.25);
transform: scale(1.1);
}
.benefit-icon svg {
width: 36px;
height: 36px;
stroke: var(--white);
stroke-width: 2.5;
transition: all 0.3s ease;
}
.benefit-item:hover .benefit-icon svg {
stroke: var(--white);
}
.benefit-item h3 {
font-size: 1.3rem;
font-weight: 700;
color: var(--white);
margin-bottom: var(--spacing-sm);
transition: color 0.3s ease;
}
.benefit-item:hover h3 {
color: var(--white);
}
.benefit-item p {
font-size: 1rem;
line-height: 1.7;
color: rgba(255, 255, 255, 0.9);
margin: 0;
}
@media (max-width: 968px) {
.trust-highlights {
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-md);
}
.trust-logos {
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-md);
}
.trust-logos .partner-card {
grid-template-rows: 108px auto;
}
.partner-logo-img {
max-height: 88px;
max-width: 220px;
}
.partner-logo-img--shopify {
max-height: 72px;
max-width: 168px;
}
}
@media (max-width: 768px) {
.trust-stats {
gap: var(--spacing-lg);
}
.stat-number {
font-size: 2.5rem;
}
.trust-section h2 {
font-size: 1.75rem;
margin-bottom: var(--spacing-lg);
}
.trust-highlights {
grid-template-columns: 1fr;
gap: var(--spacing-md);
margin: var(--spacing-lg) auto;
}
.trust-intro {
font-size: 1rem;
margin-bottom: var(--spacing-lg);
}
.trust-highlight-item {
padding: var(--spacing-md);
}
.trust-icon {
height: 50px;
}
.trust-icon-svg {
width: 50px;
height: 50px;
}
.trust-highlight-item h3 {
font-size: 1.2rem;
}
.trust-highlight-item p {
font-size: 0.9rem;
}
.trust-partners-section {
margin-top: var(--spacing-xl);
padding-top: var(--spacing-xl);
}
.trust-partners-title {
font-size: 1.5rem;
}
.trust-logos {
grid-template-columns: 1fr;
gap: var(--spacing-md);
}
.partner-card {
padding: var(--spacing-md);
gap: var(--spacing-sm);
}
.trust-logos .partner-card {
grid-template-rows: 92px auto;
gap: var(--spacing-sm);
}
.partner-name {
font-size: 1.1rem;
}
.partner-logo-img {
max-height: 72px;
max-width: 180px;
}
.partner-logo-img--shopify {
max-height: 58px;
max-width: 142px;
}
.benefits-section {
padding: var(--spacing-lg) 0;
background-attachment: scroll;
}
.benefits-section h2 {
font-size: 1.75rem;
}
.benefits-intro {
font-size: 1rem;
}
.benefits-grid {
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-sm);
}
.benefit-item {
padding: var(--spacing-md);
}
.benefit-icon {
width: 50px;
height: 50px;
}
.benefit-icon svg {
width: 28px;
height: 28px;
}
.benefit-item h3 {
font-size: 1.1rem;
}
.benefit-item p {
font-size: 0.9rem;
}
}
@media (max-width: 568px) {
.benefits-grid {
grid-template-columns: 1fr;
}
}
.cta-section {
background: linear-gradient(135deg, #E8F4FC 0%, #D4ECFA 100%);
color: var(--text-color);
text-align: center;
width: 100%;
padding: var(--spacing-lg) 0;
margin: 0;
}
.cta-section .container {
padding: var(--spacing-lg) 2rem;
}
.cta-section h2 {
color: var(--text-color);
}
.cta-section p {
color: var(--text-light);
max-width: 600px;
margin: 0 auto var(--spacing-md);
}
.cta-with-photo {
padding: 2rem 0 2.5rem;
}
.cta-inner-card {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 2.5rem 3rem;
background: rgba(255, 255, 255, 0.7);
border-radius: 20px;
border: 1px solid rgba(0, 136, 238, 0.12);
box-shadow: 0 4px 24px rgba(0, 136, 238, 0.08);
}
.cta-with-photo .cta-inner {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 3rem;
}
.cta-with-photo .cta-text {
flex: 1;
min-width: 280px;
text-align: left;
}
.cta-with-photo .cta-text h2 {
font-size: clamp(2rem, 4.5vw, 2.5rem);
margin-bottom: 1rem;
letter-spacing: -0.02em;
line-height: 1.2;
}
.cta-with-photo .cta-text p {
margin-left: 0;
margin-right: 0;
margin-bottom: 1rem;
line-height: 1.65;
color: #475569;
}
.cta-with-photo .cta-text p:last-of-type {
margin-bottom: 1.5rem;
}
.cta-with-photo .cta-btn {
background-color: white !important;
color: var(--primary-color) !important;
box-shadow: 0 2px 12px rgba(0, 136, 238, 0.2);
border: 2px solid rgba(0, 136, 238, 0.2);
padding: 0.75rem 1.5rem;
border-radius: 12px;
font-weight: 600;
transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cta-with-photo .cta-btn:hover {
transform: translateY(-1px);
box-shadow: 0 4px 20px rgba(0, 136, 238, 0.25);
border-color: var(--primary-color);
}
.cta-photo-block {
flex-shrink: 0;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
width: 100%;
max-width: 320px;
}
.cta-photo-wrap {
width: 320px;
max-width: 100%;
height: 280px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
border: 4px solid rgba(255, 255, 255, 0.9);
margin-inline: auto;
box-sizing: border-box;
}
.cta-photo-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 28%;
display: block;
}
.cta-photo-caption {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 1rem;
gap: 0.2rem;
}
.cta-photo-name {
font-size: 1rem;
font-weight: 600;
color: #0f172a;
}
.cta-photo-caption .cta-photo-name:last-child {
font-weight: 500;
font-size: 0.9rem;
color: var(--primary-color);
letter-spacing: 0.01em;
}
@media (max-width: 768px) {
.cta-section.cta-with-photo .container {
padding-left: 1rem;
padding-right: 1rem;
}
.cta-inner-card {
padding: 1.75rem 1.25rem;
box-sizing: border-box;
}
.cta-with-photo .cta-inner {
flex-direction: column-reverse;
align-items: center;
justify-content: flex-start;
gap: 2rem;
}
.cta-with-photo .cta-text {
text-align: center;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
.cta-with-photo .cta-text p {
margin-left: auto;
margin-right: auto;
}
.cta-photo-block {
max-width: 100%;
}
.cta-photo-wrap {
width: min(280px, 100%);
height: auto;
aspect-ratio: 320 / 280;
}
.cta-photo-caption {
width: 100%;
max-width: 280px;
margin-left: auto;
margin-right: auto;
}
}
.form-group {
margin-bottom: var(--spacing-sm);
text-align: left;
}
.form-label {
display: block;
margin-bottom: 0.5rem;
font-weight: 500;
font-size: 0.9rem;
}
.form-input,
.form-textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border-color);
border-radius: var(--radius-sm);
font-family: inherit;
font-size: 1rem;
transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(0, 136, 238, 0.1);
}
.form-textarea {
resize: vertical;
min-height: 120px;
}
footer {
background: linear-gradient(135deg, rgba(20, 39, 60, 0.98), rgba(30, 50, 75, 0.98));
color: var(--white);
padding: var(--spacing-lg) 0 var(--spacing-md);
position: relative;
margin-top: 0;
}
.footer-grid {
display: grid;
grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
gap: var(--spacing-sm);
margin-bottom: var(--spacing-lg);
}
.footer-brand p {
color: #999;
margin-top: var(--spacing-sm);
max-width: 300px;
}
.footer-links h4 {
color: var(--white);
margin-bottom: var(--spacing-sm);
}
.footer-links ul li {
margin-bottom: 0.5rem;
}
.footer-links a {
color: #999;
}
.footer-links a:hover {
color: var(--white);
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: var(--spacing-md);
text-align: center;
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
}
@media (max-width: 768px) {
:root {
--font-size-h1: 2.5rem;
--font-size-h2: 2rem;
--spacing-xl: 4rem;
}
header {
padding: var(--spacing-sm) var(--spacing-md);
padding-left: var(--spacing-sm);
padding-right: var(--spacing-sm);
}
header .container-fluid {
padding-left: var(--spacing-sm);
padding-right: var(--spacing-sm);
}
.main-nav {
display: flex;
justify-content: flex-start;
align-items: center;
width: 100%;
}
.logo {
margin-right: var(--spacing-lg);
margin-left: 0;
padding-left: 0;
order: 1;
flex-shrink: 0;
}
.logo img {
height: 45px;
width: auto;
max-width: 100%;
object-fit: contain;
}
.mobile-menu-btn {
margin-left: auto;
margin-right: 0;
padding-right: 0;
order: 2;
flex-shrink: 0;
}
header {
position: relative !important;
}
header .container-fluid {
position: relative !important;
}
.main-nav {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
body {
padding-top: 0 !important;
}
main {
padding-top: 0 !important;
}
.nav-links:not(.active):not(.nav-closing) {
transform: translateX(-100%) !important;
pointer-events: none !important;
visibility: hidden !important;
}
.nav-links.active {
transform: translateX(0) !important;
pointer-events: auto !important;
visibility: visible !important;
}
.nav-links.nav-closing {
transform: translateX(-100%) !important;
visibility: visible !important;
}
.nav-item {
width: 100%;
border-bottom: 1px solid var(--border-color);
padding: 0;
margin: 0;
box-sizing: border-box;
}
.nav-link {
padding: 15px var(--spacing-md);
width: 100%;
justify-content: space-between;
box-sizing: border-box;
display: flex;
}
.dropdown-menu,
.mega-menu {
position: static !important;
width: 100% !important;
max-width: 100% !important;
transform: none !important;
box-shadow: none;
padding: 0 !important;
margin: 0 !important;
left: 0 !important;
right: 0 !important;
display: none;
opacity: 1;
visibility: visible;
grid-template-columns: 1fr;
gap: 0;
border-radius: 0;
box-sizing: border-box;
}
.mega-menu .mega-menu-section,
.nav-item.active .mega-menu .mega-menu-section,
.mega-menu-section {
padding: var(--spacing-sm) var(--spacing-md) var(--spacing-sm) var(--spacing-md) !important;
margin: 0 !important;
max-width: none !important;
min-width: 0 !important;
width: 100% !important;
box-sizing: border-box;
}
.mega-menu-section:first-child {
padding-top: var(--spacing-sm) !important;
}
.mega-menu-section:last-child {
padding-bottom: var(--spacing-sm) !important;
}
.mega-menu-section h4 {
padding: 0;
margin: 0 0 var(--spacing-xs) 0;
}
.mega-menu-section ul {
padding: 0;
margin: 0;
gap: 2px;
}
.mega-menu-section li {
padding: 0;
margin: 0;
}
.mega-menu-section li a {
padding: 1px 0;
margin: 0;
display: block;
}
.mega-menu-section h4 {
white-space: normal;
overflow: visible;
text-overflow: clip;
}
.nav-item.active .dropdown-menu,
.nav-item.active .mega-menu {
display: none !important;
}
.nav-cta {
margin: var(--spacing-md) 0 var(--spacing-sm);
width: 100%;
max-width: none;
text-align: center;
display: block;
box-sizing: border-box;
}
.mobile-menu-btn {
display: block;
}
.grid-2,
.grid-3,
.grid-4 {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr;
}
.hero-actions {
flex-direction: column;
}
.section.hero[style*="padding-top: 180px"],
main > section.section.hero:first-child,
body:not([class*="admin"]) main > section.section.hero:first-child {
padding-top: 50px !important;
}
body:has(.hero[style*="padding-top: 140px"]) .section.hero,
.section.hero[style*="padding-top: 140px"] {
padding-top: 50px !important;
}
}
.checklist {
list-style: none;
padding: 0;
margin: 0;
}
.check-item {
display: flex;
align-items: flex-start;
padding: 1rem 0;
border-bottom: 1px solid var(--border-color);
}
.check-item:last-child {
border-bottom: none;
}
.check-item::before {
content: "✓";
color: var(--success-color);
font-weight: bold;
font-size: 1.5rem;
margin-right: 1rem;
flex-shrink: 0;
line-height: 1.2;
}
.checklist-box {
background: white;
padding: 2rem;
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
}
.checklist-box h3 {
margin-top: 0;
margin-bottom: 1.5rem;
color: var(--text-color);
}
.references-section {
background: var(--bg-light);
}
.references-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.reference-card--featured {
grid-column: span 2;
}
.reference-card {
background: #fff;
border-radius: var(--radius-md);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: transform 0.25s ease, box-shadow 0.25s ease;
display: flex;
flex-direction: column;
}
.reference-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
}
.reference-card__image {
position: relative;
overflow: hidden;
background: var(--bg-light);
}
.reference-card__image img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
transition: transform 0.4s ease;
}
.reference-card:hover .reference-card__image img {
transform: scale(1.03);
}
.reference-card__image--placeholder {
display: flex;
align-items: center;
justify-content: center;
background: var(--bg-light);
}
.reference-card__image--placeholder svg {
width: 3rem;
height: 3rem;
color: var(--text-light);
}
.reference-card__overlay {
position: absolute;
inset: 0;
background: rgba(10, 37, 64, 0.7);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1.25rem;
opacity: 0;
transition: opacity 0.25s ease;
pointer-events: none;
}
.reference-card__overlay .reference-card__overlay-hint,
.reference-card__overlay .reference-card__overlay-link {
pointer-events: auto;
width: 200px;
box-sizing: border-box;
text-align: center;
padding: 0.65rem 1.5rem;
font-size: 0.9rem;
font-weight: 600;
border-radius: 2rem;
transition: all 0.2s ease;
}
.reference-card__overlay .reference-card__overlay-hint {
color: #fff;
letter-spacing: 0.03em;
border: 2px solid rgba(255,255,255,0.8);
backdrop-filter: blur(4px);
}
.reference-card__overlay .reference-card__overlay-link {
color: #fff;
text-decoration: none;
background: rgba(255,255,255,0.2);
border: 2px solid rgba(255,255,255,0.5);
}
.reference-card__overlay .reference-card__overlay-link:hover {
background: rgba(255,255,255,0.35);
}
.reference-card:hover .reference-card__overlay {
opacity: 1;
}
.reference-card__body {
padding: 1rem 1.25rem 1.25rem;
flex: 1;
display: flex;
flex-direction: column;
gap: 0.4rem;
}
.reference-card__client {
font-weight: 700;
font-size: 1rem;
color: var(--text-color);
line-height: 1.3;
}
.reference-card__desc {
font-size: 0.875rem;
color: var(--text-muted, #6b7280);
line-height: 1.5;
margin: 0;
}
.reference-card__tags {
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
margin-top: 0.25rem;
}
.reference-tag {
font-size: 0.75rem;
padding: 0.2rem 0.6rem;
background: var(--primary-color-light, #e8f0fe);
color: var(--primary-color);
border-radius: 2rem;
font-weight: 500;
}
.reference-card__link {
display: inline-flex;
align-items: center;
gap: 0.4rem;
margin-top: auto;
padding-top: 0.75rem;
font-size: 0.875rem;
font-weight: 600;
color: var(--primary-color);
text-decoration: none;
transition: all 0.2s ease;
border-top: 1px solid rgba(0, 136, 238, 0.15);
}
.reference-card__link svg {
flex-shrink: 0;
opacity: 0.8;
}
.reference-card__link:hover {
color: var(--primary-dark, #0050CC);
}
.reference-card__link:hover svg {
opacity: 1;
transform: translate(2px, -2px);
}
@media (max-width: 1024px) {
.references-grid {
grid-template-columns: repeat(2, 1fr);
}
.reference-card--featured {
grid-column: span 2;
}
}
@media (max-width: 640px) {
.references-grid {
grid-template-columns: 1fr;
}
.reference-card--featured {
grid-column: span 1;
}
}
.reference-row-list {
display: flex;
flex-direction: column;
gap: 4rem;
}
.reference-row {
display: flex;
align-items: stretch;
gap: 0;
padding: 0;
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(0, 0, 0, 0.08);
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
background: linear-gradient(135deg, #f1f5f9 0%, #f9fafb 52%, #f3f4f6 100%);
}
.reference-row:hover {
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
}
.reference-row__image-col {
flex: 0 0 48%;
order: 1;
display: flex;
}
.reference-row__body {
flex: 1;
min-width: 0;
order: 2;
padding: 2.5rem 3rem;
background: linear-gradient(135deg, #f1f5f9 0%, #f9fafb 52%, #f3f4f6 100%);
border-radius: 0;
align-self: stretch;
display: flex;
flex-direction: column;
border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.reference-row--image-right .reference-row__body {
border-left: none;
border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.reference-row--image-right .reference-row__image-col {
order: 2;
}
.reference-row--image-right .reference-row__body {
order: 1;
}
.reference-row__image {
position: relative;
overflow: hidden;
border-radius: 0;
background: var(--bg-light);
min-height: 420px;
flex: 1;
width: 100%;
}
.reference-row__image img {
width: 100%;
height: 100%;
min-height: 420px;
object-fit: cover;
transition: transform 0.3s ease;
display: block;
}
.reference-row__image:hover img {
transform: scale(1.03);
}
.reference-row--image-right .reference-row__image {
border-radius: 0;
}
.reference-row__image--placeholder {
display: flex;
align-items: center;
justify-content: center;
min-height: 420px;
}
.reference-row__image--placeholder svg {
width: 3rem;
height: 3rem;
color: var(--text-light);
}
.reference-row__overlay {
position: absolute;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1rem;
background: rgba(10, 37, 64, 0.7);
opacity: 0;
transition: opacity 0.25s ease;
}
.reference-row__overlay-hint,
.reference-row__overlay-link {
width: 200px;
box-sizing: border-box;
padding: 0.6rem 1rem;
text-align: center;
border-radius: 8px;
font-size: 0.9rem;
font-weight: 500;
}
.reference-row__overlay-hint {
color: #fff;
letter-spacing: 0.03em;
border: 2px solid rgba(255, 255, 255, 0.8);
}
.reference-row__overlay-link {
color: #fff;
text-decoration: none;
background: rgba(255, 255, 255, 0.2);
}
.reference-row__overlay-link:hover {
background: rgba(255, 255, 255, 0.35);
}
.reference-row__image:hover .reference-row__overlay {
opacity: 1;
}
.reference-row__header {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 1rem;
margin-bottom: 0.75rem;
}
.reference-row__client {
font-size: 1.5rem;
font-weight: 700;
color: var(--text-color);
margin: 0;
}
.reference-row__desc {
font-size: 1rem;
line-height: 1.7;
color: var(--text-muted, #6b7280);
margin: 0 0 1.25rem;
}
.reference-row__desc p {
margin: 0 0 1rem;
}
.reference-row__desc p:last-child {
margin-bottom: 0;
}
.reference-row__highlights {
margin: 0 0 1.75rem;
padding-left: 1.5rem;
font-size: 0.95rem;
line-height: 1.6;
color: var(--text-muted, #6b7280);
list-style: disc;
}
.reference-row__highlights li {
margin-bottom: 0.35rem;
display: list-item;
}
.reference-row__highlights li:last-child {
margin-bottom: 0;
}
.reference-row__tags {
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
margin: 0;
justify-content: flex-end;
flex-shrink: 0;
}
.reference-row__link {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
font-weight: 600;
font-size: 0.95rem;
color: #fff;
text-decoration: none;
background: var(--primary-color);
padding: 0.6rem 1.25rem;
border-radius: 10px;
transition: background 0.2s ease, transform 0.2s ease;
}
.reference-row__link svg {
flex-shrink: 0;
opacity: 0.95;
}
.reference-row__link:hover {
background: var(--primary-dark, #0050CC);
color: #fff;
}
.reference-row__link:hover svg {
opacity: 1;
transform: translate(2px, -2px);
}
.reference-row__image.js-reference-lightbox {
cursor: pointer;
}
@media (max-width: 768px) {
.reference-row-list {
gap: 3rem;
}
.reference-row {
flex-direction: column;
gap: 0;
align-items: stretch;
}
.reference-row--image-right .reference-row__image-col,
.reference-row--image-right .reference-row__body {
order: unset;
}
.reference-row__image-col {
flex: none;
order: unset;
}
.reference-row__body {
order: unset;
border-left: none;
border-right: none;
border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.reference-row--image-right .reference-row__body {
border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.reference-row__image {
min-height: 280px;
}
.reference-row__image img {
min-height: 280px;
}
}
.references-filter {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 3rem;
}
.ref-filter-btn {
padding: 0.45rem 1.1rem;
border: 1.5px solid var(--border-color);
background: #fff;
border-radius: 2rem;
font-size: 0.875rem;
font-weight: 500;
color: var(--text-muted, #6b7280);
cursor: pointer;
transition: all 0.2s ease;
}
.ref-filter-btn:hover,
.ref-filter-btn.active {
background: var(--primary-color);
border-color: var(--primary-color);
color: #fff;
}
.reference-card__image.js-reference-lightbox {
cursor: pointer;
}
.reference-lightbox {
position: fixed;
inset: 0;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.reference-lightbox--open {
opacity: 1;
visibility: visible;
}
.reference-lightbox--open .reference-lightbox__frame {
animation: reference-frame-in 0.3s ease-out;
}
@keyframes reference-frame-in {
from {
opacity: 0;
transform: scale(0.98);
}
to {
opacity: 1;
transform: scale(1);
}
}
.reference-lightbox__backdrop {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.75);
cursor: pointer;
}
.reference-lightbox__content {
position: relative;
max-width: 95vw;
max-height: 95vh;
display: flex;
flex-direction: column;
align-items: center;
z-index: 1;
}
.reference-lightbox .reference-lightbox__close {
position: fixed;
top: 1.5rem;
right: 1.5rem;
width: 2.5rem;
height: 2.5rem;
border: none;
background: transparent;
color: #fff;
font-size: 2rem;
line-height: 1;
cursor: pointer;
padding: 0;
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
opacity: 0.9;
transition: opacity 0.2s ease;
}
.reference-lightbox .reference-lightbox__close:hover {
opacity: 1;
}
.reference-lightbox__frame {
position: relative;
background: #fff;
padding: 20px;
border-radius: 24px;
box-shadow:
0 0 0 1px rgba(0, 0, 0, 0.08),
0 30px 60px -15px rgba(0, 0, 0, 0.3),
0 15px 30px -10px rgba(0, 0, 0, 0.2);
overflow: hidden;
}
.reference-lightbox__frame-scroll {
max-height: calc(90vh - 40px);
overflow-y: auto;
overflow-x: hidden;
border-radius: 12px;
}
.reference-lightbox__frame .reference-lightbox__img {
display: block;
width: min(90vw, 1400px);
height: auto;
max-width: none;
border-radius: 8px;
}
.reference-lightbox__caption {
display: none;
}
.reference-lightbox__prev,
.reference-lightbox__next {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 3rem;
height: 3rem;
border: none;
background: rgba(255, 255, 255, 0.15);
color: #fff;
font-size: 2.5rem;
line-height: 1;
cursor: pointer;
padding: 0;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s ease;
}
.reference-lightbox__prev:hover,
.reference-lightbox__next:hover {
background: rgba(255, 255, 255, 0.3);
}
.reference-lightbox__prev {
left: 1rem;
}
.reference-lightbox__next {
right: 1rem;
}
.pricing-section {
padding: var(--spacing-lg) 0;
background: var(--bg-color);
}
.pricing-section.pricing-section--alt {
background: var(--bg-color);
}
.pricing-header {
text-align: center;
max-width: 680px;
margin: 0 auto var(--spacing-lg);
}
.pricing-header__label {
display: inline-block;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--primary-color);
margin-bottom: 1rem;
}
.pricing-header h2 {
font-size: 2.25rem;
font-weight: 800;
line-height: 1.2;
color: var(--text-color);
margin-bottom: 0.75rem;
}
.pricing-header__sub {
font-size: 1.1rem;
font-weight: 500;
color: var(--text-color);
margin-bottom: 0.75rem;
}
.pricing-header__desc {
font-size: 0.95rem;
color: var(--text-light);
line-height: 1.7;
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
align-items: stretch;
}
.pricing-card {
background: var(--bg-color);
border: 1.5px solid var(--border-color);
border-radius: 16px;
padding: 2.25rem 2rem;
display: flex;
flex-direction: column;
gap: 0;
transition: box-shadow 0.25s ease, transform 0.25s ease;
position: relative;
}
.pricing-card:hover {
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
transform: translateY(-3px);
}
.pricing-card--featured {
border-color: var(--primary-color);
border-width: 2px;
box-shadow: 0 8px 32px rgba(0, 136, 238, 0.14);
background: #FAFEFF;
z-index: 1;
}
.pricing-card--featured:hover {
transform: translateY(-3px);
box-shadow: 0 16px 48px rgba(0, 136, 238, 0.2);
}
.pricing-badge {
position: absolute;
top: -14px;
left: 50%;
transform: translateX(-50%);
background: var(--primary-color);
color: #fff;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 4px 16px;
border-radius: 999px;
white-space: nowrap;
}
.pricing-card__header {
margin-bottom: 1.5rem;
}
.pricing-card__name {
font-size: 1.05rem;
font-weight: 700;
color: var(--text-color);
margin-bottom: 0.25rem;
}
.pricing-card__platforms {
font-size: 0.8rem;
color: var(--text-light);
margin-bottom: 0.5rem;
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
}
.pricing-card__platform-tag {
display: inline-block;
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.04em;
background: #EBF5FF;
color: #0055AA;
border-radius: 999px;
padding: 8px 12px;
}
.pricing-card--featured .pricing-card__name {
color: var(--primary-color);
}
.pricing-card__price {
display: flex;
align-items: baseline;
gap: 0.25rem;
margin-top: 0.75rem;
margin-bottom: 0.5rem;
}
.pricing-card__from {
font-size: 0.85rem;
color: var(--text-light);
font-weight: 400;
}
.pricing-card__amount {
font-size: 2.5rem;
font-weight: 800;
color: var(--text-color);
line-height: 1;
}
.pricing-card--featured .pricing-card__amount {
color: var(--primary-color);
}
.pricing-card__currency {
font-size: 1.25rem;
font-weight: 600;
color: var(--text-light);
align-self: flex-start;
margin-top: 0.35rem;
}
.pricing-card__desc {
font-size: 0.88rem;
color: var(--text-light);
line-height: 1.6;
margin-top: 0.25rem;
}
.pricing-card__divider {
border: none;
border-top: 1px solid var(--border-color);
margin: 1.5rem 0;
}
.pricing-card__features {
list-style: none;
padding: 0;
margin: 0 0 0.5rem;
display: flex;
flex-direction: column;
gap: 0.65rem;
}
.pricing-card__features li {
display: flex;
align-items: flex-start;
gap: 0.6rem;
font-size: 0.875rem;
color: var(--text-color);
line-height: 1.5;
}
.pricing-card__features li > span {
min-width: 0;
hyphens: auto;
-webkit-hyphens: auto;
}
.pricing-card__features li svg,
.pricing-card__features li .pricing-check {
width: 20px !important;
height: 20px !important;
min-width: 20px;
max-width: 20px;
flex-shrink: 0;
display: inline-block;
margin-top: 2px;
color: var(--primary-color);
fill: var(--primary-color);
vertical-align: middle;
}
.pricing-card .btn {
width: 100%;
text-align: center;
padding: 14px 24px;
border-radius: 10px;
font-size: 0.95rem;
margin-top: auto;
flex-shrink: 0;
}
.pricing-card--featured .btn-primary {
background: var(--primary-color);
box-shadow: 0 4px 16px rgba(0, 136, 238, 0.3);
}
.pricing-footnote {
margin-top: 3rem;
background: transparent;
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 1.75rem 2rem;
display: flex;
gap: 3rem;
flex-wrap: wrap;
align-items: flex-start;
}
.pricing-footnote__note {
font-size: 0.85rem;
color: var(--text-light);
line-height: 1.7;
flex: 1;
min-width: 220px;
}
.pricing-footnote__note strong {
display: block;
color: var(--text-color);
margin-bottom: 0.4rem;
font-size: 0.9rem;
}
.pricing-footnote__addons {
flex: 1;
min-width: 200px;
}
.pricing-footnote__addons strong {
display: block;
font-size: 0.9rem;
color: var(--text-color);
margin-bottom: 0.6rem;
}
.pricing-footnote__addons ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 0.35rem;
}
.pricing-footnote__addons ul li {
font-size: 0.83rem;
color: var(--text-light);
display: flex;
align-items: center;
gap: 0.4rem;
}
.pricing-footnote__addons ul li::before {
content: '+';
font-weight: 700;
color: var(--primary-color);
font-size: 0.9rem;
line-height: 1;
}
.pricing-cta {
margin-top: 5rem;
background: linear-gradient(135deg, #E8F4FC 0%, #D4ECFA 100%);
border-radius: 16px;
padding: 3rem 2.5rem;
text-align: center;
}
.pricing-cta h3 {
font-size: 1.6rem;
font-weight: 800;
color: var(--text-color);
margin-bottom: 0.75rem;
}
.pricing-cta p {
color: var(--text-light);
max-width: 520px;
margin: 0 auto 1.75rem;
line-height: 1.7;
font-size: 0.95rem;
}
@media (max-width: 1024px) {
.pricing-grid {
grid-template-columns: 1fr;
max-width: min(40rem, 100%);
margin-left: auto;
margin-right: auto;
}
.pricing-card--featured {
transform: none;
}
.pricing-card--featured:hover {
transform: translateY(-3px);
}
}
@media (max-width: 640px) {
.pricing-grid {
max-width: none;
}
.pricing-header h2 {
font-size: 1.75rem;
}
.pricing-card__amount {
font-size: 2rem;
}
.pricing-footnote {
flex-direction: column;
gap: 1.5rem;
}
.pricing-cta {
padding: 2rem 1.5rem;
}
.pricing-cta h3 {
font-size: 1.3rem;
}
}