*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--brand:       #0b7e6a;
--brand-dark:  #065c4b;
--brand-light: #10a08b;
--brand-glow:  rgba(11, 126, 106, 0.22);
--gold:        #d4a843;
--gold-light:  #e8c97a;
--gold-glow:   rgba(212, 168, 67, 0.18);
--ink:         #1a2e28;
--muted:       #5f7a72;
--line:        rgba(11, 126, 106, 0.12);
--soft:        #edf6f2;
--cream:       #f7f9f6;
--dark:        #071f1a;
--surface:     #ffffff;
--glass:       rgba(255, 255, 255, 0.72);
--glass-dark:  rgba(11, 126, 106, 0.07);
--r-sm: 10px;
--r-md: 16px;
--r-lg: 24px;
--r-xl: 32px;
--sh:  0  6px  24px rgba(11, 126, 106,  0.10);
--sh2: 0 18px  56px rgba(11, 126, 106,  0.16);
--sh3: 0 30px  80px rgba(11, 126, 106,  0.22);
--sh-abs: 0 10px 36px rgba(0, 0, 0, 0.20);
--ease: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
scroll-behavior: smooth;
-webkit-font-smoothing: antialiased;
}
body {
font-family: system-ui, -apple-system, "Segoe UI", Tahoma, Arial, sans-serif;
background: var(--cream);
color: var(--ink);
line-height: 1.8;
overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
.container {
width: min(1140px, calc(100% - 32px));
margin-inline: auto;
}
.site-header {
position: sticky;
top: 0;
z-index: 100;
background: rgba(247, 249, 246, 0.88);
border-bottom: 1px solid var(--line);
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
}
.site-header.sticky {
box-shadow: 0 2px 24px rgba(11, 126, 106, 0.10);
}
.nav {
min-height: 80px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 22px;
}
.brand {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 22px;
font-weight: 900;
color: var(--ink);
}
.brand-mark {
display: inline-grid;
place-items: center;
width: 44px;
height: 44px;
flex-shrink: 0;
}
.brand-mark img {
width: 44px;
height: 44px;
object-fit: contain;
border-radius: 14px;
filter: drop-shadow(0 4px 12px rgba(11, 126, 106, 0.3));
}
.nav-links {
display: flex;
align-items: center;
gap: 20px;
font-weight: 800;
font-size: 14px;
letter-spacing: -0.2px;
color: #1a3a34;
}
.nav-links a {
padding: 8px 0;
position: relative;
transition: var(--ease);
}
.nav-links a::after {
content: '';
position: absolute;
bottom: 4px;
right: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--brand), var(--gold));
border-radius: 99px;
transition: var(--ease);
}
.nav-links a:hover { color: var(--brand); }
.nav-links a:hover::after { width: 100%; }
.nav-links.show-static {
display: flex;
}
.menu-btn {
display: none;
width: 44px;
height: 44px;
border: 1px solid var(--line);
border-radius: var(--r-md);
background: var(--surface);
color: var(--ink);
font-size: 22px;
place-content: center;
transition: var(--ease);
}
.menu-btn:hover { background: var(--soft); border-color: var(--brand); }
.hero {
min-height: calc(100vh - 80px);
display: grid;
align-items: center;
padding: 64px 0 80px;
position: relative;
overflow: hidden;
}
.hero-grid,
.split {
display: grid;
grid-template-columns: 1.05fr 0.95fr;
gap: 64px;
align-items: center;
}
.eyebrow {
margin: 0 0 12px;
color: var(--brand);
font-weight: 900;
font-size: 13px;
letter-spacing: 1px;
text-transform: uppercase;
}
h1 {
margin: 0 0 18px;
font-size: clamp(52px, 9vw, 108px);
line-height: 0.95;
font-weight: 900;
letter-spacing: -2px;
background: linear-gradient(135deg, var(--ink) 40%, var(--brand));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
h2 {
margin: 0 0 16px;
font-size: clamp(28px, 4.4vw, 50px);
line-height: 1.2;
font-weight: 800;
letter-spacing: -0.5px;
}
h2 b {
background: linear-gradient(135deg, var(--brand), var(--gold));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
h3 { margin: 0 0 10px; font-size: 20px; font-weight: 800; }
p { margin-top: 0; }
.hero-lead {
max-width: 620px;
color: var(--muted);
font-size: 20px;
line-height: 1.9;
}
.hero-actions,
.trust-row {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 30px;
}
.btn {
min-height: 52px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
border-radius: 16px;
padding: 14px 26px;
font-size: 15px;
font-weight: 900;
text-align: center;
letter-spacing: -0.3px;
transition: var(--ease);
position: relative;
overflow: hidden;
}
.btn:active { transform: scale(0.97); }
.btn::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent);
opacity: 0;
transition: var(--ease);
}
.btn:hover::before { opacity: 1; }
.btn svg {
width: 16px;
height: 16px;
flex-shrink: 0;
}
.primary {
background: linear-gradient(135deg, var(--brand), var(--brand-light));
color: #fff;
box-shadow: var(--sh2), 0 0 0 0 var(--brand-glow);
}
.primary:hover {
box-shadow: var(--sh3), 0 0 40px var(--brand-glow);
transform: translateY(-2px);
}
.ghost {
background: var(--surface);
border: 1.5px solid var(--line);
color: var(--ink);
}
.ghost:hover {
border-color: var(--brand);
background: rgba(11, 126, 106, 0.05);
transform: translateY(-2px);
}
.light {
background: #fff;
color: var(--brand);
font-weight: 900;
box-shadow: var(--sh2);
}
.light:hover {
transform: translateY(-2px);
box-shadow: var(--sh3);
}
.trust-row span {
border: 1px solid rgba(11, 126, 106, 0.14);
border-radius: 999px;
padding: 8px 16px;
background: rgba(11, 126, 106, 0.07);
color: var(--brand-dark);
font-size: 13.5px;
font-weight: 800;
white-space: nowrap;
transition: var(--ease);
}
.trust-row span:hover {
background: var(--brand);
color: #fff;
border-color: var(--brand);
}
.hero-pattern {
position: absolute;
inset: 0;
pointer-events: none;
background-image:
radial-gradient(ellipse 600px 600px at 110% 10%, rgba(11, 126, 106, 0.07) 0%, transparent 70%),
radial-gradient(ellipse 500px 500px at -10% 90%, rgba(212, 168, 67, 0.09) 0%, transparent 70%);
}
.app-visual {
min-height: 620px;
display: grid;
place-items: center;
}
.phone {
width: min(320px, 82vw);
min-height: 660px;
padding: 14px;
border-radius: 50px;
background: linear-gradient(155deg, #1a1a1a 0%, #0a0a0a 100%);
box-shadow:
var(--sh3),
inset 0  1px  0 rgba(255,255,255,0.08),
inset 0 -1px  0 rgba(255,255,255,0.03);
transform: rotate(-2deg);
transition: var(--ease);
}
.phone:hover {
transform: rotate(0deg) translateY(-6px);
box-shadow:
0 40px 100px rgba(11, 126, 106, 0.28),
inset 0  1px  0 rgba(255,255,255,0.08);
}
.phone-bar {
width: 88px;
height: 7px;
margin: 0 auto 10px;
border-radius: 99px;
background: #2e2e2e;
}
.phone-notch {
width: 110px;
height: 26px;
margin: 0 auto 8px;
border-radius: 0 0 20px 20px;
background: #111;
display: flex;
align-items: center;
justify-content: center;
}
.notch-camera {
width: 10px;
height: 10px;
border-radius: 50%;
background: radial-gradient(circle, #555 40%, #111 60%);
border: 1px solid #333;
}
.phone-screen {
min-height: 598px;
overflow: hidden;
padding: 22px;
border-radius: 36px;
background:
radial-gradient(ellipse at 25% 10%, rgba(212, 168, 67, 0.20), transparent 45%),
radial-gradient(ellipse at 80% 80%, rgba(11, 126, 106, 0.12), transparent 50%),
linear-gradient(180deg, #fffdf7 0%, #ecf6f0 100%);
display: flex;
flex-direction: column;
gap: 14px;
position: relative;
}
.phone-screen.actual-screen {
padding: 0;
background: #062522;
}
.phone-screen.actual-screen > :not(picture) {
display: none;
}
.phone-screen.actual-screen picture {
display: block;
width: 100%;
height: 598px;
}
.real-app-screenshot {
width: 100%;
height: 598px;
object-fit: cover;
object-position: top center;
border-radius: 36px;
}
.app-head {
display: flex;
align-items: center;
justify-content: space-between;
}
.app-logo {
width: 28px;
height: 28px;
object-fit: contain;
border-radius: 8px;
}
.app-head > span:first-of-type {
font-size: 20px;
font-weight: 900;
}
.moon-icon {
font-size: 20px;
color: var(--brand);
opacity: 0.7;
}
.next-prayer,
.dhikr-preview {
padding: 18px 20px;
border-radius: 22px;
background: rgba(0, 0, 0, 0.04);
border: 1px solid rgba(11, 126, 106, 0.10);
backdrop-filter: blur(12px);
}
.prayer-label {
font-size: 11px;
color: var(--muted);
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.8px;
}
.next-prayer h2 {
font-size: 28px;
color: var(--brand);
margin: 2px 0 0;
}
.prayer-timer {
display: flex;
align-items: baseline;
gap: 8px;
margin-top: 4px;
}
.timer-num {
font-size: 32px;
font-weight: 900;
color: var(--brand-dark);
line-height: 1;
}
.timer-unit {
font-size: 12px;
color: var(--muted);
font-weight: 700;
}
.dhikr-preview p {
font-size: 16px;
font-weight: 900;
line-height: 1.7;
color: var(--ink);
}
.dhikr-btn {
margin-top: 10px;
padding: 9px 18px;
border-radius: 100px;
background: linear-gradient(135deg, var(--brand), var(--brand-light));
color: #fff;
font: inherit;
font-weight: 900;
font-size: 13px;
box-shadow: 0 4px 18px rgba(11, 126, 106, 0.25);
transition: var(--ease);
}
.dhikr-btn:hover {
transform: scale(1.04);
box-shadow: 0 6px 24px rgba(11, 126, 106, 0.35);
}
.app-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.grid-cell {
background: rgba(255, 255, 255, 0.78);
border: 1px solid rgba(11, 126, 106, 0.12);
border-radius: 18px;
padding: 16px 12px;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
box-shadow: 0 8px 24px rgba(11, 126, 106, 0.08);
transition: var(--ease);
cursor: pointer;
}
.grid-cell:hover {
background: var(--brand);
color: #fff;
transform: translateY(-3px);
box-shadow: var(--sh2);
}
.grid-icon {
width: 24px;
height: 24px;
color: currentColor;
}
.grid-cell span {
font-size: 12px;
font-weight: 900;
}
.summary {
padding: 28px 0;
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
background: rgba(255, 255, 255, 0.6);
backdrop-filter: blur(12px);
}
.summary-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}
.sum-item {
padding: 18px 20px;
border-radius: 20px;
background: var(--surface);
border: 1px solid var(--line);
text-align: center;
box-shadow: 0 4px 16px rgba(11, 126, 106, 0.06);
transition: var(--ease);
}
.sum-item:hover {
transform: translateY(-3px);
box-shadow: var(--sh);
border-color: var(--brand);
}
.sum-item strong {
display: block;
font-size: 32px;
line-height: 1;
font-weight: 900;
background: linear-gradient(135deg, var(--brand), var(--gold));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.section {
padding: 96px 0;
}
.section.soft { background: var(--soft); }
.section-head {
max-width: 780px;
margin-bottom: 44px;
}
.section-head .eyebrow {
font-size: 12px;
letter-spacing: 1.2px;
}
.muted-text { color: var(--muted); font-size: 16px; line-height: 1.85; }
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
}
.feature {
padding: 28px;
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--r-xl);
box-shadow: 0 8px 32px rgba(11, 126, 106, 0.07);
transition: var(--ease);
position: relative;
overflow: hidden;
}
.feature::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 100px;
height: 100px;
background: radial-gradient(circle, rgba(11, 126, 106, 0.06) 0%, transparent 70%);
border-radius: 0 0 0 100%;
}
.feature:hover {
transform: translateY(-5px);
box-shadow: var(--sh2);
border-color: rgba(11, 126, 106, 0.20);
}
.feature-icon {
width: 52px;
height: 52px;
display: inline-grid;
place-items: center;
border-radius: 16px;
background: rgba(11, 126, 106, 0.08);
margin-bottom: 18px;
}
.feature-icon svg {
width: 28px;
height: 28px;
color: var(--brand);
}
.feature p, .muted-text, .footer p, details p {
color: var(--muted);
font-size: 14.5px;
line-height: 1.8;
}
.split { gap: 64px; align-items: center; }
.settings-list {
display: flex;
flex-direction: column;
gap: 14px;
}
.setting-item {
display: flex;
gap: 16px;
align-items: flex-start;
padding: 20px 22px;
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--r-lg);
box-shadow: 0 4px 20px rgba(11, 126, 106, 0.06);
transition: var(--ease);
}
.setting-item:hover {
transform: translateX(-4px);
box-shadow: var(--sh);
border-color: rgba(11, 126, 106, 0.18);
}
.setting-icon { font-size: 28px; flex-shrink: 0; width: 48px; text-align: center; }
.setting-item strong { font-size: 15px; font-weight: 800; display: block; }
.setting-item p { margin: 0; font-size: 13.5px; color: var(--muted); }
.sections-cards {
display: grid;
grid-template-columns: 1fr;
gap: 14px;
}
.sec-card {
display: flex;
align-items: center;
gap: 18px;
padding: 22px 26px;
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--r-lg);
box-shadow: 0 4px 20px rgba(11, 126, 106, 0.06);
transition: var(--ease);
cursor: default;
}
.sec-card:hover {
transform: translateY(-4px);
box-shadow: var(--sh);
border-color: rgba(11, 126, 106, 0.20);
}
.sec-num {
font-size: 26px;
font-weight: 900;
color: var(--gold);
opacity: 0.7;
font-variant-numeric: tabular-nums;
}
.sec-card h3 { margin: 0; font-size: 17px; }
.sec-card p { margin: 2px 0 0; font-size: 13.5px; color: var(--muted); }
.flow { display: flex; flex-direction: column; gap: 14px; }
.flow-item {
display: grid;
grid-template-columns: 46px 1fr;
gap: 18px;
align-items: center;
padding: 20px 24px;
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--r-lg);
box-shadow: 0 4px 20px rgba(11, 126, 106, 0.06);
transition: var(--ease);
}
.flow-item:hover {
transform: translateY(-3px);
box-shadow: var(--sh);
}
.flow-item > span {
width: 46px; height: 46px;
border-radius: 50%;
display: grid;
place-items: center;
font-size: 20px;
font-style: normal;
font-weight: 900;
background: linear-gradient(135deg, var(--brand), var(--brand-light));
color: #fff;
flex-shrink: 0;
}
.flow-item strong {
display: block;
font-size: 17px;
font-weight: 800;
margin: 0 0 4px;
}
.flow-item p { margin: 0; font-size: 13.5px; color: var(--muted); }
.premium-card {
display: grid;
grid-template-columns: 1fr 340px;
gap: 56px;
padding: 52px;
border-radius: 36px;
background: linear-gradient(145deg, #073d33 0%, var(--brand-dark) 55%, var(--brand) 100%);
border: 1px solid rgba(11, 126, 106, 0.35);
box-shadow: var(--sh3);
position: relative;
overflow: hidden;
}
.premium-card::before {
content: '';
position: absolute;
top: -70px; left: -70px;
width: 280px; height: 280px;
border-radius: 50%;
background: radial-gradient(circle, rgba(212, 168, 67, 0.20) 0%, transparent 68%);
pointer-events: none;
}
.premium-card::after {
content: '';
position: absolute;
bottom: -60px; right: -60px;
width: 300px; height: 300px;
border-radius: 50%;
background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
pointer-events: none;
}
.premium-left {
display: flex;
flex-direction: column;
gap: 22px;
}
.premium-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 14px;
border-radius: 999px;
background: rgba(212, 168, 67, 0.15);
border: 1px solid rgba(212, 168, 67, 0.35);
color: var(--gold-light);
font-size: 12px;
font-weight: 900;
letter-spacing: 0.4px;
width: fit-content;
}
.premium-badge svg { width: 14px; height: 14px; }
.premium-headline {
margin: 0;
font-size: clamp(22px, 3vw, 34px);
font-weight: 900;
line-height: 1.25;
color: #fff;
}
.premium-sub {
margin: 0;
color: rgba(230, 247, 243, 0.65);
font-size: 14.5px;
line-height: 1.8;
max-width: 500px;
}
.premium-features {
display: flex;
flex-direction: column;
gap: 10px;
margin: 0;
padding: 0;
list-style: none;
}
.premium-features li {
display: flex;
align-items: center;
gap: 12px;
padding: 13px 16px;
border-radius: 14px;
background: rgba(255, 255, 255, 0.07);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.09);
font-size: 14.5px;
font-weight: 800;
color: #e6f7f3;
transition: var(--ease);
}
.premium-features li:hover {
background: rgba(255, 255, 255, 0.13);
transform: translateX(-5px);
}
.premium-features .check {
display: inline-flex;
align-items: center;
justify-content: center;
width: 22px;
height: 22px;
border-radius: 50%;
background: rgba(11, 126, 106, 0.3);
color: #a8e8d8;
font-size: 12px;
font-weight: 900;
flex-shrink: 0;
}
.premium-right {
display: flex;
align-items: stretch;
}
.premium-price-card {
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
padding: 36px 28px;
border-radius: 24px;
background: rgba(255,255,255,0.09);
border: 1px solid rgba(255,255,255,0.14);
backdrop-filter: blur(14px);
text-align: center;
width: 100%;
}
.price-label {
margin: 0;
color: var(--gold-light);
font-size: 13px;
font-weight: 900;
letter-spacing: 0.6px;
text-transform: uppercase;
}
.price-value {
display: flex;
align-items: baseline;
gap: 4px;
font-variant-numeric: tabular-nums;
}
.currency {
font-size: 18px;
font-weight: 900;
color: rgba(230,247,243,0.8);
align-self: flex-end;
margin-bottom: 10px;
}
.amount {
font-size: clamp(52px, 5vw, 64px);
font-weight: 900;
color: #fff;
line-height: 1;
}
.per {
font-size: 18px;
font-weight: 800;
color: rgba(230,247,243,0.75);
align-self: flex-end;
margin-bottom: 8px;
}
.price-note {
margin: 0;
color: rgba(230,247,243,0.55);
font-size: 13px;
}
.premium-cta {
width: 100%;
padding: 16px 20px;
font-size: 16px;
font-weight: 900;
box-shadow: 0 10px 36px rgba(0,0,0,0.25);
transition: var(--ease);
}
.premium-cta:hover {
transform: translateY(-3px);
box-shadow: 0 14px 48px rgba(0,0,0,0.38);
}
.price-guarantee {
margin: 0;
color: var(--gold-light);
font-size: 13.5px;
font-weight: 800;
}
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
margin: 10px 0;
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--r-lg);
box-shadow: 0 4px 20px rgba(11, 126, 106, 0.06);
transition: var(--ease);
overflow: hidden;
}
.faq-item:hover {
border-color: rgba(11, 126, 106, 0.20);
}
.faq-item details {
padding: 18px 24px;
}
.faq-item summary {
cursor: pointer;
font-weight: 800;
list-style: none;
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
content: '';
flex-shrink: 0;
width: 24px; height: 24px;
border-radius: 50%;
background: var(--soft);
border: 1.5px solid var(--line);
transition: var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--brand); }
.faq-item p {
margin: 14px 0 0;
padding-right: 20px;
border-right: 2px solid var(--line);
font-size: 14px;
color: var(--muted);
line-height: 1.85;
}
.cta {
padding-top: 0;
}
.cta-box {
text-align: center;
padding: 80px 48px;
border-radius: 40px;
background: linear-gradient(135deg, #063d34 0%, var(--brand-dark) 50%, var(--brand) 100%);
color: #fff;
box-shadow: var(--sh3);
position: relative;
overflow: hidden;
}
.cta-box::before {
content: '';
position: absolute;
top: -80px; right: -80px;
width: 400px; height: 400px;
border-radius: 50%;
background: radial-gradient(circle, rgba(212, 168, 67, 0.22) 0%, transparent 68%);
pointer-events: none;
animation: pulse-glow 6s ease-in-out infinite;
}
.cta-box::after {
content: '';
position: absolute;
bottom: -60px; left: -60px;
width: 300px; height: 300px;
border-radius: 50%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
pointer-events: none;
}
@keyframes pulse-glow {
0%, 100% { opacity: 0.5; transform: scale(1); }
50%       { opacity: 1;   transform: scale(1.10); }
}
.cta-box h2 {
position: relative;
margin-bottom: 12px;
}
.cta-box > p {
position: relative;
color: rgba(255, 255, 255, 0.72);
font-size: 17px;
margin-bottom: 40px;
}
.cta-box .btn.light {
position: relative;
align-self: center;
font-size: 17px;
padding: 16px 36px;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.cta-box .btn.light:hover {
transform: translateY(-3px);
box-shadow: 0 16px 52px rgba(0, 0, 0, 0.35);
}
.footer {
padding: 60px 0 0;
background: #061c14;
color: #d4f0ec;
position: relative;
}
.footer::before {
content: '';
position: absolute;
top: 0; left: 50%;
transform: translateX(-50%);
width: min(600px, 98%);
height: 1px;
background: linear-gradient(90deg, transparent, var(--brand), var(--gold), transparent);
opacity: 0.45;
}
.footer-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}
.footer-brand {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 14px;
}
.footer-brand strong {
font-size: 22px;
font-weight: 900;
color: #fff;
}
.footer-logo,
.footer-brand img {
width: 44px;
height: 44px;
object-fit: contain;
padding: 5px;
border-radius: 14px;
background: rgba(255, 255, 255, 0.96);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}
.footer p {
color: rgba(212, 240, 236, 0.65);
max-width: 480px;
}
.footer-links {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: flex-end;
}
.footer-links a {
font-size: 14px;
font-weight: 800;
color: #c6ece6;
padding: 6px 0;
position: relative;
transition: var(--ease);
}
.footer-links a::before {
content: '';
position: absolute;
bottom: 3px;
right: 0;
width: 0;
height: 1.5px;
background: var(--gold);
border-radius: 99px;
transition: var(--ease);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links a:hover::before { width: 100%; }
.footer-bottom {
margin-top: 50px;
padding: 20px 0;
border-top: 1px solid rgba(255,255,255,0.06);
text-align: center;
font-size: 13px;
color: rgba(212, 240, 236, 0.40);
}
.section-head h2 { margin-bottom: 12px; color: var(--ink); }
.feature h3, .flow-item strong, .sec-card h3 {
font-size: 18px;
margin-bottom: 8px;
}
.page-shell {
min-height: calc(100vh - 80px);
padding: 80px 0 110px;
}
.page-card {
max-width: 860px;
margin: 0 auto;
padding: 52px;
background: var(--surface);
border: 1px solid var(--line);
border-radius: var(--r-xl);
box-shadow: 0 4px 32px rgba(11, 126, 106, 0.07);
}
.page-card h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 14px; }
.page-card h2 {
margin-top: 36px;
font-size: 24px;
font-weight: 800;
color: var(--brand-dark);
}
.page-card h2 ~ p,
.page-card > p + p { color: var(--muted); font-size: 15px; }
.page-card p + p { margin-top: 12px; }
.page-card .support-mail {
display: inline-flex;
margin-top: 16px;
padding: 14px 24px;
border-radius: 16px;
background: linear-gradient(135deg, rgba(11, 126, 106, 0.09), rgba(212, 168, 67, 0.12));
color: var(--brand);
font-weight: 900;
font-size: 16px;
border: 1px solid rgba(11, 126, 106, 0.16);
transition: var(--ease);
}
.page-card .support-mail:hover {
transform: translateY(-2px);
box-shadow: var(--sh);
}
.fade-up {
opacity: 1;
transform: none;
}
.fade-up.is-visible {
opacity: 1;
transform: translateY(0);
}
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.26s; }
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
scroll-behavior: auto !important;
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
.fade-up {
opacity: 1;
transform: none;
}
}
@media (max-width: 960px) {
.hero-grid,
.split,
.premium-card {
grid-template-columns: 1fr;
gap: 48px;
}
.hero {
min-height: 0;
padding: 52px 0 64px;
text-align: center;
}
.hero-grid { text-align: center; }
.hero-content { max-width: 600px; margin-inline: auto; }
.hero-lead { margin-inline: auto; }
.hero-actions { justify-content: center; }
.trust-row { justify-content: center; }
.section-head { text-align: center; margin-inline: auto; }
.phone { width: min(290px, 80vw); transform: rotate(0); }
.phone:hover { transform: translateY(-4px); }
.app-visual { min-height: 560px; justify-items: center; }
.summary-grid { grid-template-columns: 1fr 1fr; }
.footer-grid { grid-template-columns: 1fr; text-align: center; }
.footer-links { justify-content: center; }
.cta-box { padding: 56px 28px; }
.feature .sec-card { text-align: left; }
}
@media (max-width: 760px) {
.features-grid,
.summary-grid { grid-template-columns: 1fr; }
.nav {
flex-wrap: wrap;
}
.menu-btn {
display: inline-grid;
place-items: center;
}
.nav-links {
position: fixed;
top: 80px;
right: 16px;
left: 16px;
display: none;
flex-direction: column;
align-items: stretch;
gap: 2px;
padding: 12px;
border-radius: var(--r-xl);
background: #fff;
border: 1px solid var(--line);
box-shadow: var(--sh3);
z-index: 99;
}
.nav-links.show { display: flex; }
.nav-links.show-static {
position: static;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
width: 100%;
padding: 0 0 14px;
border: 0;
border-radius: 0;
background: transparent;
box-shadow: none;
}
.nav-links a {
padding: 14px 18px;
border-radius: var(--r-md);
font-size: 16px;
transition: var(--ease);
}
.nav-links a:hover,
.nav-links a:focus {
background: var(--soft);
color: var(--brand);
}
.phone { min-height: 520px; }
.phone-screen { min-height: 470px; }
.phone-screen.actual-screen picture,
.real-app-screenshot { height: 470px; }
.section { padding: 68px 0; }
.page-card { padding: 32px 22px; }
.hero-actions { flex-direction: column; }
.btn { width: 100%; }
.flow-item { grid-template-columns: 38px 1fr; gap: 14px; }
.flow-item > span { width: 38px; height: 38px; font-size: 17px; }
.premium-card {
grid-template-columns: 1fr;
gap: 32px;
padding: 36px 22px;
}
.premium-price-card { padding: 28px 22px; }
.amount { font-size: 52px; }
.cta-box { padding: 48px 20px; }
}
@media (max-width: 440px) {
.trust-row { flex-direction: column; align-items: stretch; }
.trust-row span { text-align: center; }
.hero-lead { font-size: 17px; }
}