/* Fonts and base */
:root {
	--bg: #f6f7f8;
	--surface: #ffffff;
	--text: #1e293b;
	--muted: #6b7280;
	--primary: #8ba0a8;
	--primary-strong: #6d8994;
	--ring: rgba(139, 160, 168, 0.35);
	--shadow: 0 10px 30px rgba(20, 29, 45, 0.08);
	--radius: 16px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
	margin: 0;
	font-family: Inter, Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; border-radius: calc(var(--radius) - 6px); }
.container { width: min(1100px, 92%); margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; background: rgba(255,255,255,0.7); backdrop-filter: saturate(150%) blur(10px); z-index: 20; border-bottom: 1px solid #eef1f3; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.logo { width: 24px; height: 24px; background: var(--primary); color: #fff; display: grid; place-items: center; border-radius: 50%; font-size: 14px; }
.brand-name { letter-spacing: 0.4px; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 500; }
.nav a:hover { color: var(--text); }

.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; border-radius: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--text); margin: 7px 8px; border-radius: 2px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; border: 1px solid transparent; text-decoration: none; font-weight: 600; transition: .2s ease; cursor: pointer; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--primary-strong); transform: translateY(-1px); }
.btn--ghost { color: var(--text); background: rgba(255,255,255,0.6); border-color: #e5eaee; }
.btn--ghost:hover { background: #fff; }

/* Hero */
.hero { position: relative; overflow: clip; }
.hero-bg.full { position: relative; min-height: calc(100vh - 70px); background: center/cover no-repeat url('./photo_2025-08-28 18.02.05.jpeg'); }
.hero-overlay { position: absolute; inset: 0; background:
	linear-gradient(180deg, rgba(20,24,33,0.35), rgba(20,24,33,0.25)),
	radial-gradient(1000px 500px at 10% 10%, rgba(99,102,241,0.30), transparent 60%),
	radial-gradient(1000px 500px at 90% 30%, rgba(16,185,129,0.28), transparent 60%);
	mix-blend-mode: normal; }
.orb { position: absolute; width: 220px; height: 220px; border-radius: 50%; filter: blur(20px); opacity: 0.35; pointer-events: none; }
.orb--1 { background: #8ba0a8; top: 10%; left: 8%; animation: float 9s ease-in-out infinite; }
.orb--2 { background: #cbd5db; bottom: 12%; right: 10%; animation: float 11s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-16px) } }
.dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 24px 24px; mix-blend-mode: overlay; }
.hero-inner.hero--full { position: absolute; inset: 0; display: grid; align-items: center; }
.hero-copy { max-width: 680px; padding: 0 4%; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.badge { background: rgba(255,255,255,0.66); color: #0b0f14; border: 1px solid rgba(255,255,255,0.8); padding: 6px 10px; border-radius: 999px; font-weight: 600; font-size: 13px; }
.hero-copy h1 { color: #ffffff; text-shadow: 0 2px 12px rgba(0,0,0,0.25); font-size: clamp(32px, 5vw, 56px); line-height: 1.07; margin: 0 0 14px; letter-spacing: -0.02em; }
.hero-copy p { color: #dde6ec; margin: 0 0 22px; font-size: 18px; }
.hero-cta .btn--ghost { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); color: #fff; }
.hero-cta .btn--ghost:hover { background: rgba(255,255,255,0.3); }
.hero-stats { display: grid; grid-template-columns: repeat(3, auto); gap: 22px; margin: 18px 0 0; color: #e7eef3; }
.hero-stats li { list-style: none; display: grid; }
.hero-stats strong { font-size: 20px; }
.hero-stats span { color: #b9c6cf; font-size: 13px; }

.cite-ref { height: 12px; }

/* Sections */
.section { padding: 68px 0; }
.section-header { text-align: center; margin-bottom: 26px; }
.section-header h2 { font-size: clamp(22px, 2.6vw, 34px); margin: 0 0 10px; }
.section-header p { color: var(--muted); margin: 0 auto; max-width: 700px; }

/* Benefits */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-card { background: var(--surface); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); border: 1px solid #eef1f3; display: grid; gap: 10px; }
.benefit-card h3 { margin: 6px 4px 0; font-size: 18px; }
.benefit-card p { margin: 0 4px 6px; color: var(--muted); }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi-card { background: var(--surface); border-radius: var(--radius); padding: 18px; border: 1px solid #eef1f3; box-shadow: var(--shadow); display: grid; gap: 12px; }
.testi-card blockquote { margin: 0; color: var(--text); font-size: 16px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #b6c4ca, #8ba0a8); color: #fff; display: grid; place-items: center; font-weight: 700; }
.name { font-weight: 700; }
.role { color: var(--muted); font-size: 14px; }

/* FAQ */
.accordion { display: grid; gap: 10px; }
.item { background: var(--surface); border: 1px solid #eef1f3; border-radius: var(--radius); box-shadow: var(--shadow); padding: 6px 12px; }
.item summary { cursor: pointer; list-style: none; font-weight: 600; padding: 10px; border-radius: 12px; }
.item[open] summary { background: #f2f5f7; }
.item .content { color: var(--muted); padding: 0 12px 12px; }

/* Apply */
.apply-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 26px; align-items: start; background: linear-gradient(180deg, #ffffff, #f8fafb); border: 1px solid #eef1f3; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.apply-copy h2 { margin: 0 0 10px; }
.apply-copy p { color: var(--muted); margin: 0 0 12px; }
.ticks { margin: 0; padding-left: 18px; }
.ticks li { margin-bottom: 6px; }

.apply-form { display: grid; gap: 10px; }
.apply-form label { display: grid; gap: 6px; }
.apply-form span { font-weight: 600; }
.apply-form input, .apply-form select { width: 100%; padding: 12px 12px; border-radius: 12px; border: 1px solid #d9e2e8; background: #fff; outline: none; transition: .15s ease; }
.apply-form input:focus, .apply-form select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--ring); }
.form-note { color: var(--muted); font-size: 13px; margin: 0; }

/* Footer */
.site-footer { padding: 30px 0 60px; color: var(--muted); }
.footer-inner { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; }
.footer-inner .brand { align-self: start; }
.footer-inner p { margin: 0; }
.footer-inner .tiny { grid-column: 1 / -1; font-size: 12px; }
.footer-inner a { color: var(--muted); }
.footer-inner a:hover { color: var(--text); }

/* Social */
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ig-card, .tt-card { position: relative; background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid #eef1f3; box-shadow: var(--shadow); }
.ig-meta, .tt-meta { position: absolute; left: 10px; right: 10px; bottom: 10px; display: flex; align-items: center; justify-content: space-between; background: rgba(0,0,0,0.4); color: #fff; padding: 6px 10px; border-radius: 12px; backdrop-filter: blur(4px); font-weight: 600; }
.tt-video { width: 100%; height: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; }
.ig-card img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }

/* Responsive */
@media (max-width: 980px) {
	.hero-inner { grid-template-columns: 1fr; }
	.hero-visual { min-height: 520px; }
	.apply-inner { grid-template-columns: 1fr; }
	.benefit-grid { grid-template-columns: repeat(2, 1fr); }
	.testi-grid { grid-template-columns: 1fr 1fr; }
	.nav { display: none; position: absolute; right: 4%; top: 60px; background: #ffffff; padding: 10px 12px; border-radius: 12px; box-shadow: var(--shadow); border: 1px solid #eef1f3; }
	.nav a { display: block; padding: 8px 10px; }
	.nav.show { display: block; }
	.nav-toggle { display: inline-block; }
	.social-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.hero-inner { padding: 36px 0 20px; }
	.phone-mockup { width: 260px; height: 500px; }
	.feed { inset: 46px 12px 12px; }
	.benefit-grid { grid-template-columns: 1fr; }
	.testi-grid { grid-template-columns: 1fr; }
	.social-grid { grid-template-columns: 1fr; }
} 