/*
Theme Name: Idea Pub Studio
Theme URI: https://ideapubstudio.com
Author: Idea Pub Studio
Author URI: https://ideapubstudio.com
Description: Custom WordPress theme for Idea Pub Studio — web, design & AI automation studio.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ideapubstudio
Tags: custom-logo, custom-menu, responsive-layout, full-width-template
*/

/* ============================================================
   TABLE OF CONTENTS
   1. CSS Variables & Reset
   2. Base Typography
   3. Layout Utilities
   4. Buttons
   5. Header & Navigation
   6. Mobile Menu
   7. Sections & Backgrounds
   8. Cards
   9. Forms
   10. Hero — Front Page
   11. Dashboard Visual
   12. Services
   13. Portfolio
   14. Maintenance Plans / Pricing
   15. AI Section
   16. Process / Steps
   17. Testimonials
   18. CTA Banner
   19. FAQ Accordion
   20. Footer
   21. Page Heroes (Inner Pages)
   22. Contact Page
   23. Quote Page
   24. Responsive
============================================================ */

/* ─── 1. CSS Variables & Reset ─── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--black:        #0a0a0a;
	--near-black:   #111111;
	--gold:         #F5C842;
	--gold-dark:    #c9a100;
	--gold-hover:   #e8b900;
	--white:        #ffffff;
	--off-white:    #f9f8f4;
	--light-gray:   #f2f1ed;
	--mid-gray:     #e4e2db;
	--border:       #dedad0;
	--text-body:    #1a1a1a;
	--text-muted:   #6b6b6b;
	--text-secondary: #444444;
	--green:        #22c55e;

	--card-radius:  16px;
	--btn-radius:   8px;
	--container:    1160px;

	--transition:   0.22s cubic-bezier(0.4, 0, 0.2, 1);
	--shadow-sm:    0 2px 8px rgba(0, 0, 0, 0.06);
	--shadow-md:    0 8px 28px rgba(0, 0, 0, 0.09);
	--shadow-lg:    0 20px 60px rgba(0, 0, 0, 0.11);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--text-body);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
svg {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}

/* ─── 2. Base Typography ─── */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Syne', sans-serif;
	line-height: 1.13;
	letter-spacing: -0.025em;
	color: var(--black);
}

h1 { font-size: clamp(34px, 5.5vw, 62px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.8vw, 44px); font-weight: 800; }
h3 { font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }

h1 em, h2 em {
	font-style: normal;
	color: var(--gold-dark);
}

p { margin-bottom: 0; }

.lead {
	font-size: clamp(16px, 1.5vw, 18px);
	color: var(--text-muted);
	line-height: 1.75;
}

.small { font-size: 13px; }

strong { font-weight: 600; }

/* ─── 3. Layout Utilities ─── */
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.grid {
	display: grid;
	gap: 24px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	color: var(--gold-dark);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.kicker::before {
	content: '';
	width: 18px;
	height: 2px;
	background: var(--gold);
	flex-shrink: 0;
}

.ips-section-head {
	text-align: center;
	max-width: 660px;
	margin: 0 auto 56px;
}

.ips-section-head .kicker {
	justify-content: center;
}

.ips-section-head h2 {
	margin-bottom: 14px;
}

.ips-centered-cta {
	justify-content: center;
	margin-top: 40px;
}

.hero-cta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 28px;
}

/* ─── 4. Buttons ─── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 14px;
	padding: 11px 22px;
	border-radius: var(--btn-radius);
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	white-space: nowrap;
	letter-spacing: 0.01em;
}

.btn--primary {
	background: var(--gold);
	color: var(--black);
	border-color: var(--gold);
}

.btn--primary:hover {
	background: var(--gold-hover);
	border-color: var(--gold-hover);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(245, 200, 66, 0.35);
}

.btn--primary:active { transform: translateY(0); }

.btn--outline {
	background: transparent;
	color: var(--black);
	border-color: var(--border);
}

.btn--outline:hover {
	border-color: var(--gold);
	color: var(--gold-dark);
	background: rgba(245, 200, 66, 0.05);
}

.btn--dark {
	background: var(--black);
	color: var(--white);
	border-color: var(--black);
}

.btn--dark:hover {
	background: #222;
	transform: translateY(-2px);
}

/* On dark backgrounds, outline button inverts */
.section--dark .btn--outline,
.ips-maintenance-highlight .btn--outline {
	color: rgba(255, 255, 255, 0.75);
	border-color: rgba(255, 255, 255, 0.25);
}

.section--dark .btn--outline:hover,
.ips-maintenance-highlight .btn--outline:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: rgba(245, 200, 66, 0.08);
}

.btn-submit {
	background: var(--gold);
	color: var(--black);
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 15px;
	padding: 14px 36px;
	border-radius: var(--btn-radius);
	border: none;
	cursor: pointer;
	transition: var(--transition);
}

.btn-submit:hover {
	background: var(--gold-hover);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(245, 200, 66, 0.35);
}

/* ─── 5. Header & Navigation ─── */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(10, 10, 10, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(245, 200, 66, 0.06);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
	border-bottom-color: rgba(245, 200, 66, 0.14);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
	gap: 20px;
}

/* Brand / Logo */
.brand-link {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.brand-mark {
	width: 58px;
	height: 58px;
	background: var(--gold);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.brand-mark__text {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 15px;
	color: var(--black);
	letter-spacing: -0.02em;
}

/* When custom logo is used */
.site-logo img {
	height: 80px;
	width: auto;
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.site-title {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 18px;
	color: var(--white);
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.site-subtitle {
	font-size: 10px;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-top: 2px;
}

/* Primary Nav */
.primary-nav ul {
	display: flex;
	align-items: center;
	gap: 2px;
}

.primary-nav ul li a {
	font-size: 13.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
	padding: 6px 11px;
	border-radius: 6px;
	transition: var(--transition);
	display: block;
}

.primary-nav ul li a:hover,
.primary-nav ul li.current-menu-item a,
.primary-nav ul li.current_page_item a {
	color: var(--white);
	background: rgba(255, 255, 255, 0.07);
}

/* Nav CTA buttons */
.nav-cta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.nav-work-btn {
	font-size: 13px;
	padding: 9px 16px;
	color: rgba(255, 255, 255, 0.7);
	border-color: rgba(255, 255, 255, 0.18);
	background: transparent;
}

.nav-work-btn:hover {
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.06);
}

.nav-quote-btn {
	font-size: 13px;
	padding: 9px 18px;
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	flex-shrink: 0;
}

.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: var(--transition);
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── 6. Mobile Menu ─── */
.mobile-menu {
	display: none;
	position: fixed;
	top: 68px;
	left: 0;
	width: 100%;
	background: var(--near-black);
	border-top: 1px solid rgba(245, 200, 66, 0.1);
	z-index: 999;
	overflow-y: auto;
	max-height: calc(100vh - 68px);
}

.mobile-menu.nav-open {
	display: block;
}

.mobile-menu-inner {
	padding: 20px 24px 32px;
}

.mobile-nav ul {
	display: flex;
	flex-direction: column;
}

.mobile-nav ul li a {
	display: block;
	font-size: 17px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	padding: 13px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: var(--transition);
}

.mobile-nav ul li:last-child a {
	border-bottom: none;
}

.mobile-nav ul li a:hover {
	color: var(--gold);
}

.mobile-menu-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

.mobile-menu-actions .btn {
	width: 100%;
	justify-content: center;
	font-size: 15px;
	padding: 14px;
}

.mobile-menu-contact {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-contact .small {
	color: rgba(255, 255, 255, 0.35);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 6px;
}

.mobile-menu-contact a {
	color: var(--gold);
	font-size: 14px;
}

body.menu-open {
	overflow: hidden;
}

/* ─── 7. Sections & Backgrounds ─── */
.section {
	padding: 96px 0;
}

.section--alt {
	background: var(--off-white);
}

.section--dark {
	background: var(--near-black);
}

.site-main {
	padding-top: 68px; /* offset for fixed header */
}

/* Grid background pattern used in hero / page heroes */
.ips-bg-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(245, 200, 66, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(245, 200, 66, 0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

/* ─── 8. Cards ─── */
.card {
	background: var(--white);
	border-radius: var(--card-radius);
	padding: 28px;
	border: 1px solid var(--mid-gray);
}

.card--shadow {
	box-shadow: var(--shadow-sm);
}

.card--shadow:hover {
	box-shadow: var(--shadow-md);
}

/* Note box — highlighted note inside a card */
.note-box {
	background: var(--off-white);
	border-left: 3px solid var(--gold);
	border-radius: 0 8px 8px 0;
	padding: 12px 14px;
	margin-top: 18px;
	font-size: 13px;
	color: var(--text-secondary);
	line-height: 1.6;
}

.note-box strong {
	display: block;
	margin-bottom: 3px;
	color: var(--black);
}

/* Check list — used inside cards */
.ips-check-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 14px;
}

.ips-check-list li {
	font-size: 13.5px;
	color: var(--text-secondary);
	display: flex;
	align-items: flex-start;
	gap: 9px;
	line-height: 1.45;
}

.ips-check-list li::before {
	content: '';
	width: 16px;
	height: 16px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a100' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
	flex-shrink: 0;
	margin-top: 1px;
}

/* ─── 9. Forms ─── */
.ips-form,
.ips-quote-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group.full {
	grid-column: 1 / -1;
}

.form-group label {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--text-secondary);
	letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
	border: 1.5px solid var(--mid-gray);
	border-radius: 8px;
	padding: 11px 14px;
	font-size: 14px;
	font-family: 'DM Sans', sans-serif;
	color: var(--black);
	background: var(--white);
	transition: border-color var(--transition), box-shadow var(--transition);
	outline: none;
	width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-group select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	padding-right: 36px;
	cursor: pointer;
}

.form-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px;
	background: var(--off-white);
	border: 1px solid var(--mid-gray);
	border-radius: 8px;
}

.form-check input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 2px;
	accent-color: var(--gold-dark);
	cursor: pointer;
}

.form-check label {
	font-size: 13px;
	color: var(--text-secondary);
	line-height: 1.55;
	cursor: pointer;
}

.form-submit {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.form-submit .small {
	color: var(--text-muted);
}

.file-drop-zone {
	border: 1.5px dashed var(--mid-gray);
	border-radius: 8px;
	padding: 22px;
	text-align: center;
	color: var(--text-muted);
	font-size: 13.5px;
	background: var(--off-white);
	transition: border-color var(--transition);
}

.file-drop-zone:hover {
	border-color: var(--gold);
}

.selected-file-name {
	color: var(--text-muted);
}

/* ─── 10. Hero — Front Page ─── */
.ips-hero-section {
	background: var(--near-black);
	position: relative;
	overflow: hidden;
	padding: 100px 0 80px;
}

.ips-hero-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(245, 200, 66, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(245, 200, 66, 0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

.ips-hero-section::after {
	content: '';
	position: absolute;
	top: -200px;
	right: -150px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(245, 200, 66, 0.07) 0%, transparent 68%);
	pointer-events: none;
}

.ips-hero-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.ips-hero-copy h1 {
	color: var(--white);
	margin-bottom: 20px;
}

.ips-hero-copy .lead {
	color: rgba(255, 255, 255, 0.58);
	margin-bottom: 0;
}

.ips-hero-copy .hero-cta {
	margin-top: 32px;
	margin-bottom: 32px;
}

/* Hero badge / eyebrow */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(245, 200, 66, 0.1);
	border: 1px solid rgba(245, 200, 66, 0.2);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 22px;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--gold);
	letter-spacing: 0.06em;
	flex-wrap: wrap;
	gap: 6px;
}

.hero-badge__sep {
	color: rgba(245, 200, 66, 0.4);
}

/* Trust pills */
.ips-hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ips-hero-trust .badge,
.badge {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	padding: 5px 13px;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.55);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	line-height: 1.4;
}

.ips-hero-trust .badge::before {
	content: '';
	width: 5px;
	height: 5px;
	background: var(--gold);
	border-radius: 50%;
	flex-shrink: 0;
}

/* ─── 11. Dashboard Visual ─── */
.ips-hero-visual {
	position: relative;
}

.ips-dashboard-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 28px;
	box-shadow: none;
}

.ips-dashboard-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 20px;
}

.ips-dashboard-header .small {
	display: block;
	color: rgba(255, 255, 255, 0.4);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 3px;
}

.ips-dashboard-header strong {
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	color: var(--white);
}

.ips-live-pill {
	background: rgba(34, 197, 94, 0.15);
	color: var(--green);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 100px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 5px;
}

.ips-live-pill::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--green);
	border-radius: 50%;
	animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: 0.5; transform: scale(0.8); }
}

.ips-dashboard-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 14px;
}

.ips-dashboard-stat {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 16px;
}

.ips-dashboard-stat span {
	display: block;
	font-size: 10px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.09em;
	margin-bottom: 5px;
}

.ips-dashboard-stat strong {
	display: block;
	font-family: 'Syne', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 4px;
}

.ips-dashboard-stat small {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.35);
	line-height: 1.4;
}

.ips-dashboard-stat--gold {
	border-color: rgba(245, 200, 66, 0.15);
	background: rgba(245, 200, 66, 0.05);
}

.ips-dashboard-stat--gold strong {
	color: var(--gold);
}

/* Project preview rows */
.ips-project-preview {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 13px 14px;
	margin-bottom: 8px;
}

.ips-project-preview:last-of-type {
	margin-bottom: 14px;
}

.ips-project-preview__icon {
	width: 38px;
	height: 38px;
	background: rgba(245, 200, 66, 0.1);
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.ips-project-preview strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 2px;
}

.ips-project-preview .small {
	color: rgba(255, 255, 255, 0.38);
	font-size: 11px;
}

/* Floating note */
.ips-floating-note {
	background: rgba(245, 200, 66, 0.08);
	border: 1px solid rgba(245, 200, 66, 0.18);
	border-radius: 10px;
	padding: 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ips-floating-note strong {
	font-family: 'Syne', sans-serif;
	font-size: 12.5px;
	color: var(--gold);
}

.ips-floating-note span {
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.4);
}

/* 12 ─── Featured Work / Portfolio Image Overlay Cards ─── */

/* ============================================================
   FEATURED WORK / PORTFOLIO PREVIEW
============================================================ */

.ips-featured-work {
	background: var(--white);
	position: relative;
	overflow: hidden;
}

.ips-featured-work .ips-section-head {
	max-width: 720px;
	margin-bottom: 42px;
}

.ips-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.ips-portfolio-card {
	position: relative;
	min-height: 410px;
	padding: 0;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: var(--black);
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.10);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ips-portfolio-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 75px rgba(0, 0, 0, 0.18);
	border-color: rgba(245, 200, 66, 0.65);
}

.ips-portfolio-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	z-index: 1;
	transform: scale(1);
	transition: transform 0.45s ease;
}

.ips-portfolio-card:hover .ips-portfolio-image {
	transform: scale(1.06);
}

.ips-portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ips-portfolio-image span {
	display: none;
}

.ips-portfolio-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.05) 0%,
			rgba(0, 0, 0, 0.35) 38%,
			rgba(0, 0, 0, 0.82) 100%
		);
	transition: background 0.25s ease;
}

.ips-portfolio-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		radial-gradient(
			circle at top right,
			rgba(245, 200, 66, 0.18),
			transparent 38%
		);
	opacity: 0.65;
	pointer-events: none;
}

.ips-portfolio-card:hover::before {
	background:
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.12) 0%,
			rgba(0, 0, 0, 0.45) 38%,
			rgba(0, 0, 0, 0.90) 100%
		);
}

.ips-portfolio-body {
	position: relative;
	z-index: 3;
	min-height: 410px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
}

.ips-project-category {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(245, 200, 66, 0.16);
	border: 1px solid rgba(245, 200, 66, 0.36);
	color: var(--gold);
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.10em;
	text-transform: uppercase;
}

.ips-portfolio-body h2 {
	font-family: 'Syne', sans-serif;
	font-size: 25px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: #ffffff;
	margin: 0 0 12px;
}

.ips-portfolio-body p {
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
	margin: 0 0 18px;
	max-width: 95%;
}

.ips-project-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ips-project-meta span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.84);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.ips-featured-work .ips-centered-cta {
	margin-top: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}


/* ============================================================
   FEATURED WORK RESPONSIVE
============================================================ */

@media (max-width: 1100px) {
	.ips-portfolio-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.ips-portfolio-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.ips-portfolio-card {
		min-height: 380px;
		border-radius: 18px;
	}

	.ips-portfolio-body {
		min-height: 380px;
		padding: 26px;
	}

	.ips-portfolio-body h2 {
		font-size: 23px;
	}

	.ips-portfolio-body p {
		font-size: 14px;
		max-width: 100%;
	}

	.ips-featured-work .ips-centered-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.ips-featured-work .ips-centered-cta .btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.ips-portfolio-card {
		min-height: 360px;
		border-radius: 16px;
	}

	.ips-portfolio-body {
		min-height: 360px;
		padding: 22px;
	}

	.ips-project-category {
		font-size: 10px;
		padding: 6px 10px;
	}

	.ips-portfolio-body h2 {
		font-size: 21px;
	}

	.ips-project-meta span {
		font-size: 10.5px;
	}
}



/* ─── 13. Portfolio ─── */
.ips-portfolio-grid {
	gap: 20px;
}

.ips-portfolio-card {
	padding: 0;
	overflow: hidden;
	transition: var(--transition);
	cursor: pointer;
}

.ips-portfolio-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--gold);
}

.ips-portfolio-image {
	height: 200px;
	background: linear-gradient(135deg, #1a1a2e, #16213e);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
	font-weight: 500;
	position: relative;
	overflow: hidden;
}

.ips-portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ips-portfolio-body {
	padding: 20px 22px;
}

.ips-project-category {
	display: block;
	font-size: 10.5px;
	font-weight: 700;
	color: var(--gold-dark);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}

.ips-portfolio-body h2 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: -0.015em;
}

.ips-portfolio-body p {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 12px;
}

.ips-project-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 12px;
}

.ips-project-meta span {
	background: var(--light-gray);
	color: var(--text-secondary);
	font-size: 11px;
	font-weight: 500;
	padding: 3px 10px;
	border-radius: 100px;
}

.ips-project-role {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--mid-gray);
	font-size: 12.5px;
	color: var(--text-muted);
	line-height: 1.55;
}

.ips-project-type {
	color: var(--text-muted);
	margin-bottom: 8px;
}

/* Portfolio filter buttons */
.ips-portfolio-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 36px;
	justify-content: center;
}

.portfolio-filter-btn {
	background: transparent;
	border: 1.5px solid var(--mid-gray);
	color: var(--text-secondary);
	font-family: 'Syne', sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	padding: 7px 18px;
	border-radius: 100px;
	cursor: pointer;
	transition: var(--transition);
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.is-active {
	background: var(--black);
	border-color: var(--black);
	color: var(--white);
}

.portfolio-item.is-hidden {
	display: none;
}

/* ─── 14. Maintenance Plans / Pricing ─── */
.ips-maintenance-highlight {
	background: var(--near-black);
	color: var(--white);
}

.ips-maintenance-highlight h2 {
	color: var(--white);
}

.ips-maintenance-highlight .lead {
	color: rgba(255, 255, 255, 0.55);
}

.ips-maintenance-highlight .kicker {
	color: var(--gold);
}

/* Mini plan stack on home page */
.ips-plan-stack {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ips-mini-plan {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
	padding: 18px 20px;
	transition: var(--transition);
}

.ips-mini-plan:hover {
	border-color: rgba(245, 200, 66, 0.25);
}

.ips-mini-plan strong {
	display: block;
	font-family: 'Syne', sans-serif;
	font-size: 14px;
	color: var(--white);
	margin-bottom: 4px;
}

.ips-mini-plan .small {
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.5;
}

.ips-mini-plan > span {
	font-size: 13px;
	font-weight: 700;
	color: var(--gold);
	white-space: nowrap;
	flex-shrink: 0;
}

.ips-mini-plan--featured {
	border-color: rgba(245, 200, 66, 0.25);
	background: rgba(245, 200, 66, 0.06);
}

/* Full pricing cards (maintenance page) */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.pricing-card {
	background: var(--white);
	border: 1.5px solid var(--mid-gray);
	border-radius: var(--card-radius);
	padding: 32px 28px;
	transition: var(--transition);
	position: relative;
}

.pricing-card:hover {
	border-color: var(--gold);
	box-shadow: var(--shadow-md);
}

.pricing-card--featured {
	border-color: var(--gold);
	background: var(--black);
	color: var(--white);
}

.pricing-card--featured h2,
.pricing-card--featured .pricing-card__price {
	color: var(--white);
}

.pricing-card--featured .pricing-card__price span {
	color: rgba(255, 255, 255, 0.5);
}

.pricing-card--featured .pricing-card__sub {
	color: rgba(255, 255, 255, 0.45);
}

.pricing-card--featured .pricing-card__features li {
	color: rgba(255, 255, 255, 0.7);
}

.pricing-card--featured .pricing-card__features li::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5C842' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.pricing-card__badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gold);
	color: var(--black);
	font-family: 'Syne', sans-serif;
	font-size: 10.5px;
	font-weight: 800;
	padding: 4px 16px;
	border-radius: 100px;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	white-space: nowrap;
}

.pricing-card h2 {
	font-family: 'Syne', sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin-bottom: 10px;
}

.pricing-card__price {
	font-family: 'Syne', sans-serif;
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--black);
	margin-bottom: 3px;
	line-height: 1;
}

.pricing-card__price span {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-muted);
}

.pricing-card__fees {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.pricing-card__sub {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 22px;
	line-height: 1.55;
}

.pricing-card__divider {
	height: 1px;
	background: var(--mid-gray);
	margin: 20px 0;
}

.pricing-card--featured .pricing-card__divider {
	background: rgba(255, 255, 255, 0.08);
}

.pricing-card__features {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin-bottom: 28px;
}

.pricing-card__features li {
	font-size: 13px;
	color: var(--text-secondary);
	display: flex;
	align-items: flex-start;
	gap: 9px;
	line-height: 1.45;
}

.pricing-card__features li::before {
	content: '';
	width: 15px;
	height: 15px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a100' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
	flex-shrink: 0;
	margin-top: 1px;
}

.pricing-card__bestfor {
	font-size: 12px;
	color: var(--text-muted);
	padding-top: 14px;
	border-top: 1px solid var(--mid-gray);
}

/* Pricing page note at bottom */
.plan-note {
	background: var(--off-white);
	border: 1px solid var(--mid-gray);
	border-radius: 12px;
	padding: 20px 24px;
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-top: 32px;
}

.plan-note strong {
	display: block;
	color: var(--text-secondary);
	font-size: 14px;
	margin-bottom: 6px;
}

/* AI package cards on AI page (same as pricing-card but smaller) */
.ips-ai-package-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ips-plan-card {
	border-radius: var(--card-radius);
}

/* ─── 15. AI Section ─── */
.ips-ai-home-section { background: var(--white); }

.ips-ai-chat-preview {
	border-radius: 20px;
	padding: 24px;
}

.ips-chat-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--mid-gray);
}

.ips-chat-avatar {
	width: 38px;
	height: 38px;
	background: var(--gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 13px;
	color: var(--black);
	flex-shrink: 0;
}

.ips-chat-header strong {
	display: block;
	font-family: 'Syne', sans-serif;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 2px;
}

.ips-chat-header .small {
	color: var(--green);
	font-weight: 500;
}

.ips-chat-message {
	max-width: 82%;
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 8px;
}

.ips-chat-message--bot {
	background: var(--light-gray);
	color: var(--black);
	align-self: flex-start;
	border-radius: 4px 12px 12px 12px;
}

.ips-chat-message--user {
	background: var(--gold);
	color: var(--black);
	align-self: flex-end;
	border-radius: 12px 4px 12px 12px;
	font-weight: 500;
	margin-left: auto;
}

.ips-chat-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--mid-gray);
}

.ips-chat-actions span {
	background: var(--off-white);
	border: 1px solid var(--mid-gray);
	border-radius: 6px;
	padding: 5px 12px;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--text-secondary);
	cursor: pointer;
	transition: var(--transition);
}

.ips-chat-actions span:hover {
	border-color: var(--gold);
	color: var(--gold-dark);
}

/* Benefits grid */
.ips-benefit-grid {
	gap: 10px;
	margin-top: 20px;
	margin-bottom: 0;
}

.ips-benefit-grid .card {
	padding: 14px 16px;
	border-radius: 10px;
}

.ips-benefit-grid .card strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 3px;
}

.ips-benefit-grid .card .small {
	color: var(--text-muted);
	line-height: 1.45;
}

/* AI services grid (AI page) */
.ips-ai-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ips-ai-card strong {
	font-family: 'Syne', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--black);
}

.ips-ai-card .card-icon {
	margin-bottom: 4px;
}

/* Tools grid */
.ips-tools-grid {
	gap: 16px;
}

.ips-tools-grid .card {
	text-align: center;
	padding: 24px 20px;
}

.ips-tools-grid .card strong {
	display: block;
	font-family: 'Syne', sans-serif;
	font-size: 15px;
	margin: 8px 0 6px;
}

/* ─── 16. Process / Steps ─── */
.ips-process-section { background: var(--off-white); }

.ips-process-grid {
	gap: 16px;
}

.ips-process-grid .card {
	text-align: center;
	padding: 28px 20px;
}

.ips-step-number {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 32px;
	color: var(--gold);
	margin-bottom: 14px;
	line-height: 1;
}

.ips-process-grid .card strong {
	display: block;
	font-family: 'Syne', sans-serif;
	font-size: 14.5px;
	font-weight: 700;
	margin-bottom: 8px;
}

.ips-process-grid .card .small {
	color: var(--text-muted);
	line-height: 1.6;
}

/* Why choose grid */
.ips-why-section { background: var(--near-black); }

.ips-why-section .card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.ips-why-section .card:hover {
	border-color: rgba(245, 200, 66, 0.25);
	background: rgba(245, 200, 66, 0.04);
}

.ips-why-section .card-icon {
	margin-bottom: 12px;
}

.ips-why-section .card strong {
	display: block;
	font-family: 'Syne', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 6px;
}

.ips-why-section .card .small {
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.6;
}

.ips-why-section .kicker,
.ips-why-section .ips-section-head h2 {
	color: var(--white);
}

.ips-why-section .ips-section-head .lead {
	color: rgba(255, 255, 255, 0.5);
}

/* ─── 17. Testimonials ─── */
.ips-testimonials-section { background: var(--off-white); }

.ips-testimonial-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ips-testimonial-card p {
	font-size: 14px;
	font-style: italic;
	color: var(--text-secondary);
	line-height: 1.7;
	flex: 1;
}

.ips-testimonial-card strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
}

.ips-testimonial-card .small {
	color: var(--text-muted);
}

/* ─── 18. CTA Banner / Final CTA ─── */
.ips-cta-card {
	text-align: center;
	padding: 52px 40px;
	background: linear-gradient(135deg, var(--black) 0%, #1a1a0a 100%);
	border: 1px solid rgba(245, 200, 66, 0.12);
}

.ips-cta-card .kicker {
	color: var(--gold);
	justify-content: center;
}

.ips-cta-card h2 {
	color: var(--white);
	margin-bottom: 14px;
}

.ips-cta-card .lead {
	color: rgba(255, 255, 255, 0.55);
	max-width: 580px;
	margin: 0 auto;
}

.ips-cta-card .hero-cta {
	justify-content: center;
}

.ips-home-final-cta { background: var(--white); }

/* ─── 19. FAQ Accordion ─── */
.ips-faq-list {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--mid-gray);
	border-radius: var(--card-radius);
	overflow: hidden;
}

.faq-item {
	border-bottom: 1px solid var(--mid-gray);
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	font-family: 'Syne', sans-serif;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--black);
	background: var(--white);
	border: none;
	cursor: pointer;
	text-align: left;
	transition: var(--transition);
}

.faq-question:hover {
	background: var(--off-white);
	color: var(--gold-dark);
}

.faq-question span {
	font-size: 20px;
	font-weight: 400;
	color: var(--gold-dark);
	flex-shrink: 0;
	transition: var(--transition);
	line-height: 1;
}

.faq-item.is-open .faq-question {
	color: var(--gold-dark);
}

.faq-item.is-open .faq-question span {
	transform: rotate(45deg);
}

.faq-answer {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.35s ease;
}

.faq-answer p {
	padding: 0 22px 18px;
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
}

/* ─── 20. Footer ─── */
/* =============================================================
   FOOTER
============================================================= */

.site-footer {
	background: #080808;
	color: #ffffff;
	padding: 72px 0 28px;
}

.site-footer * {
	color: inherit;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.2fr 2fr;
	gap: 64px;
	margin-bottom: 52px;
}

.footer-left {
	max-width: 360px;
}

.footer-logo-link {
	margin-bottom: 16px;
	display: inline-flex;
	align-items: center;
}

.footer-logo img,
.footer-logo .custom-logo {
	max-height: 52px;
	width: auto;
}

.footer-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.footer-brand-main {
	font-family: 'Syne', sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.04em;
}

.footer-brand-sub {
	font-size: 11px;
	font-weight: 800;
	color: var(--gold);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-top: 5px;
}

.footer-tagline {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.75;
	max-width: 340px;
	margin-bottom: 22px;
}

.footer-contact {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.footer-contact p,
.footer-contact .small {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.55;
	margin: 0;
}

.footer-contact strong {
	color: #ffffff;
}

.footer-contact a {
	color: rgba(255, 255, 255, 0.82);
	transition: var(--transition);
}

.footer-contact a:hover {
	color: var(--gold);
}

.footer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 22px;
}

.footer-social-link {
	min-height: 36px;
	padding: 8px 13px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.74);
	transition: var(--transition);
}

.footer-social-link:hover {
	color: var(--gold);
	border-color: var(--gold);
	background: rgba(245, 200, 66, 0.10);
}

.footer-right {
	width: 100%;
}

.footer-cols {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px;
}

.footer-heading {
	display: block;
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 12px;
	color: #ffffff;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.footer-links a {
	font-size: 13px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.68);
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--gold);
}

.footer-note {
	margin-top: 20px;
}

.footer-note p,
.footer-note .small {
	font-size: 12px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.52);
	margin: 0;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom p,
.footer-bottom .small {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.48);
	margin: 0;
}

.footer-bottom a {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.68);
	transition: var(--transition);
}

.footer-bottom a:hover {
	color: var(--gold);
}

/* Footer Responsive */

@media (max-width: 1024px) {
	.footer-top {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.footer-left {
		max-width: 100%;
	}

	.footer-tagline {
		max-width: 620px;
	}

	.footer-cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.site-footer {
		padding: 56px 0 24px;
	}

	.footer-cols {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-socials {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		width: 100%;
	}

	.footer-social-link {
		width: 100%;
	}
}




















/* ============================================================
   21. PAGE HEROES — INNER PAGES
============================================================ */

.ips-page-hero {
	background: var(--near-black);
	padding: 80px 0 64px;
	position: relative;
	overflow: hidden;
}

.ips-page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(245, 200, 66, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(245, 200, 66, 0.035) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	z-index: 0;
}

.ips-page-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(245, 200, 66, 0.25), transparent);
	z-index: 0;
}

.ips-page-hero .container {
	position: relative;
	z-index: 2;
}

.ips-page-hero .kicker {
	color: var(--gold);
}

.ips-page-hero h1 {
	color: var(--white);
	margin-bottom: 16px;
}

.ips-page-hero .lead {
	color: rgba(255, 255, 255, 0.55);
	max-width: 640px;
	margin-bottom: 0;
}

.ips-page-hero .hero-cta {
	margin-top: 28px;
}

.ips-page-hero .btn--outline {
	color: rgba(255, 255, 255, 0.75);
	border-color: rgba(255, 255, 255, 0.25);
}

.ips-page-hero .btn--outline:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: rgba(245, 200, 66, 0.08);
}


/* ============================================================
   LIGHT HERO FIXES — SERVICES / MAINTENANCE / AI SOLUTIONS
   These pages use white hero backgrounds with black text.
============================================================ */

body .site-main section.ips-services-hero,
body .site-main section.ips-maintenance-hero,
body .site-main section.ips-ai-hero {
	background: #ffffff !important;
	background-color: #ffffff !important;
	color: var(--black) !important;
	padding-top: 92px !important;
	padding-bottom: 76px !important;
	position: relative !important;
	overflow: hidden !important;
}

body .site-main section.ips-services-hero::before,
body .site-main section.ips-maintenance-hero::before,
body .site-main section.ips-ai-hero::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	background-image:
		linear-gradient(rgba(245, 200, 66, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(245, 200, 66, 0.08) 1px, transparent 1px) !important;
	background-size: 60px 60px !important;
	opacity: 0.35 !important;
	pointer-events: none !important;
	z-index: 0 !important;
}

body .site-main section.ips-services-hero::after,
body .site-main section.ips-maintenance-hero::after,
body .site-main section.ips-ai-hero::after {
	content: "" !important;
	position: absolute !important;
	top: -180px !important;
	right: -160px !important;
	width: 520px !important;
	height: 520px !important;
	background: radial-gradient(circle, rgba(245, 200, 66, 0.18) 0%, transparent 68%) !important;
	pointer-events: none !important;
	z-index: 0 !important;
}

body .site-main section.ips-services-hero .container,
body .site-main section.ips-maintenance-hero .container,
body .site-main section.ips-ai-hero .container {
	position: relative !important;
	z-index: 2 !important;
}

body .site-main section.ips-services-hero h1,
body .site-main section.ips-maintenance-hero h1,
body .site-main section.ips-ai-hero h1 {
	color: var(--black) !important;
	-webkit-text-fill-color: var(--black) !important;
	background: none !important;
	text-shadow: none !important;
	max-width: 1050px !important;
}

body .site-main section.ips-services-hero .lead,
body .site-main section.ips-services-hero p,
body .site-main section.ips-maintenance-hero .lead,
body .site-main section.ips-maintenance-hero p,
body .site-main section.ips-ai-hero .lead,
body .site-main section.ips-ai-hero p {
	color: var(--text-muted) !important;
	-webkit-text-fill-color: var(--text-muted) !important;
	background: none !important;
	text-shadow: none !important;
	max-width: 760px !important;
}

body .site-main section.ips-services-hero .hero-cta .btn.btn--primary,
body .site-main section.ips-maintenance-hero .hero-cta .btn.btn--primary,
body .site-main section.ips-ai-hero .hero-cta .btn.btn--primary {
	background: var(--gold) !important;
	color: var(--black) !important;
	-webkit-text-fill-color: var(--black) !important;
	border-color: var(--gold) !important;
}

body .site-main section.ips-services-hero .hero-cta .btn.btn--primary:hover,
body .site-main section.ips-maintenance-hero .hero-cta .btn.btn--primary:hover,
body .site-main section.ips-ai-hero .hero-cta .btn.btn--primary:hover {
	background: var(--gold-hover) !important;
	border-color: var(--gold-hover) !important;
	color: var(--black) !important;
	-webkit-text-fill-color: var(--black) !important;
}

body .site-main section.ips-services-hero .hero-cta .btn.btn--outline,
body .site-main section.ips-maintenance-hero .hero-cta .btn.btn--outline,
body .site-main section.ips-ai-hero .hero-cta .btn.btn--outline {
	background: transparent !important;
	color: var(--black) !important;
	-webkit-text-fill-color: var(--black) !important;
	border-color: rgba(10, 10, 10, 0.35) !important;
}

body .site-main section.ips-services-hero .hero-cta .btn.btn--outline:hover,
body .site-main section.ips-maintenance-hero .hero-cta .btn.btn--outline:hover,
body .site-main section.ips-ai-hero .hero-cta .btn.btn--outline:hover {
	background: rgba(245, 200, 66, 0.12) !important;
	color: var(--black) !important;
	-webkit-text-fill-color: var(--black) !important;
	border-color: var(--gold) !important;
}


/* ============================================================
   DARK HERO BUTTON FIXES — FRONT PAGE + FINAL CTA
============================================================ */

.ips-hero-section .hero-cta .btn.btn--outline {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	border-color: rgba(255, 255, 255, 0.55) !important;
	background: transparent !important;
}

.ips-hero-section .hero-cta .btn.btn--outline:hover {
	color: var(--gold) !important;
	-webkit-text-fill-color: var(--gold) !important;
	border-color: var(--gold) !important;
	background: rgba(245, 200, 66, 0.08) !important;
}

.ips-home-final-cta .hero-cta .btn.btn--outline,
.ips-home-final-cta .hero-cta a.btn.btn--outline,
.ips-cta-card .hero-cta .btn.btn--outline,
.ips-cta-card .hero-cta a.btn.btn--outline {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	border-color: rgba(255, 255, 255, 0.65) !important;
	background: transparent !important;
}

.ips-home-final-cta .hero-cta .btn.btn--outline:hover,
.ips-home-final-cta .hero-cta a.btn.btn--outline:hover,
.ips-cta-card .hero-cta .btn.btn--outline:hover,
.ips-cta-card .hero-cta a.btn.btn--outline:hover {
	color: var(--gold) !important;
	-webkit-text-fill-color: var(--gold) !important;
	border-color: var(--gold) !important;
	background: rgba(245, 200, 66, 0.08) !important;
}


/* ============================================================
   22. CONTACT PAGE
============================================================ */

.ips-contact-grid {
	gap: 48px;
}

.ips-contact-form-card .kicker {
	justify-content: flex-start;
}

.ips-contact-form-card h2 {
	margin-bottom: 6px;
}

.ips-contact-sidebar {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.ips-contact-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 14px;
}

.ips-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px;
	border: 1px solid var(--mid-gray);
	border-radius: 10px;
	transition: var(--transition);
}

.ips-contact-item:hover {
	border-color: var(--gold);
	background: rgba(245, 200, 66, 0.02);
}

.ips-contact-icon {
	font-size: 20px;
	flex-shrink: 0;
	margin-top: 1px;
}

.ips-contact-item .small {
	display: block;
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	margin-bottom: 3px;
}

.ips-contact-item a {
	color: var(--gold-dark);
	font-size: 14px;
	transition: var(--transition);
}

.ips-contact-item a:hover {
	color: var(--gold);
}

.ips-contact-item p {
	font-size: 13.5px;
	color: var(--text-secondary);
	line-height: 1.5;
}

.ips-contact-sidebar .card {
	border-radius: 12px;
	margin-bottom: 16px;
}

.ips-contact-sidebar .card:last-child {
	margin-bottom: 0;
}


/* ============================================================
   23. QUOTE PAGE
============================================================ */

.ips-quote-wrap {
	max-width: 780px;
	margin: 0 auto;
	padding: 64px 0;
}


/* ============================================================
   24. RESPONSIVE
============================================================ */

@media (max-width: 1024px) {
	.grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.ips-hero-wrap {
		gap: 48px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}

	.ips-ai-package-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}

	.ips-service-detail {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.ips-contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.ips-hero-wrap {
		grid-template-columns: 1fr;
	}

	.ips-hero-visual {
		display: none;
	}

	.grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.ips-maintenance-highlight .grid {
		grid-template-columns: 1fr;
	}

	.ips-ai-home-section .grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	:root {
		--container: 100%;
	}

	.section {
		padding: 64px 0;
	}

	h1 {
		font-size: clamp(28px, 8vw, 42px);
	}

	h2 {
		font-size: clamp(22px, 6vw, 34px);
	}

	.primary-nav,
	.nav-work-btn {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.grid--2,
	.grid--3,
	.grid--4 {
		grid-template-columns: 1fr;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.form-group.full {
		grid-column: auto;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.hero-cta {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-cta .btn {
		width: 100%;
		justify-content: center;
	}

	.ips-hero-trust .badge {
		font-size: 11px;
	}

	.ips-section-head {
		text-align: left;
	}

	.ips-section-head .kicker {
		justify-content: flex-start;
	}

	.ips-portfolio-filters {
		gap: 6px;
	}

	.portfolio-filter-btn {
		font-size: 12px;
		padding: 6px 13px;
	}

	.pricing-grid,
	.ips-ai-package-grid {
		grid-template-columns: 1fr;
	}

	.ips-cta-card {
		padding: 36px 24px;
	}

	.ips-cta-card .hero-cta {
		flex-direction: column;
	}

	.ips-cta-card .hero-cta .btn {
		width: 100%;
	}

	body .site-main section.ips-services-hero,
	body .site-main section.ips-maintenance-hero,
	body .site-main section.ips-ai-hero {
		padding-top: 70px !important;
		padding-bottom: 58px !important;
	}

	body .site-main section.ips-services-hero h1,
	body .site-main section.ips-maintenance-hero h1,
	body .site-main section.ips-ai-hero h1 {
		font-size: clamp(34px, 9vw, 48px) !important;
	}

	body .site-main section.ips-services-hero .lead,
	body .site-main section.ips-maintenance-hero .lead,
	body .site-main section.ips-ai-hero .lead {
		font-size: 16px !important;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}

	.section {
		padding: 52px 0;
	}

	.ips-page-hero {
		padding: 60px 0 48px;
	}

	.ips-hero-section {
		padding: 72px 0 56px;
	}

	.grid--2 {
		grid-template-columns: 1fr;
	}
}












