:root {
    --color-primary: #2563EB;
    --color-primary-hover: #1D4ED8;
    --color-secondary: #0F172A;
    --color-secondary-hover: #1E293B;
    --color-accent: #0D9488;
    --color-accent-subtle: #CCFBF1;
    --color-bg-main: #F8FAFC;
    --color-bg-surface: #FFFFFF;
    --color-bg-subtle: #F1F5F9;
    --color-bg-card: #FFFFFF;
    --color-bg-card-highlight: #F8FAFC;
    --color-text-primary: #0F172A;
    --color-text-secondary: #475569;
    --color-text-muted: #64748B;
    --color-border-light: #E2E8F0;
    --color-border-subtle: #F1F5F9;
    --color-border-focus: #3B82F6;
    --color-status-success: #059669;
    --color-status-warning: #D97706;
    --color-status-info: #0284C7;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-card: 16px;
    --radius-btn: 10px;
    --shadow-card: 0 1px 3px 0 rgba(15, 23, 42, 0.04), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
    --shadow-ambient: 0 10px 15px -3px rgba(15, 23, 42, 0.04);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text-primary);
    background-color: var(--color-bg-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    margin-top: 0;
}

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

a:hover {
    color: var(--color-primary-hover);
}

.text-muted {
    color: var(--color-text-muted) !important;
}

.font-mono {
    font-family: var(--font-mono);
}

/* ===== header ===== */
.gramala-header-nav {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #E2E8F0;
    z-index: 1030;
}

.gramala-header-nav .navbar {
    background-color: #FFFFFF;
}

.gramala-header-nav .gramala-brand-logo {
    width: 40px;
    height: 40px;
    max-width: 40px;
    object-fit: contain;
}

.gramala-header-nav .gramala-brand-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.gramala-header-nav .gramala-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
    font-size: 0.9375rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    border-radius: 8px;
}

.gramala-header-nav .gramala-nav-link:hover,
.gramala-header-nav .gramala-nav-link:focus {
    color: #2563EB !important;
    background-color: #F8FAFC;
}

.gramala-header-nav .gramala-header-cta {
    background-color: #2563EB;
    border: 1px solid #2563EB;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    color: #FFFFFF !important;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.gramala-header-nav .gramala-header-cta:hover,
.gramala-header-nav .gramala-header-cta:focus {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF !important;
}

.gramala-header-nav .gramala-nav-toggler {
    color: #0F172A;
    background-color: #F1F5F9;
    border-radius: 8px;
}

.gramala-header-nav .gramala-nav-toggler:hover {
    background-color: #E2E8F0;
}

.gramala-header-nav .gramala-toggler-icon {
    stroke: #0F172A;
}

@media (max-width: 991.98px) {
    .gramala-header-nav .navbar-nav {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .gramala-header-nav .gramala-nav-link {
        padding: 0.625rem 0.875rem;
        font-size: 0.95rem;
    }

    .gramala-header-nav .gramala-header-cta {
        width: 100%;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

/* ===== gramala_info ===== */
.gramala-hero-section {
    background-color: #0b0f19;
    background-image: radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.25) 0%, rgba(15, 23, 42, 0.95) 75%), linear-gradient(180deg, #0b0f19 0%, #0f172a 100%);
    color: #f8fafc;
    min-height: 90vh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
}

.gramala-hero-section > .container {
    width: 100%;
}

.gramala-hero-glow-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
}

.gramala-hero-glow-2 {
    width: 600px;
    height: 600px;
    top: 10%;
    right: -150px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(70px);
    pointer-events: none;
}

.gramala-hero-section .gramala-hero-badge {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 9999px;
}

.gramala-hero-section .gramala-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0d9488;
}

.gramala-hero-section .gramala-badge-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #93c5fd;
    letter-spacing: 0.02em;
}

.gramala-hero-section .gramala-hero-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.025em;
}

.gramala-hero-section .gramala-hero-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 720px;
}

.gramala-hero-section .gramala-btn-primary {
    background: #2563eb;
    color: #ffffff;
    border: 1px solid #2563eb;
    border-radius: 10px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
}

.gramala-hero-section .gramala-btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

.gramala-hero-section .gramala-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
}

.gramala-hero-section .gramala-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.gramala-hero-section .gramala-dashboard-mockup {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
}

.gramala-hero-section .gramala-mockup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gramala-hero-section .gramala-dot-red {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
}

.gramala-hero-section .gramala-dot-yellow {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f59e0b;
}

.gramala-hero-section .gramala-dot-green {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
}

.gramala-hero-section .gramala-session-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #cbd5e1;
}

.gramala-hero-section .gramala-session-status {
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 6px;
}

.gramala-hero-section .gramala-timer-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #60a5fa;
}

.gramala-hero-section .gramala-transcript-stream {
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.gramala-hero-section .gramala-message-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.gramala-hero-section .gramala-speaker-chip {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.gramala-hero-section .gramala-speaker-chip-a {
    background: rgba(13, 148, 136, 0.2);
    color: #2dd4bf;
    border: 1px solid rgba(13, 148, 136, 0.4);
}

.gramala-hero-section .gramala-speaker-chip-b {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.4);
}

.gramala-hero-section .gramala-timestamp {
    font-size: 0.75rem;
    color: #64748b;
    font-family: 'JetBrains Mono', monospace;
}

.gramala-hero-section .gramala-message-body {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #e2e8f0;
    text-align: left;
}

.gramala-hero-section .gramala-insights-panel {
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.gramala-hero-section .gramala-panel-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #cbd5e1;
}

.gramala-hero-section .gramala-accent-icon {
    color: #0d9488;
}

.gramala-hero-section .gramala-action-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    text-align: left;
}

.gramala-hero-section .gramala-item-marker {
    font-size: 0.7rem;
    font-weight: 700;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.15);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
    margin-top: 2px;
}

.gramala-hero-section .gramala-item-desc {
    font-size: 0.8125rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.gramala-hero-section .gramala-sync-status-box {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.gramala-hero-section .gramala-sync-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.gramala-hero-section .gramala-sync-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    background: rgba(13, 148, 136, 0.2);
    color: #5eead4;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.gramala-hero-section .gramala-icon-sm {
    width: 16px;
    height: 16px;
    display: inline-block;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .gramala-hero-section .gramala-hero-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .gramala-hero-section .gramala-hero-subtitle {
        font-size: 0.875rem;
    }

    .gramala-hero-section .gramala-btn-primary,
    .gramala-hero-section .gramala-btn-secondary {
        width: 100%;
        min-width: 100%;
    }
}

/* ===== problem_and_solution ===== */
.problem-solution-section {
    background-color: #F8FAFC;
    color: #0F172A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.problem-solution-section .problem-solution-badge {
    background-color: #EFF6FF;
    color: #2563EB;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    border: 1px solid #DBEAFE;
}

.problem-solution-section .problem-solution-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0F172A;
}

.problem-solution-section .problem-solution-subheading {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #475569;
}

.problem-solution-section .comparison-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
}

.problem-solution-section .problem-card {
    border: 1px solid #E2E8F0;
}

.problem-solution-section .solution-card {
    border: 1px solid #BFDBFE;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.problem-solution-section .status-tag {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.problem-solution-section .status-problem {
    color: #64748B;
}

.problem-solution-section .status-solution {
    color: #2563EB;
}

.problem-solution-section .column-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.015em;
}

.problem-solution-section .icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-solution-section .icon-danger {
    background-color: #F1F5F9;
    color: #64748B;
}

.problem-solution-section .icon-success {
    background-color: #EFF6FF;
    color: #2563EB;
}

.problem-solution-section .h-icon {
    width: 22px;
    height: 22px;
}

.problem-solution-section .point-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-solution-section .point-negative {
    background-color: #F1F5F9;
    color: #64748B;
}

.problem-solution-section .point-positive {
    background-color: #EFF6FF;
    color: #2563EB;
}

.problem-solution-section .list-icon {
    width: 14px;
    height: 14px;
}

.problem-solution-section .point-desc {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.5;
}

.problem-solution-section .stat-box {
    border: 1px solid transparent;
}

.problem-solution-section .stat-box-negative {
    background-color: #F8FAFC;
    border-color: #E2E8F0;
}

.problem-solution-section .stat-box-positive {
    background-color: #EFF6FF;
    border-color: #DBEAFE;
}

.problem-solution-section .stat-label {
    font-size: 0.6875rem;
    color: #64748B;
    letter-spacing: 0.04em;
}

.problem-solution-section .stat-box-positive .stat-label {
    color: #2563EB;
}

.problem-solution-section .stat-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0F172A;
}

.problem-solution-section .btn-primary-custom {
    background-color: #2563EB;
    color: #FFFFFF;
    border: 1px solid #2563EB;
    border-radius: 10px;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.problem-solution-section .btn-primary-custom:hover {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF;
}

.problem-solution-section .btn-icon {
    width: 18px;
    height: 18px;
}

.problem-solution-section .caption-note {
    font-size: 0.8125rem;
    color: #64748B;
}

@media (max-width: 767.98px) {
    .problem-solution-section .problem-solution-heading {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .problem-solution-section .column-title {
        font-size: 1.125rem;
    }

    .problem-solution-section .comparison-card {
        padding: 1.25rem !important;
    }

    .problem-solution-section .btn-primary-custom {
        width: 100%;
    }
}

/* ===== cost_of_inaction ===== */
.coi-block {
    background-color: #F8FAFC;
    color: #0F172A;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}

.coi-block .coi-badge {
    background-color: #EFF6FF;
    color: #2563EB;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid #DBEAFE;
    letter-spacing: 0.01em;
}

.coi-block .coi-badge-icon {
    width: 1rem;
    height: 1rem;
    color: #2563EB;
}

.coi-block .coi-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0F172A;
}

.coi-block .coi-subtitle {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #475569;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.coi-block .coi-selector-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04);
}

.coi-block .coi-selector-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0F172A;
}

.coi-block .coi-btn-scenario {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 0.625rem 1.125rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-width: 140px;
    flex: 1 1 calc(50% - 0.5rem);
}

@media (min-width: 768px) {
    .coi-block .coi-btn-scenario {
        flex: 1 1 0;
    }
}

.coi-block .coi-btn-scenario .coi-scenario-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #334155;
}

.coi-block .coi-btn-scenario .coi-scenario-val {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748B;
    margin-top: 0.125rem;
}

.coi-block .coi-btn-scenario:hover {
    background-color: #F1F5F9;
    border-color: #CBD5E1;
}

.coi-block .coi-btn-scenario.is-active {
    background-color: #2563EB;
    border-color: #2563EB;
}

.coi-block .coi-btn-scenario.is-active .coi-scenario-name {
    color: #FFFFFF;
}

.coi-block .coi-btn-scenario.is-active .coi-scenario-val {
    color: #DBEAFE;
}

.coi-block .coi-scenario-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #475569;
    font-style: italic;
}

.coi-block .coi-metric-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04);
}

.coi-block .coi-metric-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748B;
}

.coi-block .coi-metric-icon-wrap {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F1F5F9;
    border-radius: 8px;
}

.coi-block .coi-metric-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: #2563EB;
}

.coi-block .coi-metric-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    color: #0F172A;
}

.coi-block .coi-metric-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    color: #0F172A;
}

.coi-block .coi-metric-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #475569;
}

.coi-block .coi-metric-note {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748B;
}

.coi-block .coi-comparison-box {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.04);
}

.coi-block .coi-comp-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0F172A;
}

.coi-block .coi-comp-text {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #475569;
}

.coi-block .coi-feature-item {
    font-size: 0.875rem;
    line-height: 1.45;
    color: #334155;
}

.coi-block .coi-check-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: #059669;
}

.coi-block .coi-btn-primary {
    background-color: #2563EB;
    color: #FFFFFF;
    border: 1px solid #2563EB;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-block;
    text-decoration: none;
}

.coi-block .coi-btn-primary:hover {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF;
}

.coi-block .coi-btn-secondary {
    background-color: #FFFFFF;
    color: #0F172A;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-block;
    text-decoration: none;
}

.coi-block .coi-btn-secondary:hover {
    background-color: #F8FAFC;
    border-color: #CBD5E1;
    color: #0F172A;
}

@media (max-width: 767.98px) {
    .coi-block .coi-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .coi-block .coi-comp-heading {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .coi-block .coi-metric-title {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .coi-block .coi-metric-number {
        font-size: 1.75rem;
    }

    .coi-block .coi-btn-primary,
    .coi-block .coi-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ===== explore_integrations ===== */
.integrations-grid-section {
    background-color: #F8FAFC;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0
}

.integrations-grid-section__badge {
    background-color: #CCFBF1;
    color: #0D9488;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    line-height: 1.2
}

.integrations-grid-section__badge-icon {
    flex-shrink: 0;
    stroke: #0D9488
}

.integrations-grid-section__title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em
}

.integrations-grid-section__subtitle {
    color: #475569;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 620px
}

.integrations-grid-section__btn-main {
    background-color: #2563EB;
    color: #FFFFFF;
    border: 1px solid #2563EB;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none
}

.integrations-grid-section__btn-main:hover {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF
}

.integrations-grid-section__card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
    overflow: hidden
}

.integrations-grid-section__card:hover {
    border-color: #CBD5E1
}

.integrations-grid-section__image-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    background-color: #F1F5F9;
    overflow: hidden
}

.integrations-grid-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.integrations-grid-section__tag {
    display: inline-block;
    color: #0284C7;
    background-color: #E0F2FE;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    width: fit-content
}

.integrations-grid-section__card-title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.15rem;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-top: 0.25rem
}

.integrations-grid-section__card-link {
    color: #0F172A;
    text-decoration: none
}

.integrations-grid-section__card-link:hover {
    color: #2563EB
}

.integrations-grid-section__card-desc {
    color: #475569;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5
}

.integrations-grid-section__card-btn {
    background-color: #FFFFFF;
    color: #0F172A;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none
}

.integrations-grid-section__card-btn:hover {
    background-color: #F8FAFC;
    border-color: #CBD5E1;
    color: #0F172A
}

@media(max-width:767.98px) {
    .integrations-grid-section__title {
        font-size: 16px;
        line-height: 1.3;
        hyphens: auto
    }

    .integrations-grid-section__card-title {
        font-size: 14px;
        line-height: 1.3;
        hyphens: auto
    }

    .integrations-grid-section__subtitle {
        font-size: 0.875rem
    }

    .integrations-grid-section__image-wrap {
        height: 160px
    }

    .integrations-grid-section__btn-main {
        width: 100%
    }
}

/* ===== objection_handling ===== */
.objections-section {
    background-color: #F8FAFC;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0F172A;
}

.objections-section .objections-badge {
    background-color: #EFF6FF;
    color: #2563EB;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid #DBEAFE;
}

.objections-section .objections-badge-icon {
    width: 1rem;
    height: 1rem;
}

.objections-section .objections-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0F172A;
}

.objections-section .objections-subheading {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #475569;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.objections-section .objection-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
}

.objections-section .objection-tag {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0D9488;
    background-color: #CCFBF1;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    letter-spacing: 0.01em;
}

.objections-section .objection-icon-wrapper {
    width: 36px;
    height: 36px;
    background-color: #F1F5F9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    flex-shrink: 0;
}

.objections-section .objection-icon {
    width: 20px;
    height: 20px;
}

.objections-section .objection-question {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1875rem;
    line-height: 1.35;
    font-weight: 700;
    color: #0F172A;
}

.objections-section .objection-answer {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
}

.objections-section .objections-cta-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
}

.objections-section .objections-cta-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.375rem;
    line-height: 1.3;
    font-weight: 700;
    color: #0F172A;
}

.objections-section .objections-cta-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #475569;
    max-width: 600px;
}

.objections-section .objections-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2563EB;
    color: #FFFFFF;
    border: 1px solid #2563EB;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
}

.objections-section .objections-btn-primary:hover,
.objections-section .objections-btn-primary:focus {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF;
}

.objections-section .objections-btn-icon {
    width: 1.125rem;
    height: 1.125rem;
}

@media (max-width: 767.98px) {
    .objections-section .objections-heading {
        font-size: 16px;
        hyphens: auto;
    }

    .objections-section .objection-question {
        font-size: 14px;
        hyphens: auto;
    }

    .objections-section .objections-cta-title {
        font-size: 14px;
        hyphens: auto;
    }

    .objections-section .objections-subheading {
        font-size: 0.875rem;
    }

    .objections-section .objection-answer,
    .objections-section .objections-cta-desc {
        font-size: 0.875rem;
    }
}

/* ===== results_reviews ===== */
.results-reviews-section {
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.results-reviews-section .results-reviews-header {
    max-width: 680px;
}

.results-reviews-section .results-reviews-badge {
    background-color: #CCFBF1;
    color: #0D9488;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 9999px;
}

.results-reviews-section .results-reviews-title {
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.results-reviews-section .results-reviews-subtitle {
    color: #475569;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.results-reviews-section .results-reviews-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
}

.results-reviews-section .results-reviews-metric-box {
    background-color: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
}

.results-reviews-section .results-reviews-metric {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563EB;
}

.results-reviews-section .results-reviews-metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.results-reviews-section .results-reviews-star {
    color: #D97706;
    margin-right: 2px;
}

.results-reviews-section .results-reviews-quote {
    color: #0F172A;
    font-size: 0.95rem;
    line-height: 1.55;
}

.results-reviews-section .results-reviews-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E2E8F0;
    flex-shrink: 0;
}

.results-reviews-section .results-reviews-author-name {
    color: #0F172A;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.results-reviews-section .results-reviews-author-role {
    color: #64748B;
    font-size: 0.8125rem;
    line-height: 1.4;
}

.results-reviews-section .results-reviews-btn {
    background-color: #2563EB;
    color: #FFFFFF;
    border: 1px solid #2563EB;
    border-radius: 10px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.results-reviews-section .results-reviews-btn:hover {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .results-reviews-section .results-reviews-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .results-reviews-section .results-reviews-author-name {
        font-size: 0.875rem;
    }

    .results-reviews-section .results-reviews-metric {
        font-size: 1.1rem;
    }
}

/* ===== footer ===== */
.gramala-footer-block {
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
}

.gramala-footer-block .gramala-footer-logo {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.gramala-footer-block .gramala-footer-brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.gramala-footer-block .gramala-footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
    max-width: 320px;
}

.gramala-footer-block .gramala-footer-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gramala-footer-block .gramala-footer-icon {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-nav-link {
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-nav-link:hover {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-contact-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5;
}

.gramala-footer-block .gramala-footer-contact-link {
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-contact-link:hover {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-wa-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0D9488;
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    background-color: #CCFBF1;
    border-radius: 8px;
    border: 1px solid rgba(13, 148, 136, 0.2);
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-wa-link .gramala-footer-icon {
    color: #0D9488;
}

.gramala-footer-block .gramala-footer-wa-link:hover {
    background-color: #99F6E4;
    color: #0F766E;
}

.gramala-footer-block .gramala-footer-bottom {
    border-top-color: #E2E8F0 !important;
}

.gramala-footer-block .gramala-footer-copy {
    font-size: 0.8125rem;
    color: #64748B;
}

.gramala-footer-block .gramala-footer-legal-link {
    font-size: 0.8125rem;
    color: #64748B;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-legal-link:hover {
    color: #0F172A;
}

.gramala-page-body {
    background-color: #F8FAFC;
    color: #475569;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.gramala-header-nav {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #E2E8F0;
    z-index: 1030;
}

.gramala-header-nav .navbar {
    background-color: #FFFFFF;
}

.gramala-header-nav .gramala-brand-logo {
    width: 40px;
    height: 40px;
    max-width: 40px;
    object-fit: contain;
}

.gramala-header-nav .gramala-brand-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.gramala-header-nav .gramala-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
    font-size: 0.9375rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    border-radius: 8px;
}

.gramala-header-nav .gramala-nav-link:hover,
.gramala-header-nav .gramala-nav-link:focus,
.gramala-header-nav .gramala-nav-link.active {
    color: #2563EB !important;
    background-color: #F8FAFC;
}

.gramala-header-nav .gramala-header-cta {
    background-color: #2563EB;
    border: 1px solid #2563EB;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    color: #FFFFFF !important;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.gramala-header-nav .gramala-header-cta:hover,
.gramala-header-nav .gramala-header-cta:focus {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF !important;
}

.gramala-header-nav .gramala-nav-toggler {
    color: #0F172A;
    background-color: #F1F5F9;
    border-radius: 8px;
}

.gramala-header-nav .gramala-nav-toggler:hover {
    background-color: #E2E8F0;
}

.gramala-header-nav .gramala-toggler-icon {
    stroke: #0F172A;
}

.gramala-category-hero {
    background-color: #0B0F19;
    background-image: radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.22) 0%, rgba(15, 23, 42, 0.98) 80%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gramala-category-hero .gramala-hero-badge {
    background: rgba(37, 99, 235, 0.16);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 9999px;
}

.gramala-category-hero .gramala-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0D9488;
}

.gramala-category-hero .gramala-badge-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #93C5FD;
    letter-spacing: 0.02em;
}

.gramala-category-hero .gramala-category-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.375rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.gramala-category-hero .gramala-category-subtitle {
    font-size: 1.0625rem;
    color: #94A3B8;
    line-height: 1.6;
    max-width: 680px;
}

.gramala-usecases-section {
    background-color: #F8FAFC;
}

.gramala-usecases-section .gramala-filter-toolbar {
    border-color: #E2E8F0 !important;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04);
}

.gramala-usecases-section .gramala-search-wrapper {
    width: 100%;
}

.gramala-usecases-section .gramala-search-icon {
    left: 14px;
    color: #64748B;
    pointer-events: none;
}

.gramala-usecases-section .gramala-search-input {
    background-color: #F1F5F9;
    border: 1px solid #CBD5E1;
    border-radius: 10px;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    color: #0F172A;
    font-size: 0.875rem;
}

.gramala-usecases-section .gramala-search-input::placeholder {
    color: #64748B;
    opacity: 1;
}

.gramala-usecases-section .gramala-search-input:focus {
    background-color: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    color: #0F172A;
}

.gramala-usecases-section .gramala-chip-btn {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.gramala-usecases-section .gramala-chip-btn:hover {
    border-color: #CBD5E1;
    color: #0F172A;
    background-color: #F8FAFC;
}

.gramala-usecases-section .gramala-chip-btn.active {
    background-color: #0F172A;
    border-color: #0F172A;
    color: #FFFFFF;
}

.gramala-usecases-section .gramala-solution-card {
    border-color: #E2E8F0 !important;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.gramala-usecases-section .gramala-solution-card:hover {
    border-color: #CBD5E1 !important;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.08);
}

.gramala-usecases-section .gramala-card-media {
    height: 200px;
    background-color: #E2E8F0;
    overflow: hidden;
}

.gramala-usecases-section .gramala-card-img {
    height: 100%;
    object-fit: cover;
}

.gramala-usecases-section .gramala-card-badge {
    background-color: rgba(15, 23, 42, 0.85);
}

.gramala-usecases-section .gramala-card-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #F8FAFC;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gramala-usecases-section .gramala-meta-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #64748B;
}

.gramala-usecases-section .gramala-meta-pill {
    background-color: #CCFBF1;
    color: #0F766E;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(13, 148, 136, 0.2);
}

.gramala-usecases-section .gramala-card-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.35;
}

.gramala-usecases-section .gramala-card-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.55;
}

.gramala-usecases-section .gramala-card-footer {
    border-top-color: #F1F5F9 !important;
}

.gramala-usecases-section .gramala-btn-card {
    background-color: #2563EB;
    border: 1px solid #2563EB;
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    transition: background-color 0.15s ease-in-out;
}

.gramala-usecases-section .gramala-btn-card:hover {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF;
}

.gramala-usecases-section .gramala-detail-link {
    color: #0F172A;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: color 0.15s ease-in-out;
}

.gramala-usecases-section .gramala-detail-link:hover {
    color: #2563EB;
}

.gramala-usecases-section .gramala-empty-state {
    border-color: #E2E8F0 !important;
}

.gramala-usecases-section .gramala-empty-icon-wrap {
    width: 56px;
    height: 56px;
    background-color: #F1F5F9;
    color: #64748B;
}

.gramala-usecases-section .gramala-empty-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
}

.gramala-usecases-section .gramala-empty-desc {
    font-size: 0.875rem;
    color: #64748B;
}

.gramala-usecases-section .gramala-btn-reset {
    background-color: #0F172A;
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #0F172A;
}

.gramala-usecases-section .gramala-btn-reset:hover {
    background-color: #1E293B;
    color: #FFFFFF;
}

.gramala-cta-banner .gramala-cta-inner {
    background-color: #F8FAFC;
    border-color: #E2E8F0 !important;
}

.gramala-cta-banner .gramala-cta-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563EB;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gramala-cta-banner .gramala-cta-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.gramala-cta-banner .gramala-cta-desc {
    font-size: 0.9375rem;
    color: #475569;
    max-width: 600px;
}

.gramala-cta-banner .gramala-btn-primary {
    background-color: #2563EB;
    border: 1px solid #2563EB;
    color: #FFFFFF;
    font-size: 0.9375rem;
}

.gramala-cta-banner .gramala-btn-primary:hover {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF;
}

.gramala-cta-banner .gramala-btn-secondary {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    font-size: 0.9375rem;
}

.gramala-cta-banner .gramala-btn-secondary:hover {
    background-color: #F1F5F9;
    color: #0F172A;
}

.gramala-footer-block {
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
}

.gramala-footer-block .gramala-footer-logo {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.gramala-footer-block .gramala-footer-brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.gramala-footer-block .gramala-footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
    max-width: 320px;
}

.gramala-footer-block .gramala-footer-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gramala-footer-block .gramala-footer-icon {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-nav-link {
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-nav-link:hover {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-contact-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5;
}

.gramala-footer-block .gramala-footer-contact-link {
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-contact-link:hover {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-wa-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0D9488;
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    background-color: #CCFBF1;
    border-radius: 8px;
    border: 1px solid rgba(13, 148, 136, 0.2);
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-wa-link .gramala-footer-icon {
    color: #0D9488;
}

.gramala-footer-block .gramala-footer-wa-link:hover {
    background-color: #99F6E4;
    color: #0F766E;
}

.gramala-footer-block .gramala-footer-bottom {
    border-top-color: #E2E8F0 !important;
}

.gramala-footer-block .gramala-footer-copy {
    font-size: 0.8125rem;
    color: #64748B;
}

.gramala-footer-block .gramala-footer-legal-link {
    font-size: 0.8125rem;
    color: #64748B;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-legal-link:hover {
    color: #0F172A;
}

@media (max-width: 991.98px) {
    .gramala-header-nav .navbar-nav {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .gramala-header-nav .gramala-nav-link {
        padding: 0.625rem 0.875rem;
        font-size: 0.95rem;
    }

    .gramala-header-nav .gramala-header-cta {
        width: 100%;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .gramala-category-hero .gramala-category-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .gramala-category-hero .gramala-category-subtitle {
        font-size: 0.875rem;
    }

    .gramala-usecases-section .gramala-card-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .gramala-cta-banner .gramala-cta-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .gramala-cta-banner .gramala-btn-primary,
    .gramala-cta-banner .gramala-btn-secondary {
        width: 100%;
    }
}


/* ===== PAGE: about-product ===== */
.product-overview-section{background-color:#F8FAFC;color:#0F172A;font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif}.product-overview-section .badge-pill{display:inline-block;background-color:#EFF6FF;color:#2563EB;font-size:0.75rem;font-weight:600;letter-spacing:0.02em;padding:0.35rem 0.85rem;border-radius:9999px;border:1px solid #DBEAFE}.product-overview-section .tech-pill{display:inline-block;background-color:#CCFBF1;color:#0D9488;font-size:0.75rem;font-weight:600;padding:0.25rem 0.75rem;border-radius:6px}.product-overview-section .product-main-heading{font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:2.25rem;line-height:1.2;font-weight:700;letter-spacing:-0.025em;color:#0F172A}.product-overview-section .product-main-lead{font-size:1.125rem;line-height:1.6;color:#475569;max-width:760px}.product-overview-section .product-card{background-color:#FFFFFF;border:1px solid #E2E8F0;border-radius:16px;box-shadow:0 1px 3px 0 rgba(15,23,42,0.04),0 1px 2px -1px rgba(15,23,42,0.04)}.product-overview-section .product-card-primary{border-top:3px solid #2563EB}.product-overview-section .product-subheading{font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:1.375rem;line-height:1.3;font-weight:600;letter-spacing:-0.015em;color:#0F172A}.product-overview-section .product-text{font-size:0.95rem;line-height:1.55;color:#475569}.product-overview-section .product-diagram-box{background-color:#F8FAFC;border:1px solid #E2E8F0;border-radius:12px}.product-overview-section .diagram-step{display:flex;align-items:flex-start;gap:0.75rem;background-color:#FFFFFF;padding:0.875rem;border-radius:8px;border:1px solid #E2E8F0}.product-overview-section .step-icon{display:flex;align-items:center;justify-content:center;width:36px;height:36px;background-color:#EFF6FF;color:#2563EB;border-radius:8px;flex-shrink:0}.product-overview-section .diagram-arrow{display:flex;justify-content:center;align-items:center;padding:0.4rem 0;color:#94A3B8}.product-overview-section .step-title{font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:0.95rem;font-weight:600;color:#0F172A;margin-bottom:0.2rem}.product-overview-section .step-desc{font-size:0.825rem;line-height:1.4;color:#64748B;margin-bottom:0}.product-overview-section .status-tag{font-size:0.7rem;font-weight:600;padding:0.15rem 0.5rem;background-color:#DCFCE7;color:#059669;border-radius:4px}.product-overview-section .feature-check-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:1rem}.product-overview-section .check-item{display:flex;align-items:flex-start;gap:0.75rem}.product-overview-section .check-bullet{display:flex;align-items:center;justify-content:center;width:24px;height:24px;border-radius:50%;background-color:#CCFBF1;color:#0D9488;flex-shrink:0;margin-top:0.1rem}.product-overview-section .check-title{font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:0.95rem;font-weight:600;color:#0F172A;margin-bottom:0.15rem}.product-overview-section .check-text{font-size:0.85rem;line-height:1.45;color:#475569;margin-bottom:0}.product-overview-section .integration-bridge-banner{background-color:#F1F5F9;border:1px solid #E2E8F0;border-radius:12px}.product-overview-section .bridge-title{font-size:0.9rem;font-weight:600;color:#0F172A}.product-overview-section .bridge-desc{font-size:0.8rem;color:#64748B}.product-overview-section .btn-link-action{display:inline-flex;align-items:center;justify-content:center;background-color:#2563EB;color:#FFFFFF;border:1px solid #2563EB;border-radius:10px;padding:0.55rem 1.15rem;font-weight:600;font-size:0.875rem;text-decoration:none}.product-overview-section .btn-link-action:hover{background-color:#1D4ED8;color:#FFFFFF;border-color:#1D4ED8}.product-overview-section .spec-card{background-color:#FFFFFF;border:1px solid #E2E8F0;border-radius:16px;box-shadow:0 1px 3px 0 rgba(15,23,42,0.04),0 1px 2px -1px rgba(15,23,42,0.04)}.product-overview-section .spec-icon{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;background-color:#F8FAFC;border:1px solid #E2E8F0;border-radius:10px;color:#2563EB}.product-overview-section .spec-title{font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:1.15rem;line-height:1.3;font-weight:600;color:#0F172A}.product-overview-section .spec-desc{font-size:0.875rem;line-height:1.5;color:#475569}.product-overview-section .heroicon{width:20px;height:20px}.product-overview-section .heroicon-sm{width:16px;height:16px}@media (max-width:767px){.product-overview-section .product-main-heading{font-size:1.125rem;hyphens:auto}.product-overview-section .product-subheading{font-size:1rem;hyphens:auto}.product-overview-section .spec-title{font-size:0.875rem;hyphens:auto}.product-overview-section .step-title,.product-overview-section .check-title{font-size:0.875rem}.product-overview-section .btn-link-action{width:100%}}

/* ===== PAGE: blog ===== */
.gramala-blog-section {
  background-color: #F8FAFC;
  color: #0F172A;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gramala-blog-section .gramala-blog-section__badge {
  background-color: #CCFBF1;
  color: #0D9488;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gramala-blog-section .gramala-blog-section__title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #0F172A;
  letter-spacing: -0.02em;
}

.gramala-blog-section .gramala-blog-section__subtitle {
  max-width: 680px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #475569;
}

.gramala-blog-section .gramala-blog-section__input {
  height: 46px;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  color: #0F172A;
  font-size: 0.9375rem;
}

.gramala-blog-section .gramala-blog-section__input:focus {
  background-color: #FFFFFF;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  color: #0F172A;
}

.gramala-blog-section .gramala-blog-section__input::placeholder {
  color: #94A3B8;
}

.gramala-blog-section .gramala-blog-section__filter-btn {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.gramala-blog-section .gramala-blog-section__filter-btn:hover {
  background-color: #F1F5F9;
  color: #0F172A;
  border-color: #CBD5E1;
}

.gramala-blog-section .gramala-blog-section__filter-btn.active {
  background-color: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
}

.gramala-blog-section .gramala-blog-section__card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.gramala-blog-section .gramala-blog-section__card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.06);
}

.gramala-blog-section .gramala-blog-section__image-container {
  height: 220px;
  background-color: #F1F5F9;
}

.gramala-blog-section .gramala-blog-section__category-tag {
  background-color: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
}

.gramala-blog-section .gramala-blog-section__meta {
  font-size: 0.8125rem;
  color: #64748B;
}

.gramala-blog-section .gramala-blog-section__heading {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #0F172A;
  line-height: 1.35;
}

.gramala-blog-section .gramala-blog-section__link {
  color: #0F172A;
  transition: color 0.15s ease;
}

.gramala-blog-section .gramala-blog-section__link:hover {
  color: #2563EB;
}

.gramala-blog-section .gramala-blog-section__excerpt {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

.gramala-blog-section .gramala-blog-section__read-btn {
  color: #2563EB;
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  transition: color 0.15s ease;
}

.gramala-blog-section .gramala-blog-section__read-btn:hover {
  color: #1D4ED8;
}

.gramala-blog-section .gramala-blog-section__contact-banner {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04);
}

.gramala-blog-section .gramala-blog-section__contact-btn {
  background-color: #2563EB;
  color: #FFFFFF;
  border: 1px solid #2563EB;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.gramala-blog-section .gramala-blog-section__contact-btn:hover {
  background-color: #1D4ED8;
  border-color: #1D4ED8;
  color: #FFFFFF;
}

@media (max-width: 767.98px) {
  .gramala-blog-section .gramala-blog-section__title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .gramala-blog-section .gramala-blog-section__heading {
    font-size: 0.9375rem;
    hyphens: auto;
  }
  .gramala-blog-section .gramala-blog-section__image-container {
    height: 180px;
  }
}

/* ===== PAGE: about-us ===== */
.about-us-section {
  background-color: #F8FAFC;
  color: #0F172A;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-us-section .about-badge {
  background-color: #EFF6FF;
  border: 1px solid #DBEAFE;
}

.about-us-section .about-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2563EB;
  display: inline-block;
}

.about-us-section .about-badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2563EB;
  letter-spacing: 0.01em;
}

.about-us-section .about-main-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

@media (max-width: 767.98px) {
  .about-us-section .about-main-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .about-us-section .about-card-title,
  .about-us-section .about-section-heading,
  .about-us-section .about-cta-title {
    font-size: 1rem;
    hyphens: auto;
  }
  .about-us-section .about-item-title,
  .about-us-section .about-member-name {
    font-size: 0.875rem;
    hyphens: auto;
  }
}

.about-us-section .about-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.about-us-section .about-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04);
}

.about-us-section .about-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #EFF6FF;
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-section .about-icon {
  width: 24px;
  height: 24px;
}

.about-us-section .about-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.about-us-section .about-card-text {
  font-size: 1rem;
  line-height: 1.6;
}

.about-us-section .about-metric-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2563EB;
  line-height: 1.2;
}

.about-us-section .about-metric-lbl {
  font-size: 0.8125rem;
  font-weight: 500;
}

.about-us-section .about-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #CCFBF1;
  color: #0D9488;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-us-section .about-check-icon svg {
  width: 12px;
  height: 12px;
}

.about-us-section .about-item-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.3;
}

.about-us-section .about-item-text {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.about-us-section .about-section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.about-us-section .about-section-desc {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 600px;
}

.about-us-section .about-member-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04);
}

.about-us-section .about-avatar-wrapper {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #EFF6FF;
}

.about-us-section .about-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-section .about-member-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
}

.about-us-section .about-member-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2563EB;
  letter-spacing: 0.01em;
}

.about-us-section .about-member-bio {
  font-size: 0.875rem;
  line-height: 1.5;
}

.about-us-section .about-cta-panel {
  background-color: #F1F5F9;
  border: 1px solid #E2E8F0;
}

.about-us-section .about-cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.about-us-section .about-cta-text {
  font-size: 1rem;
  line-height: 1.6;
}

.about-us-section .about-btn-primary {
  background-color: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 10px;
}

.about-us-section .about-btn-primary:hover {
  background-color: #1D4ED8;
  border-color: #1D4ED8;
  color: #FFFFFF;
}

.about-us-section .about-btn-secondary {
  background-color: #FFFFFF;
  border-color: #CBD5E1;
  color: #0F172A;
  font-weight: 600;
  border-radius: 10px;
}

.about-us-section .about-btn-secondary:hover {
  background-color: #F8FAFC;
  border-color: #94A3B8;
  color: #0F172A;
}

/* ===== PAGE: contacts ===== */
.contact-details-section {
  background-color: #F8FAFC;
  color: #0F172A;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-details-section .contact-badge {
  background-color: #CCFBF1;
  color: #0D9488;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  display: inline-block;
}

.contact-details-section .contact-main-heading {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.contact-details-section .contact-main-subtitle {
  color: #475569;
  font-size: 1.0625rem;
  max-width: 620px;
  line-height: 1.6;
}

.contact-details-section .contact-info-card,
.contact-details-section .contact-form-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
}

.contact-details-section .contact-card-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.015em;
}

.contact-details-section .contact-card-desc {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.contact-details-section .contact-method-item {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  color: #0F172A;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.contact-details-section .contact-method-item:hover {
  background-color: #F1F5F9;
  border-color: #CBD5E1;
  color: #0F172A;
}

.contact-details-section .contact-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #EFF6FF;
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details-section .contact-icon {
  width: 20px;
  height: 20px;
}

.contact-details-section .contact-method-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748B;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-details-section .contact-method-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0F172A;
  word-break: break-word;
}

.contact-details-section .contact-hours-note {
  font-size: 0.8125rem;
  color: #64748B;
}

.contact-details-section .contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.375rem;
}

.contact-details-section .contact-input,
.contact-details-section .contact-select,
.contact-details-section .contact-textarea {
  background-color: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  color: #0F172A;
  font-size: 0.9375rem;
  padding: 0.65rem 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-details-section .contact-input:focus,
.contact-details-section .contact-select:focus,
.contact-details-section .contact-textarea:focus {
  background-color: #FFFFFF;
  border-color: #2563EB;
  color: #0F172A;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.contact-details-section .contact-input::placeholder,
.contact-details-section .contact-textarea::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.contact-details-section .contact-submit-btn {
  background-color: #2563EB;
  border: 1px solid #2563EB;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.contact-details-section .contact-submit-btn:hover {
  background-color: #1D4ED8;
  border-color: #1D4ED8;
  color: #FFFFFF;
}

.contact-details-section .btn-icon {
  width: 18px;
  height: 18px;
}

.contact-details-section .contact-success-box {
  background-color: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 12px;
}

.contact-details-section .success-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #DCFCE7;
  color: #16A34A;
}

.contact-details-section .success-check-icon {
  width: 24px;
  height: 24px;
}

.contact-details-section .success-heading {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #14532D;
}

.contact-details-section .success-description {
  font-size: 0.875rem;
  color: #166534;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .contact-details-section .contact-main-heading {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .contact-details-section .contact-card-title {
    font-size: 1rem;
    hyphens: auto;
  }
  .contact-details-section .contact-main-subtitle {
    font-size: 0.875rem;
  }
}

/* ===== PAGE: privacy ===== */
.legal-content-section{background-color:#F8FAFC;min-height:60vh}.legal-content-section .legal-content-card{background:#FFFFFF;border:1px solid #E2E8F0;border-radius:16px;box-shadow:0 1px 3px 0 rgba(15,23,42,0.04),0 1px 2px -1px rgba(15,23,42,0.04)}.legal-content-section .legal-badge{background-color:#EFF6FF;color:#2563EB;border:1px solid #DBEAFE;font-size:0.75rem;font-weight:600;padding:0.35rem 0.75rem;border-radius:50rem;letter-spacing:0.02em;text-transform:uppercase}.legal-content-section .legal-main-title{font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:2rem;font-weight:700;line-height:1.25;color:#0F172A;letter-spacing:-0.02em}.legal-content-section .legal-subtitle{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:1.125rem;line-height:1.6;color:#475569}.legal-content-section .legal-divider{height:1px;background-color:#E2E8F0;width:100%}.legal-content-section .legal-section-title{font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:1.25rem;font-weight:600;line-height:1.4;color:#0F172A;letter-spacing:-0.01em;margin-bottom:0.75rem}.legal-content-section .legal-text{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:1rem;line-height:1.6;color:#475569;margin-bottom:0.75rem}.legal-content-section .legal-list{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;font-size:1rem;line-height:1.6;color:#475569;padding-left:1.25rem;margin-bottom:0.75rem}.legal-content-section .legal-list li{margin-bottom:0.5rem}.legal-content-section .legal-list li strong{color:#0F172A}@media(max-width:767.98px){.legal-content-section .legal-main-title{font-size:1.125rem;line-height:1.3;hyphens:auto}.legal-content-section .legal-section-title{font-size:0.95rem;line-height:1.3;hyphens:auto}.legal-content-section .legal-subtitle{font-size:0.875rem;line-height:1.5}.legal-content-section .legal-text,.legal-content-section .legal-list{font-size:0.875rem;line-height:1.5}}

/* ===== PAGE: terms ===== */
.legal-terms { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #0F172A; background-color: #F8FAFC; }
.legal-terms .legal-terms__header-card { box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04); }
.legal-terms .legal-terms__badge { background-color: #EFF6FF; color: #2563EB; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.8125rem; font-weight: 700; padding: 0.35rem 0.85rem; border-radius: 9999px; letter-spacing: 0.02em; border: 1px solid #DBEAFE; }
.legal-terms .legal-terms__title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.25rem; font-weight: 700; line-height: 1.2; color: #0F172A; letter-spacing: -0.025em; }
.legal-terms .legal-terms__subtitle { font-size: 1.0625rem; line-height: 1.6; color: #475569; }
.legal-terms .legal-terms__meta { font-size: 0.875rem; color: #64748B; }
.legal-terms .legal-terms__meta-divider { color: #CBD5E1; }
.legal-terms .legal-terms__nav { top: 1.5rem; box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04); }
.legal-terms .legal-terms__nav-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9375rem; text-transform: uppercase; letter-spacing: 0.04em; color: #0F172A; }
.legal-terms .legal-terms__nav-link { display: block; font-size: 0.875rem; line-height: 1.4; color: #64748B; text-decoration: none; padding: 0.4rem 0.6rem; border-radius: 6px; transition: color 0.15s ease, background-color 0.15s ease; }
.legal-terms .legal-terms__nav-link:hover { color: #2563EB; background-color: #F1F5F9; }
.legal-terms .legal-terms__nav-link.active { color: #2563EB; background-color: #EFF6FF; font-weight: 600; }
.legal-terms .legal-terms__card { box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04); scroll-margin-top: 2rem; }
.legal-terms .legal-terms__section-num { font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem; font-weight: 700; color: #2563EB; background-color: #EFF6FF; padding: 0.2rem 0.5rem; border-radius: 4px; border: 1px solid #DBEAFE; }
.legal-terms .legal-terms__heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; color: #0F172A; letter-spacing: -0.01em; }
.legal-terms .legal-terms__list { padding-left: 1.25rem; line-height: 1.6; }
.legal-terms .legal-terms__list li { margin-bottom: 0.5rem; }
.legal-terms .legal-terms__inline-link { color: #2563EB; text-decoration: underline; text-underline-offset: 3px; font-weight: 500; transition: color 0.15s ease; }
.legal-terms .legal-terms__inline-link:hover { color: #1D4ED8; text-decoration: none; }
@media (max-width: 767.98px) {
  .legal-terms .legal-terms__title { font-size: 1.125rem; hyphens: auto; }
  .legal-terms .legal-terms__heading { font-size: 1rem; hyphens: auto; }
  .legal-terms .legal-terms__subtitle { font-size: 0.9375rem; }
  .legal-terms .legal-terms__header-card, .legal-terms .legal-terms__card { padding: 1.25rem !important; border-radius: 12px !important; }
}

/* ===== PAGE: disclaimer ===== */
.legal-content-section { background-color: #ffffff; color: #0f172a; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.legal-content-section .legal-badge { display: inline-block; padding: 0.35rem 0.75rem; font-size: 0.75rem; font-weight: 600; color: #0d9488; background-color: #ccfbf1; border-radius: 9999px; letter-spacing: 0.02em; }
.legal-content-section .legal-main-title { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 2.25rem; font-weight: 700; line-height: 1.2; color: #0f172a; letter-spacing: -0.025em; }
.legal-content-section .legal-lead-text { font-size: 1.125rem; line-height: 1.6; color: #475569; }
.legal-content-section .legal-notice-card { background-color: #f8fafc; border: 1px solid #e2e8f0; border-left: 4px solid #2563eb; border-radius: 12px; }
.legal-content-section .legal-notice-icon { width: 32px; height: 32px; color: #2563eb; display: flex; align-items: center; justify-content: center; }
.legal-content-section .legal-notice-icon .heroicon { width: 28px; height: 28px; }
.legal-content-section .legal-notice-heading { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 1.125rem; font-weight: 600; color: #0f172a; }
.legal-content-section .legal-notice-text { font-size: 0.9375rem; line-height: 1.55; color: #475569; }
.legal-content-section .legal-heading { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 1.35rem; font-weight: 600; line-height: 1.3; color: #0f172a; margin-top: 1.5rem; margin-bottom: 0.75rem; letter-spacing: -0.015em; }
.legal-content-section .legal-subheading { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 1.125rem; font-weight: 600; line-height: 1.35; color: #0f172a; }
.legal-content-section .legal-text { font-size: 1rem; line-height: 1.65; color: #334155; margin-bottom: 1rem; }
.legal-content-section .legal-list { padding-left: 1.25rem; margin-bottom: 1rem; color: #334155; font-size: 1rem; line-height: 1.65; }
.legal-content-section .legal-list li { margin-bottom: 0.5rem; }
.legal-content-section .legal-contact-panel { background-color: #f8fafc; border-color: #e2e8f0; }
.legal-content-section .legal-action-btn { background-color: #2563eb; color: #ffffff; border: 1px solid #2563eb; font-weight: 600; padding: 0.65rem 1.25rem; border-radius: 8px; font-size: 0.9375rem; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.legal-content-section .legal-action-btn:hover { background-color: #1d4ed8; border-color: #1d4ed8; color: #ffffff; }
.legal-content-section .legal-secondary-btn { background-color: #ffffff; color: #0f172a; border: 1px solid #cbd5e1; font-weight: 600; padding: 0.65rem 1.25rem; border-radius: 8px; font-size: 0.9375rem; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.legal-content-section .legal-secondary-btn:hover { background-color: #f1f5f9; border-color: #94a3b8; color: #0f172a; }
@media (max-width: 767.98px) { .legal-content-section .legal-main-title { font-size: 1.125rem; hyphens: auto; } .legal-content-section .legal-heading { font-size: 1rem; hyphens: auto; } .legal-content-section .legal-subheading { font-size: 0.875rem; hyphens: auto; } .legal-content-section .legal-lead-text { font-size: 0.9375rem; } .legal-content-section .legal-text, .legal-content-section .legal-list { font-size: 0.875rem; } }

.saas-comment-card {
    background-color: #FFFFFF;
    border-color: #E2E8F0;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif
}

.saas-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    user-select: none
}

.saas-avatar-primary {
    background-color: #2563EB
}

.comment-body {
    color: #475569;
    font-size: 0.9375rem
}

.saas-action-btn {
    background-color: #FFFFFF;
    border-color: #E2E8F0;
    color: #475569;
    border-radius: 8px
}

.saas-action-btn:hover {
    background-color: #F8FAFC;
    border-color: #CBD5E1;
    color: #0F172A
}

.saas-reply-btn {
    color: #475569
}

.saas-reply-btn:hover {
    color: #2563EB
}

.bg-teal-subtle {
    background-color: #CCFBF1
}

.text-teal {
    color: #0D9488
}

.border-teal-subtle {
    border-color: #99F6E4
}

.saas-icon {
    flex-shrink: 0
}

.saas-reply-wrapper {
    border-left-color: #BFDBFE !important
}

.saas-comment-card {
    background-color: #FFFFFF;
    border-color: #E2E8F0;
    box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif
}

.saas-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    user-select: none
}

.saas-avatar-secondary {
    background-color: #0F172A
}

.comment-body {
    color: #475569;
    font-size: 0.9375rem
}

.saas-action-btn {
    background-color: #FFFFFF;
    border-color: #E2E8F0;
    color: #475569;
    border-radius: 8px
}

.saas-action-btn:hover {
    background-color: #F8FAFC;
    border-color: #CBD5E1;
    color: #0F172A
}

.saas-reply-btn {
    color: #475569
}

.saas-reply-btn:hover {
    color: #2563EB
}

.bg-primary-subtle {
    background-color: #EFF6FF
}

.border-primary-subtle {
    border-color: #DBEAFE
}

.saas-icon {
    flex-shrink: 0
}


/* ===== PAGE TEMPLATE: integrations ===== */
.gramala-header-nav {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #E2E8F0;
    z-index: 1030;
}

.gramala-header-nav .navbar {
    background-color: #FFFFFF;
}

.gramala-header-nav .gramala-brand-logo {
    width: 40px;
    height: 40px;
    max-width: 40px;
    object-fit: contain;
}

.gramala-header-nav .gramala-brand-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.gramala-header-nav .gramala-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
    font-size: 0.9375rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    border-radius: 8px;
}

.gramala-header-nav .gramala-nav-link:hover,
.gramala-header-nav .gramala-nav-link:focus {
    color: #2563EB !important;
    background-color: #F8FAFC;
}

.gramala-header-nav .gramala-header-cta {
    background-color: #2563EB;
    border: 1px solid #2563EB;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    color: #FFFFFF !important;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.gramala-header-nav .gramala-header-cta:hover,
.gramala-header-nav .gramala-header-cta:focus {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF !important;
}

.gramala-header-nav .gramala-nav-toggler {
    color: #0F172A;
    background-color: #F1F5F9;
    border-radius: 8px;
}

.gramala-header-nav .gramala-nav-toggler:hover {
    background-color: #E2E8F0;
}

.gramala-header-nav .gramala-toggler-icon {
    stroke: #0F172A;
}

.gramala-detail-hero {
    background-color: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.gramala-detail-hero .gramala-breadcrumb-link {
    color: #2563EB;
    font-size: 0.875rem;
}

.gramala-detail-hero .gramala-breadcrumb-link:hover {
    color: #1D4ED8;
    text-decoration: underline !important;
}

.gramala-detail-hero .breadcrumb-item.active {
    color: #64748B;
    font-size: 0.875rem;
}

.gramala-detail-hero .gramala-detail-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.gramala-detail-hero .gramala-detail-lead {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #475569;
}

.gramala-detail-content-area {
    background-color: #F8FAFC;
}

.gramala-detail-content-area .gramala-main-article {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
}

.gramala-detail-content-area .gramala-featured-media {
    height: 380px;
    object-fit: cover;
}

.gramala-rendered-prose h2 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
}

.gramala-rendered-prose h3 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
}

.gramala-rendered-prose p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.gramala-rendered-prose .gramala-callout-box {
    background-color: #F1F5F9;
    border-left: 4px solid #2563EB;
}

.gramala-rendered-prose ul,
.gramala-rendered-prose ol {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.gramala-btn-service-action {
    background-color: #2563EB;
    border: 1px solid #2563EB;
    color: #FFFFFF !important;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.gramala-btn-service-action:hover {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF !important;
}

.saas-avatar-primary {
    width: 42px;
    height: 42px;
    background-color: #2563EB;
}

.saas-avatar-secondary {
    width: 42px;
    height: 42px;
    background-color: #0F172A;
}

.bg-teal-subtle {
    background-color: #CCFBF1 !important;
}

.text-teal {
    color: #0D9488 !important;
}

.border-teal-subtle {
    border-color: rgba(13, 148, 136, 0.3) !important;
}

.saas-action-btn:hover {
    background-color: #F1F5F9;
    color: #0F172A !important;
}

.saas-reply-btn:hover {
    color: #2563EB !important;
}

.gramala-form-input {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #0F172A;
}

.gramala-form-input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.gramala-form-input:focus {
    background-color: #FFFFFF;
    border-color: #3B82F6;
    color: #0F172A;
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.15);
}

.gramala-sidebar-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
}

.gramala-sidebar-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    color: #0F172A;
}

.recent-post-link {
    color: #0F172A;
    transition: color 0.15s ease-in-out;
}

.recent-post-link:hover {
    color: #2563EB;
}

.gramala-sidebar-cta {
    background-color: #0F172A;
    border: 1px solid #0F172A;
    color: #FFFFFF !important;
    transition: background-color 0.15s ease-in-out;
}

.gramala-sidebar-cta:hover {
    background-color: #1E293B;
    border-color: #1E293B;
    color: #FFFFFF !important;
}

.gramala-sidebar-cta:focus,
.gramala-sidebar-cta:focus-visible {
    background-color: #1E293B;
    border-color: #3B82F6;
    color: #FFFFFF !important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.35);
}

.gramala-sidebar-cta:active,
.gramala-sidebar-cta.active {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF !important;
}

.gramala-footer-block {
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
}

.gramala-footer-block .gramala-footer-logo {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.gramala-footer-block .gramala-footer-brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.gramala-footer-block .gramala-footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
    max-width: 320px;
}

.gramala-footer-block .gramala-footer-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gramala-footer-block .gramala-footer-icon {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-nav-link {
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-nav-link:hover {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-contact-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5;
}

.gramala-footer-block .gramala-footer-contact-link {
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-contact-link:hover {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-wa-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0D9488;
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    background-color: #CCFBF1;
    border-radius: 8px;
    border: 1px solid rgba(13, 148, 136, 0.2);
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-wa-link .gramala-footer-icon {
    color: #0D9488;
}

.gramala-footer-block .gramala-footer-wa-link:hover {
    background-color: #99F6E4;
    color: #0F766E;
}

.gramala-footer-block .gramala-footer-bottom {
    border-top-color: #E2E8F0 !important;
}

.gramala-footer-block .gramala-footer-copy {
    font-size: 0.8125rem;
    color: #64748B;
}

.gramala-footer-block .gramala-footer-legal-link {
    font-size: 0.8125rem;
    color: #64748B;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-legal-link:hover {
    color: #0F172A;
}

@media (max-width: 767.98px) {
    .gramala-detail-hero .gramala-detail-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .gramala-detail-hero .gramala-detail-lead {
        font-size: 0.875rem;
    }

    .gramala-rendered-prose h2 {
        font-size: 1rem;
    }

    .gramala-rendered-prose h3 {
        font-size: 0.875rem;
    }

    .gramala-detail-content-area .gramala-featured-media {
        height: 220px;
    }
}

/* ===== PAGE TEMPLATE: use-cases ===== */
.gramala-header-nav {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #E2E8F0;
    z-index: 1030;
}

.gramala-header-nav .navbar {
    background-color: #FFFFFF;
}

.gramala-header-nav .gramala-brand-logo {
    width: 40px;
    height: 40px;
    max-width: 40px;
    object-fit: contain;
}

.gramala-header-nav .gramala-brand-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.gramala-header-nav .gramala-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
    font-size: 0.9375rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    border-radius: 8px;
}

.gramala-header-nav .gramala-nav-link:hover,
.gramala-header-nav .gramala-nav-link:focus {
    color: #2563EB !important;
    background-color: #F8FAFC;
}

.gramala-header-nav .gramala-header-cta {
    background-color: #2563EB;
    border: 1px solid #2563EB;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    color: #FFFFFF !important;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.gramala-header-nav .gramala-header-cta:hover,
.gramala-header-nav .gramala-header-cta:focus {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF !important;
}

.gramala-header-nav .gramala-nav-toggler {
    color: #0F172A;
    background-color: #F1F5F9;
    border-radius: 8px;
}

.gramala-header-nav .gramala-nav-toggler:hover {
    background-color: #E2E8F0;
}

.gramala-header-nav .gramala-toggler-icon {
    stroke: #0F172A;
}

.gramala-detail-hero {
    background-color: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.gramala-detail-hero .gramala-breadcrumb-link {
    color: #2563EB;
    font-size: 0.875rem;
}

.gramala-detail-hero .gramala-breadcrumb-link:hover {
    color: #1D4ED8;
    text-decoration: underline !important;
}

.gramala-detail-hero .breadcrumb-item.active {
    color: #64748B;
    font-size: 0.875rem;
}

.gramala-detail-hero .gramala-detail-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.gramala-detail-hero .gramala-detail-lead {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #475569;
}

.gramala-detail-content-area {
    background-color: #F8FAFC;
}

.gramala-detail-content-area .gramala-main-article {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
}

.gramala-detail-content-area .gramala-featured-media {
    height: 380px;
    object-fit: cover;
}

.gramala-rendered-prose h2 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
}

.gramala-rendered-prose h3 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
}

.gramala-rendered-prose p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.gramala-rendered-prose .gramala-callout-box {
    background-color: #F1F5F9;
    border-left: 4px solid #2563EB;
}

.gramala-rendered-prose ul,
.gramala-rendered-prose ol {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.gramala-btn-service-action {
    background-color: #2563EB;
    border: 1px solid #2563EB;
    color: #FFFFFF !important;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.gramala-btn-service-action:hover {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF !important;
}

.saas-avatar-primary {
    width: 42px;
    height: 42px;
    background-color: #2563EB;
}

.saas-avatar-secondary {
    width: 42px;
    height: 42px;
    background-color: #0F172A;
}

.bg-teal-subtle {
    background-color: #CCFBF1 !important;
}

.text-teal {
    color: #0D9488 !important;
}

.border-teal-subtle {
    border-color: rgba(13, 148, 136, 0.3) !important;
}

.saas-action-btn:hover {
    background-color: #F1F5F9;
    color: #0F172A !important;
}

.saas-reply-btn:hover {
    color: #2563EB !important;
}

.gramala-form-input {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #0F172A;
}

.gramala-form-input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.gramala-form-input:focus {
    background-color: #FFFFFF;
    border-color: #3B82F6;
    color: #0F172A;
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.15);
}

.gramala-sidebar-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
}

.gramala-sidebar-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    color: #0F172A;
}

.recent-post-link {
    color: #0F172A;
    transition: color 0.15s ease-in-out;
}

.recent-post-link:hover {
    color: #2563EB;
}

.gramala-sidebar-cta {
    background-color: #0F172A;
    border: 1px solid #0F172A;
    color: #FFFFFF !important;
    transition: background-color 0.15s ease-in-out;
}

.gramala-sidebar-cta:hover {
    background-color: #1E293B;
    border-color: #1E293B;
    color: #FFFFFF !important;
}

.gramala-sidebar-cta:focus,
.gramala-sidebar-cta:focus-visible {
    background-color: #1E293B;
    border-color: #3B82F6;
    color: #FFFFFF !important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.35);
}

.gramala-sidebar-cta:active,
.gramala-sidebar-cta.active {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF !important;
}

.gramala-footer-block {
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
}

.gramala-footer-block .gramala-footer-logo {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.gramala-footer-block .gramala-footer-brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.gramala-footer-block .gramala-footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
    max-width: 320px;
}

.gramala-footer-block .gramala-footer-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gramala-footer-block .gramala-footer-icon {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-nav-link {
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-nav-link:hover {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-contact-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5;
}

.gramala-footer-block .gramala-footer-contact-link {
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-contact-link:hover {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-wa-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0D9488;
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    background-color: #CCFBF1;
    border-radius: 8px;
    border: 1px solid rgba(13, 148, 136, 0.2);
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-wa-link .gramala-footer-icon {
    color: #0D9488;
}

.gramala-footer-block .gramala-footer-wa-link:hover {
    background-color: #99F6E4;
    color: #0F766E;
}

.gramala-footer-block .gramala-footer-bottom {
    border-top-color: #E2E8F0 !important;
}

.gramala-footer-block .gramala-footer-copy {
    font-size: 0.8125rem;
    color: #64748B;
}

.gramala-footer-block .gramala-footer-legal-link {
    font-size: 0.8125rem;
    color: #64748B;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-legal-link:hover {
    color: #0F172A;
}

@media (max-width: 767.98px) {
    .gramala-detail-hero .gramala-detail-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .gramala-detail-hero .gramala-detail-lead {
        font-size: 0.875rem;
    }

    .gramala-rendered-prose h2 {
        font-size: 1rem;
    }

    .gramala-rendered-prose h3 {
        font-size: 0.875rem;
    }

    .gramala-detail-content-area .gramala-featured-media {
        height: 220px;
    }
}

/* ===== PAGE TEMPLATE: blog ===== */
.gramala-header-nav {
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #E2E8F0;
    z-index: 1030;
}

.gramala-header-nav .navbar {
    background-color: #FFFFFF;
}

.gramala-header-nav .gramala-brand-logo {
    width: 40px;
    height: 40px;
    max-width: 40px;
    object-fit: contain;
}

.gramala-header-nav .gramala-brand-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.gramala-header-nav .gramala-nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
    font-size: 0.9375rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    border-radius: 8px;
}

.gramala-header-nav .gramala-nav-link:hover,
.gramala-header-nav .gramala-nav-link:focus {
    color: #2563EB !important;
    background-color: #F8FAFC;
}

.gramala-header-nav .gramala-header-cta {
    background-color: #2563EB;
    border: 1px solid #2563EB;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    color: #FFFFFF !important;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.gramala-header-nav .gramala-header-cta:hover,
.gramala-header-nav .gramala-header-cta:focus {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF !important;
}

.gramala-header-nav .gramala-nav-toggler {
    color: #0F172A;
    background-color: #F1F5F9;
    border-radius: 8px;
}

.gramala-header-nav .gramala-nav-toggler:hover {
    background-color: #E2E8F0;
}

.gramala-header-nav .gramala-toggler-icon {
    stroke: #0F172A;
}

.gramala-detail-hero {
    background-color: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.gramala-detail-hero .gramala-breadcrumb-link {
    color: #2563EB;
    font-size: 0.875rem;
}

.gramala-detail-hero .gramala-breadcrumb-link:hover {
    color: #1D4ED8;
    text-decoration: underline !important;
}

.gramala-detail-hero .breadcrumb-item.active {
    color: #64748B;
    font-size: 0.875rem;
}

.gramala-detail-hero .gramala-detail-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.gramala-detail-hero .gramala-detail-lead {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #475569;
}

.gramala-detail-content-area {
    background-color: #F8FAFC;
}

.gramala-detail-content-area .gramala-main-article {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
}

.gramala-detail-content-area .gramala-featured-media {
    height: 380px;
    object-fit: cover;
}

.gramala-rendered-prose h2 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
}

.gramala-rendered-prose h3 {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
}

.gramala-rendered-prose p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.gramala-rendered-prose .gramala-callout-box {
    background-color: #F1F5F9;
    border-left: 4px solid #2563EB;
}

.gramala-rendered-prose ul,
.gramala-rendered-prose ol {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.gramala-btn-service-action {
    background-color: #2563EB;
    border: 1px solid #2563EB;
    color: #FFFFFF !important;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.gramala-btn-service-action:hover {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF !important;
}

.saas-avatar-primary {
    width: 42px;
    height: 42px;
    background-color: #2563EB;
}

.saas-avatar-secondary {
    width: 42px;
    height: 42px;
    background-color: #0F172A;
}

.bg-teal-subtle {
    background-color: #CCFBF1 !important;
}

.text-teal {
    color: #0D9488 !important;
}

.border-teal-subtle {
    border-color: rgba(13, 148, 136, 0.3) !important;
}

.saas-action-btn:hover {
    background-color: #F1F5F9;
    color: #0F172A !important;
}

.saas-reply-btn:hover {
    color: #2563EB !important;
}

.gramala-form-input {
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #0F172A;
}

.gramala-form-input::placeholder {
    color: #94A3B8;
    opacity: 1;
}

.gramala-form-input:focus {
    background-color: #FFFFFF;
    border-color: #3B82F6;
    color: #0F172A;
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.15);
}

.gramala-sidebar-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
}

.gramala-sidebar-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    color: #0F172A;
}

.recent-post-link {
    color: #0F172A;
    transition: color 0.15s ease-in-out;
}

.recent-post-link:hover {
    color: #2563EB;
}

.gramala-sidebar-cta {
    background-color: #0F172A;
    border: 1px solid #0F172A;
    color: #FFFFFF !important;
    transition: background-color 0.15s ease-in-out;
}

.gramala-sidebar-cta:hover {
    background-color: #1E293B;
    border-color: #1E293B;
    color: #FFFFFF !important;
}

.gramala-sidebar-cta:focus,
.gramala-sidebar-cta:focus-visible {
    background-color: #1E293B;
    border-color: #3B82F6;
    color: #FFFFFF !important;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.35);
}

.gramala-sidebar-cta:active,
.gramala-sidebar-cta.active {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    color: #FFFFFF !important;
}

.gramala-footer-block {
    background-color: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #475569;
}

.gramala-footer-block .gramala-footer-logo {
    max-width: 44px;
    height: auto;
    object-fit: contain;
}

.gramala-footer-block .gramala-footer-brand-name {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.gramala-footer-block .gramala-footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
    max-width: 320px;
}

.gramala-footer-block .gramala-footer-heading {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gramala-footer-block .gramala-footer-icon {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-nav-link {
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-nav-link:hover {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-contact-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5;
}

.gramala-footer-block .gramala-footer-contact-link {
    font-size: 0.875rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-contact-link:hover {
    color: #2563EB;
}

.gramala-footer-block .gramala-footer-wa-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0D9488;
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    background-color: #CCFBF1;
    border-radius: 8px;
    border: 1px solid rgba(13, 148, 136, 0.2);
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-wa-link .gramala-footer-icon {
    color: #0D9488;
}

.gramala-footer-block .gramala-footer-wa-link:hover {
    background-color: #99F6E4;
    color: #0F766E;
}

.gramala-footer-block .gramala-footer-bottom {
    border-top-color: #E2E8F0 !important;
}

.gramala-footer-block .gramala-footer-copy {
    font-size: 0.8125rem;
    color: #64748B;
}

.gramala-footer-block .gramala-footer-legal-link {
    font-size: 0.8125rem;
    color: #64748B;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.gramala-footer-block .gramala-footer-legal-link:hover {
    color: #0F172A;
}

@media (max-width: 767.98px) {
    .gramala-detail-hero .gramala-detail-title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .gramala-detail-hero .gramala-detail-lead {
        font-size: 0.875rem;
    }

    .gramala-rendered-prose h2 {
        font-size: 1rem;
    }

    .gramala-rendered-prose h3 {
        font-size: 0.875rem;
    }

    .gramala-detail-content-area .gramala-featured-media {
        height: 220px;
    }
}