	/* ============================================================
   ONE STOP INVOICE REDESIGNED HOMEPAGE
   Colors: #215C5C primary · #00c896 accent · #0d1f1f dark
   Font: DM Sans (loaded via head.php)
   Design: Editorial minimal, large type, sharp geometry
   ============================================================ */

	:root {
		--osi-dark: #0d1f1f;
		--osi-primary: #215C5C;
		--osi-mid: #2d7a7a;
		--osi-accent: #00c896;
		--osi-accent2: #e6faf5;
		--osi-muted: #7a8fa3;
		--osi-border: #e4eaf0;
		--osi-surface: #ffffff;
		--osi-bg: #f7fafa;
		--osi-content-max: 1320px;
	}

	/* In-page anchor links: clear fixed .main_navbar (~5.5rem in style.css) */
	main section[id] {
		scroll-margin-top: 5.75rem;
	}

	/* ---- OFFER MODAL ---- */
	.fy-offer-modal-content {
		border-radius: 16px !important;
		overflow: hidden;
		background: #fff;
		border: none !important;
		box-shadow: 0 32px 80px rgba(15, 31, 31, 0.28);
		background-clip: padding-box;
	}

	.fy-offer-modal-content .modal-header {
		position: relative;
		padding-right: 64px;
		background: linear-gradient(135deg, var(--osi-dark) 0%, var(--osi-primary) 100%);
		border: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 0;
	}

	.fy-offer-modal-content .modal-body {
		background: #fff;
		border-radius: 0;
	}

	.fy-offer-badge {
		width: 52px;
		height: 52px;
		background: rgba(0, 200, 150, 0.2);
		border: 1px solid rgba(0, 200, 150, 0.4);
		color: var(--osi-accent);
		font-size: 22px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 12px;
		flex-shrink: 0;
	}

	.fy-offer-headline {
		font-size: 32px;
		line-height: 1.1;
		letter-spacing: -0.02em;
		color: var(--osi-dark);
		font-weight: 800;
	}

	.fy-offer-modal-close {
		position: absolute;
		top: 12px;
		right: 12px;
		width: 38px;
		height: 38px;
		background: rgba(255, 255, 255, 0.15);
		border: 1px solid rgba(255, 255, 255, 0.2);
		color: #fff;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 22px;
		cursor: pointer;
		padding: 0;
		transition: background 0.15s;
		border-radius: 10px;
	}

	.fy-offer-modal-close:hover {
		background: rgba(255, 255, 255, 0.25);
	}

	.fy-offer-modal-close span {
		transform: translateY(-1px);
		display: block;
	}

	.modal.show .modal-dialog {
		animation: osiModalPop 500ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
	}

	@keyframes osiModalPop {
		0% {
			transform: translateY(20px) scale(0.97);
			opacity: 0;
		}

		60% {
			transform: translateY(-4px) scale(1.01);
			opacity: 1;
		}

		100% {
			transform: translateY(0) scale(1);
			opacity: 1;
		}
	}

	/* ---- HERO ---- */
	.osi-hero {
		background: var(--osi-surface);
		padding: 100px 0 80px;
		position: relative;
		overflow: hidden;
	}

	.osi-hero::before {
		content: '';
		position: absolute;
		top: -120px;
		right: -120px;
		width: 600px;
		height: 600px;
		background: radial-gradient(circle, rgba(0, 200, 150, 0.07) 0%, transparent 70%);
		pointer-events: none;
	}

	.osi-hero-inner {
		max-width: var(--osi-content-max);
		margin: 0 auto;
		padding: 0 1.5rem;
		display: grid;
		grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
		gap: 3rem;
		align-items: center;
		position: relative;
		z-index: 2;
	}

	.osi-eyebrow {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		margin-bottom: 1.5rem;
	}

	.osi-eyebrow-dot {
		width: 8px;
		height: 8px;
		background: var(--osi-accent);
		border-radius: 50%;
		animation: osiPulse 2s ease-in-out infinite;
	}

	@keyframes osiPulse {

		0%,
		100% {
			opacity: 1;
			transform: scale(1);
		}

		50% {
			opacity: 0.5;
			transform: scale(1.5);
		}
	}

	.osi-eyebrow-text {
		font-size: 11.5px;
		font-weight: 700;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: var(--osi-primary);
	}

	.osi-hero-h1 {
		font-size: clamp(2.5rem, 4.5vw, 3.875rem);
		font-weight: 800;
		line-height: 1.06;
		letter-spacing: -0.03em;
		color: var(--osi-dark);
		margin-bottom: 1.5rem;
	}

	.osi-hero-h1 .osi-underline {
		color: var(--osi-primary);
		position: relative;
		display: inline-block;
	}

	.osi-hero-h1 .osi-underline::after {
		content: '';
		position: absolute;
		bottom: 3px;
		left: 0;
		right: 0;
		height: 4px;
		background: var(--osi-accent);
	}

	.osi-hero-sub {
		font-size: 1.1rem;
		color: var(--osi-muted);
		line-height: 1.7;
		margin-bottom: 0.75rem;
		max-width: 480px;
	}

	.osi-hero-contrast {
		font-size: 13px;
		color: var(--osi-muted);
		margin-bottom: 2rem;
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.osi-hero-contrast .x {
		color: #e53e3e;
	}

	.osi-hero-actions {
		display: flex;
		gap: 12px;
		flex-wrap: wrap;
		margin-bottom: 1rem;
	}

	.osi-hero-crosslinks {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 0.35rem 0.65rem;
		margin-bottom: 1rem;
		font-size: 14px;
		font-weight: 600;
	}

	.osi-hero-crosslinks a {
		color: var(--osi-primary);
		text-decoration: underline;
		text-decoration-thickness: 1px;
		text-underline-offset: 3px;
	}

	.osi-hero-crosslinks a:hover {
		color: var(--osi-dark);
	}

	.osi-hero-crosslinks .sep {
		color: var(--osi-muted);
		user-select: none;
	}

	.osi-btn-primary {
		background: var(--osi-primary);
		color: #fff;
		border: 2px solid var(--osi-primary);
		padding: 14px 28px;
		font-size: 15px;
		font-weight: 700;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		transition: all 0.2s;
		border-radius: 6px;
	}

	.osi-btn-primary:hover {
		background: var(--osi-dark);
		border-color: var(--osi-dark);
		color: #fff;
		text-decoration: none;
		transform: translateY(-1px);
		box-shadow: 0 8px 24px rgba(13, 31, 31, 0.2);
	}

	.osi-btn-secondary {
		background: transparent;
		color: var(--osi-primary);
		border: 2px solid var(--osi-border);
		padding: 14px 28px;
		font-size: 15px;
		font-weight: 600;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		transition: all 0.2s;
		border-radius: 6px;
	}

	.osi-btn-secondary:hover {
		border-color: var(--osi-primary);
		color: var(--osi-primary);
		text-decoration: none;
		background: var(--osi-accent2);
	}

	.osi-nocredit {
		font-size: 13px;
		font-weight: 600;
		color: #10b981;
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.osi-offer-inline {
		margin-top: 1.5rem;
		padding: 14px 18px;
		background: rgba(0, 200, 150, 0.07);
		border: 1px solid rgba(0, 200, 150, 0.2);
		border-radius: 8px;
		display: inline-flex;
		align-items: center;
		gap: 12px;
	}

	.osi-offer-inline i {
		color: var(--osi-accent);
		font-size: 20px;
	}

	.osi-offer-inline-title {
		font-weight: 800;
		color: var(--osi-dark);
		font-size: 15px;
	}

	.osi-offer-inline-sub {
		font-size: 12px;
		color: var(--osi-muted);
	}

	/* Hero visual — dashboard screenshot + floating badge */
	.osi-hero-visual {
		position: relative;
	}

	.osi-hero-shot {
		position: relative;
		border-radius: 12px;
		overflow: hidden;
		background: var(--osi-dark);
		box-shadow: 0 32px 80px rgba(13, 31, 31, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.06);
	}

	.osi-hero-shot-img {
		display: block;
		width: 100%;
		height: auto;
	}

	.osi-dot {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		flex-shrink: 0;
		box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.12);
	}

	.osi-dot.r {
		background: #ff5f57;
	}

	.osi-dot.y {
		background: #febc2e;
	}

	.osi-dot.g {
		background: #28c840;
	}

	.osi-hero-badge {
		position: absolute;
		z-index: 4;
		bottom: 18px;
		left: 18px;
		right: 18px;
		max-width: min(100% - 36px, 280px);
		background: #fff;
		border: 1px solid var(--osi-border);
		border-radius: 10px;
		padding: 14px 18px;
		box-shadow: 0 8px 32px rgba(13, 31, 31, 0.12);
		display: flex;
		align-items: center;
		gap: 12px;
		min-width: 0;
	}

	.osi-badge-icon {
		width: 40px;
		height: 40px;
		background: var(--osi-accent2);
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--osi-primary);
		font-size: 18px;
		flex-shrink: 0;
	}

	.osi-badge-top {
		font-size: 11px;
		color: var(--osi-muted);
		font-weight: 500;
	}

	.osi-badge-main {
		font-size: 15px;
		font-weight: 800;
		color: var(--osi-dark);
		line-height: 1.2;
	}

	.osi-badge-sub {
		font-size: 11px;
		color: var(--osi-muted);
	}

	/* ---- TRUST BAR ---- */
	.osi-trustbar {
		background: var(--osi-bg);
		border-top: 1px solid var(--osi-border);
		border-bottom: 1px solid var(--osi-border);
		padding: 18px 0;
	}

	.osi-trustbar-inner {
		max-width: var(--osi-content-max);
		margin: 0 auto;
		padding: 0 1.5rem;
		display: flex;
		align-items: center;
		gap: 2rem;
		flex-wrap: wrap;
	}

	.osi-trust-label {
		font-size: 10.5px;
		font-weight: 700;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: var(--osi-muted);
		flex-shrink: 0;
	}

	.osi-trust-items {
		display: flex;
		gap: 1.5rem;
		flex-wrap: wrap;
		align-items: center;
	}

	.osi-trust-item {
		display: flex;
		align-items: center;
		gap: 6px;
		font-size: 13px;
		font-weight: 600;
		color: var(--osi-primary);
	}

	.osi-trust-item i {
		color: var(--osi-accent);
		font-size: 14px;
	}

	/* ---- DIFF STRIP ---- */
	.osi-diff {
		background: var(--osi-primary);
		padding: 28px 0;
	}

	.osi-diff-inner {
		max-width: var(--osi-content-max);
		margin: 0 auto;
		padding: 0 1.5rem;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.osi-diff-item {
		padding: 0 2.5rem;
		border-right: 1px solid rgba(255, 255, 255, 0.1);
		display: flex;
		align-items: center;
		gap: 14px;
	}

	.osi-diff-item:first-child {
		padding-left: 0;
	}

	.osi-diff-item:last-child {
		border-right: none;
	}

	.osi-diff-icon {
		width: 44px;
		height: 44px;
		background: rgba(0, 200, 150, 0.15);
		border: 1px solid rgba(0, 200, 150, 0.3);
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--osi-accent);
		font-size: 18px;
		flex-shrink: 0;
	}

	.osi-diff-text strong {
		font-size: 15px;
		font-weight: 700;
		color: #fff;
		display: block;
		line-height: 1.2;
	}

	.osi-diff-text span {
		font-size: 12.5px;
		color: rgba(255, 255, 255, 0.48);
	}

	/* ---- SECTION WRAPPERS ---- */
	.osi-section {
		padding: 96px 0;
	}

	.osi-section-bg {
		background: var(--osi-bg);
	}

	.osi-section-dark {
		background: var(--osi-dark);
	}

	.osi-section-inner {
		max-width: var(--osi-content-max);
		margin: 0 auto;
		padding: 0 1.5rem;
	}

	.osi-label {
		font-size: 10.5px;
		font-weight: 800;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--osi-accent);
		margin-bottom: 0.875rem;
		display: block;
	}

	.osi-h2 {
		font-size: clamp(2rem, 3.5vw, 3rem);
		font-weight: 800;
		letter-spacing: -0.025em;
		line-height: 1.1;
		color: var(--osi-dark);
		margin-bottom: 1rem;
	}

	.osi-h2-white {
		color: #fff;
	}

	.osi-lead {
		font-size: 1.0625rem;
		color: var(--osi-muted);
		line-height: 1.7;
		max-width: 560px;
	}

	.osi-lead-white {
		color: rgba(255, 255, 255, 0.55);
	}

	/* ---- FEATURES GRID ---- */
	.osi-feat-header {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		align-items: end;
		margin-bottom: 3.5rem;
	}

	.osi-feat-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1px;
		background: var(--osi-border);
		border: 1px solid var(--osi-border);
	}

	.osi-feat-card {
		background: var(--osi-surface);
		padding: 2.5rem;
		transition: all 0.25s;
	}

	.osi-feat-card:hover {
		background: var(--osi-accent2);
		z-index: 1;
	}

	.osi-feat-card-icon {
		width: 52px;
		height: 52px;
		background: var(--osi-bg);
		border: 1px solid var(--osi-border);
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--osi-primary);
		font-size: 22px;
		margin-bottom: 1.25rem;
		transition: all 0.25s;
	}

	.osi-feat-card:hover .osi-feat-card-icon {
		background: var(--osi-primary);
		border-color: var(--osi-primary);
		color: #fff;
	}

	.osi-feat-card h3 {
		font-size: 1rem;
		font-weight: 700;
		color: var(--osi-dark);
		margin-bottom: 0.5rem;
	}

	.osi-feat-card p {
		font-size: 14px;
		color: var(--osi-muted);
		line-height: 1.6;
		margin: 0;
	}

	/* ---- SCREENS ---- */
	.osi-screens {
		display: flex;
		flex-direction: column;
		gap: 5rem;
	}

	.osi-screen-row {
		display: grid;
		grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
		gap: 3rem;
		align-items: center;
	}

	.osi-screen-row.flip {
		direction: rtl;
	}

	.osi-screen-row.flip>* {
		direction: ltr;
	}

	.osi-screen-num {
		font-size: 60px;
		font-weight: 900;
		color: var(--osi-border);
		line-height: 1;
		margin-bottom: 0.5rem;
		letter-spacing: -0.04em;
	}

	.osi-screen-content h3 {
		font-size: 1.75rem;
		font-weight: 800;
		color: var(--osi-dark);
		letter-spacing: -0.02em;
		margin-bottom: 0.75rem;
	}

	.osi-screen-content p {
		font-size: 15px;
		color: var(--osi-muted);
		line-height: 1.7;
		margin-bottom: 1.25rem;
	}

	.osi-screen-tags {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}

	.osi-tag {
		font-size: 12px;
		font-weight: 600;
		color: var(--osi-primary);
		background: var(--osi-accent2);
		border: 1px solid rgba(0, 200, 150, 0.2);
		padding: 4px 12px;
		border-radius: 100px;
	}

	.osi-screen-mock {
		background: var(--osi-bg);
		border: 1px solid var(--osi-border);
		border-radius: 10px;
		overflow: hidden;
		box-shadow: 0 16px 48px rgba(13, 31, 31, 0.07);
	}

	.osi-mock-bar {
		background: var(--osi-surface);
		border-bottom: 1px solid var(--osi-border);
		padding: 10px 16px;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.osi-mock-bar span {
		font-size: 12px;
		color: var(--osi-muted);
	}

	.osi-mock-body {
		aspect-ratio: 2912 / 1742;
		background: linear-gradient(135deg, var(--osi-bg) 0%, rgba(33, 92, 92, 0.04) 100%);
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 8px;
		padding: 2rem;
		position: relative;
		overflow: hidden;
	}

	.osi-mock-body:has(> .osi-screenshot-fill) {
		padding: 0;
		display: block;
	}

	/* A4-style generator output (portrait); app screenshots stay landscape */
	.osi-mock-body--invoice-pdf {
		aspect-ratio: 2481 / 2913;
		background: #fff;
	}

	.osi-mock-body::before {
		content: '';
		position: absolute;
		inset: 0;
		background: repeating-linear-gradient(-45deg, transparent, transparent 10px,
				rgba(33, 92, 92, 0.015) 10px, rgba(33, 92, 92, 0.015) 11px);
	}

	.osi-mock-body:has(> .osi-screenshot-fill)::before {
		display: none;
	}

	.osi-mock-body > .osi-screenshot-fill {
		z-index: 1;
	}

	.osi-mock-body i {
		font-size: 2rem;
		color: var(--osi-primary);
		opacity: 0.25;
		position: relative;
	}

	.osi-mock-body span {
		font-size: 12px;
		color: var(--osi-muted);
		font-weight: 500;
		letter-spacing: 0.04em;
		position: relative;
	}

	/* ---- COMPARE ---- */
	.osi-compare {
		width: 100%;
		border-collapse: collapse;
		margin-top: 3rem;
	}

	.osi-compare th {
		padding: 1rem 1.5rem;
		font-size: 12px;
		font-weight: 700;
		color: var(--osi-muted);
		text-align: left;
		border-bottom: 2px solid var(--osi-border);
		letter-spacing: 0.05em;
		text-transform: uppercase;
	}

	.osi-compare th.us {
		background: var(--osi-accent2);
		color: var(--osi-primary);
		border-bottom-color: var(--osi-accent);
		text-align: center;
	}

	.osi-compare td {
		padding: 1rem 1.5rem;
		font-size: 14px;
		color: var(--osi-dark);
		border-bottom: 1px solid var(--osi-border);
		font-weight: 500;
	}

	.osi-compare td.us {
		background: rgba(0, 200, 150, 0.04);
		text-align: center;
		font-weight: 700;
	}

	.osi-compare tr:last-child td {
		border-bottom: none;
	}

	.icon-yes {
		color: #10b981;
		font-size: 17px;
	}

	.icon-no {
		color: #e53e3e;
		font-size: 17px;
	}

	.icon-meh {
		color: var(--osi-muted);
		font-size: 13px;
	}

	.osi-us-head {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 5px;
	}

	.osi-us-badge {
		font-size: 9px;
		background: var(--osi-accent);
		color: var(--osi-dark);
		padding: 2px 8px;
		border-radius: 2px;
		font-weight: 800;
		letter-spacing: 0.1em;
		text-transform: uppercase;
	}

	/* ---- PRICING ---- */
	.osi-pricing-card {
		background: var(--osi-surface);
		border: 2px solid var(--osi-primary);
		border-radius: 16px;
		overflow: hidden;
		box-shadow: 0 24px 64px rgba(13, 31, 31, 0.12);
		max-width: 920px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 1fr 1.2fr;
	}

	.osi-pricing-left {
		background: var(--osi-dark);
		padding: 3rem;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.osi-plan-label {
		font-size: 10.5px;
		font-weight: 800;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: var(--osi-accent);
		margin-bottom: 1rem;
		display: block;
	}

	.osi-plan-tagline {
		font-size: 1.375rem;
		font-weight: 800;
		color: #fff;
		line-height: 1.3;
		letter-spacing: -0.02em;
		margin-bottom: 1.5rem;
	}

	.osi-plan-was {
		font-size: 14px;
		color: rgba(255, 255, 255, 0.28);
		text-decoration: line-through;
		margin-bottom: 4px;
	}

	.osi-plan-price {
		display: flex;
		align-items: baseline;
		gap: 4px;
	}

	.osi-plan-price .cur {
		font-size: 1.5rem;
		font-weight: 700;
		color: rgba(255, 255, 255, 0.55);
	}

	.osi-plan-price .amt {
		font-size: 4rem;
		font-weight: 900;
		color: #fff;
		letter-spacing: -0.04em;
		line-height: 1;
	}

	.osi-plan-price .per {
		font-size: 1rem;
		color: rgba(255, 255, 255, 0.45);
	}

	.osi-plan-annual {
		font-size: 12px;
		color: rgba(255, 255, 255, 0.35);
		margin-top: 6px;
		margin-bottom: 2rem;
	}

	.osi-plan-annual strong {
		color: var(--osi-accent);
	}

	.osi-plan-trial {
		background: rgba(0, 200, 150, 0.12);
		border: 1px solid rgba(0, 200, 150, 0.25);
		border-radius: 8px;
		padding: 14px 16px;
		margin-bottom: 1.5rem;
	}

	.osi-plan-trial-top {
		font-size: 15px;
		font-weight: 700;
		color: #fff;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.osi-plan-trial-top i {
		color: var(--osi-accent);
	}

	.osi-plan-trial-sub {
		font-size: 12px;
		color: rgba(255, 255, 255, 0.45);
		margin-top: 4px;
	}

	.osi-plan-cta {
		background: var(--osi-accent);
		color: var(--osi-dark);
		border: none;
		padding: 15px 28px;
		font-size: 15px;
		font-weight: 800;
		border-radius: 8px;
		text-decoration: none;
		display: block;
		text-align: center;
		transition: all 0.2s;
		margin-bottom: 10px;
	}

	.osi-plan-cta:hover {
		background: #00dfaa;
		color: var(--osi-dark);
		text-decoration: none;
		transform: translateY(-1px);
		box-shadow: 0 8px 24px rgba(0, 200, 150, 0.3);
	}

	.osi-plan-guarantee {
		font-size: 12px;
		color: rgba(255, 255, 255, 0.3);
		text-align: center;
	}

	.osi-pricing-right {
		padding: 3rem;
		background: #fff;
	}

	.osi-pricing-right h4 {
		font-size: 12.5px;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: var(--osi-muted);
		margin-bottom: 1.5rem;
	}

	.osi-feat-list {
		list-style: none;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.osi-feat-list li {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		font-size: 14px;
		color: var(--osi-dark);
		font-weight: 500;
	}

	.osi-feat-list li i {
		color: var(--osi-accent);
		font-size: 16px;
		flex-shrink: 0;
		margin-top: 1px;
	}

	.osi-feat-list li strong {
		color: var(--osi-primary);
	}

	.osi-pricing-footer {
		margin-top: 1.5rem;
		padding-top: 1.5rem;
		border-top: 1px solid var(--osi-border);
		font-size: 13px;
		color: var(--osi-muted);
		display: flex;
		gap: 1.25rem;
		flex-wrap: wrap;
	}

	.osi-pricing-footer i {
		color: var(--osi-accent);
	}

	/* ---- HOW IT WORKS ---- */
	.osi-steps {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 0;
		position: relative;
		margin-top: 0;
	}

	.osi-steps::before {
		content: '';
		position: absolute;
		top: 32px;
		left: calc(12.5% + 20px);
		right: calc(12.5% + 20px);
		height: 1px;
		background: linear-gradient(90deg, var(--osi-accent), var(--osi-primary));
	}

	.osi-step {
		padding: 0 1.5rem;
		text-align: center;
		position: relative;
	}

	.osi-step-num {
		width: 64px;
		height: 64px;
		background: var(--osi-dark);
		color: var(--osi-accent);
		font-size: 1.25rem;
		font-weight: 900;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 1.5rem;
		border-radius: 50%;
		position: relative;
		z-index: 2;
		border: 3px solid var(--osi-accent);
	}

	.osi-step h4 {
		font-size: 15px;
		font-weight: 700;
		color: var(--osi-dark);
		margin-bottom: 0.5rem;
	}

	.osi-step p {
		font-size: 13.5px;
		color: var(--osi-muted);
		line-height: 1.6;
		margin: 0;
	}

	/* ---- DARK STATS ---- */
	.osi-stats-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		align-items: center;
	}

	.osi-stats {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1px;
		background: rgba(255, 255, 255, 0.08);
		margin-top: 0;
	}

	.osi-stat {
		padding: 2.5rem;
		text-align: center;
	}

	.osi-stat-num {
		font-size: 3.5rem;
		font-weight: 900;
		color: var(--osi-accent);
		letter-spacing: -0.04em;
		line-height: 1;
		margin-bottom: 0.5rem;
	}

	.osi-stat-label {
		font-size: 14px;
		color: rgba(255, 255, 255, 0.45);
		font-weight: 500;
	}

	/* ---- CTA BANNER ---- */
	.osi-cta-section {
		background: linear-gradient(135deg, var(--osi-dark) 0%, var(--osi-primary) 100%);
		padding: 100px 0;
		position: relative;
		overflow: hidden;
	}

	.osi-cta-section::before {
		content: '';
		position: absolute;
		top: -200px;
		right: -200px;
		width: 600px;
		height: 600px;
		border: 1px solid rgba(0, 200, 150, 0.1);
		border-radius: 50%;
	}

	.osi-cta-section::after {
		content: '';
		position: absolute;
		bottom: -150px;
		left: -150px;
		width: 500px;
		height: 500px;
		border: 1px solid rgba(0, 200, 150, 0.07);
		border-radius: 50%;
	}

	.osi-cta-inner {
		max-width: var(--osi-content-max);
		margin: 0 auto;
		padding: 0 1.5rem;
		text-align: center;
		position: relative;
		z-index: 2;
	}

	.osi-cta-h2 {
		font-size: clamp(2rem, 4vw, 3.25rem);
		font-weight: 900;
		color: #fff;
		letter-spacing: -0.03em;
		line-height: 1.1;
		margin-bottom: 1rem;
	}

	.osi-cta-sub {
		font-size: 1.0625rem;
		color: rgba(255, 255, 255, 0.5);
		margin-bottom: 2.5rem;
	}

	.osi-cta-actions {
		display: flex;
		gap: 1rem;
		justify-content: center;
		flex-wrap: wrap;
		margin-bottom: 1.5rem;
	}

	.osi-btn-cta-main {
		background: var(--osi-accent);
		color: var(--osi-dark);
		border: 2px solid var(--osi-accent);
		padding: 16px 36px;
		font-size: 15px;
		font-weight: 800;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		transition: all 0.2s;
		border-radius: 8px;
	}

	.osi-btn-cta-main:hover {
		background: #00dfaa;
		border-color: #00dfaa;
		color: var(--osi-dark);
		text-decoration: none;
		transform: translateY(-2px);
		box-shadow: 0 12px 32px rgba(0, 200, 150, 0.3);
	}

	.osi-btn-cta-ghost {
		background: transparent;
		color: rgba(255, 255, 255, 0.7);
		border: 2px solid rgba(255, 255, 255, 0.2);
		padding: 16px 36px;
		font-size: 15px;
		font-weight: 600;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		transition: all 0.2s;
		border-radius: 8px;
	}

	.osi-btn-cta-ghost:hover {
		border-color: rgba(255, 255, 255, 0.5);
		color: #fff;
		text-decoration: none;
		background: rgba(255, 255, 255, 0.05);
	}

	.osi-cta-note {
		font-size: 13px;
		color: rgba(255, 255, 255, 0.3);
	}

	.osi-cta-note i {
		color: var(--osi-accent);
		margin-right: 4px;
	}

	/* ---- CONTACT ---- */
	.osi-contact-grid {
		display: grid;
		grid-template-columns: 1fr 1.4fr;
		gap: 5rem;
		align-items: start;
	}

	.osi-contact-info h3 {
		font-size: 1.5rem;
		font-weight: 800;
		color: var(--osi-dark);
		margin-bottom: 0.75rem;
		letter-spacing: -0.02em;
	}

	.osi-contact-info p {
		font-size: 15px;
		color: var(--osi-muted);
		line-height: 1.7;
		margin-bottom: 2rem;
	}

	.osi-contact-item {
		display: flex;
		align-items: center;
		gap: 14px;
		margin-bottom: 1rem;
	}

	.osi-contact-icon {
		width: 44px;
		height: 44px;
		background: var(--osi-accent2);
		border: 1px solid rgba(0, 200, 150, 0.2);
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--osi-primary);
		font-size: 18px;
		flex-shrink: 0;
	}

	.osi-contact-item a {
		font-size: 15px;
		font-weight: 600;
		color: var(--osi-dark);
		text-decoration: none;
	}

	.osi-contact-item a:hover {
		color: var(--osi-primary);
	}

	.osi-contact-links {
		margin-top: 2rem;
		padding: 1.5rem;
		background: var(--osi-bg);
		border: 1px solid var(--osi-border);
		border-radius: 10px;
	}

	.osi-contact-links-label {
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: var(--osi-muted);
		margin-bottom: 1rem;
	}

	.osi-contact-link-item {
		font-size: 14px;
		font-weight: 600;
		color: var(--osi-primary);
		text-decoration: none;
		display: flex;
		align-items: center;
		gap: 6px;
		padding: 4px 0;
		transition: gap 0.2s;
	}

	.osi-contact-link-item:hover {
		gap: 10px;
		text-decoration: none;
	}

	.osi-contact-form .form-label {
		font-size: 13px;
		font-weight: 700;
		color: var(--osi-dark);
		margin-bottom: 6px;
	}

	.osi-contact-form .form-control,
	.osi-contact-form .form-control-lg {
		border-radius: 6px !important;
		border: 1px solid var(--osi-border);
		font-size: 14px;
		padding: 11px 14px;
		background: var(--osi-surface);
		color: var(--osi-dark);
	}

	.osi-contact-form .form-control:focus {
		border-color: var(--osi-primary);
		box-shadow: 0 0 0 3px rgba(33, 92, 92, 0.1);
		background: var(--osi-surface);
	}

	.osi-contact-form textarea.form-control {
		resize: none;
		border-radius: 6px !important;
	}

	.osi-submit {
		background: var(--osi-primary);
		color: #fff;
		border: none;
		width: 100%;
		padding: 14px;
		font-size: 15px;
		font-weight: 700;
		border-radius: 6px;
		cursor: pointer;
		transition: all 0.2s;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
	}

	.osi-submit:hover {
		background: var(--osi-dark);
		transform: translateY(-1px);
		box-shadow: 0 6px 20px rgba(13, 31, 31, 0.2);
	}

	/* ---- RESPONSIVE ---- */
	@media (max-width: 1023px) {
		.osi-hero-inner {
			grid-template-columns: 1fr;
			gap: 3rem;
		}

		.osi-hero {
			padding: 80px 0 60px;
		}

		.osi-hero-badge {
			left: 16px;
			right: 16px;
			max-width: min(100% - 32px, 280px);
		}

		.osi-feat-header {
			grid-template-columns: 1fr;
			gap: 1.5rem;
		}

		.osi-feat-grid {
			grid-template-columns: repeat(2, 1fr);
		}

		.osi-diff-inner {
			grid-template-columns: 1fr;
			gap: 1rem;
		}

		.osi-diff-item {
			border-right: none;
			padding: 0;
			border-bottom: 1px solid rgba(255, 255, 255, 0.1);
			padding-bottom: 1rem;
		}

		.osi-diff-item:last-child {
			border-bottom: none;
		}

		.osi-screen-row,
		.osi-screen-row.flip {
			grid-template-columns: 1fr;
			direction: ltr;
		}

		.osi-pricing-card {
			grid-template-columns: 1fr;
		}

		.osi-steps {
			grid-template-columns: repeat(2, 1fr);
			gap: 2rem;
		}

		.osi-steps::before {
			display: none;
		}

		.osi-stats-grid {
			grid-template-columns: 1fr;
			gap: 3rem;
		}

		.osi-stats {
			grid-template-columns: repeat(3, 1fr);
		}

		.osi-contact-grid {
			grid-template-columns: 1fr;
			gap: 3rem;
		}
	}

	@media (max-width: 639px) {
		.osi-feat-grid {
			grid-template-columns: 1fr;
		}

		.osi-steps {
			grid-template-columns: 1fr;
		}

		.osi-stats {
			grid-template-columns: 1fr;
		}

		.osi-hero-actions {
			flex-direction: column;
		}

		.osi-cta-actions {
			flex-direction: column;
			align-items: center;
		}

		/* ---- Phone: reclaim space (tighter gutters + vertical rhythm) ---- */
		.osi-section-inner,
		.osi-hero-inner,
		.osi-trustbar-inner,
		.osi-diff-inner,
		.osi-cta-inner {
			padding-left: 1rem;
			padding-right: 1rem;
		}

		.osi-section {
			padding: 52px 0;
		}

		.osi-hero {
			padding: 52px 0 36px;
		}

		.osi-hero-inner {
			gap: 2rem;
		}

		.osi-label {
			margin-bottom: 0.5rem;
		}

		.osi-h2 {
			margin-bottom: 0.65rem;
		}

		.osi-hero-sub {
			margin-bottom: 0.5rem;
		}

		.osi-hero-contrast {
			margin-bottom: 1.25rem;
		}

		.osi-btn-primary,
		.osi-btn-secondary {
			padding: 12px 20px;
			font-size: 14px;
		}

		.osi-offer-inline {
			margin-top: 1rem;
			padding: 11px 13px;
		}

		.osi-trustbar {
			padding: 12px 0;
		}

		.osi-diff {
			padding: 20px 0;
		}

		.osi-feat-header {
			margin-bottom: 1.75rem;
			gap: 1rem;
		}

		.osi-feat-card {
			padding: 1.35rem;
		}

		.osi-feat-card-icon {
			margin-bottom: 0.85rem;
		}

		.osi-screens {
			gap: 2.5rem;
		}

		.osi-screen-num {
			font-size: 48px;
			margin-bottom: 0.35rem;
		}

		.osi-screen-content h3 {
			font-size: 1.35rem;
			margin-bottom: 0.5rem;
		}

		.osi-screen-content p {
			margin-bottom: 0.85rem;
		}

		.osi-product-intro,
		.osi-how-head {
			margin-bottom: 2.25rem;
		}

		.osi-compare-intro {
			margin-bottom: 0.65rem;
		}

		.osi-pricing-intro {
			margin-bottom: 1.5rem;
		}

		.osi-pricing-card {
			border-radius: 12px;
		}

		.osi-pricing-left {
			padding: 1.2rem 1rem;
		}

		.osi-pricing-right {
			padding: 1.2rem 1rem;
		}

		.osi-plan-label {
			margin-bottom: 0.5rem;
		}

		.osi-plan-tagline {
			font-size: 1.2rem;
			margin-bottom: 0.85rem;
		}

		.osi-plan-price .amt {
			font-size: 3rem;
		}

		.osi-plan-annual {
			margin-bottom: 1rem;
		}

		.osi-plan-trial {
			padding: 10px 12px;
			margin-bottom: 0.85rem;
		}

		.osi-plan-trial-top {
			font-size: 14px;
		}

		.osi-plan-cta {
			padding: 12px 18px;
			font-size: 14px;
			margin-bottom: 8px;
		}

		.osi-pricing-right h4 {
			margin-bottom: 1rem;
		}

		.osi-feat-list {
			gap: 8px;
		}

		.osi-pricing-footer {
			margin-top: 1rem;
			padding-top: 1rem;
			gap: 0.75rem;
		}

		.osi-step {
			padding: 0 0.5rem;
		}

		.osi-step-num {
			width: 52px;
			height: 52px;
			margin-bottom: 1rem;
			font-size: 1.1rem;
		}

		.osi-stats-grid {
			gap: 2rem;
		}

		.osi-stats-intro-lead {
			margin-bottom: 1.15rem;
		}

		.osi-stat {
			padding: 1.5rem 0.85rem;
		}

		.osi-stat-num {
			font-size: 2.65rem;
		}

		.osi-cta-section {
			padding: 52px 0;
		}

		.osi-cta-sub {
			margin-bottom: 1.35rem;
		}

		.osi-cta-actions {
			margin-bottom: 0.85rem;
			gap: 0.65rem;
		}

		.osi-btn-cta-main,
		.osi-btn-cta-ghost {
			padding: 12px 22px;
			font-size: 14px;
		}

		.osi-contact-grid {
			gap: 2rem;
		}

		#compare .osi-compare-scroll {
			margin-left: -1rem;
			margin-right: -1rem;
			padding-left: 1rem;
			padding-right: 1rem;
		}
	}

	/* ---- No inline style="" homepage utilities (h-rules) ---- */
	.fy-offer-modal-kicker {
		font-size: 10px;
		font-weight: 700;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: rgba(255, 255, 255, 0.45);
		margin-bottom: 4px;
	}

	.fy-offer-modal-title-text {
		color: #fff;
		font-size: 1.25rem;
	}

	.fy-offer-modal-lead {
		color: var(--osi-dark);
		font-size: 1rem;
	}

	.osi-modal-cta-flex {
		flex: 1;
	}

	.osi-feat-header-actions {
		margin-top: 1.5rem;
		display: flex;
		gap: 12px;
		flex-wrap: wrap;
	}

	.osi-btn-compact {
		padding: 10px 20px;
		font-size: 13.5px;
	}

	.osi-product-intro {
		text-align: center;
		margin-bottom: 4rem;
	}

	.osi-h2-narrow {
		max-width: 520px;
		margin: 0 auto 1rem;
	}

	.osi-lead-center {
		margin: 0 auto;
		text-align: center;
	}

	.osi-lead-center a {
		color: var(--osi-primary);
		font-weight: 600;
		text-decoration: underline;
		text-decoration-thickness: 1px;
		text-underline-offset: 3px;
	}

	.osi-lead-center a:hover {
		color: var(--osi-dark);
	}

	.osi-screen-deeplink {
		margin-top: 1rem;
	}

	.osi-screen-deeplink a {
		font-size: 15px;
		font-weight: 600;
		color: var(--osi-primary);
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		gap: 0.35rem;
	}

	.osi-screen-deeplink a:hover {
		color: var(--osi-dark);
		text-decoration: underline;
	}

	.osi-mock-bar-title {
		margin-left: 8px;
	}

	.osi-compare-intro {
		text-align: center;
		margin-bottom: 1rem;
	}

	.osi-compare-scroll {
		overflow-x: auto;
	}

	.osi-compare thead th:nth-child(1) {
		width: 34%;
	}

	.osi-compare thead th:nth-child(2) {
		width: 22%;
	}

	.osi-compare thead th:nth-child(3),
	.osi-compare thead th:nth-child(4) {
		width: 22%;
		text-align: center;
	}

	.osi-compare tbody td:nth-child(3),
	.osi-compare tbody td:nth-child(4) {
		text-align: center;
	}

	.osi-compare tbody tr:last-child td.us {
		font-size: 17px;
		font-weight: 900;
		color: var(--osi-primary);
	}

	.osi-compare tbody tr:last-child td:nth-child(3),
	.osi-compare tbody tr:last-child td:nth-child(4) {
		color: var(--osi-muted);
	}

	.osi-pricing-intro {
		text-align: center;
		margin-bottom: 3rem;
	}

	.osi-pricing-footnote-icon {
		color: var(--osi-accent);
	}

	.osi-pricing-footnote-text {
		color: rgba(255, 255, 255, 0.8);
	}

	.osi-stats-intro-lead {
		margin-bottom: 2rem;
	}

	.osi-btn-cta-inline-flex {
		display: inline-flex;
	}

	.osi-contact-field-label {
		font-size: 12px;
		color: var(--osi-muted);
		margin-bottom: 2px;
	}

	.osi-contact-links-stack {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	#contactForm textarea[name="message"] {
		resize: none;
	}

	.osi-how-head {
		text-align: center;
		margin-bottom: 4rem;
	}

	/* Fills frame; aspect-ratio on parent matches PNGs — top-weighted for app chrome */
	.osi-screenshot-fill {
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
		object-fit: cover;
		object-position: top center;
		position: absolute;
		inset: 0;
		display: block;
		pointer-events: none;
	}

	.osi-screenshot-fill--contain {
		object-fit: contain;
		object-position: top center;
	}

	/* ---- COMPARE TABLE — mobile: stacked cards (no clipped columns / less FAB overlap) ---- */
	@media (max-width: 767.98px) {
		#compare .osi-compare-scroll {
			overflow-x: visible;
			margin-left: -1.5rem;
			margin-right: -1.5rem;
			padding: 0 1.5rem 5.5rem;
		}

		#compare .osi-compare {
			width: 100%;
			min-width: 0;
			margin-top: 2rem;
			border-collapse: separate;
			border-spacing: 0;
		}

		#compare .osi-compare thead {
			display: none;
		}

		#compare .osi-compare tbody tr {
			display: block;
			border: 1px solid var(--osi-border);
			border-radius: 12px;
			margin-bottom: 0.875rem;
			padding: 0.75rem 1rem;
			background: var(--osi-surface);
			box-shadow: 0 4px 20px rgba(13, 31, 31, 0.06);
		}

		#compare .osi-compare tbody td:first-child {
			display: block;
			width: 100% !important;
			padding: 0 0 0.75rem !important;
			margin-bottom: 0.5rem;
			border: none !important;
			border-bottom: 2px solid var(--osi-border) !important;
			font-weight: 800 !important;
			font-size: 14px !important;
			line-height: 1.35;
			color: var(--osi-dark);
			text-align: left !important;
			background: transparent !important;
			word-wrap: break-word;
			overflow-wrap: anywhere;
		}

		#compare .osi-compare tbody td:not(:first-child) {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 0.5rem;
			width: 100% !important;
			min-width: 0 !important;
			padding: 0.55rem 0 !important;
			border: none !important;
			border-bottom: 1px solid var(--osi-border) !important;
			font-size: 13px !important;
			font-weight: 500;
			text-align: left !important;
			background: transparent !important;
		}

		#compare .osi-compare tbody td:not(:first-child):last-child {
			border-bottom: none !important;
		}

		#compare .osi-compare tbody td:nth-child(2) {
			background: rgba(0, 200, 150, 0.08) !important;
			margin: 0 -0.25rem;
			padding-left: 0.5rem !important;
			padding-right: 0.5rem !important;
			border-radius: 8px;
			border-bottom: 1px solid rgba(0, 200, 150, 0.18) !important;
		}

		#compare .osi-compare tbody td:nth-child(2)::before,
		#compare .osi-compare tbody td:nth-child(3)::before,
		#compare .osi-compare tbody td:nth-child(4)::before {
			flex-shrink: 0;
			max-width: 48%;
			font-size: 10px;
			font-weight: 700;
			letter-spacing: 0.03em;
			text-transform: uppercase;
			color: var(--osi-muted);
			line-height: 1.25;
		}

		#compare .osi-compare tbody td:nth-child(2)::before {
			content: 'One Stop Invoice';
		}

		#compare .osi-compare tbody td:nth-child(3)::before {
			content: 'Zoho Invoice';
		}

		#compare .osi-compare tbody td:nth-child(4)::before {
			content: 'Vyapar';
		}

		#compare .osi-compare tbody td:not(:first-child) > * {
			flex-shrink: 0;
		}

		#compare .osi-compare .icon-meh {
			font-size: 12px;
			line-height: 1.3;
			text-align: right;
			max-width: 50%;
		}

		#compare .osi-compare tbody tr:last-child td:nth-child(2) {
			font-size: 17px !important;
			font-weight: 900 !important;
			color: var(--osi-primary) !important;
		}

		#compare .osi-compare tbody tr:last-child td:nth-child(3),
		#compare .osi-compare tbody tr:last-child td:nth-child(4) {
			font-size: 13px !important;
			font-weight: 600 !important;
			color: var(--osi-muted) !important;
		}

		#compare .osi-compare .icon-yes,
		#compare .osi-compare .icon-no {
			font-size: 18px;
		}
	}
