/* ---
Root Variables & Base Setup
--- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@300;500;700&display=swap');

:root {
    --font-primary: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --color-offwhite: #f3f3f3;
    --text-primary: var(--color-offwhite);

    /* --- Unified Colors for Consistency --- */
    --bg-main: #121212;
    --bg-panel: #1C1F24;
    --border-color: #30353D;
    --color-grey-dark: #1a1a1a;
    --color-grey-light: #8A919E;
    --text-secondary: var(--color-grey-light);
    
    /* --- Unified Accents --- */
    --accent-primary: #bda06d;           
    --accent-primary-hover: #d1b585;
    --color-gold: var(--accent-primary); /* Alias */
    --accent-gold-hover: var(--accent-primary-hover); /* Alias */

    /* --- Functional Colors --- */
    --accent-confirm: #98c379;
    --accent-error: #e06c75;
}

/* ---
New Pricing Page Styles
--- */
.vanilla-promise {
    text-align: center;
    margin: 80px 20px 60px 20px;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}
.vanilla-promise h2 {
    font-size: 3rem;
    font-weight: 700;
}
.vanilla-promise .promise-subtitle {
    font-size: 1.1rem;
    color: var(--accent-primary);
    font-weight: 500;
    margin-top: 10px;
}
.vanilla-promise p {
    max-width: 600px;
    margin: 20px auto 0 auto;
    line-height: 1.6;
    color: var(--text-secondary);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center; /* Vertically align cards */
    height: 700px;
}

.plan-card {
    background-color: var(--bg-panel);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}
.plan-card.highlight {
    border-color: var(--accent-primary);
    transform: scale(1.05); /* Make it stand out */
}
.plan-card .plan-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.plan-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--font-primary);
    margin-bottom: 0;
}
.plan-card .plan-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.plan-card .tagline {
    color: var(--color-grey-light);
    margin-top: 5px;
    min-height: 2.5em;
}
.plan-card .price {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.plan-card .price .price-amount {
    font-size: 3rem;
    font-weight: 700;
}
.plan-card .price .price-period {
    color: var(--text-secondary);
}
.plan-card .annual-option {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 15px;
}
.plan-card .annual-option strong {
    color: var(--accent-primary);
}
.plan-card .cta-button {
    display: block;
    text-align: center;
    background-color: var(--accent-primary);
    color: #111;
    padding: 12px;
    margin-top: 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.plan-card .cta-button:hover {
    background-color: var(--accent-primary-hover);
}
.plan-card .features {
    list-style: none;
    padding-left: 0;
    color: var(--text-primary);
    margin-top: 25px;
    flex-grow: 1; /* Pushes button to bottom */
}
.plan-card .features li {
    margin-top: 10px;
    line-height: 1.5;
}
.plan-card .features .all-inclusive {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    color: var(--text-primary);
}
.plan-card .features strong {
     color: var(--text-primary);
}

.enterprise-panel {
    text-align: center;
    border-radius: 8px;
    background-color: #1a1a1a;
    padding: 50px 30px;
    margin: 80px auto;
    max-width: 1200px;
    border: 1px solid var(--border-color);
}
.enterprise-panel .white-glove-title {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}
.enterprise-panel p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 15px auto 30px auto;
    line-height: 1.6;
}
.enterprise-panel .btn-secondary {
    border-color: var(--text-primary); /* Make it pop more */
}

.faq-section.new-faq .faq-container {
    max-width: 800px;
    margin: 40px auto;
}
.new-faq .faq-item {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
}
.new-faq .faq-item:last-child {
    border-bottom: 1px solid var(--border-color);
}
.new-faq .faq-item h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
}
.new-faq .faq-item p {
    color: var(--text-secondary);
    margin-top: 10px;
    line-height: 1.6;
}
.new-faq .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding-top 0.4s ease;
}
.new-faq .faq-item.active .faq-answer {
    padding-top: 10px;
}
.new-faq .faq-question { cursor: pointer; }


/* ---
New Services Page Styles
--- */
.services-hero {
    padding: 80px 20px;
    text-align: center;
}
.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}
.services-hero .section-subtitle {
     max-width: 700px;
     margin: 20px auto 0 auto;
}

.services-page-grid {
    padding-bottom: 80px;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-panel);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.service-card .service-number {
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-top: 10px;
    color: var(--text-primary);
}
.service-card p {
    color: var(--text-secondary);
    margin-top: 15px;
    line-height: 1.6;
    flex-grow: 1;
}
.service-card h4 {
    margin-top: 25px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 1.1rem;
    color: var(--text-primary);
}
.service-card ul {
    list-style: none;
    padding-left: 0;
    color: var(--text-secondary);
    margin: 15px 0 0 0;
}
.service-card ul li {
    margin-top: 10px;
    padding-left: 20px;
    position: relative;
}
.service-card ul li::before {
    content: '✓';
    font-weight: 900;
    color: var(--accent-primary);
    position: absolute;
    left: 0;
}
.service-card .pricing-model {
    margin-top: 25px;
    background: var(--color-grey-dark);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}
.service-card .pricing-model .pricing-model-label {
    display: block;
    font-weight: bold;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}
.service-card .pricing-model .pricing-model-value {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-top: 5px;
    font-weight: 600;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: #121212;
    color: var(--color-offwhite);
    font-family: var(--font-body);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-color);
}
section:last-of-type {
    border-bottom: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 600; /* Semi-bold for impact */
    letter-spacing: -0.02em; /* Slightly tighter for a modern feel */
    color: var(--color-offwhite);
}

h1 { font-size: 4.25rem; margin-bottom: 24px; line-height: 1.1; }
h2 { font-size: 3.25rem; margin-bottom: 24px; text-align: center; }
h3 { font-size: 1.75rem; margin-bottom: 16px; color: var(--color-offwhite); }
p, li {
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-grey-light);
}
a { color: var(--color-gold); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-primary); }

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-grey-light);
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
    border: 1px solid transparent;
    text-align: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--color-gold);
    color: #111; /* Dark text for readability on gold */
    border-color: var(--color-gold);
}
.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background-color: var(--bg-panel);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}


/* ---
Header & Navigation
--- */
.header {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-body);
    font-weight: 500; /* Use medium weight for presence */
    font-size: 1.75rem;
    color: var(--color-offwhite);
    text-decoration: none;
}
.nav-logo span { color: var(--color-gold); }

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 36px;
}

.nav-link, .plan-features li {
    font-weight: 500;
    text-transform: none;
}

.nav-link {
    color: var(--color-grey-light);
    text-decoration: none;
    transition: color 0.2s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}
.nav-link:hover {
    color: var(--text-primary);
    border-bottom-color: var(--accent-gold);
}

.nav-link.nav-link-special {
    background-color: color-mix(in srgb, var(--color-gold) 20%, transparent);
    color: var(--color-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
    border-bottom: none;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.nav-link.nav-link-special:hover {
    background-color: var(--color-gold);
    color: var(--bg-panel);
    border-bottom: none;
}

.nav-separator {
    width: 1px;
    height: 24px;
    background-color: var(--border-color);
    margin: 0 -4px;
}

/* ---
Hero Section
--- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgba(26, 26, 26, 0.5) 0%, rgba(26, 26, 26, 0.9) 80%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
}

/* Hero headline gets special treatment */
.hero-section h1 {
  font-size: 4rem; /* Or whatever it is now */
  font-weight: 400; /* Bolder */
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: var(--color-grey-light);
    margin-bottom: 48px;
}
.hero-content .btn-primary i {
    margin-right: 8px;
}

/* ---
Social Proof Section
--- */
.social-proof-section {
    padding: 50px 0;
    background-color: var(--color-grey-dark);
}
.social-proof-content {
    text-align: center;
}
.social-proof-title {
    color: var(--color-grey-light);
    font-size: 1rem;
    margin-bottom: 32px;
}
.social-proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    filter: grayscale(1) brightness(1.7);
    opacity: 0.6;
}

/* ---
Process Section ("Simplicity")
--- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}
.process-card {
    background: var(--bg-panel);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.process-card i {
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 24px;
    display: block;
}
.process-card h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* ---
Feature Sections (Editor, Audience)
--- */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.feature-content h2 {
    text-align: left;
}
.feature-content .section-subtitle {
    text-align: left;
    margin-left: 0;
    max-width: 500px;
}
.feature-content ul {
    list-style: none;
    margin-top: 32px;
}
.feature-content ul li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--color-grey-light);
}
.feature-content ul li::before {
    content: '✓';
    font-weight: 900;
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1.1;
}

.feature-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}
.feature-visual img, .feature-visual video {
    width: 100%;
    display: block;
}

/* Interactive embed placeholder */
.feature-visual.interactive {
    cursor: pointer;
}
.feature-visual.interactive::after {
    content: '\f144'; /* Font Awesome play icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.feature-visual.interactive:hover::after {
    transform: translate(-50%, -50%) scale(1.15);
    color: #fff;
}


/* ---
Materials Section ("Realism")
--- */
.materials-grid {
    display: grid;
    /* Creates responsive columns between 100px and 1fr */
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    justify-content: center;
    /* Add padding to prevent clipping of scaled spheres at the edges */
    padding: 20px;
    /* Limit the container to the height of roughly two rows and hide overflow. */
    max-height: 355px; /* (Item ~145px * 2) + gap 20px + padding 20*2 */
    overflow: hidden; /* Hides items that would wrap to a third row */
}
.material-sphere {
    position: relative;
    text-align: center;
    cursor: pointer;
}
.material-sphere .sphere-img {
    position:relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--bg-panel);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    /* Slower transition for when mouse leaves the grid */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* To contain the glint */
}
.material-sphere .sphere-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: left 0.85s ease-in-out;
}
.material-sphere:hover .sphere-img::before {
    left: 150%;
}
.material-sphere .sphere-name {
    margin-top: 16px;
    color: var(--color-grey-light);
    font-weight: 500;
}
.materials-section .text-center { text-align: center; margin-top: 60px; }

/* ---
Audience Section
--- */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.audience-panel {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.audience-panel img {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}
.audience-panel h3 { font-family:var(--font-heading); font-weight:700; font-size:1.75rem; color:var(--text-primary); }
.audience-panel p { margin-bottom: 30px; }


/* ---
Testimonials Section
--- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}
.testimonial-card {
    background-color: var(--bg-panel);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}
.testimonial-stars {
    color: #ffd700; /* A brighter gold for stars */
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.testimonial-stars i {
    margin-right: 4px;
}
.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    border-left: 3px solid var(--accent-gold);
    padding-left: 24px;
    flex-grow: 1;
}
.testimonial-author {
    margin-top: 30px;
    display: flex;
    align-items: center;
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 16px;
}
.testimonial-author-info cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-primary);
}
.testimonial-author-info span {
    font-size: 0.9rem;
    color: var(--color-grey-light);
}

/* ---
Final CTA Section
--- */
.final-cta-section {
    background-color: var(--bg-panel);
    text-align: center;
    padding: 80px 24px;
    border-radius: 12px;
    margin: 0 auto;
    max-width: 1200px;
}
.final-cta-section h2 { font-size: 2.75rem; }
.final-cta-section a { margin-top: 20px; }

/* ---
Pricing Section
--- */
.pricing-section {
    background-color: var(--bg-dark);
}
.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}
.pricing-toggle-wrap span {
    color: var(--color-grey-light);
    font-weight: 500;
    transition: color 0.2s ease, font-weight 0.2s ease;
}
.pricing-toggle-wrap span.active {
    color: var(--color-offwhite);
    font-weight: 700;
}
#pricingToggle { display: none;}
.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.toggle-switch::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--color-grey-light);
    top: 2px;
    left: 2px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
#pricingToggle:checked + .toggle-switch {
    background-color: var(--color-gold);
}
#pricingToggle:checked + .toggle-switch::before {
    transform: translateX(24px);
    background-color: var(--color-grey-dark);
}
.save-badge {
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.9rem;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}
.pricing-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-5px);
}
.pricing-card.highlight {
    border-color: var(--color-gold);
    transform: scale(1.05);
}
.pricing-card.trial-card {
    background: linear-gradient(rgba(152, 195, 121, 0.05), transparent);
    border-color: rgba(152, 195, 121, 0.3);
}
.canned-demo-sphere {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), inset 0 0 15px rgba(0,0,0,0.5);
    width: 100%;
    aspect-ratio: 1 / 1;
}
.canned-demo-sphere img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.4s ease-in-out;
}
.canned-demo-sphere:hover img {
    transform: scale(1.05);
}
.canned-demo-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}
.canned-demo-input-wrapper .fa-solid {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-primary);
}
#canned-demo-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 1rem;
}
.canned-demo-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.btn-chip {
    background-color: #333;
    border: 1px solid #444;
    color: #ccc;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}
.btn-chip:hover {
    background-color: #444;
    border-color: #555;
    color: #fff;
}
.btn-chip.active {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #111;
    font-weight: bold;
}
.pricing-card .plan-icon {
    height: 48px;
    width: 48px;
    margin-bottom: -2.5rem;
    align-self: flex-end;
}
.plan-period {
    min-height: 1.2em; /* Prevent layout shift on toggle */
}
.coming-soon-tag {
    display: inline-block;
    background-color: var(--accent-primary);
    color: #111;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 12px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateY(-2px);
}
.plan-name { font-size: 1.5rem; font-family: var(--font-primary); font-weight: 600; color: var(--color-gold); }
.pricing-card.highlight .plan-name { color: var(--color-gold); }
.plan-tagline { color: var(--color-grey-light); font-size: 0.9rem; margin: 8px 0 24px 0; min-height: 40px; }
.plan-price { font-size: 3rem; font-weight: 700; margin-bottom: 8px;}
.plan-period { color: var(--color-grey-light); font-size: 0.9rem; font-weight: 400; min-height: 20px; }
.plan-features { list-style: none; margin: 30px 0; flex-grow: 1; }
.plan-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.plan-features li::before {
    content: '✓';
    font-weight: 900;
    color: var(--accent-confirm);
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 1.1rem;
    font-family: 'Font Awesome 6 Free';
}
.plan-features li.disabled {
    color: var(--color-grey-light);
    opacity: 0.6;
}
.plan-features li.disabled::before {
    content: '−';
    color: var(--color-grey-light);
}
.plan-features li.purchaseable::before {
    content: '\f07a'; /* fa-shopping-cart */
    color: var(--color-gold);
}
.pricing-card .btn { margin-top: auto; }

.pricing-addons {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: var(--bg-panel);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-addons h4 { font-family:var(--font-primary); font-weight:600; color:var(--color-gold); }


/* ---
FAQ Section
--- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-question {
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-primary);
    transition: color 0.2s ease;
}
.faq-question:hover h3 {
    color: var(--accent-gold);
}
.faq-question .icon {
    color: var(--color-grey-light);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding-bottom 0.4s ease;
}
.faq-answer p { padding-bottom: 24px; max-width: 95%; }
.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: var(--color-gold);
}


/* ---
Footer
--- */
.footer {
    background-color: var(--color-grey-dark);
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
    text-align: center;
}
.footer-logo {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    color: var(--color-offwhite);
    text-decoration: none;
    margin-bottom: 24px;
    display: block;
}
.footer-logo span { color: var(--color-gold); }
.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}
.footer-links a { color: var(--color-grey-light); text-decoration: none; transition: color 0.2s ease; font-weight: 500;}
.footer-links a:hover { color: var(--color-offwhite); }
.footer-copyright { font-size: 0.9rem; color: var(--color-grey-light); opacity: 0.7; }

/* ---
Popup / Modal
--- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
}

.popup-overlay.visible {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
}

.popup-content {
    background-color: var(--bg-panel);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 500px;
    width: 100%;
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
}

.popup-overlay.visible .popup-content {
    transform: scale(1);
}

.popup-content h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.popup-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.popup-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}


/* ---
Contact & Solutions Page
--- */
.solutions-hero {
    padding: 200px 0 120px 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-block {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 12px;
}
.service-block h3 { color: var(--color-gold); font-family: var(--font-primary); font-weight: 600; }
.service-block .pricing-note {
    display: inline-block;
    background-color: var(--color-grey-dark);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* ---
Process Timeline
--- */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 80px auto 0 auto;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
}
.timeline-step {
    text-align: center;
    position: relative;
    padding: 0 10px;
}
.timeline-step .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-panel);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-gold);
    margin: 0 auto 16px auto;
    transition: all .3s ease;
    cursor: default;
}
.timeline-step:hover .step-number {
    border-color: var(--color-gold);
    transform: scale(1.1);
}
.timeline-step .step-title {
    font-weight: 500;
    color: var(--color-grey-light);
}
.timeline-step .step-description {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #2c2c2c;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    min-width: 250px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-weight: normal; /* Resets from any parent bolding */
    font-size: 1rem;
    line-height: 1.5;
}
.timeline-step .step-description::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #2c2c2c transparent transparent transparent;
}
.timeline-step:hover .step-description {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


.contact-form-section {
    padding-bottom: 120px;
}
.contact-form-container {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 60px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-primary);
}
.form-control {
    width: 100%;
    background-color: var(--color-grey-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-gold) 20%, transparent);
}
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}
.form-status-msg {
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 30px;
}
.form-status-msg.success {
    background-color: color-mix(in srgb, var(--accent-confirm) 15%, transparent);
    color: var(--accent-confirm);
    border: 1px solid var(--accent-confirm);
}
.form-status-msg.error {
    background-color: color-mix(in srgb, var(--accent-error) 15%, transparent);
    color: var(--accent-error);
    border: 1px solid var(--accent-error);
}

/* ---
Gallery Page
--- */

.gallery-hero {
    padding: 200px 0 120px 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    background-color: var(--bg-panel);
}
.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}
.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--text-primary);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-item-caption {
    transform: translateY(0);
}
.gallery-item-caption h3 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 0 4px 0;
}
.gallery-item-caption span {
    font-size: 0.9rem;
    color: var(--color-grey-light);
}


/* --- Light Section for Pages with Dark Text --- */
.light-section {
    background-color: #f8f8f8;
}
.light-section h1, .light-section h2, .light-section h3, .light-section h4, .light-section .section-subtitle {
    color: #1a1a1a;
}
.light-section p, .light-section li {
    color: #555;
    line-height: 1.7; /* Improve readability on light themes */
}
.light-section .btn-primary {
    background-color: #2a2a2a;
    color: #fff;
    border: 1px solid #2a2a2a;
}
.light-section .btn-primary:hover {
    background-color: #111;
    border-color: #111;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
.light-section .project-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block; /* To make the whole card a link */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.light-section .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.light-section .project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.light-section .project-card > div {
    padding: 24px;
    text-align: left;
}
.light-section .project-card h3 {
    font-size: 1.2rem;
    margin-top: 0;
}
.light-section .project-card p {
    margin-bottom: 0;
}


/* --- White Glove Service Section on Homepage --- */
.white-glove-services-section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.white-glove-services-section .enterprise-panel {
    background-color: transparent;
    border: none;
    box-shadow: none;
    margin: 0;
}


/* ---
Responsive Design
--- */
@media (max-width: 1024px) {
    .feature-grid, .audience-grid { grid-template-columns: 1fr; }
    .feature-content { order: 2; }
    .feature-visual { order: 1; margin-bottom: 40px; }
    .feature-content h2, .feature-content .section-subtitle { text-align: center; margin-left: auto; margin-right: auto; }
}

@media (max-width: 992px) {
    .pricing-table {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-card.highlight {
        grid-column: 1 / 3;
        order: -1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    section { padding: 80px 0; }
    
    .header { padding: 16px 0; }
    .nav-menu { display: none; }
    
    .pricing-table { grid-template-columns: 1fr; }
    .pricing-card.highlight { grid-column: auto; transform: scale(1); }
    
    .services-grid { grid-template-columns: 1fr; }
    .process-timeline { flex-direction: column; gap: 20px; align-items: center; }
    .timeline-step { text-align: center; padding-left: 0; padding-top: 60px; }
    .timeline-step:first-of-type { padding-top: 0; }
    .timeline-step .step-number { margin: 0; position: absolute; left: 50%; top: 0; transform: translateX(-50%); }
    .timeline-step .step-description {
         bottom: auto;
         top: 100%;
         transform: translateX(-50%) translateY(-10px);
         margin-top: 20px;
         margin-bottom: 0;
    }
    .timeline-step .step-description::after {
        top: auto;
        bottom: 100%;
        border-color: transparent transparent #2c2c2c transparent;
    }
    .timeline-step:hover .step-description {
        transform: translateX(-50%) translateY(0);
    }
}
