commit 20260703
This commit is contained in:
+326
-236
@@ -36,44 +36,7 @@
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
/* ── Buttons ── */
|
||||
#about-us-2 .au2-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
border: none;
|
||||
border-radius: 10px;
|
||||
padding: 16px 32px;
|
||||
min-height: 52px;
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
letter-spacing: -0.16px;
|
||||
color: var(--text-main);
|
||||
background: var(--primary);
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-btn:hover {
|
||||
background: var(--primary-hover);
|
||||
box-shadow: inset 0 5px 10px rgba(249, 135, 21, 0.6), 0 5px 10px rgba(249, 135, 21, 0.6);
|
||||
color: var(--text-main);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-btn--outline {
|
||||
background: rgba(15, 15, 15, 0.5);
|
||||
border: 0.657px solid #666;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-btn--outline:hover {
|
||||
background: rgba(249, 135, 21, 0.08);
|
||||
border-color: var(--primary);
|
||||
box-shadow: none;
|
||||
}
|
||||
/* Buttons: see assets/css/aifo-btn.css */
|
||||
|
||||
/* ── Shared typography ── */
|
||||
#about-us-2 .au2-label {
|
||||
@@ -81,7 +44,6 @@
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
@@ -116,7 +78,7 @@
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 72px 0 64px;
|
||||
padding: 120px 0 120px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@@ -135,7 +97,7 @@
|
||||
#about-us-2 .au2-hero__inner {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 720px;
|
||||
max-width: 1200px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-hero__title {
|
||||
@@ -148,7 +110,7 @@
|
||||
|
||||
#about-us-2 .au2-hero__desc {
|
||||
margin: 0 auto 32px;
|
||||
max-width: 620px;
|
||||
max-width: 975px;
|
||||
font-size: clamp(16px, 2.2vw, 20px);
|
||||
line-height: 1.55;
|
||||
font-weight: 400;
|
||||
@@ -173,7 +135,7 @@
|
||||
|
||||
#about-us-2 .au2-intro__title {
|
||||
margin: 0 0 20px;
|
||||
font-size: clamp(28px, 4vw, 40px);
|
||||
font-size: clamp(28px, 4vw, 36px);
|
||||
line-height: 1.2;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.4px;
|
||||
@@ -186,6 +148,13 @@
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
#about-us-2 .au2-intro__text-item {
|
||||
color: var(--text-muted);
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-intro__visual img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
@@ -197,38 +166,39 @@
|
||||
|
||||
/* ── Stats ── */
|
||||
#about-us-2 .au2-stats {
|
||||
padding: 0 0 72px;
|
||||
padding: 0 0 80px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-stats__bar {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 0;
|
||||
padding: 40px 24px;
|
||||
border-radius: 16px;
|
||||
background: url("../images/backgrounds/bg_key_states.png") center / 100% 100% no-repeat;
|
||||
border: 0.5px solid rgba(152, 151, 149, 0.22);
|
||||
}
|
||||
|
||||
#about-us-2 .au2-stats__item {
|
||||
position: relative;
|
||||
#about-us-2 .au2-stats__title {
|
||||
margin: 0 0 40px;
|
||||
font-size: clamp(28px, 4vw, 40px);
|
||||
line-height: 1.2;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.4px;
|
||||
text-align: center;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-stats__item:not(:last-child)::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 1px;
|
||||
height: 48px;
|
||||
background: rgba(255, 255, 255, 0.13);
|
||||
#about-us-2 .au2-stats__grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-stats__card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 140px;
|
||||
padding: 40px 20px;
|
||||
border-radius: 14px;
|
||||
background: #1c1c1e;
|
||||
border: 0.5px solid rgba(152, 151, 149, 0.18);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-stats__value {
|
||||
margin: 0 0 6px;
|
||||
margin: 0 0 8px;
|
||||
font-size: clamp(24px, 3vw, 34px);
|
||||
font-weight: 800;
|
||||
line-height: 1.2;
|
||||
@@ -237,212 +207,353 @@
|
||||
|
||||
#about-us-2 .au2-stats__label {
|
||||
margin: 0;
|
||||
font-size: 12px;
|
||||
font-size: 13px;
|
||||
line-height: 1.4;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
color: rgba(255, 255, 255, 0.55);
|
||||
}
|
||||
|
||||
/* ── CTA Banner ── */
|
||||
/* ── CTA Banner (Serena / Figma export) ── */
|
||||
#about-us-2 .au2-cta {
|
||||
position: relative;
|
||||
margin: 0 0 72px;
|
||||
padding: 64px 32px;
|
||||
border-radius: 20px;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
border: 0.5px solid rgba(152, 151, 149, 0.22);
|
||||
background: rgba(12, 12, 12, 0.85);
|
||||
padding: 70px 0 70px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-cta__glow {
|
||||
#about-us-2 .au2-cta__panel {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
border-radius: 20px;
|
||||
border: 0.5px solid rgba(102, 102, 102, 0.5);
|
||||
background: #0e0e0e url('../images/demo/about/rd_bg.png') center / cover no-repeat;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-cta__top-glow {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
top: -13px;
|
||||
left: 50%;
|
||||
width: 80%;
|
||||
height: 200px;
|
||||
transform: translate(-50%, -50%);
|
||||
background: radial-gradient(ellipse at center, rgba(249, 135, 21, 0.3) 0%, transparent 70%);
|
||||
width: min(90%, 440px);
|
||||
height: 26px;
|
||||
transform: translateX(-50%);
|
||||
border-radius: 999px;
|
||||
background: #f9a215;
|
||||
opacity: 0.4;
|
||||
filter: blur(40px);
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-cta__inner {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 560px;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 40px;
|
||||
padding: 40px 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-cta__copy {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
max-width: 1000px;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#about-us-2 .au2-cta__inner {
|
||||
padding: 40px 65px;
|
||||
}
|
||||
}
|
||||
|
||||
#about-us-2 .au2-cta__title {
|
||||
margin: 0 0 16px;
|
||||
font-size: clamp(28px, 4vw, 40px);
|
||||
line-height: 1.2;
|
||||
margin: 0;
|
||||
font-size: clamp(28px, 4vw, 36px);
|
||||
line-height: 1.35;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.36px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-cta__desc {
|
||||
margin: 0 0 28px;
|
||||
font-size: 16px;
|
||||
line-height: 1.55;
|
||||
color: var(--text-muted);
|
||||
margin: 0;
|
||||
max-width: 1000px;
|
||||
font-size: clamp(16px, 2.2vw, 24px);
|
||||
line-height: 1.35;
|
||||
font-weight: 300;
|
||||
letter-spacing: -0.24px;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-cta .aifo-btn {
|
||||
min-width: 225px;
|
||||
border-radius: 12px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
/* ── Core Values ── */
|
||||
#about-us-2 .au2-values {
|
||||
padding: 0 0 72px;
|
||||
position: relative;
|
||||
padding: 40px 0 80px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-values__glow {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 50%;
|
||||
width: 120%;
|
||||
height: 500px;
|
||||
transform: translateX(-50%);
|
||||
border-radius: 50%;
|
||||
background: #f9a215;
|
||||
opacity: 0.25;
|
||||
filter: blur(180px);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-values__title {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
margin: 0 0 40px;
|
||||
font-size: clamp(36px, 6vw, 75px);
|
||||
line-height: 1.2;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.75px;
|
||||
text-align: center;
|
||||
color: #f9f9f9;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-values__grid {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 24px;
|
||||
margin-top: 48px;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
@media (min-width: 640px) {
|
||||
#about-us-2 .au2-values__grid {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
#about-us-2 .au2-value-card {
|
||||
padding: 32px 28px;
|
||||
border-radius: 16px;
|
||||
border: 0.5px solid rgba(152, 151, 149, 0.35);
|
||||
background: var(--bg-card);
|
||||
transition: border-color 0.2s ease, box-shadow 0.2s ease;
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 24px;
|
||||
overflow: hidden;
|
||||
padding: 60px 28px;
|
||||
border-radius: 20px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||
background: #231f20 url('../images/demo/about/od_bg.png') center / 100% 100% no-repeat;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-value-card:hover {
|
||||
border-color: rgba(249, 135, 21, 0.4);
|
||||
box-shadow: 0 8px 32px rgba(249, 135, 21, 0.08);
|
||||
#about-us-2 .au2-value-card::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 70px;
|
||||
left: 50%;
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
transform: translateX(-50%);
|
||||
border-radius: 50%;
|
||||
background: #f98715;
|
||||
opacity: 0.12;
|
||||
filter: blur(70px);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-value-card__icon {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
margin-bottom: 20px;
|
||||
border-radius: 12px;
|
||||
background: rgba(249, 135, 21, 0.1);
|
||||
width: 87px;
|
||||
height: 89px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-value-card__icon img {
|
||||
display: block;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-value-card__title {
|
||||
margin: 0 0 12px;
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
line-height: 1.3;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
margin: 0;
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
line-height: 1.25;
|
||||
letter-spacing: -0.2px;
|
||||
color: #f9f9f9;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-value-card__text {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
margin: 0;
|
||||
font-size: 15px;
|
||||
line-height: 1.65;
|
||||
color: var(--text-muted);
|
||||
font-size: 14px;
|
||||
font-weight: 300;
|
||||
line-height: 1.43;
|
||||
letter-spacing: -0.14px;
|
||||
color: #f9f9f9;
|
||||
}
|
||||
|
||||
/* ── Testimonials ── */
|
||||
#about-us-2 .au2-testimonials {
|
||||
padding: 0 0 72px;
|
||||
padding: 40px 0 80px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonials__grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 24px;
|
||||
#about-us-2 .au2-testimonials__title {
|
||||
margin: 0 0 24px;
|
||||
font-size: clamp(32px, 5vw, 48px);
|
||||
line-height: 1.2;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.48px;
|
||||
text-align: center;
|
||||
color: #f9f9f9;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonials__desc {
|
||||
margin: 0 auto 40px;
|
||||
max-width: 680px;
|
||||
font-size: clamp(16px, 2.2vw, 20px);
|
||||
line-height: 1.5;
|
||||
font-weight: 300;
|
||||
text-align: center;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonials__marquee {
|
||||
position: relative;
|
||||
width: 100vw;
|
||||
margin-left: calc(50% - 50vw);
|
||||
overflow: hidden;
|
||||
padding: 16px 0;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonials__rows {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonials__row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonials__track {
|
||||
display: flex;
|
||||
flex-shrink: 0;
|
||||
gap: 16px;
|
||||
padding: 0 8px;
|
||||
animation: au2-marquee-x var(--duration, 125s) linear infinite;
|
||||
will-change: transform;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonials__track--reverse {
|
||||
animation-direction: reverse;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonials__marquee:hover .au2-testimonials__track {
|
||||
animation-play-state: paused;
|
||||
}
|
||||
|
||||
@keyframes au2-marquee-x {
|
||||
from {
|
||||
transform: translateX(0);
|
||||
}
|
||||
to {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonials__fade {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 96px;
|
||||
z-index: 2;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonials__fade--left {
|
||||
left: 0;
|
||||
background: linear-gradient(to right, var(--bg-page, #070400) 0%, transparent 100%);
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonials__fade--right {
|
||||
right: 0;
|
||||
background: linear-gradient(to left, var(--bg-page, #070400) 0%, transparent 100%);
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonial {
|
||||
padding: 24px;
|
||||
border-radius: 15px;
|
||||
border: 0.5px solid var(--border-muted);
|
||||
background: var(--bg-card);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 14px;
|
||||
flex-shrink: 0;
|
||||
width: min(360px, 85vw);
|
||||
min-height: 160px;
|
||||
padding: 24px 16px;
|
||||
border-radius: 16px;
|
||||
background: #231f20;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonial--wide {
|
||||
grid-column: span 2;
|
||||
@media (min-width: 640px) {
|
||||
#about-us-2 .au2-testimonial {
|
||||
width: min(500px, 42vw);
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
#about-us-2 .au2-testimonials__track {
|
||||
animation: none;
|
||||
}
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonial__head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
margin-bottom: 16px;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonial__flag.fi {
|
||||
width: 28px;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
border-radius: 2px;
|
||||
overflow: hidden;
|
||||
#about-us-2 .au2-testimonial__avatar {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-shrink: 0;
|
||||
background-size: cover;
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
border-radius: 50%;
|
||||
background: #f98715;
|
||||
font-size: 18px;
|
||||
font-weight: 800;
|
||||
letter-spacing: -0.18px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonial__name {
|
||||
margin: 0;
|
||||
font-size: 18px;
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonial__meta {
|
||||
margin: 2px 0 0;
|
||||
font-size: 14px;
|
||||
color: var(--text-muted);
|
||||
line-height: 1.2;
|
||||
letter-spacing: -0.2px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonial__quote {
|
||||
margin: 0;
|
||||
font-size: 15px;
|
||||
line-height: 1.7;
|
||||
font-weight: 300;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* ── Support ── */
|
||||
#about-us-2 .au2-support {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
align-items: center;
|
||||
gap: 48px;
|
||||
padding: 48px 0 0;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-support__title {
|
||||
margin: 0 0 16px;
|
||||
font-size: clamp(28px, 4vw, 36px);
|
||||
line-height: 1.2;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-support__desc {
|
||||
margin: 0 0 28px;
|
||||
font-size: 16px;
|
||||
line-height: 1.55;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
#about-us-2 .au2-support__actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-support__visual {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-support__visual img {
|
||||
display: block;
|
||||
width: min(100%, 360px);
|
||||
height: auto;
|
||||
filter: drop-shadow(0 0 40px rgba(249, 135, 21, 0.35));
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
line-height: 1.17;
|
||||
letter-spacing: 0.24px;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
/* ── Responsive ── */
|
||||
@@ -456,39 +567,9 @@
|
||||
order: -1;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-stats__bar {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 32px 16px;
|
||||
background-image: url("../images/backgrounds/bg_key_states_mb.png");
|
||||
}
|
||||
|
||||
#about-us-2 .au2-stats__item:nth-child(2)::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-stats__item:nth-child(odd):not(:last-child)::after {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-values__grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonials__grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-testimonial--wide {
|
||||
grid-column: span 1;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-support {
|
||||
grid-template-columns: 1fr;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-support__actions {
|
||||
justify-content: center;
|
||||
#about-us-2 .au2-stats__grid {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -504,32 +585,41 @@
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-hero__actions,
|
||||
#about-us-2 .au2-support__actions {
|
||||
#about-us-2 .au2-hero__actions {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-btn {
|
||||
#about-us-2 .au2-hero__actions .aifo-btn {
|
||||
width: 100%;
|
||||
max-width: 280px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-stats__bar {
|
||||
padding: 32px 16px;
|
||||
#about-us-2 .au2-stats__grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-stats__item::after {
|
||||
display: none !important;
|
||||
#about-us-2 .au2-stats__card {
|
||||
min-height: 120px;
|
||||
padding: 32px 20px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-cta {
|
||||
padding: 48px 20px;
|
||||
margin-bottom: 48px;
|
||||
padding-bottom: 48px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-cta__inner {
|
||||
gap: 24px;
|
||||
padding: 32px 20px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-values,
|
||||
#about-us-2 .au2-testimonials {
|
||||
padding-bottom: 48px;
|
||||
}
|
||||
|
||||
#about-us-2 .au2-value-card {
|
||||
padding: 40px 24px;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,121 @@
|
||||
/**
|
||||
* AIFO universal CTA buttons (V2 pages).
|
||||
*
|
||||
* Usage:
|
||||
* <a href="#" class="aifo-btn aifo-btn--primary aifo-btn--arrow">Join AIFO</a>
|
||||
* <a href="#" class="aifo-btn aifo-btn--outline">Begin Learning</a>
|
||||
*
|
||||
* Modifiers:
|
||||
* --primary / --outline visual style
|
||||
* --arrow right arrow (design default for primary CTAs)
|
||||
* --sm smaller padding
|
||||
*
|
||||
* Arrow is optional — only add --arrow when the design shows it.
|
||||
*/
|
||||
|
||||
:root {
|
||||
--aifo-btn-primary: #f98715;
|
||||
--aifo-btn-primary-hover: #f9a215;
|
||||
--aifo-btn-text: #f9f9f9;
|
||||
--aifo-btn-radius: 10px;
|
||||
--aifo-btn-gap: 8px;
|
||||
}
|
||||
|
||||
.aifo-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: var(--aifo-btn-gap);
|
||||
border: none;
|
||||
border-radius: var(--aifo-btn-radius);
|
||||
padding: 16px 32px;
|
||||
min-height: 52px;
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
letter-spacing: -0.16px;
|
||||
line-height: 1;
|
||||
color: var(--aifo-btn-text);
|
||||
background: var(--aifo-btn-primary);
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
transition:
|
||||
background 0.2s ease,
|
||||
box-shadow 0.2s ease,
|
||||
border-color 0.2s ease,
|
||||
color 0.2s ease;
|
||||
}
|
||||
|
||||
.aifo-btn:hover,
|
||||
.aifo-btn:focus-visible {
|
||||
background: var(--aifo-btn-primary-hover);
|
||||
box-shadow:
|
||||
inset 0 5px 10px rgba(249, 135, 21, 0.6),
|
||||
0 5px 10px rgba(249, 135, 21, 0.6);
|
||||
color: var(--aifo-btn-text);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.aifo-btn--primary {
|
||||
/* default .aifo-btn appearance */
|
||||
}
|
||||
|
||||
.aifo-btn--outline {
|
||||
background: rgba(15, 15, 15, 0.5);
|
||||
border: 0.657px solid #666;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.aifo-btn--outline:hover,
|
||||
.aifo-btn--outline:focus-visible {
|
||||
background: rgba(249, 135, 21, 0.08);
|
||||
border-color: var(--aifo-btn-primary);
|
||||
box-shadow: none;
|
||||
color: var(--aifo-btn-text);
|
||||
}
|
||||
|
||||
.aifo-btn--sm {
|
||||
padding: 12px 24px;
|
||||
min-height: 44px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Right arrow — same stroke as home-hero-carousel / Figma */
|
||||
.aifo-btn--arrow::after {
|
||||
content: "";
|
||||
flex-shrink: 0;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background-color: currentColor;
|
||||
-webkit-mask: url("../images/icons/arrow-right.svg") center / contain no-repeat;
|
||||
mask: url("../images/icons/arrow-right.svg") center / contain no-repeat;
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
.aifo-btn--arrow:hover::after,
|
||||
.aifo-btn--arrow:focus-visible::after {
|
||||
transform: translateX(3px);
|
||||
}
|
||||
|
||||
/* Optional: explicit child icon (when ::after is not enough, e.g. <button> quirks) */
|
||||
.aifo-btn__arrow {
|
||||
display: inline-flex;
|
||||
flex-shrink: 0;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
.aifo-btn__arrow svg {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.aifo-btn:hover .aifo-btn__arrow,
|
||||
.aifo-btn:focus-visible .aifo-btn__arrow {
|
||||
transform: translateX(3px);
|
||||
}
|
||||
|
||||
.aifo-btn--arrow:has(.aifo-btn__arrow)::after {
|
||||
content: none;
|
||||
}
|
||||
+29
-29
@@ -1597,6 +1597,11 @@
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
#homepage #block-1 {
|
||||
height: auto;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.main {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
@@ -1617,14 +1622,29 @@
|
||||
--hero-nav-gap: 76px;
|
||||
--hero-coach-dots-gap: 35px;
|
||||
--hero-dots-height: 10px;
|
||||
/* left column: badge top → AI Coach bottom */
|
||||
--hero-slide1-content-height: 486px;
|
||||
/* viewport height (fits right visual + left column) */
|
||||
--hero-slide1-viewport-height: 580px;
|
||||
/* measured by home-hero-carousel.js from data-hero-layout-reference slide */
|
||||
--hero-reference-content-bottom-fallback: 486px;
|
||||
--hero-reference-viewport-height-fallback: calc(
|
||||
var(--hero-reference-content-bottom-fallback) + var(--hero-coach-dots-gap)
|
||||
);
|
||||
--hero-reference-dots-top-fallback: calc(
|
||||
var(--hero-nav-gap) + var(--hero-reference-content-bottom-fallback) + var(--hero-coach-dots-gap)
|
||||
);
|
||||
--hero-inner-padding-bottom: 40px;
|
||||
--hero-inner-max-width: 1280px;
|
||||
--hero-content-max-width: 680px;
|
||||
--hero-visual-image-scale: 1.06;
|
||||
--hero-mobile-visual-dots-gap: 24px;
|
||||
--hero-mobile-fixed-dots-bottom: 16px;
|
||||
/* slide top → dots top (visual vertical zone) */
|
||||
--hero-visual-zone-height: var(
|
||||
--hero-reference-viewport-height,
|
||||
var(--hero-reference-viewport-height-fallback)
|
||||
);
|
||||
/* Mobile: arc ~30px below dots (height-limited cover) */
|
||||
--hero-arc-gap: 30px;
|
||||
--hero-dots-y: calc(48px + 720px + 56px - 32px + 10px);
|
||||
--hero-bg-height-adjust: -120px;
|
||||
--hero-dots-y: calc(48px + 720px + 56px - 32px + var(--hero-dots-height));
|
||||
}
|
||||
|
||||
#homepage .hero-bg {
|
||||
@@ -1636,6 +1656,7 @@
|
||||
height: calc(
|
||||
(var(--hero-dots-y) + var(--hero-arc-gap)) * var(--hero-img-height)
|
||||
/ (var(--hero-img-height) - var(--hero-img-arc-offset))
|
||||
+ var(--hero-bg-height-adjust, 0px)
|
||||
);
|
||||
object-fit: cover;
|
||||
object-position: center bottom;
|
||||
@@ -1647,7 +1668,7 @@
|
||||
|
||||
@media (min-width: 768px) and (max-width: 991.98px) {
|
||||
#homepage {
|
||||
--hero-dots-y: calc(80px + 720px + 64px - 40px + 10px);
|
||||
--hero-dots-y: calc(76px + 720px + 64px - 40px + var(--hero-dots-height));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1656,8 +1677,8 @@
|
||||
--hero-arc-gap: 8px;
|
||||
--hero-bg-height-adjust: -15px;
|
||||
--hero-dots-y: calc(
|
||||
var(--hero-nav-gap) + var(--hero-slide1-content-height)
|
||||
+ var(--hero-coach-dots-gap) + var(--hero-dots-height)
|
||||
var(--hero-reference-dots-top, var(--hero-reference-dots-top-fallback))
|
||||
+ var(--hero-dots-height)
|
||||
+ var(--hero-inner-padding-bottom)
|
||||
);
|
||||
}
|
||||
@@ -1687,17 +1708,6 @@
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#block-1 .hero-buttons {
|
||||
margin-top: 5rem;
|
||||
}
|
||||
#block-1 #section-2 {
|
||||
padding-top: 0r !important;
|
||||
position: absolute;
|
||||
bottom: 100px;
|
||||
width: 100%;
|
||||
padding: top;
|
||||
}
|
||||
|
||||
#section-5 table tbody tr:first {
|
||||
background: #000;
|
||||
}
|
||||
@@ -1977,12 +1987,6 @@
|
||||
}
|
||||
/* section-2 end */
|
||||
/* home page */
|
||||
#homepage #block-1 {
|
||||
height: unset;
|
||||
}
|
||||
#homepage #block-1 .hero-buttons {
|
||||
margin-top: 5rem;
|
||||
}
|
||||
#homepage #block-1 #section-3 .slice-lg {
|
||||
padding-top: 1.5rem;
|
||||
padding-bottom: 3.5rem;
|
||||
@@ -5721,10 +5725,6 @@
|
||||
|
||||
@media(max-width:768px){
|
||||
.banner-desc br,#block-1{height:62.9375rem;position:relative;min-height:42vh;min-height:42svh}
|
||||
#homepage #block-1{
|
||||
height:auto;
|
||||
min-height:0;
|
||||
}
|
||||
.funded-trading-hero .d-flex .img-fluid-r{right:-13px}
|
||||
.hero-img{top:7px}
|
||||
.funded-trading-hero .d-flex .img-fluid-l{left:-3px}
|
||||
|
||||
@@ -1,42 +1,28 @@
|
||||
/**
|
||||
* Home hero carousel — scoped to #section-1.home-hero-carousel
|
||||
* Source: Serena/Figma HeroCarousel.tsx (autoplay 5s, fade, pill dots)
|
||||
*
|
||||
* Layout extension (see js/home-hero-carousel.js):
|
||||
* data-hero-layout-reference — slide that sets carousel height
|
||||
* data-hero-layout-anchor — bottom edge used for dots (gap: --hero-coach-dots-gap)
|
||||
* JS sets --hero-reference-* on #homepage or carousel root; CSS fallbacks apply before measure
|
||||
* Mobile: .is-banner-active pins dots to viewport bottom while banner is in view
|
||||
*/
|
||||
#homepage #section-1.home-hero-carousel {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
overflow: visible;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background: transparent;
|
||||
--hero-inner-padding-bottom: 40px;
|
||||
}
|
||||
|
||||
/* #homepage .home-hero-carousel__glow {
|
||||
pointer-events: none;
|
||||
position: absolute;
|
||||
top: -120px;
|
||||
left: 50%;
|
||||
width: 140%;
|
||||
max-width: 1600px;
|
||||
height: 700px;
|
||||
transform: translateX(-50%);
|
||||
border-radius: 50%;
|
||||
opacity: 0.7;
|
||||
background: radial-gradient(
|
||||
ellipse at center,
|
||||
#f7931e 0%,
|
||||
#88510f 18%,
|
||||
#2b1905 40%,
|
||||
transparent 70%
|
||||
);
|
||||
} */
|
||||
|
||||
#homepage .home-hero-carousel__inner {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 1128px;
|
||||
max-width: var(--hero-inner-max-width, 1280px);
|
||||
margin: 0 auto;
|
||||
padding: 48px 20px 56px;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
@@ -50,8 +36,8 @@
|
||||
padding: var(--hero-nav-gap) 32px
|
||||
calc(var(--hero-coach-dots-gap) + var(--hero-dots-height) + var(--hero-inner-padding-bottom));
|
||||
min-height: calc(
|
||||
var(--hero-nav-gap) + var(--hero-slide1-viewport-height)
|
||||
+ var(--hero-coach-dots-gap) + var(--hero-dots-height)
|
||||
var(--hero-reference-dots-top, var(--hero-reference-dots-top-fallback))
|
||||
+ var(--hero-dots-height)
|
||||
+ var(--hero-inner-padding-bottom)
|
||||
);
|
||||
}
|
||||
@@ -59,14 +45,16 @@
|
||||
|
||||
#homepage .home-hero-carousel__viewport {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
height: 720px;
|
||||
overflow: visible;
|
||||
height: var(--hero-reference-viewport-height, 720px);
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
#homepage .home-hero-carousel__viewport {
|
||||
height: var(--hero-slide1-viewport-height);
|
||||
overflow: hidden;
|
||||
height: var(
|
||||
--hero-reference-viewport-height,
|
||||
var(--hero-reference-viewport-height-fallback)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -74,14 +62,47 @@
|
||||
#homepage .home-hero-carousel__viewport {
|
||||
touch-action: pan-y;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__inner {
|
||||
padding-bottom: calc(
|
||||
var(--hero-mobile-dots-reserve, 26px) + var(--hero-inner-padding-bottom, 40px)
|
||||
);
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__dots {
|
||||
top: auto;
|
||||
bottom: calc(
|
||||
var(--hero-mobile-fixed-dots-bottom, 16px) + var(--hero-inner-padding-bottom, 40px)
|
||||
);
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel.is-banner-active .home-hero-carousel__dots {
|
||||
position: fixed;
|
||||
left: 20px;
|
||||
right: 20px;
|
||||
top: auto;
|
||||
bottom: calc(
|
||||
var(--hero-mobile-fixed-dots-bottom, 16px) + env(safe-area-inset-bottom, 0px)
|
||||
);
|
||||
z-index: 20;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel.is-banner-active .home-hero-carousel__dots::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: -20px;
|
||||
right: -20px;
|
||||
bottom: calc(-1 * var(--hero-mobile-fixed-dots-bottom, 16px) - env(safe-area-inset-bottom, 0px));
|
||||
height: 72px;
|
||||
background: linear-gradient(to top, rgba(5, 3, 2, 0.75), transparent);
|
||||
pointer-events: none;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__slide {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 40px;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
position: absolute;
|
||||
@@ -104,15 +125,11 @@
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
#homepage .home-hero-carousel__slide {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__slide-grid {
|
||||
flex-direction: row;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 48px;
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, var(--hero-content-max-width, 680px)) minmax(0, 1fr);
|
||||
column-gap: 48px;
|
||||
align-items: start;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
@@ -120,6 +137,7 @@
|
||||
#homepage .home-hero-carousel__content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 48px;
|
||||
width: 100%;
|
||||
max-width: 560px;
|
||||
@@ -130,6 +148,15 @@
|
||||
#homepage .home-hero-carousel__content {
|
||||
text-align: left;
|
||||
align-items: flex-start;
|
||||
max-width: none;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__title {
|
||||
font-size: 54px;
|
||||
line-height: 1.1;
|
||||
max-width: var(--hero-content-max-width, 680px);
|
||||
text-wrap: balance;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -192,21 +219,42 @@
|
||||
#homepage .home-hero-carousel__actions {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
width: 100%;
|
||||
width: auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
@media (min-width: 576px) {
|
||||
@media (max-width: 991.98px) {
|
||||
#homepage .home-hero-carousel__actions {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
width: max-content;
|
||||
max-width: 100%;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__btn {
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
box-sizing: border-box;
|
||||
justify-content: center;
|
||||
padding-left: 32px;
|
||||
padding-right: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 576px) and (max-width: 991.98px) {
|
||||
#homepage .home-hero-carousel__actions {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto;
|
||||
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
|
||||
grid-template-rows: auto auto;
|
||||
column-gap: 12px;
|
||||
row-gap: 14px;
|
||||
justify-content: center;
|
||||
align-items: start;
|
||||
width: auto;
|
||||
width: 100%;
|
||||
max-width: 480px;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__actions .home-hero-carousel__btn--primary {
|
||||
@@ -254,12 +302,39 @@
|
||||
|
||||
@media (min-width: 992px) {
|
||||
#homepage .home-hero-carousel__actions {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto;
|
||||
grid-template-rows: auto auto;
|
||||
column-gap: 12px;
|
||||
row-gap: 14px;
|
||||
justify-content: flex-start;
|
||||
align-items: start;
|
||||
width: auto;
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__actions .home-hero-carousel__btn--primary {
|
||||
grid-column: 1;
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__actions .home-hero-carousel__btn--ghost,
|
||||
#homepage .home-hero-carousel__actions .home-hero-carousel__btn--ai-coach {
|
||||
grid-column: 2;
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__actions .home-hero-carousel__ai-coach {
|
||||
grid-column: 1;
|
||||
grid-row: 2;
|
||||
justify-self: start;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__btn {
|
||||
width: auto;
|
||||
padding-left: 40px;
|
||||
padding-right: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__btn {
|
||||
@@ -284,9 +359,12 @@
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__btn--primary:hover {
|
||||
opacity: 0.9;
|
||||
/* opacity: 0.9; */
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
background-color: #F9A215 !important;
|
||||
color: #fff !important;
|
||||
box-shadow: inset 0 5px 10px 0 rgba(249, 135, 21, 0.6), 0 5px 10px 0 rgba(249, 135, 21, 0.6);
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__btn--ghost {
|
||||
@@ -316,12 +394,27 @@
|
||||
margin-right: -6px;
|
||||
}
|
||||
|
||||
/* Inline stroke icons — override theme.css svg { overflow: hidden } clipping */
|
||||
#homepage .home-hero-carousel__btn svg {
|
||||
flex-shrink: 0;
|
||||
display: block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__btn svg path {
|
||||
fill: none;
|
||||
stroke: currentColor;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__visual {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
max-width: 520px;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__visual img {
|
||||
@@ -330,11 +423,37 @@
|
||||
max-width: 440px;
|
||||
height: auto;
|
||||
object-fit: contain;
|
||||
object-position: center center;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__slide:nth-child(1) .home-hero-carousel__visual img,
|
||||
#homepage .home-hero-carousel__slide:nth-child(2) .home-hero-carousel__visual img {
|
||||
transform: scale(var(--hero-visual-image-scale, 1.06));
|
||||
transform-origin: center center;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
#homepage .home-hero-carousel__visual img {
|
||||
#homepage .home-hero-carousel__visual {
|
||||
max-width: none;
|
||||
width: 100%;
|
||||
height: var(--hero-visual-zone-height);
|
||||
align-self: start;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__slide:nth-child(1) .home-hero-carousel__visual img,
|
||||
#homepage .home-hero-carousel__slide:nth-child(2) .home-hero-carousel__visual img {
|
||||
width: auto;
|
||||
height: 100%;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
#homepage .home-hero-carousel__slide:nth-child(3) .home-hero-carousel__visual img {
|
||||
max-width: none;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
max-height: var(--hero-visual-zone-height);
|
||||
object-fit: contain;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -348,7 +467,6 @@
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
@@ -361,13 +479,11 @@
|
||||
|
||||
@media (min-width: 992px) {
|
||||
#homepage .home-hero-carousel__dots {
|
||||
top: calc(
|
||||
var(--hero-nav-gap) + var(--hero-slide1-content-height) + var(--hero-coach-dots-gap)
|
||||
top: var(
|
||||
--hero-reference-dots-top,
|
||||
var(--hero-reference-dots-top-fallback)
|
||||
);
|
||||
bottom: auto;
|
||||
left: 32px;
|
||||
right: 32px;
|
||||
margin-top: 0;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,183 @@
|
||||
/**
|
||||
* Support CTA floor — reusable module (Not found what you're looking for?)
|
||||
*
|
||||
* Usage:
|
||||
* <link href="../assets/css/modules/support-cta.css" rel="stylesheet">
|
||||
* <link href="../assets/css/aifo-btn.css" rel="stylesheet">
|
||||
* <div id="support-cta-module"></div>
|
||||
* <script src="/js/support-cta-module.js"></script>
|
||||
*/
|
||||
|
||||
.aifo-support-cta {
|
||||
padding: 0 0 80px;
|
||||
}
|
||||
|
||||
.aifo-support-cta__panel {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
border-radius: 20px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.06);
|
||||
background: #0e0e0e;
|
||||
padding: 48px 32px;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.aifo-support-cta__panel {
|
||||
background: linear-gradient(165deg, #18130f 0%, #101010 48%, #0e0e0e 100%);
|
||||
}
|
||||
|
||||
.aifo-support-cta__panel::before,
|
||||
.aifo-support-cta__panel::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.aifo-support-cta__panel::before {
|
||||
top: -24px;
|
||||
left: 50%;
|
||||
width: min(92%, 320px);
|
||||
height: 48px;
|
||||
transform: translateX(-50%);
|
||||
border-radius: 999px;
|
||||
background: #f9a215;
|
||||
opacity: 0.35;
|
||||
filter: blur(44px);
|
||||
}
|
||||
|
||||
.aifo-support-cta__panel::after {
|
||||
top: 8px;
|
||||
right: -48px;
|
||||
width: 180px;
|
||||
height: 180px;
|
||||
border-radius: 50%;
|
||||
background: #f98715;
|
||||
opacity: 0.22;
|
||||
filter: blur(56px);
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.aifo-support-cta__panel {
|
||||
padding: 48px 64px;
|
||||
}
|
||||
}
|
||||
|
||||
.aifo-support-cta__content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 605px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 40px;
|
||||
}
|
||||
|
||||
.aifo-support-cta__title {
|
||||
margin: 0;
|
||||
font-size: clamp(28px, 4vw, 36px);
|
||||
line-height: 1.35;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.36px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.aifo-support-cta__desc {
|
||||
margin: 0;
|
||||
font-size: clamp(16px, 2.2vw, 24px);
|
||||
line-height: 1.35;
|
||||
font-weight: 300;
|
||||
letter-spacing: -0.24px;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.aifo-support-cta__actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.aifo-support-cta .aifo-btn {
|
||||
min-width: 225px;
|
||||
border-radius: 12px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.aifo-support-cta__email-btn {
|
||||
background: #231f20;
|
||||
border-color: #666;
|
||||
}
|
||||
|
||||
.aifo-support-cta__email-btn:hover,
|
||||
.aifo-support-cta__email-btn:focus-visible {
|
||||
background: #2a2627;
|
||||
}
|
||||
|
||||
.aifo-support-cta__arrow-icon {
|
||||
flex-shrink: 0;
|
||||
display: block;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
transition: transform 0.25s ease-out;
|
||||
}
|
||||
|
||||
.aifo-support-cta__email-btn:hover .aifo-support-cta__arrow-icon,
|
||||
.aifo-support-cta__email-btn:focus-visible .aifo-support-cta__arrow-icon {
|
||||
transform: translateX(5px);
|
||||
}
|
||||
|
||||
.aifo-support-cta__visual {
|
||||
display: none;
|
||||
position: absolute;
|
||||
right: 32px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.aifo-support-cta__visual {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.aifo-support-cta__img {
|
||||
display: block;
|
||||
width: 327px;
|
||||
height: auto;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.aifo-support-cta__panel {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.aifo-support-cta__content {
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
.aifo-support-cta__actions {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.aifo-support-cta {
|
||||
padding-bottom: 56px;
|
||||
}
|
||||
|
||||
.aifo-support-cta__actions {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.aifo-support-cta__actions .aifo-btn {
|
||||
width: 100%;
|
||||
max-width: 280px;
|
||||
}
|
||||
|
||||
.aifo-support-cta__panel {
|
||||
padding: 32px 20px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,410 @@
|
||||
/**
|
||||
* AIFO main navigation (V2 design).
|
||||
* HTML: components/nav.html — loaded by js/layout.js
|
||||
* Replace placeholder icons: swap img[src] in .aifo-nav__icon, or add data-nav-icon assets later.
|
||||
*/
|
||||
|
||||
#nav.aifo-nav {
|
||||
--aifo-nav-text: #f9f9f9;
|
||||
--aifo-nav-muted: rgba(255, 255, 255, 0.6);
|
||||
--aifo-nav-divider: rgba(255, 255, 255, 0.2);
|
||||
/* Figma Partnership dropdown panel */
|
||||
--aifo-nav-dropdown-bg: #231f20;
|
||||
--aifo-nav-dropdown-border: rgba(255, 255, 255, 0.08);
|
||||
--aifo-nav-drop-hover: linear-gradient(
|
||||
90deg,
|
||||
rgba(255, 255, 255, 0.04) 0%,
|
||||
rgba(255, 255, 255, 0.02) 52%,
|
||||
rgba(255, 255, 255, 0) 100%
|
||||
);
|
||||
--aifo-nav-icon-box-border: rgba(255, 255, 255, 0.16);
|
||||
--aifo-nav-icon-box-border-hover: #353132;
|
||||
}
|
||||
|
||||
/* Desktop: logo | centered menu | right actions */
|
||||
@media (min-width: 992px) {
|
||||
#nav.aifo-nav .aifo-nav__collapse {
|
||||
display: flex !important;
|
||||
flex: 1;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
flex-basis: auto;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__menu {
|
||||
flex: 1;
|
||||
justify-content: center;
|
||||
gap: 0.25rem;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__actions {
|
||||
flex-shrink: 0;
|
||||
gap: 1rem;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__menu .nav-link {
|
||||
color: var(--aifo-nav-text);
|
||||
font-size: 1.2rem;
|
||||
font-weight: 600;
|
||||
padding: 0.5rem 1rem;
|
||||
gap: 0.35rem;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__menu .nav-link .icon-a-arrow-down {
|
||||
font-size: 0.75rem;
|
||||
opacity: 0.85;
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__menu .nav-item.show .nav-link .icon-a-arrow-down,
|
||||
#nav.aifo-nav .aifo-nav__menu .nav-item:hover .nav-link .icon-a-arrow-down {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
/* Dropdown panel — Figma: FundingPrograms / Academy / Platform / Company */
|
||||
#nav.aifo-nav .aifo-nav__dropdown {
|
||||
background: var(--aifo-nav-dropdown-bg);
|
||||
border: 1px solid var(--aifo-nav-dropdown-border);
|
||||
border-radius: 10px;
|
||||
padding: 16px;
|
||||
min-width: 230px;
|
||||
margin-top: 12px;
|
||||
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__dropdown.aifo-nav__dropdown--lang {
|
||||
min-width: 8rem;
|
||||
width: max-content;
|
||||
gap: 0;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
/* Desktop: bridge gap so submenu stays open when moving cursor down */
|
||||
@media (min-width: 992px) {
|
||||
#nav.aifo-nav .nav-item.dropdown {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__dropdown {
|
||||
margin-top: 12px;
|
||||
transform: translateY(0) !important;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .dropdown:hover > .aifo-nav__dropdown,
|
||||
#nav.aifo-nav .dropdown:focus-within > .aifo-nav__dropdown {
|
||||
pointer-events: auto;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__dropdown::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: -12px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 12px;
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__dropdown .dropdown-item {
|
||||
padding: 0;
|
||||
margin: 0 !important;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__dropdown .dropdown-item + .dropdown-item {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
|
||||
/* Figma hover: white row tint + blurred orange ellipse (84×13) behind icon */
|
||||
#nav.aifo-nav .aifo-nav__drop-item {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 8px;
|
||||
color: #fff;
|
||||
font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
line-height: 20px;
|
||||
letter-spacing: -0.16px;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
isolation: isolate;
|
||||
background: transparent;
|
||||
transition: background 0.22s ease;
|
||||
}
|
||||
|
||||
/* Ellipse 13 — left 23px, top -6px inside row; orange #F9A215 @ 40% + heavy blur */
|
||||
#nav.aifo-nav .aifo-nav__drop-item::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 31px;
|
||||
top: 2px;
|
||||
z-index: 0;
|
||||
width: 84px;
|
||||
height: 13px;
|
||||
border-radius: 999px;
|
||||
background: #f9a215;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transform: translateX(-12px) scale(2.8, 5.5);
|
||||
filter: blur(20px);
|
||||
transition: opacity 0.22s ease;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__drop-item::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: 0;
|
||||
border-radius: inherit;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
background:
|
||||
radial-gradient(
|
||||
ellipse 95% 120% at 8% 50%,
|
||||
rgba(249, 135, 21, 0.1) 0%,
|
||||
rgba(249, 135, 21, 0.03) 42%,
|
||||
transparent 68%
|
||||
),
|
||||
var(--aifo-nav-drop-hover);
|
||||
transition: opacity 0.22s ease;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__drop-item > * {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__drop-item:hover,
|
||||
#nav.aifo-nav .aifo-nav__drop-item:focus-visible,
|
||||
#nav.aifo-nav .dropdown-item:hover .aifo-nav__drop-item,
|
||||
#nav.aifo-nav .dropdown-item.active .aifo-nav__drop-item,
|
||||
#nav.aifo-nav .dropdown-item:focus .aifo-nav__drop-item {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__drop-item:hover::before,
|
||||
#nav.aifo-nav .aifo-nav__drop-item:focus-visible::before,
|
||||
#nav.aifo-nav .dropdown-item:hover .aifo-nav__drop-item::before,
|
||||
#nav.aifo-nav .dropdown-item.active .aifo-nav__drop-item::before,
|
||||
#nav.aifo-nav .dropdown-item:focus .aifo-nav__drop-item::before {
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__drop-item:hover::after,
|
||||
#nav.aifo-nav .aifo-nav__drop-item:focus-visible::after,
|
||||
#nav.aifo-nav .dropdown-item:hover .aifo-nav__drop-item::after,
|
||||
#nav.aifo-nav .dropdown-item.active .aifo-nav__drop-item::after,
|
||||
#nav.aifo-nav .dropdown-item:focus .aifo-nav__drop-item::after {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__drop-item:hover .aifo-nav__icon-box,
|
||||
#nav.aifo-nav .aifo-nav__drop-item:focus-visible .aifo-nav__icon-box,
|
||||
#nav.aifo-nav .dropdown-item:hover .aifo-nav__drop-item .aifo-nav__icon-box,
|
||||
#nav.aifo-nav .dropdown-item.active .aifo-nav__drop-item .aifo-nav__icon-box,
|
||||
#nav.aifo-nav .dropdown-item:focus .aifo-nav__drop-item .aifo-nav__icon-box {
|
||||
border-color: var(--aifo-nav-icon-box-border-hover);
|
||||
}
|
||||
|
||||
/* Figma icon container: 38×38, radius 9.5, border 1.188px */
|
||||
#nav.aifo-nav .aifo-nav__icon-box {
|
||||
flex-shrink: 0;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
border-radius: 9.5px;
|
||||
background: #231f20;
|
||||
border: 1.188px solid var(--aifo-nav-icon-box-border);
|
||||
transition: border-color 0.2s ease;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__icon-box .iconfont {
|
||||
font-size: 24px;
|
||||
line-height: 1;
|
||||
color: #f98715;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__icon {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__icon img {
|
||||
display: block;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
/* Lang submenu — match online switch-lang (compact, flag + code) */
|
||||
#nav.aifo-nav .aifo-nav__dropdown--lang .dropdown-item {
|
||||
padding: 1px 0;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__lang-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
padding: 5px 9px;
|
||||
border-radius: 6px;
|
||||
font-size: 1.2rem;
|
||||
font-weight: 300;
|
||||
color: #fff;
|
||||
transition: background 0.2s ease;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__dropdown--lang .dropdown-item:hover .aifo-nav__lang-item {
|
||||
background: rgba(255, 255, 255, 0.08);
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
#nav.aifo-nav .aifo-nav__dropdown--lang .aifo-nav__lang-item {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Right actions */
|
||||
#nav.aifo-nav .aifo-nav__actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__lang .nav-link {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.375rem;
|
||||
color: var(--aifo-nav-text);
|
||||
font-size: 1.2rem;
|
||||
font-weight: 300;
|
||||
padding: 0.5rem 0.25rem;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__actions .fi {
|
||||
display: inline-block;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
line-height: 18px;
|
||||
margin-right: 0;
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
flex-shrink: 0;
|
||||
vertical-align: middle;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .dropdown-menu .dropdown-item:hover {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
#nav.aifo-nav .aifo-nav__lang > .aifo-nav__dropdown {
|
||||
left: 0;
|
||||
right: auto;
|
||||
transform: translateY(0) !important;
|
||||
}
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__divider {
|
||||
display: none;
|
||||
width: 1px;
|
||||
height: 1rem;
|
||||
background: var(--aifo-nav-divider);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
#nav.aifo-nav .aifo-nav__divider {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__login {
|
||||
color: var(--aifo-nav-text);
|
||||
font-size: 1.2rem;
|
||||
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
padding: 0.5rem 0;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__login:hover,
|
||||
#nav.aifo-nav .aifo-nav__login:focus {
|
||||
color: #f98715;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Nav CTA — 42px height to match bar proportions */
|
||||
#nav.aifo-nav .aifo-nav__cta {
|
||||
padding: 0 1.25rem;
|
||||
min-height: 42px;
|
||||
height: 42px;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
border-radius: 8px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Mobile offcanvas */
|
||||
@media (max-width: 991.98px) {
|
||||
#nav.aifo-nav .aifo-nav__menu .nav-link {
|
||||
padding: 0.75rem 0;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__actions {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
width: 100%;
|
||||
margin-top: 1rem;
|
||||
padding-top: 1rem;
|
||||
border-top: 1px solid var(--aifo-nav-divider);
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__divider {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__cta {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__login {
|
||||
display: block;
|
||||
text-align: center;
|
||||
padding: 0.75rem 0;
|
||||
}
|
||||
|
||||
#nav.aifo-nav .aifo-nav__dropdown {
|
||||
position: static !important;
|
||||
float: none;
|
||||
width: 100%;
|
||||
margin-top: 0.25rem;
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
background: rgba(35, 31, 32, 0.95);
|
||||
gap: 8px;
|
||||
padding: 12px;
|
||||
min-width: 0;
|
||||
}
|
||||
}
|
||||
+378
-310
@@ -1,15 +1,17 @@
|
||||
/**
|
||||
* Partnership page — from Figma AIFO V2 (node 11533:26942).
|
||||
* Partnership page — from Figma export (Serena/Partnership).
|
||||
*/
|
||||
#partnership-page {
|
||||
--primary: #f98715;
|
||||
--primary-hover: #f9a215;
|
||||
--bg-page: #070400;
|
||||
--bg-card: #0e0e0e;
|
||||
--border-muted: rgba(152, 151, 149, 0.5);
|
||||
--bg-card: #231f20;
|
||||
--text-main: #f9f9f9;
|
||||
--text-muted: #909090;
|
||||
--aifo-page-bg-height: 805px;
|
||||
--text-secondary: #ccc;
|
||||
--text-muted: #666;
|
||||
--fit-green: #27d449;
|
||||
--not-fit-red: #ee531b;
|
||||
--aifo-page-bg-height: 900px;
|
||||
--aifo-page-content-offset: 1.375rem;
|
||||
background: var(--bg-page);
|
||||
color: var(--text-main);
|
||||
@@ -18,7 +20,7 @@
|
||||
|
||||
@media (max-width: 768px) {
|
||||
#partnership-page {
|
||||
--aifo-page-bg-height: 445px;
|
||||
--aifo-page-bg-height: 520px;
|
||||
--aifo-page-content-offset: 1rem;
|
||||
}
|
||||
}
|
||||
@@ -26,170 +28,214 @@
|
||||
#partnership-page .partnership-page {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
max-width: 1140px;
|
||||
max-width: 1128px;
|
||||
margin: 0 auto;
|
||||
padding: 0 18px 80px;
|
||||
padding: 0 20px 80px;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#partnership-page .partnership-page {
|
||||
padding-left: 32px;
|
||||
padding-right: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
#partnership-page .partnership-page__glow {
|
||||
position: absolute;
|
||||
top: -200px;
|
||||
left: 50%;
|
||||
width: 110%;
|
||||
max-width: 1100px;
|
||||
height: 560px;
|
||||
border-radius: 50%;
|
||||
background: #f9a215;
|
||||
opacity: 0.4;
|
||||
filter: blur(170px);
|
||||
transform: translateX(-50%);
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
#partnership-page .text-orange {
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
/* ── Section title ── */
|
||||
#partnership-page .partnership-section__title {
|
||||
margin: 0 0 40px;
|
||||
text-align: center;
|
||||
font-size: clamp(40px, 5.5vw, 75px);
|
||||
line-height: 1.15;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#partnership-page .partnership-section__title {
|
||||
line-height: 90px;
|
||||
}
|
||||
}
|
||||
|
||||
/* ── Hero ── */
|
||||
#partnership-page .partnership-hero {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 32px;
|
||||
padding: 64px 0 48px;
|
||||
text-align: center;
|
||||
padding: 48px 0 24px;
|
||||
max-width: 760px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#partnership-page .partnership-hero {
|
||||
padding-top: 80px;
|
||||
padding-bottom: 32px;
|
||||
padding-top: 96px;
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
}
|
||||
|
||||
#partnership-page .partnership-hero__title {
|
||||
margin: 0 0 20px;
|
||||
font-size: clamp(36px, 5vw, 60px);
|
||||
line-height: 1.15;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.6px;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-hero__desc {
|
||||
margin: 0 0 32px;
|
||||
max-width: 620px;
|
||||
font-size: clamp(16px, 2.2vw, 20px);
|
||||
line-height: 1.5;
|
||||
font-weight: 500;
|
||||
color: var(--text-main);
|
||||
letter-spacing: -0.2px;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-width: 220px;
|
||||
padding: 15px 40px;
|
||||
border: none;
|
||||
border-radius: 10px;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
color: var(--text-main);
|
||||
background: var(--primary);
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-btn:hover {
|
||||
background: var(--primary-hover);
|
||||
box-shadow: inset 0 5px 10px rgba(249, 135, 21, 0.6), 0 5px 10px rgba(249, 135, 21, 0.6);
|
||||
color: var(--text-main);
|
||||
text-decoration: none;
|
||||
margin: 0;
|
||||
max-width: 720px;
|
||||
font-size: clamp(18px, 2.2vw, 20px);
|
||||
line-height: 1.4;
|
||||
font-weight: 300;
|
||||
letter-spacing: -0.01em;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
/* ── Sections ── */
|
||||
#partnership-page .partnership-section {
|
||||
padding: 56px 0;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 40px;
|
||||
padding: 48px 0;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#partnership-page .partnership-section {
|
||||
padding: 72px 0;
|
||||
padding: 64px 0;
|
||||
gap: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
#partnership-page .partnership-section__title {
|
||||
margin: 0 0 40px;
|
||||
font-size: clamp(32px, 4.5vw, 60px);
|
||||
line-height: 1.2;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.6px;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-section__title--center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* ── Commission tiers ── */
|
||||
#partnership-page .partnership-tiers {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 20px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#partnership-page .partnership-tiers {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier {
|
||||
position: relative;
|
||||
min-height: 220px;
|
||||
padding: 32px 24px;
|
||||
border-radius: 20px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(14, 14, 14, 0.95) 100%);
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
transition: transform 0.25s ease, box-shadow 0.25s ease;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
|
||||
gap: 24px;
|
||||
padding: 32px 24px;
|
||||
border-radius: 20px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
background: var(--bg-page);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier--featured {
|
||||
border-color: rgba(249, 135, 21, 0.45);
|
||||
background: linear-gradient(160deg, #f98715 0%, #c45f08 55%, #8a3f04 100%);
|
||||
box-shadow: 0 16px 48px rgba(249, 135, 21, 0.28);
|
||||
border-color: rgba(255, 255, 255, 0.3);
|
||||
background: linear-gradient(180deg, #f98715 0%, #fa681c 100%);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier__badge {
|
||||
position: absolute;
|
||||
top: 18px;
|
||||
right: 18px;
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
#partnership-page .partnership-tier__head {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier__name {
|
||||
margin: 0;
|
||||
font-size: 26px;
|
||||
line-height: 34px;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.01em;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier__sales {
|
||||
margin: 0;
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
font-weight: 300;
|
||||
letter-spacing: -0.01em;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier--featured .partnership-tier__name,
|
||||
#partnership-page .partnership-tier--featured .partnership-tier__sales,
|
||||
#partnership-page .partnership-tier--featured .partnership-tier__rate,
|
||||
#partnership-page .partnership-tier--featured .partnership-tier__label {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier__icon {
|
||||
width: 68px;
|
||||
height: 68px;
|
||||
flex-shrink: 0;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier__divider {
|
||||
height: 1px;
|
||||
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier__rate-box {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
gap: 8px;
|
||||
padding: 16px;
|
||||
border-radius: 12px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.16);
|
||||
background: var(--bg-card);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier--featured .partnership-tier__rate-box {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.16);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier__rate {
|
||||
margin: 0;
|
||||
font-size: clamp(48px, 8vw, 72px);
|
||||
line-height: 1;
|
||||
font-weight: 800;
|
||||
letter-spacing: -0.04em;
|
||||
font-size: 36px;
|
||||
line-height: 50px;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.01em;
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier__label {
|
||||
margin: 0;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier__meta {
|
||||
margin: 4px 0 0;
|
||||
font-size: 14px;
|
||||
color: var(--text-muted);
|
||||
line-height: 18px;
|
||||
font-weight: 300;
|
||||
letter-spacing: -0.01em;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-tier--featured .partnership-tier__meta {
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
#partnership-page .partnership-tiers__note {
|
||||
margin: 0;
|
||||
max-width: 998px;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
font-weight: 300;
|
||||
letter-spacing: -0.01em;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
/* ── Benefits ── */
|
||||
@@ -197,126 +243,144 @@
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 20px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media (min-width: 640px) {
|
||||
#partnership-page .partnership-benefits {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
#partnership-page .partnership-benefit {
|
||||
padding: 24px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 24px;
|
||||
padding: 16px;
|
||||
border-radius: 20px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||
background: var(--bg-card);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-benefit__visual {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 120px;
|
||||
margin-bottom: 16px;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 220px;
|
||||
overflow: hidden;
|
||||
border-radius: 12px;
|
||||
background: var(--bg-page);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#partnership-page .partnership-benefit__visual {
|
||||
height: 260px;
|
||||
}
|
||||
}
|
||||
|
||||
#partnership-page .partnership-benefit__glow {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 400px;
|
||||
height: 400px;
|
||||
border-radius: 50%;
|
||||
background: var(--primary);
|
||||
opacity: 0.4;
|
||||
filter: blur(70px);
|
||||
transform: translate(-50%, -50%);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-benefit__visual img {
|
||||
display: block;
|
||||
width: auto;
|
||||
height: 96px;
|
||||
max-width: 100%;
|
||||
object-fit: contain;
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-benefit__title {
|
||||
margin: 0 0 10px;
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-benefit__desc {
|
||||
margin: 0;
|
||||
#partnership-page .partnership-benefit__label {
|
||||
margin: 0 0 16px;
|
||||
padding: 0 8px;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
line-height: 1.55;
|
||||
color: var(--text-muted);
|
||||
line-height: 20px;
|
||||
font-weight: 500;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
/* ── How it works ── */
|
||||
#partnership-page .partnership-steps {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 16px;
|
||||
gap: 20px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
@media (min-width: 640px) {
|
||||
#partnership-page .partnership-steps {
|
||||
grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
|
||||
align-items: stretch;
|
||||
gap: 12px;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
#partnership-page .partnership-steps {
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
#partnership-page .partnership-step {
|
||||
padding: 24px 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 40px;
|
||||
padding: 24px;
|
||||
border-radius: 20px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
background: rgba(14, 14, 14, 0.92);
|
||||
text-align: center;
|
||||
border: 1px solid rgba(255, 255, 255, 0.16);
|
||||
background: var(--bg-card);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-step__icon {
|
||||
#partnership-page .partnership-step__top {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-step__num {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
margin-bottom: 16px;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-radius: 50%;
|
||||
background: rgba(249, 135, 21, 0.15);
|
||||
color: var(--primary);
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-step__glyph {
|
||||
font-size: 24px;
|
||||
font-weight: 800;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-step__title {
|
||||
margin: 0 0 8px;
|
||||
font-size: 20px;
|
||||
background: var(--primary);
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-step__desc {
|
||||
margin: 0;
|
||||
font-size: 15px;
|
||||
line-height: 1.5;
|
||||
#partnership-page .partnership-step__tag {
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
font-weight: 500;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-steps__arrow {
|
||||
display: none;
|
||||
align-self: center;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border-radius: 50%;
|
||||
background: rgba(255, 255, 255, 0.08);
|
||||
color: var(--text-main);
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
text-align: center;
|
||||
#partnership-page .partnership-step__title {
|
||||
margin: 0;
|
||||
font-size: 20px;
|
||||
line-height: 24px;
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
#partnership-page .partnership-steps__arrow {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
#partnership-page .partnership-step__desc {
|
||||
margin: 8px 0 0;
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
font-weight: 300;
|
||||
letter-spacing: -0.01em;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
/* ── Audience ── */
|
||||
@@ -324,141 +388,168 @@
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 20px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#partnership-page .partnership-audience {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card {
|
||||
padding: 28px 24px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 24px;
|
||||
padding: 24px;
|
||||
border-radius: 20px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border: 1px solid rgba(255, 255, 255, 0.16);
|
||||
background: var(--bg-card);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card__label {
|
||||
margin: 0 0 20px;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card--fit .partnership-audience-card__label {
|
||||
color: #3dd68c;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card--not-fit .partnership-audience-card__label {
|
||||
color: #ff6b4a;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card__visual {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 12px;
|
||||
min-height: 88px;
|
||||
margin-bottom: 20px;
|
||||
padding: 16px;
|
||||
border-radius: 16px;
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 220px;
|
||||
overflow: hidden;
|
||||
border-radius: 12px;
|
||||
background: var(--bg-page);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card__visual--warn {
|
||||
background: rgba(255, 107, 74, 0.08);
|
||||
@media (min-width: 768px) {
|
||||
#partnership-page .partnership-audience-card__visual {
|
||||
height: 251px;
|
||||
}
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card__warn-icon {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
border-radius: 50%;
|
||||
background: rgba(255, 107, 74, 0.18);
|
||||
color: #ff6b4a;
|
||||
font-size: 28px;
|
||||
font-weight: 700;
|
||||
#partnership-page .partnership-audience-card__visual img {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card__label {
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
line-height: 24px;
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card__label--fit {
|
||||
color: var(--fit-green);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card__label--not-fit {
|
||||
color: var(--not-fit-red);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card__list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card__list li {
|
||||
position: relative;
|
||||
padding-left: 28px;
|
||||
margin-bottom: 12px;
|
||||
padding-left: 24px;
|
||||
font-size: 16px;
|
||||
line-height: 1.45;
|
||||
color: var(--text-main);
|
||||
line-height: 20px;
|
||||
font-weight: 500;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card__list li:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card--fit .partnership-audience-card__list li::before {
|
||||
#partnership-page .partnership-audience-card__list li::before {
|
||||
content: "✓";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: #3dd68c;
|
||||
color: var(--fit-green);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-audience-card--not-fit .partnership-audience-card__list li::before {
|
||||
#partnership-page .partnership-audience-card__list--not-fit li::before {
|
||||
content: "✕";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: #ff6b4a;
|
||||
font-weight: 700;
|
||||
color: var(--not-fit-red);
|
||||
}
|
||||
|
||||
/* ── Payment methods module spacing ── */
|
||||
/* ── Payment methods module ── */
|
||||
#partnership-page #payment-methods-container {
|
||||
margin-top: 8px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#partnership-page #payment-methods-container .pm2-section {
|
||||
padding-top: 56px;
|
||||
padding-bottom: 56px;
|
||||
padding-top: 48px;
|
||||
padding-bottom: 48px;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
#partnership-page #payment-methods-container .pm2-section {
|
||||
padding-top: 72px;
|
||||
padding-bottom: 72px;
|
||||
padding-top: 64px;
|
||||
padding-bottom: 64px;
|
||||
}
|
||||
}
|
||||
|
||||
/* ── FAQ ── */
|
||||
#partnership-page .partnership-section--faq .partnership-faq {
|
||||
max-width: 820px;
|
||||
margin: 0 auto;
|
||||
#partnership-page .partnership-section--faq {
|
||||
overflow: hidden;
|
||||
padding-top: 80px;
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-section--faq .faq-item {
|
||||
margin-bottom: 12px;
|
||||
border-radius: 14px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
background: rgba(14, 14, 14, 0.85);
|
||||
@media (min-width: 1024px) {
|
||||
#partnership-page .partnership-section--faq {
|
||||
padding-top: 120px;
|
||||
padding-bottom: 120px;
|
||||
}
|
||||
}
|
||||
|
||||
#partnership-page .partnership-faq__glow {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 160%;
|
||||
max-width: 1961px;
|
||||
height: 600px;
|
||||
border-radius: 50%;
|
||||
background: #f9a215;
|
||||
opacity: 0.3;
|
||||
filter: blur(180px);
|
||||
transform: translate(-50%, -50%);
|
||||
pointer-events: none;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-faq {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
max-width: 650px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-faq__item {
|
||||
border-radius: 10px;
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-section--faq .faq-header {
|
||||
width: 100%;
|
||||
#partnership-page .partnership-faq__header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
padding: 20px 24px;
|
||||
width: 100%;
|
||||
padding: 24px;
|
||||
border: none;
|
||||
background: transparent;
|
||||
color: var(--text-main);
|
||||
@@ -466,79 +557,56 @@
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-section--faq .faq-question {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
#partnership-page .partnership-faq__question {
|
||||
font-size: clamp(16px, 2vw, 20px);
|
||||
letter-spacing: -0.01em;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-section--faq .faq-icon-box {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border-radius: 8px;
|
||||
background: var(--primary);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
#partnership-page .partnership-faq__toggle {
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
transition: transform 0.25s ease;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-section--faq .faq-icon {
|
||||
color: #fff;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
line-height: 1;
|
||||
#partnership-page .partnership-faq__toggle::before,
|
||||
#partnership-page .partnership-faq__toggle::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 14px;
|
||||
height: 2px;
|
||||
background: #fff;
|
||||
transform: translate(-50%, -50%);
|
||||
transition: opacity 0.2s ease;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-section--faq .faq-item.active .faq-icon-box {
|
||||
transform: rotate(45deg);
|
||||
#partnership-page .partnership-faq__toggle::after {
|
||||
transform: translate(-50%, -50%) rotate(90deg);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-section--faq .faq-body {
|
||||
#partnership-page .partnership-faq__item.is-open .partnership-faq__toggle::after {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-faq__body {
|
||||
max-height: 0;
|
||||
overflow: hidden;
|
||||
opacity: 0;
|
||||
transition: max-height 0.25s ease, opacity 0.25s ease;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-section--faq .faq-item.active .faq-body {
|
||||
max-height: 320px;
|
||||
#partnership-page .partnership-faq__item.is-open .partnership-faq__body {
|
||||
max-height: 240px;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-section--faq .faq-answer {
|
||||
padding: 0 24px 20px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.06);
|
||||
}
|
||||
|
||||
#partnership-page .partnership-section--faq .faq-answer p {
|
||||
margin: 12px 0 0;
|
||||
font-size: 16px;
|
||||
line-height: 1.6;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* ── CTA ── */
|
||||
#partnership-page .partnership-cta {
|
||||
margin-top: 24px;
|
||||
padding: 48px 24px;
|
||||
border-radius: 24px;
|
||||
border: 1px solid rgba(249, 135, 21, 0.25);
|
||||
background: linear-gradient(135deg, rgba(249, 135, 21, 0.12) 0%, rgba(14, 14, 14, 0.95) 100%);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-cta__title {
|
||||
margin: 0 0 12px;
|
||||
font-size: clamp(28px, 4vw, 44px);
|
||||
line-height: 1.2;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
#partnership-page .partnership-cta__desc {
|
||||
margin: 0 0 28px;
|
||||
font-size: 18px;
|
||||
line-height: 1.5;
|
||||
color: var(--text-muted);
|
||||
#partnership-page .partnership-faq__body p {
|
||||
margin: 0;
|
||||
padding: 0 24px 24px;
|
||||
font-size: 15px;
|
||||
line-height: 22px;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user