/* 
   Homester AI - Premium Architectural & Tech Grid Style Sheet
   Copyright: HOMESTER DECOR PRIVATE LIMITED
   Color Palette: Pure Alabaster Slate (#FCFCFD), Tech Warm Sand (#F5F5F7), Obsidian Charcoal (#121316), Architectural Bronze (#B07D62)
   Typography: Outfit (Headings), Plus Jakarta Sans (Body Text)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --primary: #121316;
    --primary-light: #1C1D22;
    --primary-dark: #090A0C;
    --accent: #B07D62;
    --accent-hover: #916047;
    --accent-light: #F7F4F0;
    --accent-rgb: 176, 125, 98;
    --bg-light: #F5F5F7;
    --bg-white: #FCFCFD;
    --text-dark: #121316;
    --text-muted: #686A73;
    --text-white: #FCFCFD;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(18, 19, 22, 0.02);
    --shadow-md: 0 12px 36px rgba(18, 19, 22, 0.04);
    --shadow-lg: 0 24px 64px rgba(18, 19, 22, 0.08);
    --shadow-bronze: 0 8px 24px rgba(176, 125, 98, 0.15);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-color: rgba(18, 19, 22, 0.07);
    --border-color-dark: rgba(18, 19, 22, 0.12);
    --border-color-bronze: rgba(176, 125, 98, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Blueprint Grid Background Pattern */
.grid-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

/* Redesigned Section Header */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px auto;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-light);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color-bronze);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary) 20%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 14px rgba(18, 19, 22, 0.12);
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--bg-white);
    box-shadow: var(--shadow-bronze);
}

.btn-secondary {
    background-color: var(--accent-light);
    color: var(--accent);
    border: 1px solid var(--border-color-bronze);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--bg-white);
    box-shadow: var(--shadow-bronze);
}

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

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

.btn-dark {
    background-color: var(--primary-light);
    color: var(--bg-white);
    border: 1px solid var(--primary-light);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 11px;
}

/* Centered Logo Nav Bar (Floating pill aesthetic) */
.header {
    position: fixed;
    top: 12px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    top: 0;
}

.header-container {
    background-color: rgba(252, 252, 253, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled .header-container {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    box-shadow: var(--shadow-md);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.logo-container-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.logo-badge .logo {
    height: 40px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    flex: 1;
}

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

.nav-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    padding: 8px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-toggle {
    display: none;
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

/* Hero Section (100% Redesigned) */
.hero {
    background-color: var(--bg-light);
    padding: 110px 0 70px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-layout-centered {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(176, 125, 98, 0.08);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--border-color-bronze);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subheadline {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

/* Beautiful Hero Interactive Workspace Mockup */
.hero-mockup-block {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color-dark);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}

.hero-mockup-inner {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

.hero-mockup-screen {
    width: 100%;
    height: 100%;
    position: relative;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.mockup-img.active {
    opacity: 1;
    z-index: 2;
}

.mockup-floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--bg-white);
    padding: 8px 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.mockup-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding: 0 4px;
}

.mockup-tabs {
    display: flex;
    gap: 8px;
}

.mockup-tab-btn {
    background-color: var(--bg-light);
    border: 1px solid transparent;
    color: var(--text-dark);
    padding: 10px 18px;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.mockup-tab-btn:hover {
    background-color: var(--border-color);
}

.mockup-tab-btn.active {
    background-color: var(--accent);
    color: var(--bg-white);
}

/* Trust Logos Section */
.trust {
    background-color: var(--bg-white);
    padding: 60px 0;
}

.trust-title {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.trust-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.trust-logo i {
    font-size: 16px;
    color: var(--accent);
}

.trust-logo:hover {
    color: var(--primary);
}

/* Bento Grid Features Layout */
.core-platform {
    background-color: var(--bg-white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 24px;
    margin-top: 48px;
}

.bento-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.bento-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bento-card.col-2 {
    grid-column: span 2;
}

.bento-card.row-2 {
    grid-row: span 2;
}

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius);
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color-bronze);
}

.bento-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.bento-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.bento-action:hover {
    color: var(--accent-hover);
}

.bento-image-wrapper {
    margin-top: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

/* Before & After Interactive Slider (Working Perfectly) */
.comparison-section {
    background-color: var(--bg-light);
}

.comparison-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto 48px auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color-dark);
    box-shadow: var(--shadow-lg);
}

.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    user-select: none;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.before-img {
    background-image: url('../../images/empty_room.png');
}

.after-img {
    background-image: url('../../images/furnished_room.png');
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--accent);
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
    pointer-events: none;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    cursor: ew-resize;
    pointer-events: auto;
    transition: transform 0.2s ease, background-color 0.2s ease;
    border: 2px solid var(--accent);
}

.slider-button:hover {
    background-color: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-button i {
    font-size: 16px;
}

.slider-label {
    position: absolute;
    bottom: 20px;
    background-color: rgba(18, 19, 22, 0.85);
    backdrop-filter: blur(8px);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 5;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

.comparison-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.comp-tab-btn {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comp-tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary-light);
}

.comp-tab-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--bg-white);
}

/* Feature Grid Cards (Used in pricing etc) */
.feature-grid {
    background-color: var(--bg-white);
}

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

.feature-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

/* Industries / Solutions Grid */
.industries-section {
    background-color: var(--bg-light);
}

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

.industry-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
}

.industry-icon {
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 16px;
}

.industry-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.industry-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

/* About Layout Style */
.about-layout {
    padding: 160px 0 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.about-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
}

.about-card h2 {
    font-size: 26px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.about-card h2:first-child {
    margin-top: 0;
}

.about-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.stat-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
}

.stat-box h3 {
    font-size: 32px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-box p {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

/* Contact Page Layout */
.contact-layout {
    padding: 160px 0 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: start;
}

.contact-form-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    border-left: 4px solid var(--accent);
}

.info-icon {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 12px;
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-text p, .info-text a {
    color: var(--text-muted);
    font-size: 14px;
}

.info-text a:hover {
    color: var(--accent);
}

/* Forms & Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    height: 50px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0 16px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--bg-white);
}

textarea.form-input {
    height: 120px;
    padding: 16px;
    resize: vertical;
}

/* Auth Portal */
.auth-page {
    background: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 28px;
}

.auth-tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
}

.auth-tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-error, .auth-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: var(--border-radius-sm);
}

.auth-error {
    background-color: #FDF2F2;
    border: 1px solid #FBD5D5;
    color: #F05252;
}

.auth-success {
    background-color: #EDFDF6;
    border: 1px solid #DEF7EC;
    color: #0E9F6E;
}

/* Pricing Page Layout */
.pricing-layout {
    padding: 160px 0 80px 0;
    background-color: var(--bg-light);
}

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

.price-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px 36px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.price-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: var(--bg-white);
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 100px;
}

.price-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.price-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: baseline;
}

.price-value span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.price-features {
    margin-bottom: 32px;
    flex-grow: 1;
}

.price-features li {
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.price-features li i {
    color: var(--accent);
}

/* Privacy/Terms */
.privacy-layout {
    padding: 160px 0 80px 0;
}

.privacy-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.privacy-card h2 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 6px;
}

.privacy-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.privacy-card ul {
    margin-left: 20px;
    margin-bottom: 16px;
    list-style-type: square;
}

.privacy-card li {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 6px;
}

/* Redesigned Footer (Architectural showroom grid style) */
.footer {
    background-color: #111215;
    color: #A3A5B0;
    padding: 80px 0 40px 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.footer-info p {
    font-size: 13.5px;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 280px;
    color: #A3A5B0;
}

.footer-links h5 {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    font-size: 13.5px;
    color: #D1D3DC;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: #A3A5B0;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card.col-2 {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    .section-title {
        font-size: 34px;
    }
    .hero {
        padding: 120px 0 80px 0;
    }
    .hero-title {
        font-size: 44px;
    }
    .hero-subheadline {
        font-size: 16px;
    }
    .nav-left, .nav-right {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .header-container {
        padding: 0 20px;
    }
    .grid-container, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.row-2 {
        grid-row: span 1;
    }
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .btn {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .about-card, .contact-form-card, .privacy-card, .price-card {
        padding: 32px 20px;
    }
}
