/* ═══════════════════════════════════════════════════════════════════════════
   PERFECT PITCH INDEX/LANDING PAGE SPECIFIC STYLES
   Extracted from index.html <style> blocks
   ═══════════════════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────────────────
   V3 ADDITIONAL STYLES
   ─────────────────────────────────────────────────────────────────────────── */

.typing-cursor {
    animation: blink 1s infinite;
    color: var(--clr-deep-clay);
    font-weight: 300;
}

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

/* Typing cursor animation */
.typing-cursor {
    animation: blink 1s infinite;
    color: var(--clr-deep-clay);
    font-weight: 300;
}

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

/* TEXT LOGO SHINE (clip-to-text) */
.shiny-text {
  color: #b5b5b5a4;                /* base text tone */
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0.85) 50%,
    rgba(255,255,255,0) 60%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; /* ensure only the gradient shows */
  display: inline-block;
  will-change: background-position;
  animation: shine 1600ms cubic-bezier(.22,.61,.36,1) 1 forwards; /* 1 pass */
}

@keyframes shine {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Reduced motion: render static */
@media (prefers-reduced-motion: reduce) {
  .shiny-text { animation: none; }
}

/* Ensure logo holder has proper positioning */
#logo-holder {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile-only line break */
.mobile-br {
    display: none;
}

/* Desktop-only line break */
.desktop-br {
    display: block;
}

.pullquote {
    font-family: 'Lora', serif;
    font-size: var(--tmps-7);
    font-style: italic;
    color: var(--clr-magnetite);
    text-align: center;
    margin: var(--tmps-8) auto;
    max-width: var(--tmps-14);
    padding: var(--tmps-7) 0;
    border-top: 1px solid var(--clr-hematite);
    border-bottom: 1px solid var(--clr-hematite);
    opacity: 0.9;
}

.bg-dark .pullquote {
    color: var(--clr-porcelain);
    border-color: var(--clr-labradorite);
}

.hidden-costs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--tmps-7);
    margin-top: var(--tmps-8);
}

.hidden-cost-item {
    text-align: left;
    padding: var(--tmps-7);
    background: var(--clr-moonstone);
    border-left: 4px solid var(--clr-deep-clay);
}

.hidden-cost-item h3 {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6c);
    font-weight: 700;
    color: var(--clr-deep-clay);
    margin-bottom: var(--tmps-5);
}

.hidden-cost-item p {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6a);
    color: var(--clr-magnetite);
    line-height: 1.6;
}

.hidden-cost-item p strong {
    color: var(--clr-deep-clay);
    font-weight: 600;
}

.team-uses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--tmps-7);
    margin: var(--tmps-8) 0;
}

@media (max-width: 1024px) {
    .team-uses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-uses-grid {
        grid-template-columns: 1fr;
    }
}

.team-use-item {
    background: var(--clr-porcelain);
    padding: var(--tmps-7);
    text-align: left;
    border: 1px solid var(--clr-hematite);
}

.team-use-icon {
    margin-bottom: var(--tmps-0);
}

.team-use-icon img {
    width: var(--tmps-7a);
    height: var(--tmps-7a);
    opacity: 0.8;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.team-use-item:hover .team-use-icon img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-use-title {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6c);
    font-weight: 700;
    color: var(--clr-magnetite);
    margin-bottom: var(--tmps-5);
}

.team-use-items {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--tmps-6);
    color: var(--clr-magnetite);
    line-height: 1.8;
}

.team-use-items li {
    margin-bottom: var(--tmps-3);
}

.team-use-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-use-items li {
    font-family: 'Lora', sans-serif;
    font-size: var(--tmps-6);
    color: var(--clr-magnetite);
    line-height: 1.8;
    margin-bottom: var(--tmps-4);
    padding-left: var(--tmps-7);
    position: relative;
}

/* Custom bullet using pseudo-element */
.team-use-items li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: -10px; 
    color: var(--clr-magnetite);
    font-weight: 400;
    font-size: var(--tmps-7);
    line-height: 1.8; /* Match the li line-height */
}

.module-insights {
    font-family: 'Lora', serif;
    font-size: var(--tmps-5c);
    color: var(--clr-deep-clay);
    font-style: italic;
    font-weight: 600;
    margin-bottom: var(--tmps-7);
}

.module-share-with {
    font-family: 'Lora', serif;
    font-size: var(--tmps-6a);
    font-style: italic;
    color: var(--clr-magnetite);
    margin-top: var(--tmps-5);
    opacity: 0.8;
}

.module-subtitle {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6a);
    color: var(--clr-obsidian);
    opacity: 0.9;
}

.insight-breakdown {
    background: var(--clr-porcelain);
    padding: var(--tmps-7);
    margin: var(--tmps-8) auto;
    max-width: var(--tmps-14);
    border-left: 4px solid var(--clr-old-gold);
}

.insight-breakdown h4 {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-7);
    font-weight: 700;
    color: var(--clr-deep-clay);
    margin-bottom: var(--tmps-6);
}

.insight-breakdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insight-breakdown li {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--tmps-6);
    color: var(--clr-magnetite);
    padding: var(--tmps-3) 0;
    border-bottom: 1px solid var(--clr-hematite);
}

.insight-breakdown li:last-child {
    border-bottom: none;
}

.insight-breakdown strong {
    color: var(--clr-deep-clay);
    font-weight: 600;
}

.highlight-stat {
    color: var(--clr-deep-clay);
    font-weight: 700;
}

.cost-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--tmps-5c);
    color: var(--clr-labradorite);
    font-style: italic;
    margin-top: var(--tmps-3);
}

/* ───────────────────────────────────────────────────────────────────────────
   PREVIEW LINK STYLES
   ─────────────────────────────────────────────────────────────────────────── */

/* Preview Link Styles */
.preview-link {
    color: var(--clr-deep-clay);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: var(--clr-old-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.preview-link:hover {
    text-decoration-style: solid;
    color: var(--clr-old-gold);
}

/* Preview Link with Hover */
.preview-link {
    color: var(--clr-magnetite); /* Same as body text */
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: var(--magnetite);
    cursor: pointer;
    position: relative;
    display: inline; /* Changed from inline-block to keep text flowing */
    font-weight: 400; /* Same weight as body text */
    transition: all 0.3s ease;
}

.preview-link:hover {
    text-decoration-style: solid;
}

/* Tooltip Preview */
.preview-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    margin-bottom: var(--tmps-5);
    background: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    padding: var(--tmps-0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    width: var(--tmps-13c);
    pointer-events: none;
}

.preview-link:hover .preview-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.preview-tooltip img {
    width: 100%;
    height: auto;
    border-radius: var(--tmps-3);
    border: 1px solid var(--clr-hematite);
    display: block;
}

.tooltip-caption {
    display: block;
    font-family: 'Lora', serif;
    font-size: var(--tmps-5c);
    color: var(--clr-magnetite);
    text-align: center;
    margin-top: var(--tmps-4);
    margin-bottom: var(--tmps-4);
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
}

/* Arrow pointing down */
.preview-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

/* Ensure tooltip appears above if near bottom of viewport */
@media (max-height: 800px) {
    .preview-tooltip {
        bottom: auto;
        top: 100%;
        margin-bottom: 0;
        margin-top: var(--tmps-5);
    }
    
    .preview-tooltip::after {
        top: auto;
        bottom: 100%;
        border-top: none;
        border-bottom: 10px solid white;
    }
}

/* Mobile fallback - disable hover, make clickable */
@media (max-width: 768px) {
    .preview-link {
        text-decoration-color: var(--clr-deep-clay);
    }
    
    .preview-tooltip {
        display: none;
    }
}

/* ───────────────────────────────────────────────────────────────────────────
   EXPANDABLE SECTION STYLES
   ─────────────────────────────────────────────────────────────────────────── */

/* Main expandable link style matching your design */
.expandable-module-link {
    font-family: 'Aleo', serif;
    color: var(--clr-deep-clay);
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    position: relative;
}

.expandable-module-link:hover {
    color: var(--clr-deep-clay);
    opacity: 0.7;
}

.expandable-module-link::after {
    content: '▾';
    margin-left: var(--tmps-4);
    font-size: var(--tmps-6);
    transition: transform 0.3s ease;
    display: inline-block;
    color: var(--clr-labradorite);
}

.expandable-module-link.active::after {
    transform: rotate(180deg);
}

/* Expandable content container */
.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.expandable-content.active {
    max-height: 3000px;
    opacity: 1;
    margin-top: var(--tmps-7);
}

/* Stats expandable section */
.stats-expandable {
    background: var(--clr-porcelain);
    padding: var(--tmps-6b);
    border: 1px solid var(--clr-hematite);
    margin-top: var(--tmps-6);
}

.stats-grid-expanded {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--tmps-6);
}

.stat-item-expanded {
    background: var(--clr-moonstone);
    padding: var(--tmps-6);
    text-align: center;
}

.stat-number-expanded {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--tmps-8);
    font-weight: 700;
    color: var(--clr-deep-clay);
    display: block;
    margin-bottom: var(--tmps-3);
}

.stat-label-expanded {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6);
    color: var(--clr-magnetite);
    opacity: 0.8;
}

/* Expandable Preview Sections */
.expandable-preview {
    position: relative;
}

/* Hidden content */
.expandable-extra {
    display: contents; /* Use contents to maintain grid layout */
}

.expandable-extra > * {
    display: none;
}

/* Show hidden content when expanded */
.expandable-preview.expanded .expandable-extra > * {
    display: block;
}

/* Expand/Collapse Toggle */
.expand-toggle {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: var(--tmps-6);
    font-weight: 500;
    color: var(--clr-deep-clay);
    text-decoration: none;
    margin-top: var(--tmps-6b);
    padding: var(--tmps-4) 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.expand-toggle:hover {
    color: var(--clr-old-gold);
    transform: translateX(var(--tmps-3));
}

.expandable-preview.expanded .expand-toggle {
    display: inline-block;
}

/* Mobile - show all by default */
@media (max-width: 768px) {
    .expandable-extra > * {
        display: block !important;
    }
    
    .expand-toggle {
        display: none;
    }
}

/* Smooth animation for grid items */
.stats-grid-expanded > *,
.roles-grid > * {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Role grid expandable */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--tmps-6);
    padding: var(--tmps-6) 0;
}

.role-item-expanded {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6);
    color: var(--clr-magnetite);
    padding: var(--tmps-4) 0;
    border-bottom: 1px solid var(--clr-hematite);
    text-align: left;
}

.role-item-expanded strong {
    font-weight: 600;
    color: var(--clr-deep-clay);
}

/* Question section styles */
.question-module {
    margin: var(--tmps-7b) 0;
    padding-left: var(--tmps-7);
}

.question-header {
    cursor: pointer;
}

.question-title {
    font-family: 'Lora', serif;
    font-size: var(--tmps-7a);
    font-weight: 600;
    color: var(--clr-magnetite);
    margin-bottom: var(--tmps-3);
}

.question-subtitle {
    font-family: 'Lora', serif;
    font-size: var(--tmps-6c);
    font-weight: 400;
    font-style: italic;
    color: var(--clr-magnetite);
    margin-bottom: var(--tmps-5c);
}

.question-description {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6b);
    font-weight: 500;
    color: var(--clr-magnetite);
    margin-bottom: var(--tmps-5);
}

/* Remove the old arrow */
.expandable-module-link::after {
    display: none;
}

/* Add the plus icon */
.expand-icon {
    display: inline-block;
    margin-left: var(--tmps-4);
    font-size: var(--tmps-7);
    color: var(--clr-magnetite);
    transition: transform 0.3s ease;
    font-weight: 300;
    vertical-align: middle;
}

/* Rotate when active */
.expandable-module-link.active .expand-icon {
    transform: rotate(45deg);
}

/* Module tabs within questions */
.module-tabs {
    display: flex;
    gap: var(--tmps-5);
    border-bottom: 1px solid var(--clr-hematite);
    margin-bottom: var(--tmps-7);
    justify-content: center;
}

.module-tab {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--tmps-6b);
    font-weight: 500;
    padding: var(--tmps-5) var(--tmps-6);
    cursor: pointer;
    color: var(--clr-labradorite);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--tmps-4);
}

.module-tab:hover {
    color: var(--clr-magnetite);
}

.module-tab.active {
    color: var(--clr-deep-clay);
    border-bottom-color: var(--clr-deep-clay);
}

.module-tab-icon {
    font-size: var(--tmps-6c);
    opacity: 0.7;
}

/* Tab content */
.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

/* Intel toggle button */
.intel-toggle-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--tmps-6);
    font-weight: 500;
    color: var(--clr-deep-clay);
    background: none;
    border: 1px solid var(--clr-deep-clay);
    padding: var(--tmps-4) var(--tmps-6);
    cursor: pointer;
    margin: var(--tmps-6) 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--tmps-4);
}

.intel-toggle-btn:hover {
    background: var(--clr-deep-clay);
    color: var(--clr-porcelain);
}

/* Intel content box */
.module-intel {
    background: var(--clr-moonstone);
    border-left: 4px solid var(--clr-deep-clay);
    padding: var(--tmps-7);
    margin: var(--tmps-6) 0;
    font-family: 'Lora', serif;
    font-size: var(--tmps-6a);
    font-style: italic;
    color: var(--clr-magnetite);
    line-height: 1.6;
    display: none;
}

.module-intel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.module-intel p {
    margin-bottom: var(--tmps-6);
}

.module-intel p:last-child {
    margin-bottom: 0;
}

/* Module content styles - using intel box as template */
.module-main-content {
    background: var(--clr-moonstone);
    border-left: 4px solid var(--clr-deep-clay);
    padding: var(--tmps-7);
    margin: var(--tmps-6) 0;
    transition: opacity 0.3s ease;
}

.module-main-content.hidden {
    display: none;
}

.module-content-header {
    font-family: 'Lora', serif;
    font-size: var(--tmps-6c);
    font-weight: 600;
    color: var(--clr-magnetite);
    margin-bottom: var(--tmps-5);
}

.module-content-text {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6a);
    font-style: italic;
    color: var(--clr-magnetite);
    line-height: 1.6;
    margin-bottom: var(--tmps-6);
}

/* Convert list items to paragraphs like the intel box */
.module-content-points p {
    font-family: 'Aleo', sans serif;
    font-size: var(--tmps-6a);
    font-style: italic;
    color: var(--clr-magnetite);
    line-height: 1.6;
    margin-bottom: var(--tmps-6);
}

.module-content-points p:last-child {
    margin-bottom: 0;
}

.module-share {
    font-family: 'Lora', serif;
    font-size: var(--tmps-6);
    font-style: italic;
    color: var(--clr-labradorite);
    margin-top: var(--tmps-6);
}

.module-share {
    font-family: 'Lora', serif;
    font-size: var(--tmps-6b);
    font-style: italic;
    font-weight: 600;
    color: var(--clr-magnetite);
    margin-top: var(--tmps-6);
}

/* Selling points */
.selling-point-box {
    background: var(--clr-moonstone);
    padding: var(--tmps-8);
    margin: var(--tmps-7) 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.selling-point-box:hover {
    border-color: var(--clr-deep-clay);
    transform: translateY(-2px);
}

.selling-point-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.selling-point-title {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-7);
    font-weight: 600;
    flex: 1; /* Add this */
    text-align: center;
    color: var(--clr-deep-clay);
    margin: 0;
}

.selling-point-icon {
    font-size: var(--tmps-7);
    color: var(--clr-labradorite);
    transition: transform 0.3s ease;
}

.selling-point-box.active .selling-point-icon {
    transform: rotate(45deg);
}

.selling-point-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.selling-point-box.active .selling-point-content {
    max-height: 1000px;
    opacity: 1;
    margin-top: var(--tmps-7);
}

.selling-point-content h4 {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6c);
    font-weight: 600;
    color: var(--clr-magnetite);
    margin-bottom: var(--tmps-5);
}

/* Replace list styles with paragraph styles */
.selling-point-content .content-points {
    margin: var(--tmps-6) 0;
}

.selling-point-content .content-points p {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6a);
    color: var(--clr-magnetite);
    line-height: 1.6;
    margin-bottom: var(--tmps-5);
}

.selling-point-content .content-points p:last-child {
    margin-bottom: 0;
}

.selling-point-content > p {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6a);
    color: var(--clr-magnetite);
    line-height: 1.6;
    margin-bottom: var(--tmps-6);
}

.selling-point-content > p:last-child {
    margin-bottom: 0;
}

/* Strong text styling */
.selling-point-content strong {
    color: var(--clr-deep-clay);
    font-weight: 600;
}

/* Before/After grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--tmps-8);
    margin: var(--tmps-6) 0;
}

.comparison-column h5 {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6b);
    font-weight: 600;
    color: var(--clr-deep-clay);
    margin-bottom: var(--tmps-5);
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .module-tabs {
        flex-wrap: wrap;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
    }
}

/* ───────────────────────────────────────────────────────────────────────────
   COMPARISON TABLE STYLES
   ─────────────────────────────────────────────────────────────────────────── */

/* Comparison Table Styles */
.comparison-section {
    background: var(--clr-porcelain);
    padding-left: var(--tmps-9);
    padding-right: var(--tmps-9);
}

.comparison-intro {
    text-align: center;
    max-width: var(--tmps-15);
    margin: 0 auto var(--tmps-8);
    margin-top: var(--tmps-8);
    padding: 0 var(--tmps-7);
}

.comparison-intro h2 {
    font-family: 'Lora', serif;
    font-size: var(--tmps-8a);
    font-weight: 700;
    color: var(--clr-magnetite);
    margin-bottom: var(--tmps-7);
}

.comparison-intro p {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-7);
    font-style: italic;
    color: var(--clr-magnetite);
    line-height: 1.5;
}

/* Table Container */
.comparison-table-container {
    max-width: var(--tmps-15);
    margin: 0 auto;
    padding: 0 var(--tmps-7);
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--clr-porcelain);
    box-shadow: 0 var(--tmps-4) var(--tmps-7) rgba(0,0,0,0.05);
}

/* Table Headers */
.comparison-table thead th {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6c);
    font-weight: 600;
    color: var(--clr-porcelain);
    background: var(--clr-magnetite);
    padding: var(--tmps-7) var(--tmps-6);
    text-align: center;
    border-right: 1px solid var(--clr-labradorite);
}

.comparison-table thead th:last-child {
    border-right: none;
}

.comparison-table thead th:first-child {
    text-align: left;
    background: var(--clr-obsidian);
    font-weight: 400;
}

/* Perfect Pitch column header - highlighted */
.comparison-table thead th.highlight-column {
    background: var(--clr-deep-clay);
    position: relative;
}

.comparison-table thead th.highlight-column::after {
    content: '✓ BEST VALUE';
    position: absolute;
    top: var(--tmps-3);
    right: var(--tmps-5);
    font-family: 'DM Sans', sans-serif;
    font-size: var(--tmps-5);
    font-weight: 700;
    color: var(--clr-old-gold);
    letter-spacing: 0.5px;
}

/* Subheaders */
.tool-subheader {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: var(--tmps-5c);
    font-weight: 400;
    opacity: 0.8;
    margin-top: var(--tmps-2);
}

/* Table Body */
.comparison-table tbody tr {
    border-bottom: 1px solid var(--clr-hematite);
}

.comparison-table tbody tr:hover {
    background: var(--clr-moonstone);
}

.comparison-table tbody th {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6a);
    font-weight: 600;
    color: var(--clr-deep-clay);
    text-align: left;
    padding: var(--tmps-6) var(--tmps-6);
    background: var(--clr-moonstone);
    border-right: 1px solid var(--clr-hematite);
}

.comparison-table tbody td {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6);
    color: var(--clr-magnetite);
    padding: var(--tmps-6);
    text-align: center;
    border-right: 1px solid var(--clr-hematite);
}

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

/* Perfect Pitch column - highlighted */
.comparison-table tbody td.highlight-column {
    background: rgba(152, 79, 58, 0.05);
    font-weight: 600;
    color: var(--clr-deep-clay);
}

/* Special styling for certain cells */
.cost-high {
    color: #D32F2F;
}

.cost-medium {
    color: var(--clr-old-gold);
}

.cost-low {
    color: #388E3C;
}

.limitation {
    font-style: italic;
    opacity: 0.8;
}

/* Summary row */
.summary-row {
    background: var(--clr-magnetite) !important;
}

.summary-row th,
.summary-row td {
    color: var(--clr-porcelain) !important;
    font-weight: 600;
    padding: var(--tmps-7) var(--tmps-6);
    border-right: 1px solid var(--clr-labradorite);
}

.summary-row td.highlight-column {
    background: var(--clr-deep-clay) !important;
    color: var(--clr-porcelain) !important;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .comparison-table {
        font-size: var(--tmps-5c);
    }
    
    .comparison-table thead th,
    .comparison-table tbody th,
    .comparison-table tbody td {
        padding: var(--tmps-5);
    }

    .comparison-table thead th.highlight-column::after {
        position: static;
        display: block;
        margin-top: var(--tmps-3);
    }
}

@media (max-width: 768px) {
    .comparison-table-container {
        padding: 0 var(--tmps-5);
    }

    .tool-subheader {
        font-size: var(--tmps-5);
    }
}

/* Additional context below table */
.comparison-context {
    max-width: var(--tmps-15);
    margin: var(--tmps-8) auto 0;
    padding: 0 var(--tmps-7);
    text-align: center;
}

.comparison-callout {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-7);
    font-weight: 600;
    color: var(--clr-deep-clay);
    margin-bottom: var(--tmps-6);
}

.comparison-detail {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6c);
    color: var(--clr-magnetite);
    line-height: 1.6;
}

/* ───────────────────────────────────────────────────────────────────────────
   LOGO CAROUSEL STYLES
   ─────────────────────────────────────────────────────────────────────────── */

/* Logo Carousel Styles */
.logo-carousel-section {
    background: var(--clr-porcelain);
    padding: var(--tmps-7) 0 var(--tmps-9) 0;
    overflow: hidden;
}

.logo-carousel-intro {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6a);
    color: var(--clr-magnetite);
    text-align: center;
    margin-bottom: var(--tmps-8);
    margin-top: var(--tmps-6);
    opacity: 0.9;
}

/* Carousel Container */
.logo-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    /* Mask for smooth edges */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

/* Logo Track */
.logo-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Logo Groups - for seamless loop */
.logo-group {
    display: flex;
    align-items: center;
    gap: var(--tmps-7); /* Reduced gap between logos */
    padding-right: var(--tmps-7);
}

/* Individual Logo Items */
.logo-item {
    flex-shrink: 0;
    width: var(--tmps-10);  /* Fixed width for each logo slot */
    height: var(--tmps-8);  /* Reduced height for better proportions */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 0 var(--tmps-5); /* Add horizontal padding */
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Individual logo adjustments for better proportions */
/* Adjust these as needed based on how logos appear */
.logo-item img[alt="OCBC Bank"] {
    max-width: 80%;
}

.logo-item img[alt="3M"] {
    max-width: 60%;
}

.logo-item img[alt="Olympus"] {
    max-width: 85%;
}

.logo-item img[alt="ANZ"] {
    max-width: 70%;
}

.logo-item img[alt="MINDEF"] {
    max-width: 75%;
}

/* Category badges (optional) */
.logo-category {
    position: absolute;
    top: var(--tmps-7);
    left: 50%;
    transform: translateX(-50%);
    font-family: 'DM Sans', sans-serif;
    font-size: var(--tmps-5);
    font-weight: 500;
    color: var(--clr-old-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-carousel-intro {
        font-size: var(--tmps-6);
        padding: 0 var(--tmps-6);
    }

    .logo-group {
        gap: var(--tmps-6);
    }

    .logo-item {
        width: var(--tmps-9);
        height: var(--tmps-7);
        padding: 0 var(--tmps-4);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
    }
}

/* ───────────────────────────────────────────────────────────────────────────
   FAQ ACCORDION STYLES
   ─────────────────────────────────────────────────────────────────────────── */

/* FAQ Accordion Styles - Matching Selling Points Design */
.faq-accordion-section {
    background: var(--clr-porcelain);
    padding: var(--tmps-9) 0;
}

.faq-accordion-container {
    max-width: var(--tmps-14);
    margin: 0 auto;
    padding: 0 var(--tmps-7);
}

.faq-section-title {
    font-family: 'Lora', serif;
    font-size: var(--tmps-8a);
    font-weight: 700;
    color: var(--clr-magnetite);
    text-align: center;
    margin-bottom: var(--tmps-9);
    line-height: 1.2;
}

/* FAQ Item Box - Same style as selling points */
.faq-box {
    background: var(--clr-moonstone);
    padding: var(--tmps-8);
    margin: var(--tmps-7) 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-box:hover {
    border-color: var(--clr-deep-clay);
    transform: translateY(-2px);
    box-shadow: 0 var(--tmps-4) var(--tmps-7) rgba(0,0,0,0.05);
}

/* FAQ Header */
.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-7);
    font-weight: 600;
    color: var(--clr-deep-clay);
    margin: 0;
    padding-right: var(--tmps-6);
}

.faq-icon {
    font-size: var(--tmps-7);
    color: var(--clr-labradorite);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-box.active .faq-icon {
    transform: rotate(45deg);
}

/* FAQ Content */
.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.faq-box.active .faq-content {
    max-height: 1000px;
    opacity: 1;
    margin-top: var(--tmps-7);
}

.faq-answer {
    font-family: 'Aleo', serif;
    font-size: var(--tmps-6a);
    color: var(--clr-magnetite);
    line-height: 1.6;
}

/* Special styling for key points */
.faq-answer strong {
    color: var(--clr-deep-clay);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-question {
        font-size: var(--tmps-6c);
    }
}

@media (max-width: 768px) {
    .faq-accordion-container {
        padding: 0 var(--tmps-6);
    }
    
    .faq-box {
        padding: var(--tmps-7);
        margin: var(--tmps-6) 0;
    }
    
    .faq-answer {
        font-size: var(--tmps-6);
    }
}