/* ==========================================================================
   IsiBatre - Public Charging Station
   CSS Stylesheet (Modular Version)
   ========================================================================== */

/* ==========================================================================
   1. CSS Variables & Global Styles
   ========================================================================== */
:root {
	--primary-color: #2196f3;
	--secondary-color: #00bcd4;
	--accent-color: #ff9800;
	--dark-color: #1a237e;
	--dark-purple: #4a148c;
	--light-color: #e3f2fd;
	--success-color: #4caf50;
	--text-dark: #212121;
	--text-secondary: #757575;
	--white-color: #ffffff;
	--light-gray: #f5f5f5;
	--dark-navy: #0d47a1;

	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;

	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;

	--shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

	--transition: all 0.3s ease-in-out;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	color: var(--text-dark);
	line-height: 1.6;
	background-color: var(--white-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 36px;
	text-align: center;
}

h3 {
	font-size: 24px;
}

p {
	color: var(--text-secondary);
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

section {
	padding: 80px 0;
}

/* ==========================================================================
   2. Buttons
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 600;
	border-radius: var(--radius-md);
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--transition);
}

.btn-primary {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.btn-primary:hover {
	background-color: var(--dark-color);
	box-shadow: var(--shadow-md);
}

.btn-secondary {
	background-color: transparent;
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.btn-secondary:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.btn-outline {
	background-color: transparent;
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.btn-outline:hover {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.btn-blue {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.btn-blue:hover {
	background-color: var(--dark-color);
}

.btn-gold {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: var(--white-color);
}

.btn-gold:hover {
	background: linear-gradient(135deg, #d97706, #b45309);
}

.btn-orange {
	background-color: #f97316;
	color: var(--white-color);
}

.btn-orange:hover {
	background-color: #ea580c;
}

.btn-purple {
	background-color: #8b5cf6;
	color: var(--white-color);
}

.btn-purple:hover {
	background-color: #7c3aed;
}

/* ==========================================================================
   3. Navigation
   ========================================================================== */
.hero-section .navbar {
	position: relative;
	background: transparent;
	box-shadow: none;
}

.hero-section nav {
	padding: 20px 0;
}

.hero-section .logo {
	color: #ffffff;
}

.hero-section .logo svg {
	color: #00bcd4;
}

.hero-section .nav-menu li a {
	color: rgba(255, 255, 255, 0.9);
}

.hero-section .nav-menu li a:hover {
	color: #00bcd4;
}

.hero-section .lang-switcher {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-section .lang-btn {
	color: rgba(255, 255, 255, 0.7);
}

.hero-section .lang-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.hero-section .lang-btn.active {
	background: var(--primary-color);
	color: #ffffff;
}

.hero-section .btn-login {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
}

.hero-section .btn-login:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.navbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--white-color);
	box-shadow: var(--shadow-soft);
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 24px;
	font-weight: 700;
	color: var(--dark-color);
}

.logo svg {
	width: 32px;
	height: 32px;
	color: var(--primary-color);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin-right: 32px;
}

.nav-menu li a {
	font-weight: 600;
	color: var(--text-dark);
	transition: var(--transition);
}

.nav-menu li a:hover {
	color: var(--primary-color);
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.lang-switcher {
	display: flex;
	align-items: center;
	gap: 4px;
	background: var(--light-color);
	border-radius: var(--radius-md);
	padding: 4px;
}

.lang-btn {
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 14px;
	color: var(--text-secondary);
	text-decoration: none;
	transition: var(--transition);
}

.lang-btn:hover {
	background: rgba(33, 150, 243, 0.1);
	color: var(--primary-color);
}

.lang-btn.active {
	background: var(--primary-color);
	color: var(--white-color);
}

.btn-login {
	padding: 10px 20px;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: var(--radius-md);
	font-weight: 600;
	font-size: 14px;
	transition: var(--transition);
}

.btn-login:hover {
	background: var(--dark-color);
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: var(--text-dark);
}

.lang-switcher svg {
	width: 16px;
	height: 16px;
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */
.hero-section {
	position: relative;
	background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0d47a1 100%);
	padding-bottom: 100px;
	overflow: hidden;
	min-height: 100vh;
}

.hero-bg-elements {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.floating-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.4;
	animation: float 8s ease-in-out infinite;
}

.shape-1 {
	width: 400px;
	height: 400px;
	background: linear-gradient(135deg, #2196f3, #00bcd4);
	top: -100px;
	right: -100px;
	animation-delay: 0s;
}

.shape-2 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, #7c3aed, #2196f3);
	bottom: 10%;
	left: -50px;
	animation-delay: -2s;
}

.shape-3 {
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, #00bcd4, #4caf50);
	top: 40%;
	right: 20%;
	animation-delay: -4s;
}

.grid-pattern {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -30px) scale(1.05);
	}
	66% {
		transform: translate(-20px, 20px) scale(0.95);
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 64px;
	padding-top: 60px;
}

.hero-text {
	flex-basis: 50%;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(0, 188, 212, 0.2));
	border: 1px solid rgba(33, 150, 243, 0.3);
	color: #00bcd4;
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
	backdrop-filter: blur(10px);
}

.hero-badge svg {
	color: #ffc107;
}

.hero-text h1 {
	font-size: 56px;
	line-height: 1.1;
	margin-bottom: 24px;
	color: #ffffff;
	background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #00bcd4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 32px;
	max-width: 500px;
}

.hero-ctas {
	display: flex;
	gap: 16px;
	margin-bottom: 48px;
}

.btn-glow {
	position: relative;
	box-shadow: 0 0 30px rgba(33, 150, 243, 0.5);
}

.btn-glow:hover {
	box-shadow: 0 0 50px rgba(33, 150, 243, 0.7);
	transform: translateY(-2px);
}

.hero-stats {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 24px 32px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(10px);
}

.stat-item {
	display: flex;
	flex-direction: column;
}

.stat-number {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	font-family: var(--font-heading);
}

.stat-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
	width: 1px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual / Phone Mockup */
.hero-visual {
	flex-basis: 50%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 500px;
}

.phone-mockup {
	position: relative;
	z-index: 2;
}

.phone-frame {
	width: 280px;
	height: 580px;
	background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
	border-radius: 40px;
	padding: 12px;
	box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5), 0 30px 60px -30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 3px solid #2d3748;
}

.phone-notch {
	width: 120px;
	height: 28px;
	background: #1a1a2e;
	border-radius: 0 0 20px 20px;
	margin: 0 auto 20px;
}

.phone-screen {
	width: 100%;
	height: calc(100% - 48px);
	background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
	border-radius: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.charging-animation {
	text-align: center;
}

.battery-icon {
	width: 100px;
	height: 180px;
	border: 4px solid rgba(255, 255, 255, 0.3);
	border-radius: 16px;
	margin: 0 auto 24px;
	position: relative;
	overflow: hidden;
}

.battery-icon::before {
	content: '';
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 8px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 4px 4px 0 0;
}

.battery-level {
	position: absolute;
	bottom: 4px;
	left: 4px;
	right: 4px;
	height: 75%;
	background: linear-gradient(180deg, #4caf50 0%, #00bcd4 100%);
	border-radius: 10px;
	animation: charging 2s ease-in-out infinite;
}

@keyframes charging {
	0%,
	100% {
		height: 75%;
		opacity: 1;
	}
	50% {
		height: 85%;
		opacity: 0.8;
	}
}

.battery-bolt {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ffffff;
	animation: pulse 1.5s ease-in-out infinite;
	filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.8));
}

@keyframes pulse {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.2);
		opacity: 0.7;
	}
}

.charging-text {
	font-size: 48px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 8px;
	font-family: var(--font-heading);
}

.charging-status {
	font-size: 14px;
	color: #4caf50;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.charging-status::before {
	content: '';
	width: 8px;
	height: 8px;
	background: #4caf50;
	border-radius: 50%;
	animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
}

.phone-glow {
	position: absolute;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(33, 150, 243, 0.4) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.4;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.2);
		opacity: 0.6;
	}
}

/* Floating Cards */
.floating-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.95);
	padding: 14px 18px;
	border-radius: var(--radius-md);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	z-index: 3;
	animation: floatCard 4s ease-in-out infinite;
}

.floating-card.card-1 {
	top: 10%;
	right: 0;
	animation-delay: 0s;
}

.floating-card.card-2 {
	bottom: 25%;
	left: -20px;
	animation-delay: -1.5s;
}

.floating-card.card-3 {
	bottom: 5%;
	right: 10%;
	animation-delay: -3s;
}

@keyframes floatCard {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.card-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-icon.success {
	background: linear-gradient(135deg, #4caf50, #81c784);
	color: white;
}

.card-icon.charging {
	background: linear-gradient(135deg, #2196f3, #64b5f6);
	color: white;
}

.card-icon.location {
	background: linear-gradient(135deg, #ff9800, #ffb74d);
	color: white;
}

.card-text {
	display: flex;
	flex-direction: column;
}

.card-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dark);
}

.card-sub {
	font-size: 12px;
	color: var(--text-secondary);
}

/* ==========================================================================
   5. Quick Start / Charging Section
   ========================================================================== */
.quick-start-section {
	background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
	padding: 80px 0;
}

.quick-start-section .container {
	text-align: center;
}

.quick-start-section h2 {
	margin-bottom: 16px;
}

.section-subtitle {
	font-size: 18px;
	color: var(--text-secondary);
	margin-bottom: 48px;
}

.charging-interface-card {
	background: var(--white-color);
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--shadow-lg);
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

/* Demo Ribbon Badge */
.demo-ribbon {
	position: absolute;
	top: 20px;
	right: -35px;
	background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
	color: white;
	padding: 8px 40px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	transform: rotate(45deg);
	box-shadow: 0 2px 10px rgba(238, 90, 90, 0.3);
}

/* Demo Notice */
.demo-notice {
	display: flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #fff3cd, #ffeeba);
	border: 1px solid #ffc107;
	border-radius: var(--radius-md);
	padding: 16px;
	margin-bottom: 24px;
	text-align: left;
}

.demo-notice svg {
	color: #856404;
	flex-shrink: 0;
}

.demo-notice p {
	color: #856404;
	font-size: 14px;
	margin: 0;
}

/* Form Group */
.form-group {
	margin-bottom: 24px;
	text-align: left;
}

.form-group label {
	display: block;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 8px;
	font-size: 14px;
}

.input-with-icon {
	display: flex;
	gap: 8px;
}

.input-with-icon input {
	flex: 1;
	padding: 14px 16px;
	border: 2px solid #e0e0e0;
	border-radius: var(--radius-md);
	font-size: 16px;
	font-family: var(--font-body);
	transition: var(--transition);
}

.input-with-icon input:focus {
	outline: none;
	border-color: var(--primary-color);
}

.icon-button {
	padding: 12px 16px;
	background: var(--light-color);
	border: 2px solid #e0e0e0;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: var(--transition);
	color: var(--text-secondary);
}

.icon-button:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

.help-text {
	font-size: 12px;
	color: var(--text-secondary);
	margin-top: 8px;
}

.station-input-group {
	display: flex;
	gap: 16px;
	margin-bottom: 32px;
}

.station-input-group input {
	flex: 1;
	padding: 14px 16px;
	border: 2px solid #e0e0e0;
	border-radius: var(--radius-md);
	font-size: 16px;
	font-family: var(--font-body);
	transition: var(--transition);
}

.station-input-group input:focus {
	outline: none;
	border-color: var(--primary-color);
}

.station-input-group .btn {
	white-space: nowrap;
}

.interface-section {
	margin-bottom: 32px;
}

.interface-section h4 {
	text-align: left;
	margin-bottom: 16px;
	font-size: 16px;
	color: var(--text-secondary);
}

.device-selector-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.device-card {
	background: var(--light-gray);
	border: 2px solid transparent;
	border-radius: var(--radius-md);
	padding: 20px;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
}

.device-card:hover {
	border-color: var(--primary-color);
	background: var(--light-color);
}

.device-card.active {
	border-color: var(--primary-color);
	background: var(--light-color);
	box-shadow: var(--shadow-md);
}

.device-card .device-icon {
	font-size: 32px;
	margin-bottom: 8px;
}

.device-card .device-name {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 4px;
}

.device-card .device-price {
	font-size: 13px;
	color: var(--primary-color);
	font-weight: 600;
}

.duration-selector {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.duration-pill {
	padding: 12px 24px;
	background: var(--light-gray);
	border: 2px solid transparent;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.duration-pill:hover {
	border-color: var(--primary-color);
	background: var(--light-color);
}

.duration-pill.active {
	background: var(--primary-color);
	color: var(--white-color);
	border-color: var(--primary-color);
}

.price-display {
	background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
	color: var(--white-color);
	padding: 24px;
	border-radius: var(--radius-md);
	margin-bottom: 24px;
}

.price-display .total-price {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 4px;
}

.price-display .total-text {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 4px;
}

.price-display .sub-text {
	font-size: 14px;
	opacity: 0.8;
	margin-bottom: 8px;
}

.price-display .power-estimate {
	font-size: 14px;
	opacity: 0.9;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.btn-start-charge,
.btn-payment {
	width: 100%;
	padding: 18px 24px;
	font-size: 18px;
	font-weight: 600;
	background: linear-gradient(135deg, var(--success-color), #2e7d32);
	border: none;
	border-radius: var(--radius-md);
	color: var(--white-color);
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.btn-start-charge:hover,
.btn-payment:hover {
	background: linear-gradient(135deg, #2e7d32, #1b5e20);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

/* ==========================================================================
   6. Payment Modal
   ========================================================================== */
.payment-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.payment-modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.payment-modal {
	background: var(--white-color);
	border-radius: var(--radius-lg);
	max-width: 420px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	transform: scale(0.9);
	transition: var(--transition);
}

.payment-modal-overlay.active .payment-modal {
	transform: scale(1);
}

.modal-header {
	background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
	color: var(--white-color);
	padding: 20px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header h3 {
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.modal-close {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: var(--white-color);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: var(--transition);
}

.modal-close:hover {
	background: rgba(255, 255, 255, 0.3);
}

.modal-body {
	padding: 24px;
}

.info-section {
	margin-bottom: 20px;
}

.info-section-title {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-secondary);
	margin-bottom: 12px;
	font-weight: 600;
}

.info-card {
	background: var(--light-color);
	border-radius: var(--radius-sm);
	padding: 16px;
}

.info-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-row:last-child {
	border-bottom: none;
}

.info-label {
	color: var(--text-secondary);
	font-size: 14px;
}

.info-value {
	font-weight: 600;
	font-size: 14px;
	text-align: right;
}

.info-value.highlight {
	color: var(--primary-color);
	font-size: 18px;
}

.qris-section {
	text-align: center;
	padding: 20px;
	background: linear-gradient(135deg, #f8fafc, #e2e8f0);
	border-radius: var(--radius-md);
	margin-top: 20px;
}

.qris-section h4 {
	margin: 0 0 16px 0;
	color: var(--dark-color);
}

.qris-image-wrapper {
	background: white;
	padding: 16px;
	border-radius: var(--radius-sm);
	display: inline-block;
	box-shadow: var(--shadow-soft);
}

.qris-image-wrapper img {
	max-width: 200px;
	height: auto;
}

.qris-loading {
	padding: 40px;
	color: var(--text-secondary);
}

.qris-loading .spinner {
	width: 40px;
	height: 40px;
	border: 3px solid #e0e0e0;
	border-top-color: var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 16px;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.qris-validity {
	font-size: 12px;
	color: var(--text-secondary);
	margin-top: 12px;
}

.qris-instruction {
	font-size: 13px;
	color: var(--text-secondary);
	margin-top: 16px;
	padding: 12px;
	background: rgba(33, 150, 243, 0.1);
	border-radius: var(--radius-sm);
}

.modal-footer {
	padding: 16px 24px 24px;
}

.btn-cancel {
	width: 100%;
	padding: 14px;
	border: 2px solid #e0e0e0;
	background: white;
	color: var(--text-secondary);
	border-radius: var(--radius-md);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.btn-cancel:hover {
	border-color: #ff6b6b;
	color: #ff6b6b;
}

/* ==========================================================================
   7. How It Works Section
   ========================================================================== */
.how-it-works-section .container {
	text-align: center;
}

.how-it-works-section h2 {
	margin-bottom: 48px;
}

.steps-container {
	display: flex;
	justify-content: space-between;
	gap: 48px;
	position: relative;
}

.step {
	flex: 1;
	position: relative;
}

.steps-container::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 20%;
	right: 20%;
	height: 2px;
	border-top: 2px dashed var(--primary-color);
	z-index: -1;
}

.step-badge {
	width: 80px;
	height: 80px;
	background-color: var(--primary-color);
	color: var(--white-color);
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 32px;
	font-weight: 700;
	margin: 0 auto 24px;
	border: 5px solid var(--white-color);
	box-shadow: var(--shadow-md);
	z-index: 1;
	position: relative;
}

.step-icon {
	font-size: 48px;
	margin-bottom: 16px;
	color: var(--primary-color);
}

.step h3 {
	margin-bottom: 8px;
}

/* ==========================================================================
   8. Features Section
   ========================================================================== */
.features-section {
	background-color: var(--light-gray);
}

.features-section .container {
	text-align: center;
}

.features-section h2 {
	margin-bottom: 48px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.feature-item {
	background: var(--white-color);
	padding: 32px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
	transition: var(--transition);
}

.feature-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.feature-item svg {
	width: 48px;
	height: 48px;
	color: var(--primary-color);
	margin-bottom: 16px;
}

.feature-item h3 {
	margin-bottom: 8px;
	font-size: 20px;
}

/* ==========================================================================
   9. For Business Section
   ========================================================================== */
.for-business-section {
	background: linear-gradient(135deg, var(--dark-color), var(--dark-purple));
	color: var(--white-color);
}

.for-business-section .container {
	display: flex;
	align-items: center;
	gap: 64px;
}

.business-text {
	flex-basis: 60%;
}

.business-text .eyebrow {
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--secondary-color);
	margin-bottom: 8px;
}

.business-text h2 {
	text-align: left;
	margin-bottom: 16px;
}

.business-text p {
	font-size: 18px;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.8);
}

.benefits-list {
	list-style: none;
	margin-bottom: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.benefits-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
}

.benefits-list svg {
	color: var(--success-color);
	flex-shrink: 0;
}

.business-ctas {
	display: flex;
	gap: 16px;
}

.btn-partner-white {
	background-color: var(--white-color);
	color: var(--dark-color);
}

.btn-partner-white:hover {
	background-color: var(--light-gray);
	box-shadow: var(--shadow-md);
}

.btn-partner-outline {
	border-color: var(--white-color);
	color: var(--white-color);
}

.btn-partner-outline:hover {
	background-color: var(--white-color);
	color: var(--dark-color);
}

.business-image {
	flex-basis: 40%;
	position: relative;
}

.dashboard-mockup {
	width: 100%;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
}

.stat-card {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 16px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	text-align: center;
}

.stat-card.revenue {
	top: -20px;
	left: -40px;
}

.stat-card.sessions {
	bottom: -20px;
	right: -40px;
}

.stat-card .value {
	font-size: 24px;
	font-weight: 700;
}

/* ==========================================================================
   10. Business Models Section
   ========================================================================== */
.business-models-section {
	background: var(--light-color);
	text-align: center;
}

.business-models-section h2 {
	margin-bottom: 48px;
}

.models-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin-bottom: 64px;
}

.model-card {
	background: var(--white-color);
	padding: 40px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	text-align: left;
	position: relative;
	transition: var(--transition);
}

.model-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.model-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	color: var(--white-color);
}

.model-badge.popular {
	background-color: #10b981;
}

.model-badge.ownership {
	background: linear-gradient(135deg, #f59e0b, #d97706);
}

.model-badge.riskfree {
	background-color: #f97316;
}

.model-badge.income {
	background-color: #8b5cf6;
}

.model-card .icon {
	width: 64px;
	height: 64px;
	background: var(--light-color);
	border-radius: var(--radius-md);
	display: grid;
	place-items: center;
	margin-bottom: 24px;
}

.model-card .icon svg {
	width: 32px;
	height: 32px;
	color: var(--primary-color);
}

.model-card h3 {
	font-size: 24px;
	margin-bottom: 8px;
	color: var(--dark-color);
}

.model-card .model-desc {
	color: var(--text-secondary);
	margin-bottom: 16px;
}

.model-card .model-price {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 24px;
}

.model-features {
	list-style: none;
	margin-bottom: 32px;
}

.model-features li {
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
}

.model-features li svg {
	color: var(--success-color);
	flex-shrink: 0;
	margin-top: 2px;
}

.model-suitable {
	background: var(--light-color);
	padding: 12px;
	border-radius: var(--radius-sm);
	font-size: 13px;
	color: var(--text-secondary);
	margin-bottom: 24px;
	font-style: italic;
}

.model-card .btn {
	width: 100%;
	text-align: center;
}

/* Comparison Table */
.comparison-table-wrapper {
	margin-top: 64px;
	overflow-x: auto;
}

.comparison-table-wrapper h3 {
	text-align: center;
	margin-bottom: 32px;
	font-size: 28px;
}

.comparison-table {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	background: var(--white-color);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.comparison-table thead {
	background: var(--dark-color);
	color: var(--white-color);
}

.comparison-table th,
.comparison-table td {
	padding: 16px;
	text-align: left;
	border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
	font-weight: 700;
	font-size: 14px;
}

.comparison-table tbody tr:hover {
	background: var(--light-color);
}

.comparison-table tbody tr:last-child td {
	border-bottom: none;
}

.comparison-table td {
	font-size: 14px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
	font-weight: 600;
	color: var(--dark-color);
}

/* ==========================================================================
   11. Testimonials Section
   ========================================================================== */
.testimonials-section {
	text-align: center;
}

.testimonials-section h2 {
	margin-bottom: 48px;
}

.testimonial-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.testimonial-card {
	background-color: var(--light-gray);
	padding: 32px;
	border-radius: var(--radius-md);
	text-align: left;
}

.testimonial-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.testimonial-header img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial-author .name {
	font-weight: 700;
}

.testimonial-author .role {
	font-size: 14px;
	color: var(--text-secondary);
}

.rating {
	color: var(--accent-color);
	margin-bottom: 8px;
}

/* ==========================================================================
   12. Final CTA Section
   ========================================================================== */
.final-cta-section {
	background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
	color: var(--white-color);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.final-cta-section::before,
.final-cta-section::after {
	content: '';
	position: absolute;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	z-index: 0;
}

.final-cta-section::before {
	width: 300px;
	height: 300px;
	top: -100px;
	left: -100px;
}

.final-cta-section::after {
	width: 400px;
	height: 400px;
	bottom: -150px;
	right: -150px;
}

.final-cta-section .container {
	position: relative;
	z-index: 1;
}

.final-cta-section h2 {
	font-size: 40px;
	margin-bottom: 16px;
}

.final-cta-section p {
	font-size: 18px;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   13. Footer
   ========================================================================== */
footer {
	background-color: var(--dark-navy);
	color: rgba(255, 255, 255, 0.8);
	padding: 60px 0 20px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-col h4 {
	color: var(--white-color);
	margin-bottom: 16px;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col ul a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: var(--transition);
}

.footer-col ul a:hover {
	color: var(--secondary-color);
}

.social-icons {
	display: flex;
	gap: 16px;
	margin-top: 20px;
}

.social-icons a {
	color: var(--white-color);
	font-size: 24px;
}

.footer-bottom-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 20px;
	text-align: center;
	font-size: 14px;
}

.footer-bottom-bar a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	margin: 0 10px;
}

/* ==========================================================================
   14. Mobile Responsive Styles
   ========================================================================== */
@media (max-width: 992px) {
	h1 {
		font-size: 40px;
	}

	h2 {
		font-size: 32px;
	}

	.hero-section {
		min-height: auto;
		padding-bottom: 60px;
	}

	.hero-content {
		flex-direction: column;
		text-align: center;
		gap: 40px;
	}

	.hero-text {
		flex-basis: 100%;
	}

	.hero-text h1 {
		font-size: 42px;
	}

	.hero-subtitle {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-ctas {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
		flex-wrap: wrap;
	}

	.hero-visual {
		min-height: 400px;
		width: 100%;
	}

	.phone-frame {
		width: 240px;
		height: 500px;
	}

	.floating-card.card-1 {
		top: 0;
		right: -10px;
	}

	.floating-card.card-2 {
		bottom: 20%;
		left: 0;
	}

	.floating-card.card-3 {
		bottom: 0;
		right: 0;
	}

	.nav-menu {
		display: none;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.nav-right .btn-login {
		display: none;
	}

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

	.for-business-section .container {
		flex-direction: column;
	}

	.business-image {
		margin-top: 48px;
	}

	.models-grid {
		grid-template-columns: 1fr;
	}

	.testimonial-cards {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.device-selector-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.charging-interface-card {
		padding: 24px;
	}

	.demo-ribbon {
		font-size: 10px;
		padding: 6px 30px;
		right: -40px;
	}

	.steps-container {
		flex-direction: column;
	}

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

	.btn {
		padding: 10px 20px;
	}

	.business-ctas {
		flex-direction: column;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.navbar .container {
		padding: 12px 16px;
	}
}

@media (max-width: 576px) {
	h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 28px;
	}

	.hero-text h1 {
		font-size: 32px;
	}

	.hero-badge {
		font-size: 12px;
		padding: 6px 12px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.hero-ctas {
		flex-direction: column;
		align-items: center;
	}

	.hero-ctas .btn {
		width: 100%;
		justify-content: center;
	}

	.hero-stats {
		padding: 16px 20px;
		gap: 16px;
	}

	.stat-number {
		font-size: 22px;
	}

	.stat-label {
		font-size: 11px;
	}

	.hero-visual {
		min-height: 350px;
	}

	.phone-frame {
		width: 200px;
		height: 420px;
		border-radius: 30px;
	}

	.phone-notch {
		width: 80px;
		height: 20px;
	}

	.battery-icon {
		width: 70px;
		height: 130px;
	}

	.charging-text {
		font-size: 36px;
	}

	.floating-card {
		padding: 10px 14px;
		font-size: 12px;
	}

	.card-icon {
		width: 32px;
		height: 32px;
	}

	.card-icon svg {
		width: 16px;
		height: 16px;
	}

	.card-title {
		font-size: 12px;
	}

	.card-sub {
		font-size: 10px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.device-selector-grid {
		grid-template-columns: 1fr 1fr;
	}

	.device-card {
		padding: 16px;
	}

	.device-card svg {
		width: 24px;
		height: 24px;
	}
}

/* Mobile responsive for modal */
@media (max-width: 480px) {
	.payment-modal {
		max-height: 95vh;
		border-radius: var(--radius-md);
	}

	.modal-header {
		padding: 16px 20px;
	}

	.modal-body {
		padding: 16px;
	}

	.qris-image-wrapper img {
		max-width: 160px;
	}
}

/* ==========================================================================
   15. Floating WhatsApp Button
   ========================================================================== */
.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #25d366, #128c7e);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	z-index: 999;
	transition: all 0.3s ease;
	text-decoration: none;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
	transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
	transform: rotate(15deg);
}

.whatsapp-tooltip {
	position: absolute;
	right: 70px;
	background: #333;
	color: white;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
	content: '';
	position: absolute;
	right: -8px;
	top: 50%;
	transform: translateY(-50%);
	border: 4px solid transparent;
	border-left-color: #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
	opacity: 1;
	visibility: visible;
}

/* Pulse animation */
.whatsapp-float::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.4);
	animation: whatsapp-pulse 2s infinite;
	z-index: -1;
}

@keyframes whatsapp-pulse {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	70% {
		transform: scale(1.5);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

@media (max-width: 576px) {
	.whatsapp-float {
		bottom: 16px;
		right: 16px;
		width: 54px;
		height: 54px;
	}

	.whatsapp-float svg {
		width: 24px;
		height: 24px;
	}

	.whatsapp-tooltip {
		display: none;
	}
}
