/* ==========================================================================
   WalletIN Theme — Main Component Styles
   ==========================================================================
   Ported from the static HTML mockup, scoped to .walletin-* class names so
   they don't conflict with Kadence's stock styles.
   ========================================================================== */

/* ----- Design tokens (CSS custom properties) ----- */
:root {
	--wln-bg:        #0A1628;
	--wln-bg-2:      #0E1B30;
	--wln-surface:   #152033;
	--wln-surface-2: #1B2740;
	--wln-border:    rgba(255,255,255,.08);
	--wln-text:      #F8FAFC;
	--wln-muted:     #94A3B8;
	--wln-dim:       #64748B;
	--wln-teal:      #2DD4BF;
	--wln-teal-2:    #34D399;
	--wln-blue:      #3B82F6;
	--wln-blue-2:    #2563EB;
	--wln-coral:     #F87171;
	--wln-gradient:  linear-gradient(135deg,#2DD4BF 0%,#3B82F6 100%);
	--wln-card-grad: linear-gradient(135deg,rgba(45,212,191,.18) 0%,rgba(59,130,246,.22) 100%);
	--wln-radius:    16px;
	--wln-radius-lg: 24px;
	--wln-shadow:    0 20px 60px rgba(0,0,0,.35);
	--wln-glow:      0 0 80px rgba(45,212,191,.18);
}

/* ----- Base body + typography ----- */
body {
	background-color: var(--wln-bg) !important;
	color: var(--wln-text);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background-image:
		radial-gradient(1200px 600px at 80% -10%, rgba(45,212,191,.12), transparent 60%),
		radial-gradient(900px 500px at 10% 40%, rgba(59,130,246,.12), transparent 55%);
	background-attachment: fixed;
}

h1,h2,h3,h4,h5,h6,
.walletin-display {
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	letter-spacing: -.02em;
	line-height: 1.1;
	color: var(--wln-text);
}

.walletin-section-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: var(--wln-teal);
	text-transform: uppercase;
	letter-spacing: .12em;
	margin-bottom: 14px;
}

.walletin-grad-text {
	background: var(--wln-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* ----- Buttons ----- */
.walletin-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: transform .15s ease, box-shadow .2s ease, background .2s;
	white-space: nowrap;
}
.walletin-btn-primary {
	background: var(--wln-gradient);
	color: #0B1424;
	box-shadow: 0 10px 30px rgba(45,212,191,.35);
}
.walletin-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(45,212,191,.45);
}
.walletin-btn-ghost {
	color: var(--wln-text);
	background: transparent;
	border: 1px solid var(--wln-border);
}
.walletin-btn-ghost:hover { background: rgba(255,255,255,.04); }

/* ==========================================================================
   KADENCE OVERRIDES
   ==========================================================================
   Kadence's default styling applies white/light backgrounds and padded
   containers around the main content. Neutralize those so our dark navy
   body color shows through everywhere and our sections can run full-width.
   ========================================================================== */

html,
body.walletin-body {
	background-color: var(--wln-bg) !important;
	color: var(--wln-text) !important;
}

/* Strip backgrounds from every wrapper Kadence might insert. */
.walletin-body #wrapper,
.walletin-body #inner-wrap,
.walletin-body .site,
.walletin-body .site-container,
.walletin-body .site-content,
.walletin-body #content,
.walletin-body .content-wrap,
.walletin-body .content-container,
.walletin-body #main,
.walletin-body .site-main,
.walletin-body .entry-content,
.walletin-body .entry-content-wrap,
.walletin-body article.page,
.walletin-body article.post,
.walletin-body .hentry,
.walletin-body .wp-site-blocks,
.walletin-body .wp-block-post-content,
.walletin-body .single-content,
.walletin-body .loop-entry {
	background: transparent !important;
	background-color: transparent !important;
	color: var(--wln-text);
}

/* Kadence wraps page content in a max-width container with padding. Make
   the homepage break out so our patterns can stretch edge-to-edge while
   internal .walletin-container still constrains text/grid. */
.walletin-body.home .content-container,
.walletin-body.home .content-wrap,
.walletin-body.home .entry-content,
.walletin-body.home .entry-content-wrap,
.walletin-body.home article.page,
.walletin-body.home .site-main {
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	width: 100%;
}

/* Hide Kadence's page-title row on the homepage (we have our own hero) */
.walletin-body.home .entry-hero,
.walletin-body.home .page-title,
.walletin-body.home header.entry-header {
	display: none !important;
}

/* Reset Kadence's default text color so headings, links, paragraphs render
   in our palette regardless of Kadence's customizer settings. */
.walletin-body h1,
.walletin-body h2,
.walletin-body h3,
.walletin-body h4,
.walletin-body h5,
.walletin-body h6,
.walletin-body p,
.walletin-body li,
.walletin-body span {
	color: inherit;
}

/* Kadence's content card-style shadow on .entry-content — kill it */
.walletin-body .entry-content,
.walletin-body .content-bg,
.walletin-body .content-style-unboxed,
.walletin-body .content-style-boxed {
	box-shadow: none !important;
	border-radius: 0 !important;
}

/* ============ SKIP LINK (accessibility) ============ */
.skip-link.screen-reader-text {
	position: absolute;
	left: -9999px;
	top: 0;
}
.skip-link.screen-reader-text:focus {
	left: 8px;
	top: 8px;
	background: #fff;
	color: #000;
	padding: 8px 12px;
	z-index: 10000;
}

/* ============ SITE HEADER (overrides Kadence) ============ */
.walletin-site-header {
	position: sticky;
	top: 0;
	z-index: 9000;
	backdrop-filter: saturate(180%) blur(16px);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	background: rgba(10, 22, 40, 0.92) !important;
	border-bottom: 1px solid var(--wln-border);
	width: 100%;
}
/* Ensure the brand text + nav links are bright enough to be readable */
.walletin-site-header .walletin-brand,
.walletin-site-header .walletin-brand .brand-text {
	color: var(--wln-text) !important;
}
.walletin-site-header .walletin-nav-links a {
	color: var(--wln-muted) !important;
}
.walletin-site-header .walletin-nav-links a:hover,
.walletin-site-header .walletin-nav-links .current-menu-item > a {
	color: var(--wln-text) !important;
}
.walletin-site-header .walletin-btn-ghost {
	color: var(--wln-text) !important;
	border-color: var(--wln-border) !important;
}
.walletin-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	gap: 32px;
}
.walletin-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: -0.015em;
	line-height: 1;
	color: var(--wln-text);
	text-decoration: none;
	flex-shrink: 0;
}
.walletin-brand .brand-mark {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	filter: drop-shadow(0 8px 18px rgba(45, 212, 191, 0.3));
}
.walletin-brand .brand-mark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	vertical-align: middle;
}
.walletin-brand .brand-text {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	height: 44px;
}

/* Nav links — works with WP's nav_menu wrapper output */
.walletin-nav-links {
	display: flex;
	gap: 32px;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
	justify-content: center;
}
.walletin-nav-links li { list-style: none; }
.walletin-nav-links a {
	font-size: 14px;
	color: var(--wln-muted);
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s;
}
.walletin-nav-links a:hover,
.walletin-nav-links .current-menu-item > a {
	color: var(--wln-text);
}

.walletin-nav-cta {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-shrink: 0;
}

/* Mobile menu toggle (hamburger) */
.walletin-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.walletin-mobile-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--wln-text);
	transition: transform 0.3s, opacity 0.3s;
}
.walletin-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.walletin-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.walletin-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============ SITE FOOTER (overrides Kadence) ============ */
.walletin-site-footer {
	padding: 80px 0 40px;
	border-top: 1px solid var(--wln-border);
	margin-top: 80px;
	background: var(--wln-bg);
	color: var(--wln-text);
}
.walletin-ft-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 60px;
}
.walletin-ft-brand p {
	color: var(--wln-muted);
	font-size: 14px;
	margin: 18px 0 22px;
	max-width: 300px;
}
.walletin-socials {
	display: flex;
	gap: 10px;
}
.walletin-socials a {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--wln-surface);
	border: 1px solid var(--wln-border);
	display: grid;
	place-items: center;
	color: var(--wln-muted);
	transition: color 0.2s, border-color 0.2s;
	text-decoration: none;
}
.walletin-socials a:hover {
	color: var(--wln-teal);
	border-color: var(--wln-teal);
}
.walletin-ft-col h5 {
	font-size: 13px;
	font-weight: 600;
	color: var(--wln-text);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 18px;
	font-family: 'Inter', sans-serif;
}
.walletin-ft-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0;
	margin: 0;
}
.walletin-ft-col li {
	list-style: none;
}
.walletin-ft-col a {
	font-size: 14px;
	color: var(--wln-muted);
	transition: color 0.2s;
	text-decoration: none;
}
.walletin-ft-col a:hover {
	color: var(--wln-text);
}
.walletin-ft-bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 30px;
	border-top: 1px solid var(--wln-border);
	font-size: 13px;
	color: var(--wln-dim);
	flex-wrap: wrap;
	gap: 12px;
}

/* ============ INNER PAGES (Contact, Privacy, Terms, Blog, 404) ============ */
.walletin-page-wrap {
	padding: 80px 0;
	min-height: 60vh;
}
.walletin-page-header {
	max-width: 820px;
	margin: 0 auto 50px;
	text-align: center;
}
.walletin-page-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 12px;
	color: var(--wln-text);
}
.walletin-page .walletin-page-content {
	max-width: 820px;
	margin: 0 auto;
	color: var(--wln-muted);
	font-size: 16px;
	line-height: 1.7;
}
.walletin-page .walletin-page-content h2,
.walletin-page .walletin-page-content h3 {
	color: var(--wln-text);
	margin: 32px 0 14px;
}
.walletin-page .walletin-page-content p {
	margin: 14px 0;
}
.walletin-page .walletin-page-content a {
	color: var(--wln-teal);
	text-decoration: underline;
}

/* Blog post grid */
.walletin-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.walletin-post-card {
	background: var(--wln-surface);
	border: 1px solid var(--wln-border);
	border-radius: var(--wln-radius-lg);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform 0.3s, border-color 0.3s;
}
.walletin-post-card:hover {
	transform: translateY(-4px);
	border-color: rgba(45, 212, 191, 0.4);
}
.walletin-post-thumb img {
	border-radius: 12px;
	width: 100%;
	height: auto;
}
.walletin-post-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}
.walletin-post-title a {
	color: var(--wln-text);
	text-decoration: none;
}
.walletin-post-title a:hover { color: var(--wln-teal); }
.walletin-post-meta {
	font-size: 12px;
	color: var(--wln-dim);
}
.walletin-post-excerpt {
	font-size: 14px;
	color: var(--wln-muted);
	line-height: 1.6;
}
.walletin-pagination {
	margin-top: 50px;
	text-align: center;
}
.walletin-pagination a,
.walletin-pagination span {
	display: inline-block;
	padding: 8px 14px;
	margin: 0 4px;
	color: var(--wln-muted);
	border: 1px solid var(--wln-border);
	border-radius: 8px;
	text-decoration: none;
}
.walletin-pagination .current {
	background: var(--wln-gradient);
	color: #0B1424;
	border-color: transparent;
}

@media (max-width: 720px) {
	.walletin-post-grid { grid-template-columns: 1fr; }
}

/* Hide any leftover Kadence footer credit just in case */
.site-footer .site-info,
.site-footer .footer-credits,
.site-footer .footer-html,
body.walletin-body .kadence-credits {
	display: none !important;
}

/* ----- Layout containers ----- */
.walletin-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}
.walletin-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 40px;
	align-items: center;
}
.walletin-hero-text {
	display: flex;
	flex-direction: column;
}

/* ----- Section helpers ----- */
.walletin-section {
	padding: 120px 0;
	position: relative;
}
.walletin-section-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 64px;
}
.walletin-section-title {
	font-size: clamp(32px, 4.5vw, 52px);
	font-weight: 700;
	margin-bottom: 18px;
}
.walletin-section-sub {
	font-size: 18px;
	color: var(--wln-muted);
}

/* =========================
   HERO
   ========================= */
.walletin-hero {
	padding: 80px 0 100px;
	position: relative;
}
.walletin-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--wln-teal);
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(45,212,191,.1);
	border: 1px solid rgba(45,212,191,.2);
	margin-bottom: 24px;
}
.walletin-hero-eyebrow .pulse {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--wln-teal);
	box-shadow: 0 0 0 0 rgba(45,212,191,.7);
	animation: walletin-pulse 2s infinite;
}
@keyframes walletin-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(45,212,191,.6); }
	70%  { box-shadow: 0 0 0 8px rgba(45,212,191,0); }
	100% { box-shadow: 0 0 0 0 rgba(45,212,191,0); }
}
.walletin-hero-title {
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 700;
	margin-bottom: 20px;
}
.walletin-hero-sub {
	font-size: 19px;
	color: var(--wln-muted);
	max-width: 560px;
	margin-bottom: 36px;
}
.walletin-hero-meta {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	color: var(--wln-muted);
	font-size: 13px;
}
.walletin-hero-meta .check {
	color: var(--wln-teal);
	font-weight: 700;
	margin-right: 6px;
}

/* ----- Official store badges ----- */
.walletin-store-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 28px;
}
.walletin-store-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0 16px;
	height: 52px;
	min-width: 160px;
	background: #000;
	border-radius: 9px;
	border: 1px solid rgba(255,255,255,.15);
	transition: transform .2s, opacity .2s;
	color: #fff;
	text-decoration: none;
}
.walletin-store-badge:hover { transform: translateY(-2px); opacity: .9; }
.walletin-store-badge .badge-logo {
	width: 24px;
	height: 28px;
	display: grid;
	place-items: center;
	flex-shrink: 0;
}
.walletin-store-badge .badge-logo svg { width: 100%; height: 100%; }
.walletin-store-badge .badge-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.walletin-store-badge .small {
	font-size: 10px;
	color: #fff;
	letter-spacing: .2px;
	margin-bottom: 2px;
}
.walletin-store-badge.google .small {
	text-transform: uppercase;
	letter-spacing: .5px;
	font-size: 9px;
}
.walletin-store-badge .big {
	font-size: 19px;
	color: #fff;
	font-weight: 600;
	letter-spacing: -.4px;
	line-height: 1.05;
}
.walletin-store-badge.google .big {
	font-weight: 500;
	letter-spacing: 0;
}

/* =========================
   PHONE MOCKUP + 3-PHONE STACK
   ========================= */
.walletin-phone-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 640px;
}
.walletin-phone-wrap::before {
	content: "";
	position: absolute;
	width: 560px;
	height: 560px;
	background: var(--wln-gradient);
	filter: blur(140px);
	opacity: .22;
	z-index: 0;
	border-radius: 50%;
}
.walletin-phone {
	position: relative;
	z-index: 1;
	width: 280px;
	height: 580px;
	background: #0B1424;
	border-radius: 42px;
	padding: 6px;
	box-shadow:
		0 0 0 1.5px #2A3754,
		0 30px 70px rgba(0,0,0,.55),
		0 0 80px rgba(45,212,191,.16);
	overflow: hidden;
	transition: transform .4s cubic-bezier(.2,.7,.3,1.2);
}
.walletin-phone::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(180deg, rgba(255,255,255,.06), transparent);
	pointer-events: none;
	border-radius: 42px 42px 0 0;
	z-index: 6;
}
.walletin-phone-notch {
	position: absolute;
	top: 14px;
	left: 50%;
	transform: translateX(-50%);
	width: 82px;
	height: 22px;
	background: #000;
	border-radius: 14px;
	z-index: 5;
}
.walletin-phone-notch::after {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #1d2942, #000);
}
.walletin-phone-screen {
	width: 100%;
	height: 100%;
	background: #0A1628;
	padding: 36px 14px 14px;
	display: flex;
	flex-direction: column;
	gap: 11px;
	border-radius: 36px;
	overflow: hidden;
}

.walletin-phone-stack {
	position: relative;
	width: 100%;
	height: 640px;
	display: flex;
	justify-content: center;
	align-items: center;
	perspective: 1400px;
}
.walletin-phone-stack .walletin-phone {
	position: absolute;
	transition: transform .5s cubic-bezier(.2,.7,.3,1.2);
}
.walletin-phone-stack .phone-main {
	width: 280px;
	height: 580px;
	transform: rotateZ(-2deg);
	z-index: 3;
}
.walletin-phone-stack .phone-back {
	width: 230px;
	height: 480px;
	transform: translate(-150px,-30px) rotateZ(-12deg) scale(.94);
	opacity: .88;
	z-index: 1;
	filter: saturate(.9) brightness(.92);
}
.walletin-phone-stack .phone-front {
	width: 230px;
	height: 480px;
	transform: translate(150px,40px) rotateZ(10deg) scale(.94);
	z-index: 4;
}
.walletin-phone-stack .phone-back .walletin-phone-screen,
.walletin-phone-stack .phone-front .walletin-phone-screen {
	padding: 30px 10px 10px;
	gap: 8px;
}

/* Recreated phone screen elements (dashboard, analytics, budget) — kept brief here.
   Full set ported from mockup, scoped to .walletin-phone-screen. */
.walletin-phone-screen .ds-status   { display: flex; justify-content: space-between; align-items: center; font-size: 10px; color: #fff; padding: 0 4px; margin-bottom: 4px; }
.walletin-phone-screen .ds-card     { padding: 14px; border-radius: 16px; background: linear-gradient(135deg,#2DD4BF 0%,#3B82F6 100%); position: relative; overflow: hidden; }
.walletin-phone-screen .ds-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(255,255,255,.2), transparent 60%); }
.walletin-phone-screen .ds-card-label  { font-size: 10px; color: rgba(255,255,255,.85); margin-bottom: 4px; }
.walletin-phone-screen .ds-card-amount { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -.5px; margin-bottom: 14px; }
.walletin-phone-screen .ds-card-foot   { display: flex; justify-content: space-between; font-size: 9px; color: rgba(255,255,255,.85); }
.walletin-phone-screen .ds-tag         { position: absolute; top: 14px; right: 14px; font-size: 9px; background: rgba(0,0,0,.35); padding: 3px 8px; border-radius: 8px; color: #fff; z-index: 1; }
.walletin-phone-screen .ds-wallet-ico  { width: 18px; height: 18px; border-radius: 6px; background: rgba(255,255,255,.25); position: absolute; top: 14px; left: 14px; z-index: 1; }
.walletin-phone-screen .ds-insight     { display: flex; gap: 8px; align-items: center; background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.25); padding: 9px 12px; border-radius: 12px; font-size: 10px; color: #cbd5e1; }
.walletin-phone-screen .ds-insight .bulb { width: 18px; height: 18px; border-radius: 50%; background: rgba(59,130,246,.2); display: grid; place-items: center; flex-shrink: 0; color: var(--wln-blue); font-size: 10px; }
.walletin-phone-screen .ds-section-title { font-size: 11px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.walletin-phone-screen .ds-section-title .bolt { color: var(--wln-teal); }
.walletin-phone-screen .ds-fast-row    { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.walletin-phone-screen .ds-fast        { background: var(--wln-surface); border: 1px solid var(--wln-border); border-radius: 10px; padding: 8px; }
.walletin-phone-screen .ds-fast-top    { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.walletin-phone-screen .ds-fast .bolt-ico { color: var(--wln-blue); font-size: 10px; }
.walletin-phone-screen .ds-fast-amt    { font-size: 9px; color: var(--wln-muted); }
.walletin-phone-screen .ds-fast-name   { font-size: 9px; color: #fff; font-weight: 600; line-height: 1.1; }
.walletin-phone-screen .ds-fast-add    { font-size: 8px; color: var(--wln-teal); }
.walletin-phone-screen .ds-month       { background: var(--wln-surface); border: 1px solid var(--wln-border); border-radius: 12px; padding: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.walletin-phone-screen .ds-month-title { font-size: 10px; color: var(--wln-muted); margin-bottom: 4px; grid-column: 1/3; }
.walletin-phone-screen .ds-month-label { font-size: 9px; color: var(--wln-muted); }
.walletin-phone-screen .ds-month-val   { font-size: 13px; font-weight: 700; }
.walletin-phone-screen .ds-month .inc  { color: var(--wln-teal); }
.walletin-phone-screen .ds-month .exp  { color: var(--wln-coral); }
.walletin-phone-screen .ds-nav         { margin-top: auto; display: grid; grid-template-columns: repeat(4,1fr); background: rgba(255,255,255,.02); border-top: 1px solid var(--wln-border); padding: 8px 0; font-size: 8px; color: var(--wln-muted); text-align: center; }
.walletin-phone-screen .ds-nav .active { color: var(--wln-blue); }

/* Analytics screen */
.walletin-phone-screen .an-title    { font-size: 20px; font-weight: 800; color: #fff; margin: 6px 4px 14px; }
.walletin-phone-screen .an-card     { background: linear-gradient(135deg,#3B82F6 0%,#2563EB 100%); border-radius: 16px; padding: 14px; color: #fff; position: relative; box-shadow: 0 0 30px rgba(59,130,246,.35); overflow: hidden; }
.walletin-phone-screen .an-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(255,255,255,.2), transparent 60%); }
.walletin-phone-screen .an-card-row    { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; position: relative; z-index: 1; }
.walletin-phone-screen .an-flow-label  { font-size: 10px; color: rgba(255,255,255,.85); }
.walletin-phone-screen .an-pill        { font-size: 9px; background: rgba(0,0,0,.25); padding: 3px 9px; border-radius: 8px; }
.walletin-phone-screen .an-amount      { font-size: 24px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 10px; position: relative; z-index: 1; }
.walletin-phone-screen .an-card-foot   { display: grid; grid-template-columns: 1fr 1fr; font-size: 9px; position: relative; z-index: 1; }
.walletin-phone-screen .an-card-foot .l       { color: rgba(255,255,255,.8); display: block; }
.walletin-phone-screen .an-card-foot strong   { font-size: 11px; display: block; color: #fff; }
.walletin-phone-screen .an-card-foot .pos     { color: #86efac; }
.walletin-phone-screen .an-section-h   { font-size: 11px; font-weight: 700; color: #fff; display: flex; gap: 6px; align-items: center; margin-top: 6px; }
.walletin-phone-screen .an-insights    { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.walletin-phone-screen .an-ins         { background: var(--wln-surface); border-radius: 10px; padding: 8px; font-size: 9px; color: var(--wln-muted); min-height: 78px; display: flex; flex-direction: column; justify-content: space-between; }
.walletin-phone-screen .an-ins .ico    { font-size: 11px; }
.walletin-phone-screen .an-ins .big    { font-size: 13px; color: #fff; font-weight: 700; line-height: 1; }
.walletin-phone-screen .an-ins.warn .ico { color: var(--wln-coral); }
.walletin-phone-screen .an-toggle      { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--wln-surface); padding: 4px; border-radius: 10px; }
.walletin-phone-screen .an-toggle div  { font-size: 9px; padding: 6px; text-align: center; color: var(--wln-muted); }
.walletin-phone-screen .an-toggle div.act { background: var(--wln-blue); color: #fff; border-radius: 7px; font-weight: 600; }
.walletin-phone-screen .an-pie         { background: var(--wln-surface); border-radius: 12px; padding: 12px; display: grid; place-items: center; height: 130px; }

/* Budget screen */
.walletin-phone-screen .bg-h           { font-size: 14px; font-weight: 700; text-align: center; color: #fff; margin: 6px 0 8px; }
.walletin-phone-screen .bg-card        { background: var(--wln-surface); border: 1px solid var(--wln-border); border-radius: 14px; padding: 14px; text-align: center; }
.walletin-phone-screen .bg-name        { font-size: 11px; color: var(--wln-muted); }
.walletin-phone-screen .bg-pct         { font-size: 42px; font-weight: 800; color: var(--wln-teal); line-height: 1; margin: 6px 0 2px; letter-spacing: -1px; }
.walletin-phone-screen .bg-rem         { font-size: 11px; color: var(--wln-teal); margin-bottom: 10px; }
.walletin-phone-screen .bg-vals        { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; font-size: 9px; margin-bottom: 10px; }
.walletin-phone-screen .bg-vals .lbl   { color: var(--wln-muted); font-size: 8px; }
.walletin-phone-screen .bg-vals .val   { font-weight: 700; color: #fff; font-size: 11px; }
.walletin-phone-screen .bg-vals .green { color: var(--wln-teal); }
.walletin-phone-screen .bg-bar         { height: 6px; background: rgba(255,255,255,.08); border-radius: 6px; overflow: hidden; }
.walletin-phone-screen .bg-bar i       { display: block; height: 100%; width: 74%; background: var(--wln-teal); border-radius: 6px; }
.walletin-phone-screen .bg-trend-title { font-size: 13px; font-weight: 700; color: #fff; margin: 8px 0 4px; }
.walletin-phone-screen .bg-trend       { background: var(--wln-surface); border-radius: 12px; padding: 10px; height: 100px; position: relative; }

/* =========================
   TRUST STRIP
   ========================= */
.walletin-trust {
	padding: 40px 0;
	border-top: 1px solid var(--wln-border);
	border-bottom: 1px solid var(--wln-border);
	margin-top: 20px;
}
.walletin-trust-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 24px;
	text-align: center;
}
.walletin-trust-num {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 32px;
	font-weight: 700;
	background: var(--wln-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.walletin-trust-label {
	font-size: 13px;
	color: var(--wln-muted);
	margin-top: 4px;
}

/* =========================
   FEATURE TRIO
   ========================= */
.walletin-features {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
}
.walletin-feature {
	background: var(--wln-surface);
	border: 1px solid var(--wln-border);
	border-radius: var(--wln-radius-lg);
	padding: 36px 28px;
	transition: transform .3s, border-color .3s;
	position: relative;
	overflow: hidden;
}
.walletin-feature:hover {
	transform: translateY(-6px);
	border-color: rgba(45,212,191,.4);
}
.walletin-feat-ico {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: var(--wln-card-grad);
	display: grid;
	place-items: center;
	margin-bottom: 22px;
	border: 1px solid rgba(45,212,191,.25);
	color: var(--wln-teal);
	font-size: 26px;
}
.walletin-feat-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}
.walletin-feat-desc {
	color: var(--wln-muted);
	font-size: 15px;
}

/* =========================
   FEATURE DETAIL
   ========================= */
.walletin-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	padding: 60px 0;
}
.walletin-detail.reverse .walletin-detail-text { order: 2; }
.walletin-detail-text .tag {
	display: inline-flex;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--wln-teal);
	margin-bottom: 14px;
}
.walletin-detail-text h3 {
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 18px;
}
.walletin-detail-text p {
	color: var(--wln-muted);
	font-size: 17px;
	margin-bottom: 24px;
}
.walletin-check-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0;
	margin: 0;
}
.walletin-check-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	color: #cbd5e1;
	font-size: 15px;
}
.walletin-check-list .ic {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(45,212,191,.18);
	display: grid;
	place-items: center;
	color: var(--wln-teal);
	font-size: 12px;
	margin-top: 1px;
}
.walletin-phone.sm {
	transform: rotate(2deg);
	width: 280px;
	height: 560px;
}
.walletin-phone.sm:hover {
	transform: rotate(0) translateY(-4px);
}

/* =========================
   HOW IT WORKS
   ========================= */
.walletin-steps {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 32px;
	position: relative;
}
.walletin-steps::before {
	content: "";
	position: absolute;
	top: 36px;
	left: 12%;
	right: 12%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(45,212,191,.4), rgba(59,130,246,.4), transparent);
}
.walletin-step {
	text-align: center;
	position: relative;
	background: var(--wln-bg);
	padding: 0 12px;
}
.walletin-step-num {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--wln-surface);
	border: 1px solid var(--wln-border);
	display: grid;
	place-items: center;
	margin: 0 auto 22px;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: var(--wln-teal);
}
.walletin-step h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}
.walletin-step p {
	color: var(--wln-muted);
	font-size: 15px;
}

/* =========================
   TESTIMONIALS
   ========================= */
.walletin-testimonials {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 24px;
}
.walletin-tmnl {
	background: var(--wln-surface);
	border: 1px solid var(--wln-border);
	border-radius: var(--wln-radius-lg);
	padding: 30px;
	transition: transform .3s;
}
.walletin-tmnl:hover { transform: translateY(-4px); }
.walletin-stars {
	color: #fbbf24;
	font-size: 14px;
	margin-bottom: 14px;
	letter-spacing: 2px;
}
.walletin-tmnl q {
	font-size: 15px;
	line-height: 1.65;
	color: #cbd5e1;
	display: block;
	margin-bottom: 24px;
}
.walletin-tmnl q::before,
.walletin-tmnl q::after { display: none; }
.walletin-tmnl-foot { display: flex; align-items: center; gap: 12px; }
.walletin-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--wln-gradient);
	display: grid;
	place-items: center;
	color: #0B1424;
	font-weight: 700;
	font-size: 15px;
}
.walletin-tmnl-name { font-size: 14px; font-weight: 600; }
.walletin-tmnl-role { font-size: 12px; color: var(--wln-muted); }

/* =========================
   FAQ (native <details> for max compatibility)
   ========================= */
.walletin-faq-wrap {
	max-width: 820px;
	margin: 0 auto;
}
.walletin-faq-item {
	border-bottom: 1px solid var(--wln-border);
	padding: 22px 0;
}
.walletin-faq-item summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	color: var(--wln-text);
	list-style: none;
}
.walletin-faq-item summary::-webkit-details-marker { display: none; }
.walletin-faq-item summary .ic {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(45,212,191,.1);
	display: grid;
	place-items: center;
	color: var(--wln-teal);
	font-size: 18px;
	flex-shrink: 0;
	margin-left: 16px;
	transition: transform .3s;
}
.walletin-faq-item[open] summary .ic { transform: rotate(45deg); }
.walletin-faq-answer {
	color: var(--wln-muted);
	font-size: 15px;
	margin-top: 14px;
	padding-right: 50px;
}

/* =========================
   CTA BANNER
   ========================= */
.walletin-cta {
	position: relative;
	border-radius: 32px;
	padding: 80px 60px;
	text-align: center;
	overflow: hidden;
	background: var(--wln-surface);
	border: 1px solid var(--wln-border);
}
.walletin-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--wln-gradient);
	opacity: .15;
}
.walletin-cta::after {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: var(--wln-gradient);
	filter: blur(120px);
	opacity: .4;
	top: -300px;
	right: -200px;
	border-radius: 50%;
}
.walletin-cta > * { position: relative; z-index: 1; }
.walletin-cta h2 {
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 14px;
}
.walletin-cta p {
	font-size: 18px;
	color: #cbd5e1;
	margin-bottom: 32px;
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px) {
	/* Header — mobile drawer */
	.walletin-mobile-toggle { display: inline-flex; }
	.walletin-nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(10, 22, 40, 0.96);
		backdrop-filter: blur(16px);
		flex-direction: column;
		justify-content: flex-start;
		gap: 0;
		padding: 20px 24px;
		border-bottom: 1px solid var(--wln-border);
		display: none;
	}
	.walletin-nav-links.open { display: flex; }
	.walletin-nav-links li {
		width: 100%;
		padding: 12px 0;
		border-bottom: 1px solid var(--wln-border);
	}
	.walletin-nav-cta .walletin-btn-ghost { display: none; }
	/* Footer — 2-col on tablet */
	.walletin-ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.walletin-ft-bottom { flex-direction: column; text-align: center; }

	.walletin-hero { padding: 50px 0 70px; }
	.walletin-hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
	.walletin-hero-grid .walletin-phone-wrap { order: -1; }
	.walletin-hero-text .walletin-store-row,
	.walletin-hero-text .walletin-hero-meta { justify-content: center; }
	.walletin-hero-sub { margin-left: auto; margin-right: auto; }
	.walletin-features,
	.walletin-steps,
	.walletin-testimonials,
	.walletin-trust-grid { grid-template-columns: 1fr; gap: 18px; }
	.walletin-trust-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
	.walletin-steps::before { display: none; }
	.walletin-detail { grid-template-columns: 1fr; gap: 40px; padding: 30px 0; }
	.walletin-detail.reverse .walletin-detail-text { order: 0; }
	.walletin-section { padding: 80px 0; }
	.walletin-cta { padding: 60px 28px; }
}
@media (max-width: 720px) {
	.walletin-phone-stack { height: 600px; }
	.walletin-phone-stack .phone-back,
	.walletin-phone-stack .phone-front { display: none; }
	.walletin-phone-stack .phone-main { position: relative; transform: rotate(-2deg); }
}
@media (max-width: 520px) {
	.walletin-phone { transform: rotate(0); }
	.walletin-store-row { justify-content: center; }
	.walletin-store-badge { min-width: auto; }
	.walletin-ft-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WPFORMS — WalletIN brand styling
   ==========================================================================
   Targets WPForms Lite output. Re-skins fields, buttons, labels, errors and
   confirmation messages to match the WalletIN palette so the form looks like
   it belongs in the design instead of a default light WP form.
   ========================================================================== */

.wpforms-container.wpforms-container-full {
	background: var(--wln-surface);
	border: 1px solid var(--wln-border);
	border-radius: var(--wln-radius-lg);
	padding: 40px;
	max-width: 720px;
	margin: 0 auto;
	color: var(--wln-text);
}

/* Field labels */
.wpforms-container .wpforms-field-label,
.wpforms-container .wpforms-field-label-inline {
	color: var(--wln-text) !important;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 8px;
	font-family: 'Inter', sans-serif;
}
.wpforms-container .wpforms-required-label {
	color: var(--wln-coral);
}

/* Sub-labels (e.g. "First / Last" for name fields) */
.wpforms-container .wpforms-field-sublabel {
	color: var(--wln-muted) !important;
	font-size: 12px;
}

/* Input fields, textareas, selects */
.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container input[type="tel"],
.wpforms-container input[type="url"],
.wpforms-container input[type="number"],
.wpforms-container input[type="password"],
.wpforms-container input[type="search"],
.wpforms-container input[type="date"],
.wpforms-container textarea,
.wpforms-container select {
	background: var(--wln-bg-2) !important;
	border: 1px solid var(--wln-border) !important;
	border-radius: 12px !important;
	color: var(--wln-text) !important;
	padding: 12px 16px !important;
	font-size: 15px !important;
	font-family: 'Inter', sans-serif !important;
	transition: border-color 0.2s, box-shadow 0.2s !important;
	box-shadow: none !important;
	width: 100% !important;
	max-width: 100% !important;
}

/* Focus state — teal glow */
.wpforms-container input:focus,
.wpforms-container textarea:focus,
.wpforms-container select:focus {
	border-color: var(--wln-teal) !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15) !important;
}

/* Placeholder text */
.wpforms-container input::placeholder,
.wpforms-container textarea::placeholder {
	color: var(--wln-dim) !important;
}

/* Checkboxes and radios — labels stay readable on dark */
.wpforms-container .wpforms-field-radio label,
.wpforms-container .wpforms-field-checkbox label {
	color: var(--wln-muted) !important;
	font-weight: 400;
}

/* Submit button — WalletIN brand gradient */
.wpforms-container .wpforms-submit-container { text-align: center; margin-top: 28px; }
.wpforms-container button[type="submit"],
.wpforms-container .wpforms-submit {
	background: var(--wln-gradient) !important;
	color: #0B1424 !important;
	border: none !important;
	border-radius: 12px !important;
	padding: 14px 32px !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	letter-spacing: 0.01em !important;
	cursor: pointer !important;
	box-shadow: 0 10px 30px rgba(45, 212, 191, 0.35) !important;
	transition: transform 0.15s ease, box-shadow 0.2s !important;
	font-family: 'Inter', sans-serif !important;
	text-transform: none !important;
}
.wpforms-container button[type="submit"]:hover,
.wpforms-container .wpforms-submit:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 14px 34px rgba(45, 212, 191, 0.45) !important;
}
.wpforms-container button[type="submit"]:disabled {
	opacity: 0.6 !important;
	cursor: not-allowed !important;
}

/* Description text under fields */
.wpforms-container .wpforms-field-description {
	color: var(--wln-muted) !important;
	font-size: 13px;
	margin-top: 6px;
}

/* Field error messages */
.wpforms-container .wpforms-error {
	color: var(--wln-coral) !important;
	font-size: 13px;
	margin-top: 6px;
}
.wpforms-container input.wpforms-error,
.wpforms-container textarea.wpforms-error,
.wpforms-container select.wpforms-error {
	border-color: var(--wln-coral) !important;
	background: rgba(248, 113, 113, 0.05) !important;
}

/* Success confirmation */
.wpforms-confirmation-container-full,
div[id^="wpforms-confirmation"] {
	background: rgba(45, 212, 191, 0.1) !important;
	border: 1px solid rgba(45, 212, 191, 0.3) !important;
	color: var(--wln-text) !important;
	border-radius: 16px !important;
	padding: 24px !important;
	font-family: 'Inter', sans-serif !important;
}

/* Field row spacing */
.wpforms-container .wpforms-field {
	padding: 0 0 18px !important;
}

/* Mobile padding adjustment */
@media (max-width: 720px) {
	.wpforms-container.wpforms-container-full {
		padding: 24px;
		border-radius: 16px;
	}
}
