/* ==========================================================================
   Infoplakat.no - Landing Page Styles
   Organized, maintainable CSS with dark mode support
   ========================================================================== */

/* ==========================================================================
   1. CSS Variables - Dark Mode Ready
   ========================================================================== */
:root {
	/* Brand colors (unchanged in dark mode) */
	--primary: #667eea;
	--primary-dark: #764ba2;
	--primary-hover: #5a6fd6;
	--success: #66cc66;
	--success-hover: #52a352;
	--gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);

	/* Light mode colors */
	--bg-body: #fff;
	--bg-section: #f8fafc;
	--bg-card: #fff;
	--bg-navbar: #fff;
	--bg-footer: #fff;
	--text-primary: #1a202c;
	--text-secondary: #64748b;
	--text-muted: #94a3b8;
	--border-color: #e5e7eb;
	--border-light: #f1f5f9;
	--shadow-light: 0 4px 20px rgba(0,0,0,0.08);
	--shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
	--shadow-hover: 0 8px 25px rgba(0,0,0,0.15);

	/* Accent colors */
	--accent-teal: #4fd1c5;
	--accent-blue: #60a5fa;
	--accent-green: #10b981;
	--accent-red: #ef4444;
}

/* Dark mode via prefers-color-scheme OR manual toggle */
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--bg-body: #0f172a;
		--bg-section: #1e293b;
		--bg-card: #1e293b;
		--bg-navbar: #0f172a;
		--bg-footer: #0f172a;
		--text-primary: #f1f5f9;
		--text-secondary: #94a3b8;
		--text-muted: #64748b;
		--border-color: #334155;
		--border-light: #1e293b;
		--shadow-light: 0 4px 20px rgba(0,0,0,0.3);
		--shadow-medium: 0 8px 30px rgba(0,0,0,0.4);
		--shadow-hover: 0 8px 25px rgba(0,0,0,0.5);
	}
}

/* Manual dark mode override */
[data-theme="dark"] {
	--bg-body: #0f172a;
	--bg-section: #1e293b;
	--bg-card: #1e293b;
	--bg-navbar: #0f172a;
	--bg-footer: #0f172a;
	--text-primary: #f1f5f9;
	--text-secondary: #94a3b8;
	--text-muted: #64748b;
	--border-color: #334155;
	--border-light: #1e293b;
	--shadow-light: 0 4px 20px rgba(0,0,0,0.3);
	--shadow-medium: 0 8px 30px rgba(0,0,0,0.4);
	--shadow-hover: 0 8px 25px rgba(0,0,0,0.5);
}


/* ==========================================================================
   2. Base & Reset
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
}

body, html {
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--bg-body);
	color: var(--text-primary);
	font-family: 'Roboto', 'Segoe UI', Verdana, Arial, sans-serif;
	padding-top: 63px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

a {
	transition: color 0.2s ease, background-color 0.2s ease;
}


/* ==========================================================================
   3. Typography
   ========================================================================== */
h1 {
	font-weight: 200;
	padding-top: 15px;
}

h2 {
	font-weight: 200;
	margin-top: 35px;
}

h3 {
	font-weight: 500;
}


/* ==========================================================================
   4. Layout - Navbar
   ========================================================================== */
.navbar {
	background-color: var(--bg-navbar) !important;
	border-bottom: 1px solid var(--border-color) !important;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.navbar .nav-link {
	color: var(--text-primary);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
	color: var(--primary);
}

@media (max-width: 992px) {
	.navbar .navbar-nav > li > a.btn {
		margin-bottom: 4px;
	}
}

@media (min-width: 992px) {
	.navbar .navbar-nav > li > a.btn {
		margin-right: 4px;
		margin-left: 18px;
	}
}

.navbar .navbar-nav > li > a.btn-primary {
	color: #fff;
	background-color: var(--primary);
	border: 0;
}

.navbar .navbar-nav > li > a.btn-primary:hover,
.navbar .navbar-nav > li > a.btn-primary:focus {
	background-color: var(--primary-hover);
	color: #fff;
}

.navbar .navbar-nav > li > a.btn-success {
	color: #fff;
	background-color: var(--success);
	border: 0;
}

.navbar .navbar-nav > li > a.btn-success:hover,
.navbar .navbar-nav > li > a.btn-success:focus {
	background-color: var(--success-hover);
	color: #fff;
}

/* Theme toggle button */
#theme-toggle {
	background: transparent;
	border: none;
	padding: 8px 12px;
	cursor: pointer;
	color: var(--text-secondary);
	font-size: 1.1rem;
}

#theme-toggle:hover {
	color: var(--primary);
}


/* ==========================================================================
   5. Layout - Page Content & Footer
   ========================================================================== */
.page-content {
	margin-top: 0;
	padding-bottom: 100px;
}

.page-content.no-padding {
	padding-bottom: 0;
}

.breadcrumb {
	background-color: transparent;
	font-size: 12px;
	padding-left: 0;
}

.footer {
	width: 100%;
	background-color: var(--bg-footer);
	border-top: 1px solid var(--border-color);
	min-height: 280px;
	margin-top: 0;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer h3 {
	margin-top: 0;
	margin-bottom: 15px;
	font-weight: 200;
	color: var(--text-primary);
}

.footer-inner {
	padding: 15px 8px;
	color: var(--text-secondary);
}

.footer-inner a {
	color: var(--text-secondary);
	border-bottom: 1px dotted var(--text-secondary);
}

.footer-inner a.no-border {
	border-bottom: 0;
}

.footer-inner a:hover {
	color: var(--primary);
	text-decoration: none;
}

.footer-inner ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

@media only screen and (max-width: 992px) {
	#footer-social {
		text-align: center;
		margin-top: 15%;
	}
}


/* ==========================================================================
   6. Hero Section (Landing Page)
   ========================================================================== */
.frontpage-slide {
	width: 100%;
	height: 600px;
}

.frontpage-slide-inner {
	width: 100%;
	height: 100%;
	text-align: center;
	padding-top: 8%;
	color: var(--text-primary);
}

.landing-page.slide1 {
	position: relative;
	height: 100%;
}

.landing-page.slide1 .inner {
	background-image: url("/webpage/images/top_bg.svg");
	background-repeat: no-repeat;
	background-position: right top;
	background-size: auto 100%;
}

.landing-page.slide1 .cover-content {
	display: flex;
	flex-direction: row;
}

.landing-page.slide1 .cover-content .left {
	flex: 0 0 50%;
}

.landing-page.slide1 .cover-content .right {
	flex: 0 0 50%;
}

.landing-page.slide1 .inner img.sofa {
	position: absolute;
	width: 700px;
	right: 0;
	bottom: 0;
	margin: 0 50px 0 0;
	z-index: 51;
}

.landing-page.slide1 .inner img.monitor {
	position: absolute;
	width: 300px;
	border: 2px solid #000;
	right: 0;
	bottom: 0;
	margin: 0 160px 350px 0;
	z-index: 50;
}

.frontpage-slide-inner .headline,
.frontpage-slide-inner .headline-sub {
	font-weight: 200;
}

/* Hero text styling */
.landing-page.slide1 .cover-content h1 {
	font-size: 2.5rem;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 20px;
}

.landing-page.slide1 .cover-content h2 {
	font-size: 1.1rem;
	font-weight: 300;
	line-height: 1.6;
	opacity: 0.9;
}

/* Hero responsive */
@media only screen and (max-width: 1200px) {
	.frontpage-slide {
		height: 500px;
	}

	.frontpage-slide-inner {
		padding-top: 5%;
		padding-bottom: 8%;
	}

	.landing-page.slide1 .inner img.sofa {
		width: 500px !important;
		margin: 0 50px 0 0 !important;
	}

	.landing-page.slide1 .inner img.monitor {
		width: 230px !important;
		margin: 0 130px 230px 0 !important;
	}
}

@media only screen and (max-width: 768px) {
	.frontpage-slide {
		height: auto;
	}

	.frontpage-slide-inner {
		padding-top: 3%;
		padding-bottom: 20%;
	}

	.landing-page.slide1 .inner img.sofa {
		width: 300px !important;
		margin: 0 50px 0 0 !important;
	}

	.landing-page.slide1 .inner img.monitor {
		width: 230px !important;
		margin: 0 80px 240px 0 !important;
	}
}

@media only screen and (max-width: 500px) {
	.frontpage-slide {
		height: auto;
	}

	.frontpage-slide-inner {
		padding-top: 3%;
		padding-bottom: 20%;
	}

	.landing-page.slide1 .cover-content {
		flex-direction: column !important;
	}

	.landing-page.slide1 .cover-content .left {
		flex: 1 1 100% !important;
	}

	.landing-page.slide1 .cover-content .right {
		display: none;
		flex: 1 1 100% !important;
	}
}


/* ==========================================================================
   7. Dynamic Font Sizes (Responsive)
   ========================================================================== */
/* Base sizes */
.dynamic-fontsize-xxxxxxxxl { font-size: 110px; }
.dynamic-fontsize-xxxxxxxl { font-size: 100px; }
.dynamic-fontsize-xxxxxxl { font-size: 90px; }
.dynamic-fontsize-xxxxxl { font-size: 80px; }
.dynamic-fontsize-xxxxl { font-size: 70px; }
.dynamic-fontsize-xxxl { font-size: 60px; }
.dynamic-fontsize-xxl { font-size: 50px; }
.dynamic-fontsize-xl { font-size: 30px; }
.dynamic-fontsize-lg { font-size: 20px; }
.dynamic-fontsize-md { font-size: 15px; }
.dynamic-fontsize-sm { font-size: 13px; }
.dynamic-fontsize-xs { font-size: 10px; }

@media only screen and (min-width: 700px) {
	.dynamic-fontsize-xxxxxxxxl { font-size: 120px; }
	.dynamic-fontsize-xxxxxxxl { font-size: 110px; }
	.dynamic-fontsize-xxxxxxl { font-size: 100px; }
	.dynamic-fontsize-xxxxxl { font-size: 90px; }
	.dynamic-fontsize-xxxxl { font-size: 80px; }
	.dynamic-fontsize-xxxl { font-size: 70px; }
	.dynamic-fontsize-xxl { font-size: 60px; }
	.dynamic-fontsize-xl { font-size: 40px; }
	.dynamic-fontsize-lg { font-size: 30px; }
	.dynamic-fontsize-md { font-size: 16px; }
	.dynamic-fontsize-sm { font-size: 12px; }
}

@media only screen and (min-width: 1024px) {
	.dynamic-fontsize-xl { font-size: 50px; }
	.dynamic-fontsize-lg { font-size: 40px; }
	.dynamic-fontsize-md { font-size: 25px; }
	.dynamic-fontsize-sm { font-size: 18px; }
	.dynamic-fontsize-xs { font-size: 13px; }
}

@media only screen and (min-width: 1500px) {
	.dynamic-fontsize-xxxxxxxxl { font-size: 130px; }
	.dynamic-fontsize-xxxxxxxl { font-size: 120px; }
	.dynamic-fontsize-xxxxxxl { font-size: 110px; }
	.dynamic-fontsize-xxxxxl { font-size: 100px; }
	.dynamic-fontsize-xxxxl { font-size: 90px; }
	.dynamic-fontsize-xxxl { font-size: 80px; }
	.dynamic-fontsize-xxl { font-size: 70px; }
	.dynamic-fontsize-xl { font-size: 60px; }
	.dynamic-fontsize-lg { font-size: 50px; }
	.dynamic-fontsize-md { font-size: 35px; }
	.dynamic-fontsize-sm { font-size: 25px; }
	.dynamic-fontsize-xs { font-size: 18px; }
}


/* ==========================================================================
   8. Content Blocks (Legacy support)
   ========================================================================== */
.content-blocks {
	text-align: left;
}

.content-blocks .content-blocks-inner {
	padding: 70px 5%;
}

.content-blocks .row {
	margin-top: 55px;
}

.content-blocks h1 {
	font-size: 50px;
	font-weight: 200;
}

.content-blocks h2 {
	font-size: 30px;
	font-weight: 200;
}

.content-blocks .icon {
	font-size: 60px;
}

.content-blocks .header {
	font-size: 25px;
}

.content-blocks .description {
	margin-top: 15px;
}

.content-blocks.content-dark a {
	color: #8cb5ed;
}

.content-blocks.content-dark a:hover {
	color: #8cb5ed;
	text-decoration: none;
	border-bottom: 1px dotted;
}

.content-block-left {
	text-align: left;
}

.content-block-right {
	text-align: right;
}

@media only screen and (max-width: 992px) {
	.content-blocks h1 { font-size: 30px; }
	.content-blocks h2 { font-size: 22px; }
	.home-templates-center { display: none; }
	.content-block-left { text-align: center; }
	.content-block-right { text-align: center; }
}


/* ==========================================================================
   9. Video Wrapper
   ========================================================================== */
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* ==========================================================================
   10. Home Page Templates Section
   ========================================================================== */
.home-templates .icon {
	text-align: center;
}

.home-templates .fa {
	font-size: 50px;
}

.home-templates-center {
	padding-top: 10%;
}


/* ==========================================================================
   11. Thumbnails & Gallery
   ========================================================================== */
.fuThumbnail {
	margin: 6px;
	display: inline-block;
	outline: 3px solid transparent;
	background-color: var(--bg-card);
	border-radius: 5px;
	width: 140px;
	transition: all 0.3s ease;
}

.fuThumbnail:hover {
	outline: 3px solid rgba(132, 132, 132, 0.2);
	text-decoration: none;
}

.fuThumbnail img {
	width: 100%;
	padding: 5px;
}


/* ==========================================================================
   12. Box Components
   ========================================================================== */
.box {
	color: var(--text-primary);
	background-color: var(--bg-card);
	padding: 15px;
	border-radius: 10px;
	border: 1px solid var(--border-color);
	transition: all 0.2s ease;
}

.box-hover:hover {
	box-shadow: var(--shadow-medium);
	text-decoration: none;
	border: 1px solid var(--primary);
}

.box-hover-border:hover {
	border: 1px solid var(--primary);
}

.box-full-width {
	width: 100%;
	display: block;
}

.box-space {
	margin: 25px;
	padding: 15px;
}

.box.bg-red { background-color: #ffcaca; color: #000; }
.box.bg-red-strong { background-color: red; color: #fff; }
.box.bg-red-strong a { color: #fff; }
.box.bg-orange { background-color: #ffde8f; color: #000; }
.box.bg-blue { background-color: #cad3ff; }
.box.bg-glass { background-color: var(--bg-card); }

.box .box-title { font-size: 18px; font-weight: 600; }
.box .box-body { padding: 0; }
.box .box-footer { padding: 0; border-top: 0; background-color: transparent; margin-top: 25px; font-size: 13px; }

.box-dashboard { padding: 18px 25px; }
.box-dashboard .value { font-size: 2.5rem; }
.box-dashboard .info { margin: 10px 10px 0 10px; font-size: 0.7rem; color: var(--text-muted); }
.box-dashboard .link a { color: var(--text-muted); font-size: 0.8rem; }

.box-ellipsis {
	position: absolute;
	top: 0;
	right: 0;
	padding: 15px;
}

/* Box with left-column icon */
.box-with-icon {
	display: inline-block;
}

.box-with-icon-inner {
	display: flex;
}

.box-with-icon-inner .icon {
	flex: 0 0 100px;
	text-align: center;
}

.box-with-icon-inner .icon .svg-inline--fa {
	padding-top: 0;
	font-size: 3rem;
}

.box-with-icon-inner .icon img {
	width: 50px;
}

.box-with-icon-inner .content {
	flex: 1 1 auto;
}

.box-with-icon.db-block-active .icon {
	color: #34e311;
}


/* ==========================================================================
   13. Tiles (Legacy support)
   ========================================================================== */
.tiles {
	display: block;
}

.tile-white {
	background-color: var(--bg-card);
	color: var(--text-primary);
	border: 1px solid var(--border-color);
}

.tile-white:hover {
	color: var(--text-primary) !important;
}

.tiles-col-4 .tile {
	width: 24%;
}

.tile-lg {
	color: var(--text-primary);
	background-color: var(--bg-card);
}

.tile-lg:hover {
	color: var(--text-primary);
}


/* ==========================================================================
   14. Modern Card Components
   ========================================================================== */
.card-link {
	display: block;
	text-decoration: none;
	height: 100%;
}

.card-link:hover {
	text-decoration: none;
}

.card-modern {
	background: var(--bg-card);
	border-radius: 16px;
	padding: 30px;
	height: 100%;
	box-shadow: var(--shadow-light);
	transition: all 0.3s ease;
}

.card-modern:hover {
	box-shadow: var(--shadow-medium);
	transform: translateY(-2px);
}

.card-video {
	padding: 0;
	overflow: hidden;
}

.card-horizontal {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.card-icon {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.card-icon i,
.card-icon svg {
	font-size: 1.8rem;
	width: 1.8rem;
	height: 1.8rem;
	color: #fff;
}

/* Icon color variants */
.card-icon-purple { background: var(--gradient-primary); }
.card-icon-pink { background: linear-gradient(135deg, #f093fb, #f5576c); }
.card-icon-blue { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.card-icon-teal { background: linear-gradient(135deg, #a8edea, #fed6e3); }
.card-icon-teal i, .card-icon-teal svg { color: var(--text-primary); }
.card-icon-orange { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.card-icon-orange i, .card-icon-orange svg { color: var(--text-primary); }
.card-icon-rose { background: linear-gradient(135deg, #d299c2, #fef9d7); }
.card-icon-rose i, .card-icon-rose svg { color: var(--text-primary); }
.card-icon-messenger { background: linear-gradient(135deg, #0084ff, #00c6ff); }

.card-content {
	flex: 1;
	min-width: 0;
}

.card-content h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 8px 0;
	color: var(--text-primary);
}

.card-content p {
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.6;
	font-size: 0.95rem;
}

.card-content .card-action {
	margin-top: 12px;
	color: var(--primary);
	font-size: 0.9rem;
}

/* Equipment list cards */
.equipment-list {
	padding: 20px 0 20px 40px;
}

.card-list-item {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--border-color);
	box-shadow: none;
	height: auto;
}

.card-list-item:hover {
	box-shadow: none;
	transform: none;
}

.card-list-item-last {
	border-bottom: none;
	margin-bottom: 0;
}

/* Info box (used in confirm-account, invite-accept) */
.info-box {
	text-align: left;
	background: var(--bg-section);
	padding: 20px;
	border-radius: 12px;
	margin-bottom: 25px;
}

.info-box-title {
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--text-primary);
}

.info-box ul {
	color: var(--text-secondary);
	margin: 0;
	padding-left: 20px;
}

/* Soft icon color variants for equipment list */
.card-icon-soft-blue {
	background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}
.card-icon-soft-blue i { color: #4f46e5; }

.card-icon-soft-pink {
	background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}
.card-icon-soft-pink i { color: #db2777; }

.card-icon-soft-green {
	background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.card-icon-soft-green i { color: #059669; }

.card-content .card-action i {
	margin-left: 6px;
}

.card-content .card-action-external i {
	margin-left: 0;
	margin-right: 6px;
}

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

.card-title {
	font-weight: 600;
	color: var(--text-primary);
	margin: 0 0 20px 0;
}

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

.card-text strong {
	color: var(--text-primary);
}

.card-link-inline {
	color: var(--primary);
	text-decoration: none;
}

.card-link-inline:hover {
	text-decoration: underline;
}

.card-link-inline i {
	margin-right: 8px;
}


/* ==========================================================================
   15. Section Components
   ========================================================================== */
.section {
	padding: 70px 0;
}

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

.section:last-child:not([style*="background"]):not(.section-alt):not(.section-cta) {
	padding-bottom: 100px;
}

.section-spaced {
	margin-top: 100px;
}

.section-force-padding {
	padding-top: 70px !important;
}

/* Tip cards (used in equipment page) */
.tip-card {
	text-align: center;
	padding: 30px 20px;
}

.tip-icon {
	width: 70px;
	height: 70px;
	background: var(--bg-card);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: var(--shadow-light);
}

.tip-icon i {
	font-size: 1.8rem;
	color: var(--primary);
}

.tip-title {
	font-size: 1rem;
	margin-bottom: 10px;
	color: var(--text-primary);
}

.tip-text {
	color: var(--text-secondary);
	font-size: 0.95rem;
	margin: 0;
}

.section-title {
	font-size: 1.8rem;
	font-weight: 600;
	margin: 0 0 15px 0;
	color: var(--text-primary);
}

.section-description {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.section-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--primary);
	margin-bottom: 15px;
}

.section-header {
	margin-bottom: 40px;
}

.section-header-lg {
	margin-bottom: 50px;
}

.section-footer {
	margin-top: 35px;
}

/* Text utilities */
.text-muted {
	color: var(--text-muted) !important;
}

/* Feature items */
.feature-item {
	margin-bottom: 35px;
}


/* ==========================================================================
   16. Hero Section Component (for inner pages)
   ========================================================================== */
.hero-section {
	background: var(--gradient-hero);
	color: #fff;
	padding: 80px 0;
	margin-bottom: 70px;
}

.hero-section .hero-label {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--accent-teal);
	margin-bottom: 15px;
}

.hero-section h1 {
	font-size: 3rem;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 25px;
	padding-top: 0;
	color: #fff;
}

.hero-section .hero-description {
	font-size: 1.15rem;
	color: rgba(255,255,255,0.7);
	line-height: 1.7;
}

.hero-icon {
	width: 120px;
	height: 120px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-icon i,
.hero-icon svg {
	font-size: 3rem;
	width: 3rem;
	height: 3rem;
	color: #fff;
}

.hero-buttons {
	margin-top: 30px;
}

.hero-buttons .btn {
	margin-bottom: 10px;
}


/* ==========================================================================
   17. Contact Card
   ========================================================================== */
.contact-card {
	background: var(--bg-card);
	border-radius: 16px;
	padding: 30px;
	box-shadow: var(--shadow-light);
}

.contact-card .card-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	margin-bottom: 20px;
}

.contact-card .card-icon i,
.contact-card .card-icon svg {
	font-size: 1.3rem;
	width: 1.3rem;
	height: 1.3rem;
}

.contact-card h4 {
	font-size: 1.1rem;
	margin-bottom: 12px;
	color: var(--text-primary);
	font-weight: 600;
}

.contact-card a {
	color: var(--primary);
	text-decoration: none;
	font-size: 0.95rem;
}


/* ==========================================================================
   18. Footer CTA Section
   ========================================================================== */
.footer-cta {
	background: #1a202c;
	color: #fff;
	padding: 50px 0;
}

.footer-cta h4 {
	font-weight: 600;
	margin: 0;
}

.footer-cta p {
	color: rgba(255,255,255,0.6);
	margin: 8px 0 0 0;
	font-size: 0.95rem;
}

.footer-cta a {
	color: rgba(255,255,255,0.6);
}


/* ==========================================================================
   19. Privacy Content
   ========================================================================== */
.privacy-content {
	line-height: 1.8;
	color: var(--text-secondary);
}

.privacy-content h2 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 40px 0 20px 0;
	padding-top: 20px;
	border-top: 1px solid var(--border-color);
}

.privacy-content h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.privacy-content h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 30px 0 15px 0;
}

.privacy-content h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 20px 0 10px 0;
}

.privacy-content p {
	margin-bottom: 15px;
}

.privacy-content ul {
	margin-bottom: 20px;
	padding-left: 25px;
}

.privacy-content li {
	margin-bottom: 8px;
}

.privacy-content a {
	color: var(--primary);
}

.privacy-content a:hover {
	text-decoration: underline;
}


/* ==========================================================================
   20. Home Page Specific Components
   ========================================================================== */

/* Equipment icons - for dark background section */
.equipment-icon {
	width: 80px;
	height: 80px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.equipment-icon i,
.equipment-icon svg {
	font-size: 2rem;
	color: var(--accent-blue);
	fill: var(--accent-blue);
}

/* Template items */
.template-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 0;
	border-bottom: 1px solid var(--border-light);
}

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

.template-item.template-item-right {
	justify-content: flex-end;
	text-align: right;
}

.template-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.template-icon i,
.template-icon svg {
	font-size: 1.3rem;
	color: #fff;
	fill: #fff;
}

.template-content h5 {
	font-weight: 600;
	margin: 0 0 4px 0;
	color: var(--text-primary);
}

.template-content p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* Feature items */
.feature-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
}

.feature-icon i,
.feature-icon svg {
	font-size: 1.5rem;
	color: #fff;
	fill: #fff;
}

.feature-title {
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.feature-text {
	color: var(--text-secondary);
	font-size: 0.85rem;
	line-height: 1.5;
	margin: 0;
}

/* Screenshot gallery */
.screenshot-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}

.screenshot-gallery .fuThumbnail {
	width: 180px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-light);
	transition: all 0.3s ease;
}

.screenshot-gallery .fuThumbnail:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

.screenshot-gallery .fuThumbnail img {
	border-radius: 0;
	padding: 0;
}


/* ==========================================================================
   21. Utilities
   ========================================================================== */
.modal-content {
	border-radius: 0;
	background-color: var(--bg-card);
	color: var(--text-primary);
}

.help {
	color: var(--text-muted);
	font-size: 12px;
	padding: 6px;
}

#load-layer {
	display: none;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	margin-top: 65px;
	background-color: rgba(255, 255, 255, 0.9);
	overflow-x: hidden;
	transition: 0.5s;
}

[data-theme="dark"] #load-layer {
	background-color: rgba(15, 23, 42, 0.9);
}

/* Legacy prices section */
#prices a.prices-link {
	color: #fff;
	font-size: 18px;
}

#functions .title {
	font-size: 22px;
	font-weight: 200;
	margin-top: 4%;
}

/* ==========================================================================
   21. Price Cards
   ========================================================================== */
.price-card {
	background: var(--bg-card);
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	box-shadow: var(--shadow-light);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all 0.3s ease;
}

.price-card:hover {
	box-shadow: var(--shadow-medium);
	transform: translateY(-4px);
}

.price-card-featured {
	border: 2px solid var(--primary);
	box-shadow: var(--shadow-medium);
}

.price-card-equipment {
	background: var(--gradient-primary);
	color: #fff;
}

.price-card-equipment .price-subtitle,
.price-card-equipment .price-period,
.price-card-equipment .price-annual {
	color: rgba(255,255,255,0.8);
}

.price-card-equipment .price-features li {
	color: #fff;
}

.price-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: #fff;
	padding: 4px 16px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.price-header h3 {
	margin: 0 0 5px 0;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-primary);
}

.price-card-equipment .price-header h3 {
	color: #fff;
}

.price-subtitle {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin: 0;
}

.price-amount {
	margin: 25px 0 10px;
}

.price-value {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--primary);
}

.price-card-equipment .price-value {
	color: #fff;
}

.price-period {
	display: block;
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.price-annual {
	color: var(--text-muted);
	font-size: 0.8rem;
	margin-bottom: 20px;
}

.price-features {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
	text-align: left;
	flex-grow: 1;
}

.price-features li {
	padding: 8px 0;
	color: var(--text-primary);
	font-size: 0.95rem;
}

.price-features li i {
	color: var(--accent-green);
	margin-right: 10px;
}

.price-card .btn-block {
	width: 100%;
}

/* CTA Section */
.section-cta {
	background: var(--gradient-primary);
	color: #fff;
	padding: 80px 0 90px;
}

.section-cta h2 {
	color: #fff;
	font-size: 2rem;
	margin-bottom: 15px;
}

.section-cta .section-description {
	color: rgba(255,255,255,0.9);
}

.cta-buttons {
	margin-top: 25px;
}

.cta-note {
	margin-top: 15px;
	font-size: 0.9rem;
	color: rgba(255,255,255,0.7);
}

/* CTA Price (inline on gradient, no box) */
.cta-price {
	margin: 30px 0 25px;
}

.cta-price-value {
	font-size: 3.5rem;
	font-weight: 700;
	color: #fff;
}

.cta-price-period {
	display: block;
	color: rgba(255,255,255,0.8);
	font-size: 1rem;
	margin-top: 5px;
}

.cta-features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
	display: inline-block;
	text-align: left;
}

.cta-features li {
	padding: 6px 0;
	color: rgba(255,255,255,0.95);
	font-size: 1rem;
}

.cta-features li i {
	color: #fff;
	margin-right: 10px;
}


/* Screen reader only - for accessibility */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	padding: 10px 20px;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
	background: var(--primary);
	color: #fff;
	z-index: 100000;
}


/* ==========================================================================
   22. Responsive Adjustments
   ========================================================================== */
@media only screen and (max-width: 768px) {
	.content-blocks h1 { font-size: 30px; }
	.content-blocks h2 { font-size: 22px; }

	.hero-section {
		padding: 60px 0;
	}

	.hero-section h1 {
		font-size: 2rem;
	}

	.card-horizontal {
		flex-direction: column;
	}

	.template-item {
		padding: 12px 0;
	}

	.feature-icon {
		width: 50px;
		height: 50px;
	}

	.feature-icon i {
		font-size: 1.2rem;
	}

	.screenshot-gallery .fuThumbnail {
		width: 140px;
	}
}
