/* ==========================================================================
   DIGITAL MARKETING V3 - EXECUTIVE ISOMETRIC THEME
   ========================================================================== */
:root {
    --bg-base: #0b0c10;
    --bg-surface: #1f2833;
    --bg-surface-elevated: #2b3644;
    --primary-teal: #45a29e;
    --primary-teal-glow: rgba(69, 162, 158, 0.4);
    --accent-gold: #f2a900;
    --accent-gold-glow: rgba(242, 169, 0, 0.4);
    --text-pure: #ffffff;
    --text-primary: #c5c6c7;
    --text-secondary: #8b929a;
    --border-color: rgba(197, 198, 199, 0.15);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-sans: 'Open Sans', 'Helvetica Neue', sans-serif;

    --ease-out-expo: 0.16, 1, 0.3, 1;
    --transition-fast: 0.3s cubic-bezier(var(--ease-out-expo));
    --transition-slow: 0.7s cubic-bezier(var(--ease-out-expo));
}

/* ==========================================================================
   RESET & BASE TYPOGRAPHY
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-pure);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-surface-elevated);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-teal);
}

/* Selection */
::selection {
    background: var(--primary-teal);
    color: var(--bg-base);
}

/* ==========================================================================
   GLOBAL HEADER (STRICTLY IDENTICAL ON ALL PAGES)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: padding var(--transition-fast), background var(--transition-fast);
    padding: 1.5rem 0;
}

.site-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(11, 12, 16, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    height: 55px;
    filter: brightness(0) invert(1);
    transition: transform var(--transition-fast);
}

.brand-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-fast);
}

.nav-links li a:hover {
    color: var(--text-pure);
}

.nav-links li a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--accent-gold);
    color: var(--bg-base) !important;
    padding: 0.8rem 2rem;
    border-radius: 2px;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--accent-gold-glow);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.cta-button::after {
    display: none !important;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-gold-glow);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-pure);
    font-size: 2rem;
    cursor: pointer;
}

/* ==========================================================================
   GLOBAL FOOTER (STRICTLY IDENTICAL ON ALL PAGES)
   ========================================================================== */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-gold));
}

.footer-grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand img {
    height: 45px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 350px;
}

.footer-nav h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 1rem;
}

.footer-nav ul a {
    color: var(--text-primary);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    display: inline-block;
}

.footer-nav ul a:hover {
    color: var(--primary-teal);
    padding-left: 8px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-teal);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    max-width: 1440px;
    margin: 4rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--text-secondary);
    margin-left: 2rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-teal);
}

/* ==========================================================================
   GENERAL SECTION STYLING
   ========================================================================== */
.section-block {
    padding: 8rem 0;
    position: relative;
}

.wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-heading {
    text-align: center;
    margin-bottom: 5rem;
}

.section-heading h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.section-heading h2 em {
    font-style: normal;
    color: var(--accent-gold);
    position: relative;
}

.section-heading h2 em::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-teal-glow);
    z-index: -1;
}

.section-heading p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   1. HERO SECTION (ISOMETRIC 3D)
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    background: radial-gradient(circle at 80% 20%, var(--bg-surface) 0%, var(--bg-base) 60%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-text h1 span {
    color: var(--primary-teal);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    max-width: 550px;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--primary-teal);
    color: var(--text-pure);
    padding: 0.8rem 2rem;
    border-radius: 2px;
    font-weight: 700;
    margin-left: 1rem;
    transition: var(--transition-fast);
}

.btn-outline:hover {
    background: var(--primary-teal);
    color: var(--bg-base);
}

/* Isometric CSS Graphic */
.hero-isometric {
    position: relative;
    height: 500px;
    perspective: 1500px;
}

.iso-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-45deg);
    width: 400px;
    height: 400px;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(69, 162, 158, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(69, 162, 158, 0.1) 1px, transparent 1px);
    transform-style: preserve-3d;
    animation: floatIso 6s ease-in-out infinite;
}

.iso-bar {
    position: absolute;
    bottom: 50px;
    width: 60px;
    background: var(--primary-teal);
    transform-style: preserve-3d;
    box-shadow: -10px 10px 20px rgba(0, 0, 0, 0.5);
    transition: height 1s ease;
}

.iso-bar::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 60px;
    height: 60px;
    background: #56c4c0;
    transform-origin: bottom;
    transform: rotateX(90deg);
}

.iso-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 60px;
    width: 60px;
    height: 100%;
    background: #357a77;
    transform-origin: left;
    transform: rotateY(90deg);
}

.bar-1 {
    left: 40px;
    height: 80px;
}

.bar-2 {
    left: 140px;
    height: 160px;
    background: var(--accent-gold);
}

.bar-2::before {
    background: #ffc433;
}

.bar-2::after {
    background: #cc8e00;
}

.bar-3 {
    left: 240px;
    height: 260px;
}

/* ==========================================================================
   2. CLIENT MARQUEE
   ========================================================================== */
.marquee-section {
    border-y: 1px solid var(--border-color);
    background: var(--bg-surface);
    padding: 2.5rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    margin: 0 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================================================
   3. ABOUT / PHILOSOPHY
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    display: block;
    padding-top: 100%;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-surface-elevated));
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transform: rotate(-5deg);
    transition: var(--transition-slow);
}

.about-image:hover::before {
    transform: rotate(0deg);
    border-color: var(--primary-teal);
}

.about-stats {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.stat-big {
    font-size: 5rem;
    font-family: var(--font-display);
    color: var(--accent-gold);
    line-height: 1;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-pure);
}

.check-list svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-teal);
}

/* ==========================================================================
   4. CORE SERVICES (NEUMORPHIC GRID)
   ========================================================================== */
.services-section {
    background: var(--bg-surface);
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.srv-card {
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    padding: 3.5rem 2.5rem;
    border-radius: 4px;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-teal-glow), transparent);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-slow);
}

.srv-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.srv-card:hover::before {
    opacity: 1;
}

.srv-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--bg-surface-elevated);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.srv-icon-wrap svg {
    width: 35px;
    height: 35px;
    fill: var(--accent-gold);
}

.srv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.srv-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.srv-link {
    color: var(--primary-teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.srv-link:hover {
    color: var(--accent-gold);
}

/* ==========================================================================
   5. INTERACTIVE ROI CALCULATOR
   ========================================================================== */
.roi-section {
    border-top: 1px solid var(--border-color);
    position: relative;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.roi-controls {
    padding: 4rem;
}

.ctrl-group {
    margin-bottom: 3rem;
}

.ctrl-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-pure);
}

.ctrl-val {
    color: var(--primary-teal);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--bg-base);
    border-radius: 3px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--accent-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.roi-display {
    background: linear-gradient(135deg, var(--bg-surface-elevated), var(--bg-base));
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-left: 1px solid var(--border-color);
}

.roi-display h4 {
    font-family: var(--font-sans);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.revenue-output {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--accent-gold-glow);
}

.roi-pill {
    background: rgba(69, 162, 158, 0.2);
    color: var(--primary-teal);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    border: 1px solid var(--primary-teal);
}

/* ==========================================================================
   6. SAMPLE CAMPAIGN REPORTS (TABBED MOCKUP)
   ========================================================================== */
.report-section {
    background: var(--bg-surface);
}

.dashboard-ui {
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.dash-header {
    background: var(--bg-surface-elevated);
    padding: 1.5rem 2rem;
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.dash-tab {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding-bottom: 5px;
    position: relative;
}

.dash-tab.active {
    color: var(--primary-teal);
}

.dash-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-teal);
}

.dash-body {
    padding: 3rem;
    display: none;
}

.dash-body.active {
    display: block;
    animation: fadeIn var(--transition-fast);
}

.dash-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.d-metric {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.d-metric span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.d-metric strong {
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--text-pure);
}

.trend-up {
    color: var(--primary-teal);
    font-size: 0.9rem;
    margin-left: 10px;
}

/* CSS Graph line */
.css-graph {
    height: 200px;
    border-bottom: 1px solid var(--text-secondary);
    border-left: 1px solid var(--text-secondary);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 20px;
}

.g-point {
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 10px var(--accent-gold);
}

.g-line {
    position: absolute;
    height: 2px;
    background: var(--accent-gold);
    transform-origin: left center;
    z-index: 1;
}

/* ==========================================================================
   7. PROCESS / TIMELINE
   ========================================================================== */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.t-step {
    position: relative;
    z-index: 1;
}

.t-num {
    width: 80px;
    height: 80px;
    background: var(--bg-surface-elevated);
    border: 2px solid var(--primary-teal);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-pure);
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.t-step:hover .t-num {
    background: var(--primary-teal);
    color: var(--bg-base);
    box-shadow: 0 0 20px var(--primary-teal-glow);
}

.t-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.t-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   8. INDUSTRIES ACCORDION
   ========================================================================== */
.ind-section {
    background: var(--bg-surface);
}

.ind-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.acc-item {
    border-bottom: 1px solid var(--border-color);
}

.acc-head {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 2rem 0;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-pure);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.acc-head:hover {
    color: var(--accent-gold);
}

.acc-icon {
    font-size: 2rem;
    font-weight: 300;
    transition: transform var(--transition-fast);
}

.acc-item.active .acc-icon {
    transform: rotate(45deg);
    color: var(--primary-teal);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.acc-item.active .acc-body {
    max-height: 300px;
}

.acc-content {
    padding-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ==========================================================================
   9. TESTIMONIALS
   ========================================================================== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testi-card {
    background: var(--bg-surface);
    padding: 3rem;
    border-top: 4px solid var(--primary-teal);
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 6rem;
    font-family: serif;
    color: var(--border-color);
    line-height: 1;
}

.testi-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testi-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.t-avatar {
    width: 50px;
    height: 50px;
    background: var(--bg-surface-elevated);
    border-radius: 50%;
}

.t-info h5 {
    font-family: var(--font-sans);
    font-size: 1rem;
}

.t-info span {
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
}

/* ==========================================================================
   10. GLOBAL CTA
   ========================================================================== */
.cta-section {
    background: linear-gradient(rgba(11, 12, 16, 0.9), rgba(11, 12, 16, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.05"><path d="M0 0h100v100H0z" fill="%2345a29e"/></svg>');
    border-top: 1px solid var(--primary-teal);
    padding: 10rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC
   ========================================================================== */
.page-hero {
    padding: 12rem 0 6rem;
    text-align: center;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    margin-bottom: 8rem;
}

.contact-info-panel {
    background: var(--bg-surface-elevated);
    padding: 4rem;
    border-top: 4px solid var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-info-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-pure);
}

.c-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.c-item svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-teal);
    flex-shrink: 0;
}

.c-text h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    color: var(--text-secondary);
    text-transform: uppercase;
}

.c-text p {
    font-size: 1.1rem;
    color: var(--text-pure);
}

.contact-form-panel {
    background: var(--bg-base);
    padding: 4rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-col-full {
    grid-column: 1 / -1;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.input-group input,
.input-group select,
.input-group textarea {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1rem;
    color: var(--text-pure);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-wrapper {
    max-width: 1000px;
    margin: 4rem auto 8rem;
    padding: 5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-teal);
}

.legal-wrapper h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--accent-gold);
}

.legal-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.legal-wrapper ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.legal-wrapper li {
    margin-bottom: 0.8rem;
}

/* ==========================================================================
   LIVE CHAT WIDGET
   ========================================================================== */
.chat-wrapper {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
}

.chat-btn {
    width: 65px;
    height: 65px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(69, 162, 158, 0.4);
    border: none;
    transition: transform var(--transition-fast);
}

.chat-btn:hover {
    transform: translateY(-5px);
}

.chat-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--bg-base);
}

.chat-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 380px;
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all var(--transition-fast);
}

.chat-window.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.chat-top {
    background: var(--bg-surface-elevated);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.chat-top h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-msgs {
    height: 350px;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.c-msg {
    max-width: 80%;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
}

.c-bot {
    background: var(--bg-surface);
    align-self: flex-start;
    border-left: 3px solid var(--primary-teal);
}

.c-user {
    background: var(--primary-teal);
    color: var(--bg-base);
    align-self: flex-end;
}

.chat-input {
    display: flex;
    border-top: 1px solid var(--border-color);
}

.chat-input input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1.2rem;
    color: var(--text-pure);
    outline: none;
}

.chat-input button {
    background: var(--accent-gold);
    color: var(--bg-base);
    border: none;
    padding: 0 1.5rem;
    font-weight: 700;
    cursor: pointer;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes floatIso {

    0%,
    100% {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-45deg) translateZ(0);
    }

    50% {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-45deg) translateZ(20px);
    }
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {

    .hero-grid,
    .about-grid,
    .roi-grid,
    .ind-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-isometric {
        height: 400px;
    }

    .timeline-grid,
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-line {
        display: none;
    }

    .dash-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .contact-layout {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-base);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .section-heading h2 {
        font-size: 2.5rem;
    }

    .timeline-grid,
    .testi-grid,
    .dash-metrics,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .roi-controls,
    .roi-display {
        padding: 2rem;
    }

    .revenue-output {
        font-size: 3.5rem;
    }
}