/* iMOZ Cloud - Main Stylesheet */

:root {
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --text: #1e293b;
    --text-light: #64748b;
    --text-white: #f1f5f9;
    --border: #e2e8f0;
    --success: #10b981;
    --radius: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color .2s;
}

ul, ol { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === ANIMATION === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* === NAV === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-lg); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.nav-logo span { color: var(--accent); }
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links li a.btn.btn-primary { color: #fff !important; }
.nav-links li a.btn.btn-primary:hover { color: #fff !important; }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 6px 0;
    transition: .3s;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(30,64,175,.3);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-accent {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}
.btn-accent:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-1px);
}
.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}
.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 14px;
}

/* === HERO === */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 50%, #fef9ee 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(30,64,175,.08);
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-visual { position: relative; }
.hero-dashboard {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    padding: 0;
}
.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--primary-dark);
    color: #fff;
}
.dash-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: -.3px;
}
.dash-user {
    font-size: .8rem;
    opacity: .85;
}
.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px 20px 0;
}
.dash-stat {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dash-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}
.dash-stat-label {
    font-size: .65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.dash-modules-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 20px;
}
.dash-module {
    padding: 6px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 500;
    color: var(--text);
}
.dash-chart {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    height: 120px;
    display: flex;
    align-items: end;
    gap: 6px;
}
.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    border-radius: 4px 4px 0 0;
    min-height: 12px;
}
.chart-bar:nth-child(odd) { background: linear-gradient(180deg, var(--accent-light), var(--accent)); }

.hero-float {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    font-size: .8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}
.hero-float.f1 { top: 20px; right: -20px; }
.hero-float.f2 { bottom: 40px; left: -30px; animation-delay: 2s; }
.hero-float .dot { width: 8px; height: 8px; border-radius: 50%; }

/* === TRUST BAR === */
.trust-bar {
    padding: 48px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.trust-bar p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 32px;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.trust-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}
.trust-stat {
    text-align: center;
}
.trust-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.trust-stat span {
    font-size: .85rem;
    color: var(--text-light);
}

/* === SECTIONS === */
.section { padding: 100px 0; }
.section-alt { padding: 100px 0; background: var(--bg-alt); }
.section-dark {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}
.section-header .overline {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}
.section-dark .section-header .overline { color: var(--accent); }
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}
.section-dark .section-header p { color: #94a3b8; }

/* === MODULE CARDS === */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.module-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.module-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity .3s;
}
.module-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.module-card:hover::before { opacity: 1; }
.module-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(30,64,175,.08), rgba(59,130,246,.12));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.module-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.module-card p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* === FEATURE ROWS === */
.features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.features-row:last-child { margin-bottom: 0; }
.features-row.reverse { direction: rtl; }
.features-row.reverse > * { direction: ltr; }
.feature-visual {
    background: var(--bg-alt);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-visual-inner { width: 100%; }
.feature-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    font-size: .8rem;
}
.feature-table th {
    background: var(--primary);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
}
.feature-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
}
.feature-table tr:last-child td { border-bottom: none; }
.feature-table tr:hover td { background: #f8fafc; }
.feature-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.feature-form-row {
    display: flex;
    gap: 12px;
}
.feature-form-field {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .8rem;
    color: var(--text-light);
    background: var(--bg-alt);
}
.feature-form-field.full { flex: none; width: 100%; }
.feature-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.feature-kpi {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}
.feature-kpi strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.feature-kpi span {
    font-size: .75rem;
    color: var(--text-light);
}
.feature-text .overline {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}
.feature-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -.5px;
}
.feature-text p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 2px;
    background-size: 20px 20px;
}

/* === SECTOR CARDS === */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sector-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all .3s;
    display: block;
    text-decoration: none;
    color: inherit;
}
.sector-card:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-4px);
    border-color: rgba(245,158,11,.3);
    box-shadow: 0 0 30px rgba(59,130,246,.1);
}
.sector-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.sector-card h4 {
    font-size: .9rem;
    font-weight: 600;
    color: #e2e8f0;
}

/* === ADVANTAGE CARDS === */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.advantage-card {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all .3s;
}
.advantage-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.advantage-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.advantage-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.advantage-card p {
    font-size: .9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.testimonial-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-card blockquote {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
}
.testimonial-author strong {
    display: block;
    font-size: .85rem;
}
.testimonial-author span {
    font-size: .75rem;
    color: var(--text-light);
}

/* === PARTNERS === */
.partners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.partner-types {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.partner-type {
    padding: 24px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    transition: all .3s;
}
.partner-type:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--accent);
}
.partner-type h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}
.partner-type p {
    font-size: .85rem;
    color: #94a3b8;
    margin-bottom: 0;
}
.partners-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.partners-cta p {
    color: #94a3b8;
    margin-bottom: 28px;
    line-height: 1.7;
}

/* === CTA === */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), #2563eb);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,.08), transparent 60%);
    border-radius: 50%;
}
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #fff;
}
.cta-section p {
    font-size: 1.15rem;
    opacity: .85;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* === FOOTER === */
.footer {
    background: var(--bg-dark);
    color: #94a3b8;
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .nav-logo {
    display: block;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: .8rem;
    transition: all .2s;
}
.footer-socials a:hover { background: var(--primary); color: #fff; }
.footer h5 {
    color: #e2e8f0;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
}

/* === SECTOR PAGES === */
.sector-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sector-hero::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
}
.sector-hero-content {
    position: relative;
    z-index: 1;
}
.sector-breadcrumb {
    display: inline-block;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-decoration: none;
    transition: color .2s;
}
.sector-breadcrumb:hover { color: #fff; }
.sector-hero-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}
.sector-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.sector-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.sector-two-col {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}
.sector-col-main h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.sector-col-main > p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}
.sector-challenges {
    margin-top: 24px;
}
.sector-side-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: sticky;
    top: 96px;
}
.sector-side-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}
.sector-usecases {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sector-usecases li {
    font-size: .85rem;
    color: var(--text);
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}
.sector-usecases li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    opacity: .15;
}
.sector-usecases li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.sector-benefits-list {
    max-width: 800px;
    margin: 0 auto;
}
.sector-benefits-list li {
    font-size: 1rem;
}

/* === RESPONSIVE 1024px === */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 560px; margin: 0 auto; }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .sectors-grid { grid-template-columns: repeat(3, 1fr); }
    .features-row { grid-template-columns: 1fr; gap: 40px; }
    .features-row.reverse { direction: ltr; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .sector-two-col { grid-template-columns: 1fr; gap: 40px; }
    .sector-side-card { position: static; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { flex-direction: column; }
}

/* === RESPONSIVE 768px === */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: #fff;
        padding: 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        gap: 16px;
    }
    .hamburger { display: block; }
    .hero { padding: 120px 0 64px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-visual { order: -1; }
    .hero-float { display: none; }
    .dash-stats-row { grid-template-columns: 1fr; }
    .dash-modules-row { justify-content: center; }
    .modules-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .section, .section-alt, .section-dark { padding: 64px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .cta-section { padding: 64px 0; }
    .cta-section h2 { font-size: 1.8rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .trust-stats { gap: 32px; }
    .sector-hero { padding: 120px 0 60px; }
    .sector-hero h1 { font-size: 1.8rem; }
    .feature-form-row { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { flex-direction: column; }
}

/* === TEXT ON DARK BACKGROUNDS FIX === */
.section-dark p,
.section-dark li,
.section-dark span,
.section-dark blockquote { color: #cbd5e1; }
.section-dark .section-header p { color: #94a3b8; }
.section-dark .overline,
.section-dark .section-header .overline { color: var(--accent); }
.cta-section p { color: rgba(255,255,255,.85); }
.sector-hero p { color: rgba(255,255,255,.85); }
.sector-hero h1 { color: #fff; }
.sector-card h4 { color: #e2e8f0; }
.partner-type p { color: #94a3b8; }
.partners-cta p { color: #94a3b8; }
.partners-cta h3 { color: #fff; }
.footer-brand p { color: #94a3b8; }

/* === CONTACT / FORMS === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.contact-info .overline {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}
.contact-info > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-detail strong {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}
.contact-detail a,
.contact-detail span {
    font-size: .95rem;
    color: var(--text);
    font-weight: 500;
}
.contact-detail a:hover { color: var(--primary); }

.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg-alt);
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30,64,175,.1);
    background: #fff;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-note {
    text-align: center;
    font-size: .8rem;
    color: var(--text-light);
    margin: 0;
}
.form-success {
    text-align: center;
    padding: 48px 24px;
}
.form-success strong {
    display: block;
    font-size: 1.4rem;
    color: var(--success);
    margin-bottom: 8px;
}
.form-success p {
    color: var(--text-light);
    font-size: 1rem;
}

/* === RESPONSIVE CONTACT (must be after .contact-grid definition) === */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { flex-direction: column; }
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { flex-direction: column; }
}
