/* Henkan Figma Theme - Production CSS */
/* No Tailwind dependencies - Pure CSS */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

/* ============================================
   CSS Variables
   ============================================ */
:root {
	/* Brand Colors */
	--brand-primary: #1D2424;
	--brand-secondary: #02D65A;
	--brand-accent: #FF6B6B;
	
	/* Feature Background Colors */
	--bg-feature-1: #B8E8D8;
	--bg-feature-2: #F5E6B3;
	--bg-feature-3: #E8D4F5;
	--bg-feature-4: #FFD4D4;
	--bg-feature-5: #D4E8FF;
	--bg-feature-6: #FFE8D4;
	--bg-feature-7: #E8F5D4;
	--bg-feature-8: #F5D4E8;
	--bg-feature-9: #D4F5F5;
	--bg-feature-10: #FFE8E8;
	
	/* Typography */
	--font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
	--font-size-base: 16px;
	--text-main-heading: 50px;
	--text-heading-two: 46px;
	--text-subheading: 28px;
	--text-paragraph: 18px;
	
	/* Spacing */
	--spacing-unit: 0.25rem;
	
	/* Border Radius */
	--radius-sm: 0.25rem;
	--radius-md: 0.625rem;
	--radius-lg: 1rem;
	--radius-xl: 1.5rem;
	--radius-2xl: 1.5rem;
	--radius-3xl: 1.875rem;
	--radius-full: 9999px;
	
	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
	--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	
	/* Transitions */
	--transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Base Styles
   ============================================ */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: var(--font-size-base);
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-family);
	font-size: var(--text-paragraph);
	font-weight: 400;
	line-height: 1.6;
	color: var(--brand-primary);
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
	font-weight: inherit;
	line-height: 1.2;
}

h1 {
	font-size: var(--text-main-heading);
	font-weight: 700;
	line-height: 1.2;
}

h2 {
	font-size: var(--text-heading-two);
	font-weight: 600;
	line-height: 1.3;
}

h3 {
	font-size: var(--text-subheading);
	font-weight: 500;
	line-height: 1.4;
}

h4 {
	font-size: var(--text-paragraph);
	font-weight: 500;
	line-height: 1.5;
}

p {
	font-size: var(--text-paragraph);
	font-weight: 400;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

button, input, select, textarea {
	font-family: inherit;
	font-size: inherit;
}

/* ============================================
   Utility Classes
   ============================================ */

/* Layout */
.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

@media (min-width: 640px) {
	.container {
		max-width: 640px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 768px;
	}
}

@media (min-width: 1024px) {
	.container {
		max-width: 1024px;
	}
}

@media (min-width: 1280px) {
	.container {
		max-width: 1280px;
	}
}

@media (min-width: 1536px) {
	.container {
		max-width: 1536px;
	}
}

/* Flexbox */
.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

.items-center {
	align-items: center;
}

.items-start {
	align-items: flex-start;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.flex-1 {
	flex: 1 1 0%;
}

.flex-shrink-0 {
	flex-shrink: 0;
}

/* Grid */
.grid {
	display: grid;
}

.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Spacing */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }

/* Display */
.hidden {
	display: none;
}

.inline-block {
	display: inline-block;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.sticky {
	position: sticky;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-visible {
	overflow: visible;
}

/* Positioning */
.inset-0 {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Sizing */
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.min-h-screen { min-height: 100vh; }

.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-20 { width: 5rem; }
.w-32 { width: 8rem; }
.w-64 { width: 16rem; }
.w-96 { width: 24rem; }

.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }

.min-w-0 { min-width: 0; }
.max-w-xs { max-width: 20rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* Padding */
.p-1 { padding: 0.25rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-24 { padding-top: 6rem; }

.pb-2 { padding-bottom: 0.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-32 { padding-bottom: 8rem; }
.pb-48 { padding-bottom: 12rem; }

.pl-16 { padding-left: 4rem; }
.pr-6 { padding-right: 1.5rem; }

/* Margin */
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.ml-auto { margin-left: auto; }
.ml-1 { margin-left: 0.25rem; }
.ml-6 { margin-left: 1.5rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-20 { margin-top: 5rem; }
.-mt-24 { margin-top: -6rem; }
.-mt-32 { margin-top: -8rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }

/* Border Radius */
.rounded { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-md); }
.rounded-xl { border-radius: var(--radius-lg); }
.rounded-2xl { border-radius: var(--radius-xl); }
.rounded-3xl { border-radius: var(--radius-3xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Borders */
.border { border-width: 1px; border-style: solid; border-color: rgba(0, 0, 0, 0.1); }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }

.border-brand-primary { border-color: var(--brand-primary); }
.border-brand-secondary { border-color: var(--brand-secondary); }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white-30 { border-color: rgba(255, 255, 255, 0.3); }

/* Background Colors */
.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-brand-primary { background-color: var(--brand-primary); }
.bg-brand-secondary { background-color: var(--brand-secondary); }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }

/* Feature Background Colors */
.bg-feature-1 { background-color: var(--bg-feature-1); }
.bg-feature-2 { background-color: var(--bg-feature-2); }
.bg-feature-3 { background-color: var(--bg-feature-3); }
.bg-feature-4 { background-color: var(--bg-feature-4); }
.bg-feature-5 { background-color: var(--bg-feature-5); }
.bg-feature-6 { background-color: var(--bg-feature-6); }
.bg-feature-7 { background-color: var(--bg-feature-7); }
.bg-feature-8 { background-color: var(--bg-feature-8); }
.bg-feature-9 { background-color: var(--bg-feature-9); }
.bg-feature-10 { background-color: var(--bg-feature-10); }

/* Background with Opacity */
.bg-white-5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white-10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white-20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white-90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-black-60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-brand-secondary-10 { background-color: rgba(2, 214, 90, 0.1); }
.bg-brand-secondary-20 { background-color: rgba(2, 214, 90, 0.2); }
.bg-brand-primary-10 { background-color: rgba(29, 36, 36, 0.1); }
.bg-brand-primary-20 { background-color: rgba(29, 36, 36, 0.2); }
.bg-brand-primary-40 { background-color: rgba(29, 36, 36, 0.4); }
.bg-brand-primary-60 { background-color: rgba(29, 36, 36, 0.6); }
.bg-brand-primary-80 { background-color: rgba(29, 36, 36, 0.8); }
.bg-brand-primary-90 { background-color: rgba(29, 36, 36, 0.9); }
.bg-brand-secondary-50 { background-color: rgba(2, 214, 90, 0.5); }
.bg-brand-secondary-90 { background-color: rgba(2, 214, 90, 0.9); }

/* Gradients */
.bg-gradient-to-b {
	background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
	background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

/* Explicit gradient support for ReadyToGetStarted component */
.bg-gradient-to-r.from-brand-primary.to-brand-primary-90 {
	background: linear-gradient(to right, var(--brand-primary), rgba(29, 36, 36, 0.9));
}

.bg-gradient-to-br {
	background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
	background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-white { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.from-gray-50 { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); }
.from-brand-primary { --tw-gradient-from: var(--brand-primary); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 36, 36, 0)); }
.from-brand-secondary { --tw-gradient-from: var(--brand-secondary); --tw-gradient-stops: var(--tw-gradient-from), rgba(2, 214, 90, 0)); }
.from-black-60 { --tw-gradient-from: rgba(0, 0, 0, 0.6); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }

.via-brand-secondary { --tw-gradient-via: var(--brand-secondary); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(2, 214, 90, 0)); }

.to-transparent { --tw-gradient-to: transparent; }
.to-white { --tw-gradient-to: #fff; }
.to-gray-50 { --tw-gradient-to: #f9fafb; }
.to-brand-primary-90 { --tw-gradient-to: rgba(29, 36, 36, 0.9); }
.to-brand-secondary-70 { --tw-gradient-to: rgba(2, 214, 90, 0.7); }

/* Text Colors */
.text-white { color: #fff; }
.text-black { color: #000; }
.text-brand-primary { color: var(--brand-primary); }
.text-brand-secondary { color: var(--brand-secondary); }
.text-brand-accent { color: var(--brand-accent); }

.text-white-60 { color: rgba(255, 255, 255, 0.6); }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.text-white-90 { color: rgba(255, 255, 255, 0.9); }
.text-brand-primary-20 { color: rgba(29, 36, 36, 0.2); }
.text-brand-primary-40 { color: rgba(29, 36, 36, 0.4); }
.text-brand-primary-60 { color: rgba(29, 36, 36, 0.6); }
.text-brand-primary-70 { color: rgba(29, 36, 36, 0.7); }
.text-brand-primary-80 { color: rgba(29, 36, 36, 0.8); }

/* Text Sizing */
.text-xs { font-size: 0.75rem; line-height: 1; }
.text-sm { font-size: 0.875rem; line-height: 1.25; }
.text-base { font-size: 1rem; line-height: 1.5; }
.text-lg { font-size: 1.125rem; line-height: 1.75; }
.text-xl { font-size: 1.25rem; line-height: 1.75; }
.text-2xl { font-size: 1.5rem; line-height: 2; }
.text-3xl { font-size: 1.875rem; line-height: 2.25; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

/* Font Weights */
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }

/* Line Height */
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* Backdrop Blur */
.backdrop-blur-sm {
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

/* Filters */
.blur-3xl {
	filter: blur(64px);
}

/* Object Fit */
.object-cover {
	object-fit: cover;
}

.object-contain {
	object-fit: contain;
}

/* Aspect Ratio */
.aspect-video {
	aspect-ratio: 16 / 9;
}

.aspect-4-3 {
	aspect-ratio: 4 / 3;
}

.aspect-16-10 {
	aspect-ratio: 16 / 10;
}

/* Cursor */
.cursor-pointer {
	cursor: pointer;
}

/* Transitions */
.transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: var(--transition-base);
}

.transition-colors {
	transition-property: color, background-color, border-color;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: var(--transition-base);
}

.transition-transform {
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: var(--transition-base);
}

.duration-300 {
	transition-duration: 300ms;
}

/* Transform */
.transform {
	transform: translateZ(0);
}

.translate-x-1 {
	transform: translateX(0.25rem);
}

.translate-x-4 {
	transform: translateX(1rem);
}

.-translate-x-4 {
	transform: translateX(-1rem);
}

/* Opacity */
.opacity-10 {
	opacity: 0.1;
}

/* ============================================
   Responsive Utilities
   ============================================ */
@media (min-width: 768px) {
	.md\:flex { display: flex; }
	.md\:hidden { display: none; }
	.md\:block { display: block; }
	.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.md\:flex-row { flex-direction: row; }
	.md\:order-1 { order: 1; }
	.md\:order-2 { order: 2; }
	.md\:rounded-3rem { border-radius: 3rem; }
	.md\:p-6 { padding: 1.5rem; }
	.md\:p-12 { padding: 3rem; }
	.md\:p-16 { padding: 4rem; }
	.md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
	.md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
	.md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
	.md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
	.md\:pt-24 { padding-top: 6rem; }
	.md\:pb-24 { padding-bottom: 6rem; }
	.md\:pb-48 { padding-bottom: 12rem; }
	.md\:text-3xl { font-size: 1.875rem; line-height: 2.25; }
	.md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
	.md\:text-5xl { font-size: 3rem; line-height: 1; }
	.md\:text-6xl { font-size: 3.75rem; line-height: 1; }
	.md\:text-xl { font-size: 1.25rem; line-height: 1.75; }
	.-mt-32 { margin-top: -8rem; }
}

@media (min-width: 1024px) {
	.lg\:col-span-1 { grid-column: span 1 / span 1; }
	.lg\:col-span-2 { grid-column: span 2 / span 2; }
	.lg\:col-span-4 { grid-column: span 4 / span 4; }
	.lg\:col-span-8 { grid-column: span 8 / span 8; }
	.lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
	.lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
	.lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
	.lg\:min-h-500 { min-height: 500px; }
	.lg\:translate-x-12 { transform: translateX(3rem); }
	.lg\:-translate-x-12 { transform: translateX(-3rem); }
	.lg\:h-auto { height: auto; }
}

/* ============================================
   Component Styles
   ============================================ */

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background-color: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Let the TSX-style classes control layout inside nav */
.site-nav {
	display: block;
	align-items: center;
	padding: 0;
	/* Mobile padding - matches py-4 (1rem) */
	padding-top: 1rem;
	padding-bottom: 1rem;
}

/* Increase header height on desktop for better breathing space */
@media (min-width: 768px) {
	.site-nav {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
}

/* Ensure header nav container padding matches footer on all screen sizes */
.site-header .container {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.logo-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
}

.logo-icon {
	width: 2rem;
	height: 2rem;
	background-color: var(--brand-secondary);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-text {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--brand-primary);
}

/* Navigation */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-link {
	color: var(--brand-primary);
	transition: color var(--transition-base);
}

.nav-link:hover {
	color: var(--brand-secondary);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1.5rem;
	border-radius: var(--radius-md);
	font-weight: 500;
	transition: all var(--transition-base);
	cursor: pointer;
	border: none;
	font-size: 1rem;
}

.btn-primary {
	background-color: var(--brand-secondary);
	color: #000;
}

.btn-primary:hover {
	background-color: rgba(2, 214, 90, 0.9);
}

.btn-dark {
	background-color: var(--brand-primary);
	color: #fff;
}

.btn-dark:hover {
	background-color: rgba(29, 36, 36, 0.9);
}

.btn-lg {
	padding: 1rem 2rem;
}

.btn-icon {
	width: 1.25rem;
	height: 1.25rem;
	margin-left: 0.5rem;
	transition: transform var(--transition-base);
}

.btn:hover .btn-icon {
	transform: translateX(0.25rem);
}

/* Hero Section */
.hero-section {
	position: relative;
	background-color: #fff;
	padding-top: 2rem;
	padding-bottom: 5rem;
}

@media (min-width: 768px) {
	.hero-section {
		padding-bottom: 6rem;
	}
}

.hero-container {
	position: relative;
	background-color: var(--brand-secondary);
	border-radius: var(--radius-3xl);
	padding: 4rem 1.5rem 8rem;
	text-align: center;
}

@media (min-width: 768px) {
	.hero-container {
		border-radius: 3rem;
		padding: 6rem 3rem 12rem;
	}
}

.hero-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
	border-radius: var(--radius-full);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.hero-title {
	/* Mobile-safe sizing + wrapping: prevents long words like "Management" from overflowing on iPhone widths */
	font-size: clamp(2rem, 9vw, 3rem);
	color: #fff;
	line-height: 1.2;
	margin-top: 2rem;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
}

@media (min-width: 768px) {
	.hero-title {
		font-size: 3.75rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 4.5rem;
	}
}

.hero-title-accent {
	color: var(--brand-primary);
}

.hero-description {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 2rem;
}

@media (min-width: 768px) {
	.hero-description {
		font-size: 1.25rem;
	}
}

.hero-video-container {
	position: relative;
	margin-top: -6rem;
	max-width: 64rem;
	margin-left: auto;
	margin-right: auto;
	padding: 0 1.5rem;
}

@media (min-width: 768px) {
	.hero-video-container {
		margin-top: -8rem;
		padding: 0 3rem;
	}
}

.hero-video-wrapper {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-2xl);
	border: 2px solid rgba(2, 214, 90, 0.2);
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-play-button {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.play-button-circle {
	width: 5rem;
	height: 5rem;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lg);
}

.play-button-icon {
	width: 0;
	height: 0;
	border-left: 16px solid var(--brand-secondary);
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	margin-left: 0.25rem;
}

/* Features Overview */
.features-section {
	padding: 3rem 0;
	background: linear-gradient(to bottom, #fff, #f9fafb);
}

@media (min-width: 768px) {
	.features-section {
		padding: 4rem 0;
	}
}

.features-header {
	text-align: center;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4rem;
}

.features-title {
	font-size: 2.25rem;
	color: var(--brand-primary);
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.features-title {
		font-size: 3rem;
	}
}

.features-title-accent {
	color: var(--brand-secondary);
}

.features-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem;
}

@media (min-width: 1024px) {
	.features-list {
		grid-column: span 4 / span 4;
	}
}

.feature-button {
	width: 100%;
	text-align: left;
	padding: 1rem;
	border-radius: var(--radius-xl);
	transition: all var(--transition-base);
	border: 2px solid;
	cursor: pointer;
	background-color: #fff;
	border-color: rgba(29, 36, 36, 0.1);
}

.feature-button:hover {
	border-color: rgba(2, 214, 90, 0.5);
}

.feature-button.active {
	background-color: rgba(2, 214, 90, 0.1);
	border-color: var(--brand-secondary);
}

.feature-icon-wrapper {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all var(--transition-base);
	background-color: rgba(2, 214, 90, 0.1);
	color: var(--brand-secondary);
}

.feature-button.active .feature-icon-wrapper {
	background-color: var(--brand-secondary);
	color: #fff;
}

.feature-button:hover .feature-icon-wrapper {
	background-color: var(--brand-secondary);
	color: #fff;
}

.feature-display {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-2xl);
	border: 2px solid rgba(2, 214, 90, 0.2);
	background-color: #fff;
	display: flex;
	flex-direction: column;
	height: auto;
}

@media (min-width: 1024px) {
	.feature-display {
		grid-column: span 8 / span 8;
	}
}

.feature-image {
	width: 100%;
	height: auto;
	object-fit: contain;
	background-color: #fff;
	display: block;
}

.feature-accent-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(to right, var(--brand-secondary), var(--brand-secondary), transparent);
}

.feature-overlay {
	position: relative;
	background: #1d2424;
	padding: 1.5rem;
}

.feature-overlay-title {
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 0.5rem;
}

.feature-overlay-description {
	color: rgba(255, 255, 255, 0.9);
}

/* Feature Sections */
.feature-sections {
	padding: 5rem 0;
}

.feature-section-item {
	width: 100%;
	margin-bottom: 3rem;
}

.feature-section-bg {
	border-radius: var(--radius-3xl);
	overflow: visible;
	padding: 2rem;
}

@media (min-width: 768px) {
	.feature-section-bg {
		border-radius: 3rem;
		padding: 3rem;
	}
}

.feature-section-image {
	position: relative;
}

.feature-section-image-reverse {
	order: 2;
}

.feature-section-content {
	order: 1;
}

.feature-section-content-reverse {
	order: 1;
}

@media (min-width: 768px) {
	.feature-section-image-reverse {
		order: 2;
	}
	
	.feature-section-content-reverse {
		order: 1;
	}
}

.testimonial-card {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background-color: #fff;
	border-radius: var(--radius-xl);
	padding: 1rem;
	box-shadow: var(--shadow-xl);
	max-width: 18rem;
}

.testimonial-card-static {
	position: relative;
	background-color: #fff;
	border-radius: var(--radius-xl);
	padding: 1rem;
	box-shadow: var(--shadow-xl);
	margin-top: 1rem;
	max-width: 100%;
}

@media (min-width: 768px) {
	.testimonial-card {
		top: 2rem;
		right: 2rem;
		padding: 1.5rem;
	}
}

.testimonial-quote-mark {
	font-size: 1.5rem;
	color: var(--brand-primary);
	margin-bottom: 0.75rem;
}

.testimonial-text {
	font-size: 0.875rem;
	color: rgba(29, 36, 36, 0.8);
	margin-bottom: 1rem;
	line-height: 1.625;
}

.testimonial-author {
	color: var(--brand-secondary);
}

.testimonial-role {
	font-size: 0.75rem;
	color: rgba(29, 36, 36, 0.6);
}

.testimonial-stars {
	display: flex;
	gap: 0.25rem;
	margin-top: 0.75rem;
}

.testimonial-star {
	width: 1rem;
	height: 1rem;
	fill: var(--brand-accent);
	color: var(--brand-accent);
}

.testimonial-quote-mark-large {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	font-size: 2.25rem;
	color: rgba(29, 36, 36, 0.2);
}

.security-stat-value {
	overflow-wrap: anywhere;
	word-break: break-word;
}

/* Prevent mid-word breaks in security stats values (e.g. "Encrypted") */
.security-stat-value {
	overflow-wrap: normal;
	word-break: normal;
	hyphens: manual;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 1rem;
	padding-top: 1rem;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.benefit-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--brand-secondary);
	flex-shrink: 0;
	margin-top: 0.125rem;
}

/* Testimonials Section */
.testimonials-section {
	padding: 5rem 0;
	background-color: var(--brand-primary);
	position: relative;
	overflow: hidden;
}

@media (min-width: 768px) {
	.testimonials-section {
		padding: 8rem 0;
	}
}

.testimonials-bg-decoration {
	position: absolute;
	width: 24rem;
	height: 24rem;
	background-color: rgba(2, 214, 90, 0.1);
	border-radius: var(--radius-full);
	filter: blur(64px);
}

.testimonials-bg-1 {
	top: 0;
	right: 0;
}

.testimonials-bg-2 {
	bottom: 0;
	left: 0;
}

.testimonials-header {
	text-align: center;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4rem;
	position: relative;
	z-index: 10;
}

.testimonials-title {
	font-size: 2.25rem;
	color: #fff;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.testimonials-title {
		font-size: 3rem;
	}
}

.testimonials-title-accent {
	color: var(--brand-secondary);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 10;
}

@media (min-width: 768px) {
	.testimonials-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.testimonial-card-dark {
	background-color: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	padding: 2rem;
	border-radius: var(--radius-xl);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all var(--transition-base);
}

.testimonial-card-dark:hover {
	border-color: rgba(2, 214, 90, 0.5);
}

.testimonial-quote-icon {
	width: 2.5rem;
	height: 2.5rem;
	color: var(--brand-secondary);
	margin-bottom: 1.5rem;
}

.testimonial-stars-dark {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1rem;
}

.testimonial-star-dark {
	width: 1rem;
	height: 1rem;
	fill: var(--brand-secondary);
	color: var(--brand-secondary);
}

.testimonial-quote-text {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.5rem;
	line-height: 1.625;
}

.testimonial-author-info {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-full);
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-author-name {
	color: #fff;
}

.testimonial-author-role {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
}

.testimonials-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
	margin-top: 5rem;
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 10;
}

@media (min-width: 768px) {
	.testimonials-stats {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.stat-item {
	text-align: center;
}

.stat-value {
	font-size: 2.25rem;
	color: var(--brand-secondary);
	margin-bottom: 0.5rem;
}

.stat-label {
	color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact-section {
	padding: 5rem 0;
	background-color: #fff;
}

@media (min-width: 768px) {
	.contact-section {
		padding: 8rem 0;
	}
}

.support-banner {
	background-color: var(--brand-primary);
	border-radius: var(--radius-3xl);
	overflow: hidden;
}

.support-content {
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 768px) {
	.support-content {
		padding: 4rem;
	}
}

@media (min-width: 1024px) {
	.support-content {
		grid-column: span 1 / span 1;
	}
}

.support-title {
	font-size: 2.25rem;
	color: #fff;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.support-title {
		font-size: 3rem;
	}
}

.support-description {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.125rem;
	margin-bottom: 2rem;
	line-height: 1.625;
}

.support-features {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.support-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.support-feature-icon {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: var(--radius-full);
	background-color: var(--brand-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.support-feature-icon svg {
	width: 1rem;
	height: 1rem;
	color: #fff;
}

.support-feature-text {
	color: #fff;
}

.support-image {
	position: relative;
	height: 100%;
	min-height: 400px;
}

@media (min-width: 1024px) {
	.support-image {
		min-height: 500px;
	}
}

.support-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-banner {
	background: linear-gradient(to right, var(--brand-primary), rgba(29, 36, 36, 0.9));
	border-radius: var(--radius-3xl);
	padding: 3rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-banner.mt-12 {
	margin-top: 3rem;
}

.cta-banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.1;
}

.cta-banner-decoration {
	position: absolute;
	width: 16rem;
	height: 16rem;
	background-color: var(--brand-secondary);
	border-radius: var(--radius-full);
	filter: blur(64px);
}

.cta-banner-decoration-1 {
	top: 0;
	right: 0;
}

.cta-banner-decoration-2 {
	bottom: 0;
	left: 0;
}

.cta-content {
	position: relative;
	z-index: 10;
}

.cta-title {
	font-size: 1.875rem;
	color: #fff;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.cta-title {
		font-size: 2.25rem;
	}
}

.cta-description {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 2rem;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

/* Footer */
.site-footer {
	background-color: var(--brand-primary);
	color: #fff;
}

.footer-content {
	padding: 4rem 0;
}

/* Ensure footer container padding on all screen sizes */
.site-footer .container {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.footer-logo-icon {
	width: 2.5rem;
	height: 2.5rem;
	background-color: var(--brand-secondary);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo-text {
	font-size: 1.5rem;
	color: #fff;
	font-weight: 700;
}

.footer-description {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1.5rem;
	max-width: 20rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-link {
	width: 2.5rem;
	height: 2.5rem;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition-base);
}

.social-link:hover {
	background-color: var(--brand-secondary);
}

.social-link svg {
	width: 1.25rem;
	height: 1.25rem;
	color: rgba(255, 255, 255, 0.7);
	transition: color var(--transition-base);
}

.social-link:hover svg {
	color: #fff;
}

.footer-links-title {
	margin-bottom: 1rem;
	color: #fff;
}

.footer-links-list {
	list-style: none;
}

.footer-link {
	color: rgba(255, 255, 255, 0.7);
	transition: color var(--transition-base);
}

.footer-link:hover {
	color: var(--brand-secondary);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

@media (min-width: 768px) {
	.footer-bottom {
		flex-direction: row;
	}
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
}

.footer-legal {
	display: flex;
	gap: 1.5rem;
	font-size: 0.875rem;
}

.footer-legal-link {
	color: rgba(255, 255, 255, 0.6);
	transition: color var(--transition-base);
}

.footer-legal-link:hover {
	color: var(--brand-secondary);
}

/* Mobile Menu */
.mobile-menu-toggle {
	display: block;
	color: var(--brand-primary);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

@media (min-width: 768px) {
	.mobile-menu-toggle {
		display: none;
	}
}

.mobile-menu {
	display: none;
	padding-top: 1rem;
	padding-bottom: 0.5rem;
}

.mobile-menu.active {
	display: block;
}

@media (min-width: 768px) {
	.mobile-menu {
		display: none !important;
	}
}

.mobile-menu-items {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.mobile-menu-cta {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-top: 1rem;
}

/* Section Spacing */
.section {
	padding: 5rem 0;
}

.section-sm {
	padding: 3rem 0;
}

.section-lg {
	padding: 8rem 0;
}

/* Text Utilities */
.text-gradient {
	background: linear-gradient(to right, var(--brand-secondary), var(--brand-primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Hover Effects */
.hover-lift {
	transition: transform var(--transition-base);
}

.hover-lift:hover {
	transform: translateY(-2px);
}

/* Custom Border Styles */
.border-l-brand {
	border-left-width: 16px;
	border-left-color: var(--brand-secondary);
	border-top-width: 12px;
	border-top-color: transparent;
	border-bottom-width: 12px;
	border-bottom-color: transparent;
}

/* Aspect Ratios */
.aspect-4-3 {
	aspect-ratio: 4 / 3;
}

/* Grid Layouts */
.grid-12 {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 2rem;
}

@media (min-width: 1024px) {
	.grid-12 {
		display: grid;
	}
}

/* Order Utilities */
.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 768px) {
	.md\:order-1 { order: 1; }
	.md\:order-2 { order: 2; }
}

/* ============================================
   Contact Form 7 Styling
   ============================================ */
.wpcf7 form {
	width: 100%;
}

.wpcf7 form p {
	margin: 0 0 1rem;
}

.wpcf7 label {
	display: block;
	margin-bottom: 0.5rem;
	color: #1D2424;
	font-weight: 500;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	border: 2px solid rgba(29, 36, 36, 0.15);
	border-radius: 0.5rem; /* rounded-lg */
	padding: 0.875rem 1rem;
	background: #fff;
	color: #1D2424;
	outline: none;
	transition: border-color 150ms ease, box-shadow 150ms ease;
	box-sizing: border-box;
}

.wpcf7 textarea {
	min-height: 140px;
	resize: vertical;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
	color: rgba(29, 36, 36, 0.55);
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	border-color: #02D65A;
	box-shadow: 0 0 0 4px rgba(2, 214, 90, 0.18);
}

.wpcf7 input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: 0.5rem; /* rounded-lg */
	background: #02D65A;
	color: #000;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: background-color 150ms ease, transform 150ms ease;
}

.wpcf7 input[type="submit"]:hover {
	background: rgba(2, 214, 90, 0.9);
}

.wpcf7 input[type="submit"]:active {
	transform: translateY(1px);
}

.wpcf7-not-valid-tip {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: #dc2626;
}

.wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 1rem;
	border-radius: 0.75rem;
	border: 2px solid rgba(29, 36, 36, 0.15);
	color: #1D2424;
	background: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
	border-color: rgba(220, 38, 38, 0.35);
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: rgba(2, 214, 90, 0.6);
}

/* Space utilities for template compatibility */
.space-y-8 > * + * {
	margin-top: 2rem;
}
