@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--yellow: #FFEA2D;
--yellow-dark: #D4AB25;
--black: #000000;
--dark: #1d1d1f;
--dark-mid: #2d2d2f;
--gray: #6e6e73;
--gray-light: #a1a1a6;
--border: #d2d2d7;
--border-dark: #424245;
--bg: #FFFFFF;
--bg-soft: #f5f5f7;
--text: #1d1d1f;
--text-secondary: #6e6e73;
--radius: 18px;
--radius-sm: 12px;
--radius-lg: 28px;
--shadow: 0 2px 20px rgba(0,0,0,.08);
--shadow-lg: 0 20px 60px rgba(0,0,0,.15);
--nav-height: 48px;
--max-w: 1200px;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
font-size: 16px;
line-height: 1.6;
color: var(--text);
background: var(--bg);
-webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
.display { font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 800; line-height: 1.08; letter-spacing: -.04em; }
.h1 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; }
.h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
.h3 { font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 600; line-height: 1.3; letter-spacing: -.01em; }
.body-lg { font-size: 1.2rem; line-height: 1.65; }
.body { font-size: 1rem; line-height: 1.65; }
.caption { font-size: .875rem; line-height: 1.5; color: var(--gray); }
.label { font-size: .8rem; font-weight: 500; letter-spacing: .02em; color: var(--gray); }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 140px 0; }
.section-sm { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }
.btn {
display: inline-flex; align-items: center; gap: 8px;
padding: 14px 28px; border-radius: 100px;
font-size: 15px; font-weight: 600; line-height: 1;
transition: all .18s ease; white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(240,201,58,.35); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--dark-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.btn-outline { border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--text); background: var(--bg-soft); }
.btn-outline-dark { border: 1.5px solid var(--border-dark); color: #fff; }
.btn-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
height: var(--nav-height); background: rgba(255,255,255,.72);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
border-bottom: 1px solid rgba(0,0,0,.08);
transition: background .2s;
}
.nav.dark {
background: rgba(0,0,0,.72);
border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
height: 100%; display: flex; align-items: center; justify-content: space-between;
max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
display: flex; align-items: center; gap: 10px;
font-weight: 700; font-size: 18px;
}
.nav-logo-icon {
width: 34px; height: 34px; background: var(--yellow); border-radius: 9px;
display: flex; align-items: center; justify-content: center;
}
.nav.dark .nav-logo { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--text-secondary); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav.dark .nav-links a { color: rgba(255,255,255,.6); }
.nav.dark .nav-links a:hover, .nav.dark .nav-links a.active { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }
.nav.dark .nav-hamburger span { background: #fff; }
.nav.dark .lang-btn { color: #fff; border-color: rgba(255,255,255,.25); }
.nav.dark .lang-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }
.mobile-menu {
display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
background: var(--bg); z-index: 99; padding: 32px 24px;
flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 20px; font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu .mobile-cta { margin-top: 16px; display: flex; justify-content: center; text-align: center; }
.mobile-lang-mode .lang-btn { display: none; }
.mobile-lang-mode .lang-menu {
position: static; opacity: 1; visibility: visible; transform: none;
box-shadow: none; border: none; border-top: 1px solid var(--border);
border-radius: 0; background: transparent;
padding: 12px 0 16px; display: flex; flex-wrap: wrap; gap: 8px; min-width: 0;
}
.mobile-lang-mode .lang-option { background: var(--bg-soft); border-radius: 100px; padding: 6px 14px; font-size: 13px; }
.mobile-lang-mode .lang-option.lang-active { background: var(--yellow); color: var(--black); font-weight: 700; }
.hero { padding-top: calc(var(--nav-height) + 100px); padding-bottom: 100px; background: var(--bg); overflow: hidden; }
.hero-dark {
background: var(--bg-soft);
padding-top: calc(var(--nav-height) + 72px);
padding-bottom: 0;
overflow: hidden;
text-align: center;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.hero-dark-text {
padding: 0 24px 56px;
max-width: 860px;
margin: 0 auto;
}
.hero-dark-headline {
font-size: clamp(2.2rem, 4.2vw, 3.8rem);
font-weight: 800;
line-height: 1.1;
letter-spacing: -.02em;
color: var(--text);
margin-bottom: 18px;
}
.hero-dark-sub {
font-size: 1.05rem;
line-height: 1.65;
color: var(--text-secondary);
margin-bottom: 36px;
max-width: 680px;
margin-left: auto;
margin-right: auto;
}
.btn-hero-download {
display: inline-flex; align-items: center; gap: 10px;
background: #000; color: #fff;
font-weight: 700; font-size: .95rem;
padding: 15px 28px; border-radius: 100px;
text-decoration: none; transition: opacity .2s;
}
.btn-hero-download:hover { opacity: .78; }
.hero-phones-trio {
display: flex;
justify-content: center;
align-items: flex-end;
flex: 1;
position: relative;
padding-bottom: 0;
}
.iphone { flex-shrink: 0; position: relative; }
.iphone-frame {
position: relative;
background: #161616;
border-radius: 60px;
padding: 12px;
box-shadow:
0 0 0 1px rgba(255,255,255,.09),
0 80px 160px rgba(0,0,0,.8),
0 24px 48px rgba(0,0,0,.5);
}
.iphone-btn { position: absolute; background: #282828; border-radius: 3px; }
.iphone-btn-vol-up  { left: -3px; top: 120px; width: 3px; height: 40px; }
.iphone-btn-vol-dn  { left: -3px; top: 172px; width: 3px; height: 40px; }
.iphone-btn-power   { right: -3px; top: 145px; width: 3px; height: 76px; }
.iphone-screen {
position: relative;
background: #0d0d0d;
border-radius: 50px;
overflow: hidden;
aspect-ratio: 9 / 19.5;
}
.iphone-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.iphone-dynamic-island {
position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
width: 126px; height: 35px;
background: #000; border-radius: 22px; z-index: 10;
}
.iphone-center {
z-index: 3;
margin-bottom: -120px;
}
.iphone-center .iphone-frame { width: 340px; }
.iphone-center .iphone-screen { border-radius: 50px; }
.iphone-side .iphone-frame { width: 260px; }
.iphone-side .iphone-screen { border-radius: 42px; }
.iphone-side .iphone-dynamic-island { width: 104px; height: 29px; top: 11px; }
.iphone-side .iphone-btn-vol-up  { top: 95px; height: 32px; }
.iphone-side .iphone-btn-vol-dn  { top: 138px; height: 32px; }
.iphone-side .iphone-btn-power   { top: 115px; height: 62px; }
.iphone-left {
z-index: 2;
transform: rotate(-10deg) translateX(56px) translateY(80px);
}
.iphone-right {
z-index: 2;
transform: rotate(10deg) translateX(-56px) translateY(80px);
}
@media (max-width: 860px) {
.iphone-center .iphone-frame { width: 270px; }
.iphone-side .iphone-frame { width: 210px; }
.iphone-left { transform: rotate(-10deg) translateX(40px) translateY(70px); }
.iphone-right { transform: rotate(10deg) translateX(-40px) translateY(70px); }
}
@media (max-width: 600px) {
.iphone-side { display: none; }
.iphone-center .iphone-frame { width: 240px; }
.iphone-center { margin-bottom: -80px; }
}
@media (max-width: 380px) {
.iphone-center .iphone-frame { width: 200px; }
}
.store-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.store-badge {
display: inline-flex; align-items: center; gap: 10px;
background: var(--black); color: #fff; border-radius: 12px;
padding: 10px 18px; transition: all .18s;
}
.store-badge:hover { background: var(--dark-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.store-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; }
.store-badge-text .small { font-size: 10px; opacity: .7; line-height: 1; }
.store-badge-text .big { font-size: 15px; font-weight: 700; line-height: 1.3; }
.section-header { max-width: 700px; margin: 0 auto 80px; text-align: center; }
.testimonials-dark { background: var(--bg-soft) !important; }
.testimonials-dark .pfeat-formats-cards { grid-template-columns: repeat(3, 1fr); }
.testimonials-dark .section-header { text-align: left; margin: 0 0 64px; }
.testimonials-big-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 700;
line-height: 1.08;
letter-spacing: -.04em;
color: rgba(0,0,0,.3);
text-align: left;
}
.testimonials-big-headline strong {
color: var(--text);
font-weight: 800;
}
.section-header .label { margin-bottom: 16px; }
.section-header .h2 { margin-bottom: 20px; }
.section-header .body-lg { color: var(--text-secondary); font-size: 1.2rem; line-height: 1.6; }
.feature-card {
background: var(--bg-soft); border: 1px solid var(--border);
border-radius: var(--radius-lg); padding: 32px; transition: all .2s;
}
.feature-card:hover { border-color: var(--yellow); box-shadow: 0 8px 32px rgba(240,201,58,.12); transform: translateY(-2px); }
.feature-icon { width: 48px; height: 48px; background: var(--yellow); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { width: 24px; height: 24px; }
.feature-card .h3 { margin-bottom: 8px; }
.feature-card .body { color: var(--text-secondary); }
.features-split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 96px;
align-items: start;
}
.features-split-heading .h2 {
margin-bottom: 20px;
line-height: 1.08;
}
.features-split-heading .body-lg {
color: var(--text-secondary);
}
.features-split-list {
display: flex;
flex-direction: column;
}
.features-split-item {
padding: 28px 0;
border-bottom: 1px solid var(--border);
}
.features-split-item:first-child {
border-top: 1px solid var(--border);
padding-top: 28px;
}
.features-split-item h3 {
font-size: 1.15rem;
font-weight: 600;
letter-spacing: -.015em;
color: var(--text);
margin-bottom: 6px;
}
.features-split-item p {
font-size: .975rem;
line-height: 1.65;
color: var(--text-secondary);
margin: 0;
}
@media (max-width: 768px) {
.features-split { grid-template-columns: 1fr; gap: 48px; }
}
.features-editorial {
display: grid;
grid-template-columns: repeat(3, 1fr);
}
.feature-editorial-col {
padding: 48px 56px 0 0;
border-top: 1px solid var(--text);
}
.feature-editorial-col + .feature-editorial-col {
padding-left: 56px;
border-left: 1px solid var(--border);
}
.feature-editorial-num {
display: block;
font-size: 11px;
font-weight: 500;
letter-spacing: .06em;
color: var(--gray-light);
margin-bottom: 32px;
}
.feature-editorial-col .h3 {
margin-bottom: 14px;
font-size: 1.3rem;
letter-spacing: -.02em;
}
.feature-editorial-col .body { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.6; }
@media (max-width: 768px) {
.features-editorial { grid-template-columns: 1fr; }
.feature-editorial-col { padding: 36px 0 0; border-left: none !important; }
.feature-editorial-col + .feature-editorial-col { margin-top: 36px; }
}
.feature-card-dark {
background: var(--dark-mid); border: 1px solid var(--border-dark);
border-radius: var(--radius-lg); padding: 32px; transition: all .2s;
}
.feature-card-dark:hover { border-color: var(--yellow); }
.feature-card-dark .h3 { color: #fff; margin-bottom: 8px; }
.feature-card-dark .body { color: rgba(255,255,255,.55); }
.feature-card-dark .feature-icon { background: rgba(240,201,58,.15); }
.feature-card-dark .feature-icon svg { color: var(--yellow); }
.section-dark { background: #000000; color: #fff; padding-top: 100px; }
.section-dark .section-header .h2 { color: #fff; }
.section-dark .section-header .body-lg { color: rgba(255,255,255,.6); }
.section-dark .label { color: rgba(255,255,255,.4); }
.marquee-wrap { overflow: hidden; padding: 48px 0 28px; background: var(--bg-soft); }
.marquee-track { display: flex; gap: 72px; animation: marquee 20s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--gray-light); white-space: nowrap; }
.marquee-item svg { width: 18px; height: 18px; opacity: .4; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.stats-block-section { background: #000; padding: 0 0 72px; }
.stats-block {
display: grid;
grid-template-columns: repeat(3, 1fr) 0.7fr;
background: #111;
border-radius: 24px;
border: 1px solid rgba(255,255,255,.07);
overflow: hidden;
}
.stats-block-item {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 28px 32px 36px;
min-height: 260px;
}
.stats-block-item + .stats-block-item {
border-left: 1px solid rgba(255,255,255,.07);
}
.stats-block-dot {
display: block;
width: 9px; height: 9px;
border-radius: 50%;
background: rgba(255,255,255,.3);
align-self: flex-end;
}
.stats-block-body {}
.stats-block-number {
font-size: clamp(2.4rem, 4vw, 3.6rem);
font-weight: 800;
letter-spacing: -.05em;
color: #fff;
line-height: 1;
margin-bottom: 10px;
}
.stats-block-number span {
color: rgba(255,255,255,.35);
font-weight: 700;
font-size: .75em;
letter-spacing: 0;
}
.stats-block-label {
font-size: 12.5px;
color: rgba(255,255,255,.35);
line-height: 1.5;
max-width: 150px;
}
@media (max-width: 700px) {
.stats-block { grid-template-columns: 1fr 1fr; }
.stats-block-item:nth-child(3) { border-left: none; border-top: 1px solid rgba(255,255,255,.07); }
.stats-block-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); }
}
@media (max-width: 420px) {
.stats-block { grid-template-columns: 1fr; }
.stats-block-item + .stats-block-item { border-left: none; border-top: 1px solid rgba(255,255,255,.07); }
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat-item { background: var(--bg); padding: 40px 32px; text-align: center; }
.stat-item .number { font-size: 2.8rem; font-weight: 800; letter-spacing: -.03em; color: var(--black); line-height: 1; margin-bottom: 6px; }
.stat-item .number span { color: var(--yellow); }
.stat-item .stat-label { font-size: .875rem; color: var(--text-secondary); font-weight: 500; }
.screenshot-scroll { display: flex; gap: 20px; overflow-x: auto; padding: 20px 4px 40px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.screenshot-scroll::-webkit-scrollbar { height: 4px; }
.screenshot-scroll::-webkit-scrollbar-track { background: transparent; }
.screenshot-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.screenshot-frame { flex-shrink: 0; width: 220px; scroll-snap-align: start; }
.screenshot-frame .phone-mockup { width: 100%; }
.testimonials-apple-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.testimonial-apple-card {
background: #fff;
border-radius: 24px;
padding: 40px 36px;
display: flex;
flex-direction: column;
box-shadow: none;
}
.testimonial-apple-stars {
color: var(--yellow);
font-size: 14px;
letter-spacing: 2px;
margin-bottom: 20px;
}
.testimonial-apple-card blockquote {
font-size: 1.05rem;
line-height: 1.7;
color: var(--text);
flex: 1;
margin-bottom: 32px;
}
.testimonial-apple-author {
display: flex;
align-items: center;
gap: 12px;
}
.testimonial-apple-avatar {
display: none;
width: 40px;
height: 40px;
border-radius: 50%;
flex-shrink: 0;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 14px;
color: var(--black);
}
.testimonial-apple-name {
font-weight: 600;
font-size: 14px;
color: var(--text);
}
.testimonial-apple-role {
font-size: 12px;
color: var(--gray);
margin-top: 3px;
}
@media (max-width: 768px) {
.testimonials-apple-grid { grid-template-columns: 1fr; }
}
.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.testimonial-card .stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testimonial-card .stars span { color: var(--yellow); font-size: 15px; }
.testimonial-card blockquote { font-size: 15px; line-height: 1.65; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-soft); border: 1px solid var(--border); flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--gray); }
.testimonial-author .name { font-weight: 600; font-size: 14px; }
.testimonial-author .role { font-size: 12px; color: var(--gray); }
.testimonials-editorial {
display: grid;
grid-template-columns: 3fr 2fr;
gap: 0;
border-top: 1px solid var(--border);
}
.testimonial-editorial-main {
padding: 64px 64px 64px 0;
border-right: 1px solid var(--border);
display: flex;
flex-direction: column;
}
.testimonial-editorial-quote {
font-size: 96px;
line-height: .75;
color: var(--yellow);
font-weight: 800;
margin-bottom: 24px;
font-family: Georgia, serif;
}
.testimonial-editorial-main blockquote {
font-size: 1.4rem;
line-height: 1.6;
color: var(--text);
font-style: italic;
font-weight: 400;
flex: 1;
margin-bottom: 40px;
letter-spacing: -.01em;
}
.testimonial-editorial-author {
display: flex;
align-items: center;
gap: 14px;
}
.testimonial-editorial-avatar {
width: 44px;
height: 44px;
border-radius: 50%;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 15px;
color: var(--black);
}
.testimonial-editorial-name { font-weight: 600; font-size: 15px; color: var(--text); }
.testimonial-editorial-role { font-size: 13px; color: var(--gray); margin-top: 3px; }
.testimonials-editorial-stack {
display: flex;
flex-direction: column;
}
.testimonial-editorial-item {
padding: 48px 0 48px 56px;
flex: 1;
display: flex;
flex-direction: column;
}
.testimonial-editorial-item + .testimonial-editorial-item {
border-top: 1px solid var(--border);
}
.testimonial-editorial-stars {
color: var(--yellow);
font-size: 12px;
letter-spacing: 2px;
margin-bottom: 20px;
}
.testimonial-editorial-item blockquote {
font-size: 1rem;
line-height: 1.7;
color: var(--text);
font-style: italic;
flex: 1;
margin-bottom: 28px;
}
@media (max-width: 768px) {
.testimonials-editorial { grid-template-columns: 1fr; border-top: none; }
.testimonial-editorial-main { padding: 40px 0; border-right: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonial-editorial-main blockquote { font-size: 1.15rem; }
.testimonial-editorial-item { padding: 36px 0; }
}
.cta-banner {
background: #000000; border-radius: var(--radius-lg);
padding: 72px 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px;
position: relative; overflow: hidden;
}
.cta-banner::before {
content: ''; position: absolute; top: -80px; right: -80px;
width: 360px; height: 360px; border-radius: 50%;
background: radial-gradient(circle, rgba(255,234,45,.12) 0%, transparent 70%);
}
.cta-banner::after {
content: ''; position: absolute; bottom: -100px; left: 20%;
width: 300px; height: 300px; border-radius: 50%;
background: radial-gradient(circle, rgba(255,234,45,.06) 0%, transparent 70%);
}
.cta-banner-text .h2 { color: #fff; margin-bottom: 12px; }
.cta-banner-text p { color: rgba(255,255,255,.55); font-size: 17px; line-height: 1.5; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; position: relative; z-index: 1; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: none; border: none; }
.faq-question {
width: 100%; text-align: left; padding: 24px 28px; display: flex; align-items: center;
justify-content: space-between; gap: 16px; font-size: 16px; font-weight: 700;
color: var(--text); background: none; border: none; cursor: pointer;
transition: color .15s;
}
.faq-question:hover { color: var(--text-secondary); }
.faq-icon { width: 30px; height: 30px; border-radius: 50%; background: #e8e8e8; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; position: relative; }
.faq-icon::before,
.faq-icon::after { content: ''; position: absolute; background: #555; border-radius: 2px; transition: opacity .35s ease, transform .35s ease; }
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-answer { height: 0; overflow: hidden; transition: height .45s cubic-bezier(0.4, 0, 0.2, 1), opacity .4s ease; opacity: 0; }
.faq-answer-inner { padding: 0 28px 24px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-answer { opacity: 1; }
.stories-section { background: #000; padding: 100px 0; }
.stories-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: center; }
.stories-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.stories-headline { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -.035em; color: #fff; margin-bottom: 16px; }
.stories-sub { font-size: .95rem; line-height: 1.6; color: rgba(255,255,255,.45); margin-bottom: 32px; }
.stories-btn { display: inline-block; padding: 11px 22px; border: 1px solid rgba(255,255,255,.25); border-radius: 100px; font-size: 14px; font-weight: 600; color: #fff; text-decoration: none; transition: border-color .2s, background .2s; }
.stories-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.45); }
.stories-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stories-card { display: block; text-decoration: none; color: inherit; transition: opacity .2s; }
.stories-card:hover { opacity: .8; }
.stories-card-img { aspect-ratio: 16/9; width: 100%; display: block; clip-path: inset(0 round 14px); }
.stories-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stories-card-img svg { width: 100%; height: 100%; display: block; }
.stories-card-body { padding-top: 16px; }
.stories-card-meta { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 8px; display: flex; gap: 8px; }
.stories-card-meta span::before { content: '·'; margin-right: 8px; opacity: .5; }
.stories-card-title { font-size: 1.05rem; font-weight: 700; line-height: 1.3; letter-spacing: -.02em; color: #fff; }
@media (max-width: 860px) { .stories-layout { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 540px) { .stories-cards { grid-template-columns: 1fr; } }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); border: 1px solid var(--border); transition: all .2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card-img { aspect-ratio: 16/9; background: var(--bg-soft); position: relative; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.blog-card-body { padding: 24px; }
.blog-tag { display: inline-block; width: fit-content; padding: 4px 12px; background: var(--yellow); border-radius: 100px; font-size: 12px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.blog-card-body .h3 { margin-bottom: 8px; font-size: 1.1rem; }
.blog-card-body .body { color: var(--text-secondary); font-size: 14px; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); }
.blog-meta .sep { opacity: .4; }
.blog-post { max-width: 720px; margin: 0 auto; }
.blog-post-header { margin-bottom: 40px; }
.blog-post-header .display { margin-bottom: 20px; }
.blog-post-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.blog-post-cover { aspect-ratio: 16/9; background: var(--bg-soft); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 48px; }
.blog-post-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-cover-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.prose h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 16px; }
.prose h3 { font-size: 1.2rem; font-weight: 600; margin: 32px 0 12px; }
.prose p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 20px; color: var(--text-secondary); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; line-height: 1.7; }
.prose strong { color: var(--text); font-weight: 600; }
.prose blockquote { border-left: 3px solid var(--yellow); padding-left: 20px; margin: 32px 0; color: var(--text-secondary); font-style: italic; }
.prose a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--yellow-dark); }
.support-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.support-cat-card { background: var(--bg-soft); border: 1px solid transparent; border-radius: var(--radius-lg); padding: 28px 28px 32px; transition: border-color .18s, box-shadow .18s; cursor: pointer; }
.support-cat-card:hover { border-color: var(--border); box-shadow: var(--shadow); }
.support-cat-card .icon { width: 44px; height: 44px; border-radius: 11px; border: 1.5px solid var(--border); background: transparent; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.support-cat-card .icon svg { width: 20px; height: 20px; }
.support-cat-card .h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.support-cat-card .caption { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.contact-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; display: flex; gap: 20px; align-items: flex-start; }
.contact-card .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--yellow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card .h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; }
.footer { background: var(--black); color: rgba(255,255,255,.55); padding: 72px 0 112px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand .nav-logo { margin-bottom: 16px; color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; transition: color .15s; }
.footer-col ul li a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { border-top: 1px solid var(--border-dark); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.footer-social-link:hover { background: rgba(255,255,255,.15); }
.footer-social-link svg { width: 16px; height: 16px; color: rgba(255,255,255,.7); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray); padding: calc(var(--nav-height) + 24px) 0 0; }
.breadcrumb a { transition: color .15s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .current { color: var(--text); font-weight: 500; }
.page-header { padding: calc(var(--nav-height) + 64px) 0 64px; background: linear-gradient(to bottom, var(--bg-soft) 0%, #ffffff 100%); }
.page-header .display { margin-bottom: 16px; }
.page-header .body-lg { color: var(--text-secondary); max-width: 560px; }
.chip { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 500; background: var(--bg-soft); border: 1px solid var(--border); color: var(--text-secondary); transition: all .15s; cursor: pointer; }
.chip:hover, .chip.active { background: var(--black); color: #fff; border-color: var(--black); }
.divider { width: 100%; height: 1px; background: var(--border); margin: 0; }
.divider-dark { background: var(--border-dark); }
.notif-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); }
.notif-card .icon { width: 36px; height: 36px; border-radius: 10px; background: var(--yellow); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.notif-card .icon svg { width: 18px; height: 18px; }
.notif-card .title { font-size: 13px; font-weight: 600; }
.notif-card .sub { font-size: 12px; color: var(--gray); }
.float-card {
background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
padding: 16px 20px; box-shadow: var(--shadow-lg); position: absolute;
}
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--text-secondary); }
.text-white { color: #fff; }
.text-white-60 { color: rgba(255,255,255,.6); }
.bg-yellow { background: var(--yellow); }
.bg-dark { background: var(--dark); }
.custom-app-banner {
background: var(--black); color: #fff;
padding: 12px 16px;
padding-bottom: calc(12px + env(safe-area-inset-bottom));
display: flex; align-items: center; gap: 12px;
position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
border-top: 1px solid var(--border-dark); transform: translateY(0);
transition: transform .3s ease; box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
.custom-app-banner.hidden { transform: translateY(100%); }
.custom-app-banner .icon { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; overflow: hidden; }
.custom-app-banner .icon img { width: 42px; height: 42px; display: block; border-radius: 10px; }
.custom-app-banner .text { flex: 1; min-width: 0; }
.custom-app-banner .text .app-name { font-size: 14px; font-weight: 700; }
.custom-app-banner .text .app-sub { font-size: 12px; color: rgba(255,255,255,.55); }
.custom-app-banner .banner-btn { background: var(--yellow); color: var(--black); padding: 8px 18px; border-radius: 100px; font-size: 14px; font-weight: 700; white-space: nowrap; transition: all .15s; }
.custom-app-banner .banner-btn:hover { background: var(--yellow-dark); }
.custom-app-banner .banner-close { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; opacity: .5; transition: opacity .15s; flex-shrink: 0; }
.custom-app-banner .banner-close:hover { opacity: 1; }
.custom-app-banner .banner-close svg { width: 14px; height: 14px; }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.w-full { width: 100%; }
.placeholder-hero { background: linear-gradient(135deg, #f5f0e8 0%, #ede5d0 100%); }
.placeholder-dark { background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%); }
.placeholder-yellow { background: linear-gradient(135deg, #f0c93a 0%, #e0b52a 100%); }
.placeholder-blue { background: linear-gradient(135deg, #e8f0fe 0%, #d0e0f8 100%); }
.placeholder-pink { background: linear-gradient(135deg, #fce8f0 0%, #f8d0e0 100%); }
.placeholder-green { background: linear-gradient(135deg, #e8f8ee 0%, #d0f0dc 100%); }
.pfeat-eyebrow {
display: block;
font-size: 11px;
font-weight: 700;
letter-spacing: .1em;
text-transform: uppercase;
color: var(--gray-light);
margin-bottom: 16px;
}
.real-phone {
position: relative;
display: inline-block;
flex-shrink: 0;
}
.real-phone-frame-img {
width: 100%;
display: block;
position: relative;
z-index: 2;
pointer-events: none;
filter: drop-shadow(0 32px 80px rgba(0,0,0,.18)) drop-shadow(0 8px 24px rgba(0,0,0,.1));
}
.real-phone-screen {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
z-index: 1;
background: #000;
}
.real-phone-screen img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.hero-app-image {
width: 100%;
max-width: 980px;
margin: 0 auto;
display: block;
padding: 0 16px;
}
@media (max-width: 768px) {
.hero-app-image { max-width: 600px; }
}
.pfeat-cinema {
background: #000;
padding: 100px 0 90px;
overflow: hidden;
}
.pfeat-cinema-wrap {
max-width: 960px;
margin: 0 auto;
padding: 0 24px;
}
.pfeat-cinema-card {
width: 75%;
margin-left: auto;
margin-right: auto;
border-radius: 22px;
overflow: hidden;
background: #111;
aspect-ratio: auto;
margin-top: 36px;
position: relative;
}
.pfeat-cinema-card img {
width: 100%; height: 100%;
object-fit: cover; display: block;
}
.pfeat-cinema-video {
width: 100%; height: auto;
display: block;
}
.pfeat-cinema-overlay {
position: absolute;
inset: 0;
display: flex;
align-items: flex-end;
justify-content: space-between;
padding: 28px 32px;
background: linear-gradient(to top, rgba(0,0,0,.52) 0%, transparent 55%);
pointer-events: none;
}
.pfeat-cinema-overlay a { pointer-events: auto; }
.pfeat-cinema-overlay-left {
display: flex;
flex-direction: column;
gap: 2px;
}
.pfeat-cinema-label {
font-size: 13px;
font-weight: 600;
color: rgba(255,255,255,.72);
letter-spacing: .01em;
margin: 0;
}
.pfeat-cinema-title {
font-size: 28px;
font-weight: 800;
color: #fff;
letter-spacing: -.03em;
line-height: 1.1;
margin: 0;
}
.pfeat-cinema-badge {
display: block;
flex-shrink: 0;
transition: opacity .2s;
}
.pfeat-cinema-badge:hover { opacity: .82; }
@media (max-width: 540px) {
.pfeat-cinema-overlay { padding: 18px 20px; }
.pfeat-cinema-title { font-size: 20px; }
.pfeat-cinema-badge img { height: 32px; }
}
.pfeat-cinema-ph {
width: 100%; height: 100%;
background: linear-gradient(145deg, #141414 0%, #1e1e1e 100%);
display: flex; align-items: center; justify-content: center;
}
.pfeat-cinema-text {
text-align: center;
}
.pfeat-cinema-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 700;
line-height: 1.07;
letter-spacing: -.04em;
color: rgba(255,255,255,.38);
margin-bottom: 28px;
}
.pfeat-cinema-headline strong {
color: #fff;
font-weight: 800;
}
.pfeat-cinema-cta {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 15px;
font-weight: 600;
color: #000;
background: var(--yellow);
text-decoration: none;
padding: 12px 24px;
border-radius: 100px;
transition: background .18s, transform .18s;
}
.pfeat-cinema-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.pfeat-cinema-cta .learn-arrow { display: inline-block; transition: transform .25s cubic-bezier(.4,0,.2,1); }
.pfeat-cinema-cta:hover .learn-arrow { transform: translateX(4px); }
@media (max-width: 680px) {
.pfeat-cinema { padding: 64px 0 56px; }
.pfeat-cinema-card { border-radius: 14px; width: 100%; }
.pfeat-cinema-headline { font-size: 2rem; }
}
.pfeat-need {
background: #000;
padding: 100px 0 0;
overflow: hidden;
}
.pfeat-need-text {
max-width: 920px;
margin: 0 auto;
padding: 0 40px 80px;
}
.pfeat-need-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 700;
line-height: 1.08;
letter-spacing: -.04em;
color: rgba(255,255,255,.38);
}
.pfeat-need-headline strong {
color: #fff;
font-weight: 800;
}
.pfeat-need-sub {
font-size: 1.1rem;
line-height: 1.7;
color: rgba(255,255,255,.45);
max-width: 560px;
margin-top: 24px;
}
.pfeat-need-devices {
position: relative;
width: 108%;
margin-left: -4%;
overflow: hidden;
}
.pfeat-frames-img {
display: block;
width: 100%;
position: relative;
z-index: 2;
pointer-events: none;
}
.pfeat-frame-screen {
position: absolute;
z-index: 1;
overflow: hidden;
}
.pfeat-frame-screen img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.pfeat-frame-screen-a {
left: 1.5%;
top: 14%;
width: 16.6%;
bottom: 6%;
border-radius: 4.5% / 2%;
}
.pfeat-frame-screen-b {
left: 22.2%;
top: 11.5%;
width: 20.5%;
bottom: 3%;
border-radius: 4% / 1.8%;
}
.pfeat-frame-screen-c {
left: 48.8%;
top: 32%;
width: 49.4%;
bottom: 6%;
border-radius: 2% / 4.5%;
}
.pfeat-editorial-section {
background: #000;
padding: 160px 0 140px;
}
@media (max-width: 860px) {
.pfeat-need-text { padding: 0 24px 56px; }
.pfeat-need-devices { height: 400px; }
.pn-phone-a { left: calc(50% - 240px); }
.pn-phone-c { display: none; }
}
.pfeat-stats { background: var(--bg-soft); padding: 72px 0; }
.pfeat-stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
overflow: hidden;
}
.pfeat-stat-item {
background: #fff;
padding: 48px 36px;
text-align: center;
}
.pfeat-stat-item + .pfeat-stat-item { border-left: 1px solid var(--border); }
.pfeat-stat-number {
font-size: clamp(2.2rem, 3.6vw, 3.2rem);
font-weight: 800;
letter-spacing: -.05em;
color: var(--text);
line-height: 1;
margin-bottom: 10px;
}
.pfeat-stat-label {
font-size: 13px;
color: var(--text-secondary);
line-height: 1.5;
}
.pfeat-intro { background: #fff; padding: 140px 0 96px; }
.pfeat-intro-text {
text-align: center;
max-width: 680px;
margin: 0 auto 96px;
}
.pfeat-intro-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 800;
letter-spacing: -.04em;
line-height: 1.04;
color: var(--text);
margin: 14px 0 22px;
}
.pfeat-intro-sub {
font-size: 1.1rem;
color: var(--text-secondary);
line-height: 1.65;
max-width: 480px;
margin: 0 auto;
}
.pfeat-editorial-headline {
max-width: 820px;
margin-bottom: 72px;
}
.pfeat-editorial-headline h2 {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 700;
line-height: 1.08;
letter-spacing: -.04em;
color: rgba(255,255,255,.38);
}
.pfeat-editorial-headline h2 strong {
color: #fff;
font-weight: 800;
}
.pfeat-editorial {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.pfeat-editorial-item {
background: #1c1c1e;
border-radius: 24px;
padding: 36px;
display: flex;
flex-direction: column;
min-height: 280px;
}
.pfeat-editorial-icon {
color: var(--yellow);
margin-bottom: auto;
padding-bottom: 48px;
}
.pfeat-editorial-icon svg { display: block; }
.pfeat-editorial-card-title {
font-size: clamp(1.5rem, 2vw, 1.9rem);
font-weight: 700;
letter-spacing: -.035em;
line-height: 1.15;
color: #fff;
margin-bottom: 14px;
}
.pfeat-editorial-card-desc {
font-size: 15px;
font-weight: 400;
line-height: 1.6;
color: rgba(255,255,255,.5);
margin: 0;
}
.pfeat-editorial-item-body {
font-size: 0.95rem;
line-height: 1.7;
color: rgba(255,255,255,.5);
}
.feat-cards-6 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.feat-card-6 {
background: #1c1c1e;
border-radius: 20px;
padding: 28px;
display: flex;
flex-direction: column;
gap: 16px;
}
.feat-card-6-icon {
width: 48px;
height: 48px;
background: rgba(255,255,255,.08);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.feat-card-6-title {
font-size: 1rem;
font-weight: 700;
color: #fff;
letter-spacing: -.02em;
line-height: 1.3;
margin: 0;
}
.feat-card-6-desc {
font-size: 0.9rem;
line-height: 1.65;
color: rgba(255,255,255,.5);
margin: 0;
}
@media (max-width: 768px) {
.feat-cards-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
.feat-cards-6 { grid-template-columns: 1fr; }
}
.pfeat-row { background: #fff; padding: 100px 0; overflow: hidden; }
.pfeat-row-alt { background: var(--bg-soft); padding: 0 !important; }
.pfeat-row-inner {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 24px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.pfeat-row-inner-rev { direction: rtl; }
.pfeat-row-inner-rev > * { direction: ltr; }
.pfeat-row-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 800;
letter-spacing: -.04em;
line-height: 1.06;
color: var(--text);
margin-bottom: 20px;
}
.pfeat-row-alt .pfeat-row-headline {
color: var(--text);
}
.pfeat-row-body {
font-size: 1.05rem;
line-height: 1.7;
color: var(--text-secondary);
margin-bottom: 36px;
}
.pfeat-row-alt .pfeat-row-body {
color: var(--text-secondary);
}
.pfeat-row-alt .pfeat-eyebrow {
color: var(--text-secondary);
}
.pfeat-row-visual { display: flex; justify-content: center; align-items: flex-start; }
.pfeat-phone {
position: relative;
flex-shrink: 0;
}
.pfeat-phone-frame {
background: #1c1c1e;
border-radius: 52px;
padding: 12px;
box-shadow:
0 0 0 1px rgba(0,0,0,.08),
0 40px 100px rgba(0,0,0,.13),
0 12px 32px rgba(0,0,0,.08);
position: relative;
}
.pfeat-phone-di {
position: absolute;
top: 24px; left: 50%; transform: translateX(-50%);
width: 104px; height: 30px;
background: #000; border-radius: 20px; z-index: 10;
}
.pfeat-phone-screen {
background: #f5f5f7;
border-radius: 43px;
aspect-ratio: 9 / 19.5;
overflow: hidden;
position: relative;
}
.pfeat-phone-ph {
width: 100%; height: 100%;
display: flex; align-items: center; justify-content: center;
}
.pfeat-phone-lg { width: 300px; }
.pfeat-phone-md { width: 256px; }
.pfeat-phone-sm { width: 210px; }
.pfeat-phone-offset { margin-top: 56px; margin-left: -28px; }
.pfeat-formats-wrap { max-width: var(--max-w); margin: 0 auto; padding: 60px 24px 32px; }
.pfeat-formats-header {
margin-bottom: 64px;
}
.pfeat-formats-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 800;
letter-spacing: -.04em;
line-height: 1.06;
color: var(--text);
margin: 12px 0 20px;
max-width: 700px;
}
.pfeat-formats-sub {
font-size: 1.05rem;
line-height: 1.65;
color: var(--text-secondary);
max-width: 600px;
}
.pfeat-formats-cards {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.pfeat-formats-card-img {
width: 100%;
aspect-ratio: 4 / 5;
border-radius: 16px;
overflow: hidden;
margin-bottom: 14px;
}
.pfeat-formats-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pfeat-formats-card p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }
.pfeat-formats-card p strong { color: var(--text); font-weight: 700; display: block; margin-bottom: 4px; }
@media (max-width: 860px) {
.pfeat-formats-cards { grid-template-columns: repeat(2, 1fr); }
}
.pfeat-checklist {
display: flex;
flex-direction: column;
border-top: 1px solid var(--border);
margin-bottom: 8px;
}
.pfeat-checklist li {
display: flex;
align-items: center;
gap: 12px;
padding: 15px 0;
border-bottom: 1px solid var(--border);
font-size: 15px;
color: var(--text);
font-weight: 500;
}
.pfeat-checklist li::before {
content: '';
width: 20px; height: 20px;
flex-shrink: 0;
border-radius: 50%;
background: var(--yellow);
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10l4 4 8-8' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-size: 65%;
background-repeat: no-repeat;
background-position: center;
}
.pfeat-row-alt .pfeat-checklist {
border-top-color: var(--border);
}
.pfeat-row-alt .pfeat-checklist li {
color: var(--text);
border-bottom-color: var(--border);
}
.pfeat-carousel { background: var(--bg-soft); padding: 140px 0 0; overflow: hidden; }
.pfeat-carousel-header {
text-align: center;
max-width: 780px;
margin: 0 auto 96px;
padding: 0 24px;
}
.pfeat-carousel-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 800;
letter-spacing: -.04em;
line-height: 1.04;
color: var(--text);
margin: 14px 0 18px;
}
.pfeat-carousel-sub {
font-size: 1.05rem;
color: var(--text-secondary);
line-height: 1.65;
}
.pfeat-phone-strip {
display: flex;
justify-content: center;
padding: 0 100px;
overflow: hidden;
max-height: 80vh;
}
.pfeat-section2-img {
width: 100%;
display: block;
object-fit: cover;
object-position: top center;
}
.pfeat-strip-item { flex-shrink: 0; }
.pfeat-strip-item:nth-child(1) { transform: translateY(80px); }
.pfeat-strip-item:nth-child(2) { transform: translateY(40px); }
.pfeat-strip-item:nth-child(3) { transform: translateY(0); z-index: 3; }
.pfeat-strip-item:nth-child(4) { transform: translateY(40px); }
.pfeat-strip-item:nth-child(5) { transform: translateY(80px); }
.pfeat-gallery {
background: #fff;
position: relative;
min-height: 900px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.pfeat-gallery-header {
position: relative;
z-index: 2;
text-align: center;
max-width: 480px;
padding: 0 24px;
}
.pfeat-gallery-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 800;
letter-spacing: -.04em;
line-height: 1.08;
color: var(--text);
margin-bottom: 16px;
}
.pfeat-gallery-sub { font-size: 1rem; color: var(--text-secondary); line-height: 1.65; }
.gf { position: absolute; z-index: 1; }
.gf img { display: block; width: 100%; border-radius: 12px; }
.gf-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05); }
.gf-card img { border-radius: 0; }
.gf-bar { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; color: #262626; }
.gf-bar-icons { display: flex; gap: 14px; }
.gf img { aspect-ratio: 4 / 5; object-fit: cover; }
.gf-card img { aspect-ratio: 4 / 5; object-fit: cover; }
.gf-a { top: 10%;  right: 10%; width: 280px; box-shadow: 0 8px 32px rgba(0,0,0,.09); border-radius: 12px; overflow: hidden; }
.gf-b { top: 28%; left: 4%;  width: 310px; }
.gf-c { bottom: 4%; left: 18%; width: 176px; box-shadow: 0 8px 32px rgba(0,0,0,.09); border-radius: 12px; overflow: hidden; }
.gf-d { top: 32%; right: 3%; width: 280px; }
@media (max-width: 860px) {
.pfeat-editorial { grid-template-columns: 1fr; }
.pfeat-editorial-item { min-height: auto; padding: 28px; }
.pfeat-editorial-icon { margin-bottom: 0; padding-bottom: 28px; }
.pfeat-stats-grid { grid-template-columns: 1fr; }
.pfeat-stat-item { padding: 36px 28px; text-align: left; }
.pfeat-stat-item + .pfeat-stat-item { border-left: none; border-top: 1px solid var(--border); }
.pfeat-row-inner { grid-template-columns: 1fr; gap: 48px; }
.pfeat-row-inner-rev { direction: ltr; }
.pfeat-phone-strip { gap: 12px; }
.pfeat-strip-item:nth-child(1),
.pfeat-strip-item:nth-child(5) { display: none; }
.pfeat-phone-lg { width: 240px; }
.pfeat-phone-sm { width: 170px; }
}
@media (max-width: 540px) {
.pfeat-editorial-item { padding: 24px; }
.pfeat-editorial-icon { padding-bottom: 24px; }
.pfeat-editorial-card-title { font-size: 1.4rem; }
.pfeat-stats-grid { grid-template-columns: 1fr; }
.pfeat-phone-lg { width: 260px; }
.pfeat-intro-headline, .pfeat-row-headline, .pfeat-carousel-headline, .pfeat-gallery-headline { font-size: 2rem; }
}
@media (max-width: 1024px) {
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: 1fr 1fr 1fr; }
.stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
:root { --nav-height: 48px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.grid-2, .grid-3 { grid-template-columns: 1fr; }
.grid-2 .order-first { order: -1; }
.nav-links, .nav-actions .btn { display: none; }
.nav-hamburger { display: flex; }
.section-header { margin-bottom: 56px; }
.cta-banner { flex-direction: column; text-align: center; padding: 48px 28px; }
.cta-banner-actions { justify-content: center; }
.footer-grid { grid-template-columns: 1fr; gap: 32px; }
.footer-bottom { flex-direction: column; text-align: center; }
.hero-actions { flex-direction: column; align-items: flex-start; }
.store-badges { flex-direction: column; align-items: flex-start; }
.hero-display { font-size: 2.4rem; letter-spacing: -.03em; }
.hero-app-img { margin-top: 48px; }
.btn-hero-download { font-size: .95rem; padding: 16px 28px; }
.stats-row { grid-template-columns: 1fr 1fr; }
.support-categories { grid-template-columns: 1fr 1fr; }
.support-cat-card { padding: 22px 22px 26px; }
}
@media (max-width: 600px) {
.support-categories { grid-template-columns: 1fr; }
.blog-post { padding: 0 4px; }
.page-header { padding: calc(var(--nav-height) + 40px) 0 40px; }
.breadcrumb { padding-top: calc(var(--nav-height) + 16px); }
}
@media (max-width: 480px) {
.container { padding: 0 16px; }
.stats-row { grid-template-columns: 1fr 1fr; }
.phone-mockup { width: 200px; }
.cta-banner-actions .btn-lg { width: 100%; justify-content: center; }
}
.feat-scroll-wrap {
width: 100%;
overflow-x: auto;
padding: 48px 40px 56px;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}
.feat-scroll-wrap::-webkit-scrollbar { display: none; }
.feat-scroll-track {
display: flex;
gap: 16px;
width: max-content;
}
.feat-scroll-card {
background: #fff;
border-radius: 24px;
padding: 36px 28px 48px;
width: 260px;
flex-shrink: 0;
display: flex;
flex-direction: column;
gap: 24px;
}
.feat-scroll-icon {
width: 56px;
height: 56px;
display: flex;
align-items: center;
justify-content: center;
}
.feat-scroll-title {
font-size: 1.35rem;
font-weight: 700;
line-height: 1.3;
letter-spacing: -.02em;
color: var(--text);
}
.feat-scroll-sub {
color: var(--text-secondary);
font-weight: 600;
}
@media (max-width: 600px) {
.feat-scroll-wrap { padding: 32px 20px 40px; }
.feat-scroll-card { width: 220px; padding: 28px 22px 36px; }
}
.pfeat-statement {
background: var(--bg-soft);
padding: 100px 0 80px;
}
.pfeat-statement-inner {
max-width: 900px;
margin: 0 auto;
padding: 0 40px;
text-align: center;
}
.pfeat-statement-text {
font-size: clamp(2rem, 4.5vw, 4rem);
font-weight: 800;
line-height: 1.25;
letter-spacing: -.03em;
color: var(--text);
}
.feat-chip {
display: inline-flex;
align-items: center;
justify-content: center;
vertical-align: middle;
border-radius: 14px;
overflow: hidden;
margin: 0 4px;
flex-shrink: 0;
width: 52px;
height: 52px;
position: relative;
top: -3px;
}
.feat-chip-photo { border-radius: 14px; }
.feat-chip-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-chip-yellow { background: var(--yellow); }
.feat-chip-dark { background: #111; }
.feat-chip-blue { background: #4f7aff; }
@media (max-width: 600px) {
.pfeat-statement { padding: 64px 0 56px; }
.pfeat-statement-inner { padding: 0 20px; }
.feat-chip { width: 38px; height: 38px; border-radius: 10px; }
}
.updates-header { padding-bottom: 100px; }
.pfeat-social {
background: #fff;
padding: 120px 0;
}
.pfeat-social-row {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 40px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
}
.pfeat-social-row + .pfeat-social-row {
margin-top: 80px;
padding-top: 80px;
border-top: 1px solid var(--border);
}
.pfeat-social-row-rev {
direction: rtl;
}
.pfeat-social-row-rev > * {
direction: ltr;
}
.pfeat-social-visual {
border-radius: var(--radius-lg);
overflow: hidden;
aspect-ratio: 1;
position: relative;
}
.pfeat-social-visual img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.pfeat-social-img-gradient {
position: absolute;
bottom: 0; left: 0; right: 0;
height: 65%;
background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
pointer-events: none;
}
.pfeat-social-overlay {
position: absolute;
bottom: 28px;
left: 32px;
right: 32px;
z-index: 1;
}
.pfeat-social-overlay-name {
font-size: clamp(3rem, 6vw, 5.5rem);
font-weight: 800;
letter-spacing: -.04em;
line-height: 1;
color: var(--yellow);
}
.pfeat-social-overlay-role {
font-size: 1rem;
font-weight: 600;
color: rgba(255,255,255,.75);
margin-top: 6px;
letter-spacing: .01em;
}
.pfeat-social-content {
display: flex;
flex-direction: column;
gap: 32px;
}
.pfeat-social-content-split {
justify-content: space-between;
}
.pfeat-social-headline {
font-size: clamp(1.8rem, 3.2vw, 3rem);
font-weight: 600;
line-height: 1.15;
letter-spacing: -.025em;
color: rgba(0,0,0,.28);
}
.pfeat-social-headline strong {
color: var(--text);
font-weight: 700;
}
.pfeat-social-card {
background: var(--bg-soft);
border-radius: var(--radius);
padding: 28px 32px 32px;
}
.feat-checklist-box {
display: flex;
flex-direction: column;
gap: 16px;
}
.feat-checklist-box li {
display: flex;
align-items: center;
gap: 14px;
font-size: 15px;
color: var(--text-secondary);
line-height: 1.5;
}
.feat-checklist-box li svg {
flex-shrink: 0;
}
.pfeat-social-testimonial {
display: flex;
flex-direction: column;
gap: 16px;
}
.pfeat-social-testimonial-header {
display: flex;
align-items: center;
gap: 14px;
}
.pfeat-social-thumb {
width: 76px;
height: 56px;
border-radius: 12px;
overflow: hidden;
flex-shrink: 0;
background: var(--bg-soft);
}
.pfeat-social-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.pfeat-social-name {
font-size: 15px;
font-weight: 700;
color: var(--text);
line-height: 1.3;
}
.pfeat-social-role {
font-size: 13px;
color: var(--text-secondary);
margin-top: 2px;
}
.pfeat-social-quote {
font-size: 1rem;
line-height: 1.7;
color: var(--text);
}
.pfeat-social-link {
font-size: 15px;
font-weight: 500;
color: var(--text-secondary);
display: inline-flex;
align-items: center;
gap: 4px;
transition: color .15s;
}
.pfeat-social-link:hover {
color: var(--text);
}
.pfeat-social-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.pfeat-social-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--border); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--text); }
@media (max-width: 860px) {
.pfeat-social { padding: 80px 0; }
.pfeat-social-row { grid-template-columns: 1fr; gap: 40px; }
.pfeat-social-row-rev { direction: ltr; }
.pfeat-social-row + .pfeat-social-row { margin-top: 60px; padding-top: 60px; }
.pfeat-social-content-split { justify-content: flex-start; }
.pfeat-social-overlay-name { font-size: clamp(2.5rem, 8vw, 4rem); }
}
@media (max-width: 600px) {
.pfeat-social { padding: 60px 0; }
.pfeat-social-row { padding: 0 20px; }
.pfeat-social-headline { font-size: clamp(1.6rem, 7vw, 2.4rem); }
.pfeat-social-overlay { left: 20px; bottom: 20px; }
.pfeat-social-overlay-name { font-size: clamp(2rem, 10vw, 3.5rem); }
}
.pricing-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}
@media (max-width: 600px) {
.pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
.hero-dark { min-height: unset; }
.hero-phones-trio { flex: unset; }
.pfeat-intro { padding: 80px 0 60px; }
.pfeat-intro-text { margin-bottom: 56px; }
.pfeat-need { padding: 72px 0 0; }
.pfeat-need-text { padding: 0 24px 48px; }
.pfeat-editorial-section { padding: 72px 0 80px; }
.pfeat-editorial-headline { margin-bottom: 48px; }
.pfeat-row { padding: 72px 0; }
.pfeat-carousel { padding: 80px 0 0; }
.pfeat-carousel-header { margin-bottom: 56px; }
.pfeat-phone-strip { padding: 0 32px; }
.pfeat-formats-wrap { padding: 40px 20px 24px; }
.pfeat-formats-header { margin-bottom: 40px; }
.testimonials-dark .pfeat-formats-cards { grid-template-columns: repeat(2, 1fr); }
.pfeat-gallery { min-height: 600px; }
.gf-a { width: 200px; right: 2%; }
.gf-b { width: 220px; left: 1%; }
.gf-c { width: 160px; }
.gf-d { width: 200px; right: 1%; }
}
@media (max-width: 600px) {
.hero-dark { min-height: unset; padding-top: calc(var(--nav-height) + 48px); }
.hero-phones-trio { flex: unset; }
.hero-dark-text { padding-bottom: 36px; }
.pfeat-intro { padding: 60px 0 48px; }
.pfeat-editorial-section { padding: 56px 0 64px; }
.pfeat-row { padding: 56px 0; }
.pfeat-carousel { padding: 60px 0 0; }
.pfeat-carousel-header { margin-bottom: 40px; padding: 0 20px; }
.pfeat-phone-strip { padding: 0 16px; }
.pfeat-formats-cards { grid-template-columns: repeat(2, 1fr) !important; }
.pfeat-formats-wrap { padding: 32px 16px 16px; }
.testimonials-dark .pfeat-formats-cards { grid-template-columns: 1fr !important; }
.testimonials-dark .section-header { margin-bottom: 40px; }
.pfeat-gallery {
display: block;
min-height: 560px;
padding-top: 64px;
overflow: hidden;
}
.pfeat-gallery-header {
position: relative;
z-index: 3;
max-width: 100%;
padding: 0 24px;
margin: 0 auto 0;
text-align: center;
}
.gf { display: block; }
.gf-c { display: none; }
.gf-b { width: 185px; left: calc(50% - 189px); top: auto; bottom: 16px; }
.gf-d { width: 185px; right: calc(50% - 189px); top: auto; bottom: 60px; }
.gf-a { display: none; }
.pfeat-row-inner { gap: 36px; }
.pfeat-row-inner .pfeat-phone-wrap { max-width: 280px; margin: 0 auto; }
.pfeat-need-devices { height: 300px; }
}
.lang-switcher { position: relative; }
.lang-btn {
display: flex; align-items: center; gap: 6px;
background: none; border: 1px solid var(--border); border-radius: 100px;
padding: 6px 12px; font-size: 13px; font-weight: 600; color: var(--text);
cursor: pointer; font-family: inherit; transition: border-color .15s, background .15s;
}
.lang-btn:hover { background: var(--bg-soft); border-color: var(--border-dark); }
.lang-label { letter-spacing: .03em; }
.lang-chevron { transition: transform .2s; flex-shrink: 0; opacity: .5; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }
.lang-menu {
position: absolute; top: calc(100% + 8px); right: 0;
background: #fff; border: 1px solid var(--border); border-radius: 14px;
box-shadow: 0 8px 32px rgba(0,0,0,.1); padding: 6px;
min-width: 160px; opacity: 0; visibility: hidden;
transform: translateY(-6px); transition: opacity .2s, transform .2s, visibility .2s;
z-index: 200;
}
.lang-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
display: flex; align-items: center; gap: 10px;
padding: 9px 12px; border-radius: 9px; font-size: 13px; font-weight: 500;
color: var(--text-secondary); text-decoration: none; transition: background .15s, color .15s;
cursor: pointer;
}
.lang-option:hover { background: var(--bg-soft); color: var(--text); }
.lang-option.lang-active { color: var(--text); font-weight: 600; background: var(--bg-soft); }
.lang-option .lang-flag { font-size: 16px; line-height: 1; }
@media (max-width: 768px) {
.lang-switcher { display: block; }
.lang-chevron { display: none; }
.lang-btn { padding: 6px 10px; gap: 4px; }
br.desktop-only { display: none; }
.updates-nowrap { white-space: normal; }
}
.sl-popup-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, .55);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
z-index: 9000;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
opacity: 0;
visibility: hidden;
transition: opacity .35s ease, visibility .35s ease;
}
.sl-popup-overlay.sl-popup-visible {
opacity: 1;
visibility: visible;
}
.sl-popup {
background: var(--bg-soft);
border-radius: var(--radius-lg);
overflow: hidden;
width: 100%;
max-width: 420px;
box-shadow: 0 32px 80px rgba(0,0,0,.22);
transform: translateY(28px) scale(.97);
transition: transform .35s cubic-bezier(.22,.68,0,1.2);
position: relative;
padding-top: 20px;
}
.sl-popup-overlay.sl-popup-visible .sl-popup {
transform: translateY(0) scale(1);
}
.sl-popup-close {
position: absolute;
top: 12px;
right: 12px;
width: 32px;
height: 32px;
border-radius: 50%;
background: rgba(0,0,0,.45);
color: #fff;
font-size: 18px;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
border: none;
z-index: 2;
transition: background .2s;
}
.sl-popup-close:hover { background: rgba(0,0,0,.65); }
.sl-popup-img {
width: 100%;
aspect-ratio: 4 / 3;
overflow: hidden;
background: var(--bg-soft);
}
.sl-popup-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.sl-popup-body {
padding: 28px 28px 24px;
background: #fff;
}
.sl-popup-eyebrow {
font-size: 11px;
font-weight: 700;
letter-spacing: .1em;
text-transform: uppercase;
color: var(--gray);
margin-bottom: 8px;
}
.sl-popup-title {
font-size: clamp(1.3rem, 4vw, 1.65rem);
font-weight: 800;
letter-spacing: -.03em;
color: var(--text);
line-height: 1.15;
margin-bottom: 10px;
}
.sl-popup-sub {
font-size: .9rem;
color: var(--text-secondary);
line-height: 1.6;
margin-bottom: 20px;
}
.sl-popup-form {
display: flex;
gap: 8px;
margin-bottom: 12px;
}
.sl-popup-input {
flex: 1;
min-width: 0;
padding: 11px 14px;
border: 1.5px solid var(--border);
border-radius: 100px;
font-family: inherit;
font-size: 14px;
color: var(--text);
background: #fff;
outline: none;
transition: border-color .2s;
}
.sl-popup-input:focus { border-color: var(--yellow-dark); }
.sl-popup-input::placeholder { color: var(--gray-light); }
.sl-popup-submit {
flex-shrink: 0;
padding: 11px 20px;
border-radius: 100px;
background: var(--yellow);
color: var(--text);
font-family: inherit;
font-size: 14px;
font-weight: 700;
border: none;
cursor: pointer;
transition: background .2s, transform .15s;
white-space: nowrap;
}
.sl-popup-submit:hover { background: var(--yellow-dark); }
.sl-popup-submit:active { transform: scale(.97); }
.sl-form-msg {
font-size: 13px;
font-weight: 500;
margin-top: 12px;
padding: 9px 16px;
border-radius: 100px;
display: inline-block;
}
.sl-form-msg--ok {
background: rgba(134, 239, 172, .15);
color: #86efac;
}
.sl-form-msg--err {
background: rgba(252, 165, 165, .15);
color: #fca5a5;
}
.sl-popup-error {
font-size: .85rem;
font-weight: 500;
color: #dc2626;
margin-bottom: 10px;
padding: 9px 12px;
background: #fef2f2;
border: 1.5px solid #fca5a5;
border-radius: 10px;
}
.sl-popup-success {
font-size: .9rem;
font-weight: 600;
color: var(--text);
margin-bottom: 12px;
padding: 10px 14px;
background: #f0fdf4;
border: 1.5px solid #86efac;
border-radius: 10px;
}
.sl-popup-skip {
display: block;
width: 100%;
text-align: center;
font-family: inherit;
font-size: 12px;
color: var(--gray-light);
background: none;
border: none;
cursor: pointer;
padding: 4px;
transition: color .2s;
}
.sl-popup-skip:hover { color: var(--text-secondary); }
@media (max-width: 480px) {
.sl-popup { border-radius: var(--radius); }
.sl-popup-img { aspect-ratio: 16 / 9; }
.sl-popup-body { padding: 20px 20px 18px; }
.sl-popup-form { flex-direction: column; }
.sl-popup-submit { width: 100%; padding: 13px; }
}
/* ─── QR Code Widget ─────────────────────────────────────────── */
.qr-widget {
position: fixed;
bottom: 88px;
right: 24px;
z-index: 90;
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius-sm);
box-shadow: var(--shadow-lg);
padding: 14px;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
width: 148px;
transition: opacity .2s, transform .2s;
}
.qr-widget img { width: 108px; height: 108px; display: block; }
.qr-widget-label {
font-size: 12px;
font-weight: 600;
color: var(--text-secondary);
text-align: center;
line-height: 1.4;
}
.qr-widget-close {
position: absolute;
top: 6px;
right: 6px;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
background: none;
border: none;
cursor: pointer;
color: var(--gray-light);
font-size: 14px;
border-radius: 50%;
transition: background .15s, color .15s;
}
.qr-widget-close:hover { background: var(--bg-soft); color: var(--text); }
.qr-widget.hidden { display: none; }
@media (max-width: 768px) {
.qr-widget { display: none; }
}
