:root {
    --bg: #ffffff;
    --text: #0b1220;
    --muted: #5f6b7a;
    --border: rgba(12, 18, 28, 0.10);

    --brand: #06316a;
    --brand-dark: #052754;
    --brand-soft: rgba(6, 49, 106, 0.10);

    --accent: #009a5c;
    --accent-dark: #007a49;
    --accent-soft: rgba(0, 154, 92, 0.14);

    --card: #ffffff;

    --radius: 16px;
    --shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
    --shadow-soft: 0 10px 22px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    background:
        radial-gradient(1200px 500px at 50% -200px, rgba(6, 49, 106, 0.14), rgba(255,255,255,0) 60%),
        radial-gradient(900px 400px at 90% 0px, rgba(0, 154, 92, 0.10), rgba(255,255,255,0) 55%),
        #ffffff;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    font-size: 11pt;
    color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: min(1440px, calc(100% - 56px));
    margin: 0 auto;
}

/* Warning banner */
.asset-warning {
    display: none;
    position: sticky;
    top: 0;
    z-index: 60;
    background: #fff4e5;
    border-bottom: 1px solid rgba(255, 153, 0, 0.35);
    color: #5a3b00;
}

.asset-warning-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
}

.asset-warning-title {
    font-weight: 900;
    font-size: 10.5pt;
    margin: 0 0 2px 0;
}

.asset-warning-text {
    margin: 0;
    font-size: 10.5pt;
    line-height: 1.45;
    color: rgba(90, 59, 0, 0.90);
}

.asset-warning-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.asset-warning-btn {
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid rgba(90, 59, 0, 0.25);
    background: rgba(255,255,255,0.85);
    font-weight: 900;
    font-size: 10pt;
    cursor: pointer;
    white-space: nowrap;
}

.asset-warning-btn:hover {
    background: rgba(255,255,255,1);
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.logo-img {
    height: 84px;
    width: auto;
}

.logo-text {
    color: var(--brand);
    font-size: 12pt;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 6px 0;
    z-index: 120;
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 14px;
    font-size: 10.5pt;
    color: var(--text);
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(6, 49, 106, 0.06);
}

@media (hover: hover) {
    .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
    }
}

.btn {
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.90);
    font-weight: 900;
    font-size: 10.5pt;
    cursor: pointer;
    transition: transform 0.12s ease-in-out, box-shadow 0.12s ease-in-out, background 0.12s ease-in-out, border-color 0.12s ease-in-out;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--brand);
    border-color: rgba(255,255,255,0.14);
    color: #fff;
}

.btn-primary:hover {
    background: var(--brand-dark);
}

.btn-outline {
    background: rgba(255,255,255,0.70);
}

.btn-link {
    border-color: transparent;
    background: transparent;
    color: var(--muted);
    box-shadow: none;
    padding-left: 8px;
    padding-right: 8px;
}

.btn-link:hover {
    transform: none;
    box-shadow: none;
    color: var(--text);
}

.btn-orange {
    background: #ff7a1a;
    border-color: #ff7a1a;
    color: #ffffff;
}

.btn-orange:hover {
    background: #e66812;
    border-color: #e66812;
}
.btn-green {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.btn-green:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}
/* Language switch */
.lang-switch{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.75);
}

.lang-btn{
    appearance: none;
    border: 1px solid rgba(12, 18, 28, 0.10);
    background: rgba(255,255,255,0.90);
    cursor: pointer;
    padding: 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.12s ease-in-out, background 0.12s ease-in-out, border-color 0.12s ease-in-out;
}

.lang-btn:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,1);
    border-color: rgba(12, 18, 28, 0.18);
}

.lang-btn.active{
    background: rgba(6, 49, 106, 0.12);
    border-color: rgba(6, 49, 106, 0.35);
}

.flag{
    width: 18px;
    height: 13px;
    display: block;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(12, 18, 28, 0.12);
}

/* HERO */
.hero {
    padding: 68px 0 44px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.45fr;
    gap: 44px;
    align-items: start;   /* CHANGE THIS */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(6, 49, 106, 0.18);
    background: rgba(6, 49, 106, 0.06);
    color: rgba(6, 49, 106, 0.95);
    font-weight: 900;
    font-size: 10pt;
    margin-bottom: 12px;
    width: fit-content;
}

.hero h1 {
    font-size: 23pt;
    line-height: 1.12;
    margin: 0;
    letter-spacing: -0.6px;
    color: var(--brand);
}

.hero-tagline {
    margin-top: 12px;
    font-size: 11.8pt;
    line-height: 1.6;
    color: var(--muted);
    max-width: 75ch;
    font-weight: 500;
}

.hero-tagline strong {
    color: rgba(11, 18, 32, 0.92);
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-cta .btn {
    font-size: 10pt;
    padding: 10px 14px;
}

.hero-note {
    margin-top: 10px;
    color: var(--muted);
    font-size: 10.5pt;
    line-height: 1.6;
}

.hero-proof {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.proof-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
    line-height: 1.6;
    font-size: 11pt;
}

.check {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: var(--accent-soft);
    border: 1px solid rgba(0, 154, 92, 0.30);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 2px;
}

.check svg {
    width: 14px;
    height: 14px;
}

/* Screenshot / carousel card */
.screenshot-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(12, 18, 28, 0.10);
    background: var(--card);
    box-shadow: var(--shadow);
}

.screenshot-topbar {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(12, 18, 28, 0.08);
    background: linear-gradient(180deg, rgba(6, 49, 106, 0.06), rgba(255,255,255,0));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: rgba(6, 49, 106, 0.95);
    font-size: 10.5pt;
}

.carousel-dots {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.carousel-dot-btn {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(12, 18, 28, 0.18);
    border: 0;
    padding: 0;
    cursor: pointer;
}

.carousel-dot-btn.active {
    background: rgba(6, 49, 106, 0.85);
}

.carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 16 / 10;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.carousel-caption {
    padding: 10px 14px;
    border-top: 1px solid rgba(12, 18, 28, 0.08);
    background: rgba(255,255,255,0.92);
    color: var(--muted);
    font-size: 10.5pt;
    line-height: 1.5;
    min-height: 48px;   /* ADD THIS */
}

/* Sections */
.section {
    padding: 58px 0;
    border-top: 1px solid rgba(12, 18, 28, 0.08);
    scroll-margin-top: 120px;
}

.section-title {
    margin: 0;
    font-size: 19pt;
    letter-spacing: -0.2px;
}

.section-subtitle {
    margin: 10px 0 0 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 92ch;
    font-size: 11.5pt;
}

.grid-3 {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.card {
    border: 1px solid rgba(12, 18, 28, 0.10);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow-soft);
    padding: 16px;
}

.card-title {
    font-weight: 900;
    margin: 0 0 8px 0;
    font-size: 12pt;
}

.card-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 11pt;
}

.steps {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.step {
    border: 1px solid rgba(12, 18, 28, 0.10);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(6, 49, 106, 0.05), rgba(255,255,255,0));
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(6, 49, 106, 0.10);
    border: 1px solid rgba(6, 49, 106, 0.20);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: rgba(6, 49, 106, 0.95);
    margin-bottom: 10px;
}

.step-title {
    font-weight: 900;
    margin: 0 0 6px 0;
    font-size: 12pt;
}

.step-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 11pt;
}

.quote-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.quote {
    border: 1px solid rgba(12, 18, 28, 0.10);
    border-radius: var(--radius);
    background: var(--card);
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.quote p {
    margin: 0;
    color: rgba(11, 18, 32, 0.90);
    line-height: 1.65;
    font-size: 11pt;
}

.quote .who {
    margin-top: 10px;
    color: var(--muted);
    font-size: 10.5pt;
    font-weight: 700;
}

.feature-box {
    margin-top: 18px;
    border: 1px solid rgba(12, 18, 28, 0.10);
    border-radius: var(--radius);
    padding: 18px;
    background: linear-gradient(180deg, rgba(0, 154, 92, 0.08), rgba(255,255,255,0));
}

.feature-box-title {
    font-weight: 900;
    font-size: 12pt;
    margin: 0 0 8px 0;
    color: var(--text);
}

.feature-box-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 11pt;
    max-width: 95ch;
}

/* Pricing */
.pricing-wrap {
    margin-top: 24px;
    border: 1px solid rgba(12, 18, 28, 0.10);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow);
}

.pricing-header {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(12, 18, 28, 0.10);
    background: linear-gradient(180deg, rgba(6, 49, 106, 0.06), rgba(255,255,255,0));
}

.pricing-header p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    max-width: 82ch;
}

.pricing-notes {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 10.5pt;
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(12, 18, 28, 0.12);
    border-radius: 999px;
    padding: 4px;
    gap: 6px;
    background: rgba(255,255,255,0.70);
}

.toggle-btn {
    border: 0;
    background: transparent;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
    color: var(--muted);
    font-size: 10.5pt;
    cursor: pointer;
}

.toggle-btn.active {
    background: var(--brand);
    color: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(12, 18, 28, 0.10);
    text-align: left;
    vertical-align: top;
}

th {
    font-size: 10.5pt;
    color: var(--muted);
    font-weight: 900;
    background: rgba(6, 49, 106, 0.04);
}

.plan-title {
    font-weight: 900;
    font-size: 12pt;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    font-size: 9.5pt;
    font-weight: 900;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(0, 154, 92, 0.14);
    color: rgba(0, 120, 72, 1);
    border: 1px solid rgba(0, 154, 92, 0.28);
}

.plan-sub {
    margin-top: 6px;
    color: var(--muted);
    font-size: 10.5pt;
}

.features {
    color: var(--muted);
    line-height: 1.6;
}

.price {
    font-weight: 900;
    font-size: 12.5pt;
    white-space: nowrap;
}

.per {
    font-size: 10.5pt;
    color: var(--muted);
    margin-left: 6px;
}

tr.popular-row td {
    background: rgba(6, 49, 106, 0.03);
}

tr.popular-row td:first-child {
    border-left: 4px solid var(--brand);
}

.cta {
    padding: 18px;
    border-top: 1px solid rgba(12, 18, 28, 0.10);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.cta h3 {
    margin: 0 0 6px 0;
    font-size: 12.5pt;
    font-weight: 900;
}

.cta p {
    margin: 0;
    color: var(--muted);
}

/* Final CTA */
.final-cta {
    padding: 58px 0;
    border-top: 1px solid rgba(12, 18, 28, 0.08);
}

.final-cta-card {
    border: 1px solid rgba(12, 18, 28, 0.10);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(6, 49, 106, 0.06), rgba(255,255,255,0));
    box-shadow: var(--shadow);
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.final-cta-title {
    margin: 0 0 6px 0;
    font-weight: 900;
    font-size: 14pt;
}

.final-cta-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.final-cta-note {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 10.5pt;
}

/* Footer */
footer {
    border-top: 1px solid rgba(12, 18, 28, 0.10);
    padding: 22px 0;
    color: var(--muted);
    font-size: 10pt;
    background: rgba(255,255,255,0.65);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--text);
}

.contact-block {
    line-height: 1.6;
}

.contact-block strong {
    color: var(--text);
}

/* Change company type button */
.change-company-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: #ff7a1a;
    border: 1px solid #ff7a1a;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 10pt;
    cursor: pointer;
    transition: transform 0.12s ease-in-out, background 0.12s ease-in-out;
    text-decoration: none;
}

.change-company-btn:hover {
    background: #e66812;
    border-color: #e66812;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.change-company-main {
    font-weight: 900;
    font-size: 10.5pt;
    color: #ffffff !important;
}

.change-company-current {
    font-weight: 600;
    font-size: 9pt;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-top: 2px;
}

/* Modals */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(11, 18, 32, 0.75);
    backdrop-filter: blur(8px);
    padding: 20px;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    width: min(480px, 100%);
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(12, 18, 28, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.20);
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

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

.modal-header {
    padding: 24px 24px 16px 24px;
    border-bottom: none;
    background: linear-gradient(135deg, rgba(6, 49, 106, 0.08), rgba(0, 154, 92, 0.06));
    font-weight: 900;
    font-size: 16pt;
    color: var(--brand);
    text-align: center;
    line-height: 1.3;
}

.modal-body {
    padding: 20px 24px 24px 24px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 11.5pt;
    text-align: center;
}

.modal-actions {
    padding: 0 24px 24px 24px;
    border-top: none;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Company Type Modal Specific */
#companyTypeModalOverlay .modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

#companyTypeModalOverlay .btn {
    padding: 20px 24px;
    border-radius: 16px;
    font-size: 11.5pt;
    font-weight: 900;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

#companyTypeModalOverlay .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

#companyTypeModalOverlay .btn:hover::before {
    opacity: 1;
}

#companyTypeModalOverlay .btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border: 2px solid var(--brand);
    box-shadow: 0 8px 24px rgba(6, 49, 106, 0.25);
}

#companyTypeModalOverlay .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(6, 49, 106, 0.35);
}

#companyTypeModalOverlay .btn-outline {
    background: #ffffff;
    border: 2px solid var(--border);
    color: var(--text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

#companyTypeModalOverlay .btn-outline:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
    box-shadow: 0 8px 24px rgba(6, 49, 106, 0.15);
}

#companyTypeModalOverlay .btn::after {
    content: '→';
    font-size: 18pt;
    font-weight: 900;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease-in-out;
}

#companyTypeModalOverlay .btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* At-a-Glance Modal Styles */
#atGlanceModal .modal {
    width: min(1200px, 92%);
    max-width: 1200px;
}

.at-glance-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.at-glance-header-content {
    flex: 1;
}

.at-glance-title {
    font-size: 14pt;
    font-weight: 900;
    color: var(--brand);
    margin: 0;
}

.at-glance-subtitle {
    font-size: 10.5pt;
    color: var(--muted);
    margin: 4px 0 0 0;
}

.at-glance-close {
    font-size: 24pt;
    line-height: 1;
    padding: 4px 12px;
    cursor: pointer;
    color: var(--muted);
    flex-shrink: 0;
}

.at-glance-close:hover {
    color: var(--text);
}

.at-glance-image-container {
    position: relative;
    background: linear-gradient(180deg, rgba(6, 49, 106, 0.03), rgba(255,255,255,0));
    border-radius: 12px;
    overflow: hidden;
    margin: 16px;
}

.at-glance-image {
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: contain;
    display: block;
}

.at-glance-description {
    margin: 0 16px 16px 16px;
    line-height: 1.65;
    color: var(--text);
    font-size: 12pt;
    padding: 16px;
    background: rgba(6, 49, 106, 0.04);
    border-radius: 12px;
    border-left: 3px solid var(--brand);
    text-align: left;   /* footer only */
}

.at-glance-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.at-glance-progress {
    font-size: 10pt;
    color: var(--muted);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 19pt; }
    .grid-3 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .quote-grid { grid-template-columns: 1fr; }
    .logo-text { display: none; }
}

@media (max-width: 768px) {
    #atGlanceModal .modal {
        width: 98%;
        margin: 10px;
    }

    .at-glance-title {
        font-size: 11pt;
    }

    .at-glance-subtitle {
        font-size: 9.5pt;
    }

    .at-glance-image {
        max-height: 45vh;
    }

    .at-glance-description {
        font-size: 10pt;
        padding: 12px;
        margin: 0 12px 12px 12px;
    }

    .at-glance-close {
        font-size: 20pt;
        padding: 2px 8px;
    }

    .at-glance-nav .btn {
        font-size: 9.5pt;
        padding: 8px 12px;
    }

    .at-glance-progress {
        font-size: 9pt;
    }

    .modal-header {
        padding: 24px 20px 16px 20px;
        font-size: 16pt;
    }

    .modal-body {
        padding: 20px;
        font-size: 10.5pt;
    }

    .modal-actions {
        padding: 0 20px 24px 20px;
    }
}

@media (max-width: 600px) {
    #companyTypeModalOverlay .modal-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container { width: min(1440px, calc(100% - 28px)); }
    .logo-img { height: 54px; }
}
/* ═══════════════════════════════════════════════════════
   CRANE MODAL STYLES
═══════════════════════════════════════════════════════ */

#craneModalContainer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
}

#craneOverlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: linear-gradient(180deg,
        rgba(3,10,24,0.91) 0%,
        rgba(4,13,30,0.86) 55%,
        rgba(3,10,24,0.95) 100%
    );
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    opacity: 0;
    animation: craneFadeIn 0.8s ease 0.05s forwards;
    pointer-events: auto;
}

#craneOverlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        rgba(245,196,0,0.22) 20%,
        rgba(245,196,0,0.60) 50%,
        rgba(245,196,0,0.22) 80%,
        transparent
    );
}

@keyframes craneFadeIn {
    to { opacity: 1; }
}

/* ─── CRANE SVG ─────────────────────────────────────── */
#craneSvg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1100;
    pointer-events: none;
    overflow: visible;
    opacity: 0;
    animation: craneUp 1.1s cubic-bezier(0.16,1,0.30,1) 0.20s forwards;
}

@keyframes craneUp {
    0% {
        opacity: 0;
        transform: translateY(32px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── MODAL WRAPPER ─────────────────────────────────── */
#craneModalWrap {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(118%);
    width: 100%;
    max-width: 520px;
    padding: 0 20px;
    z-index: 1080;
    animation: craneHoist 5.0s cubic-bezier(0.06,0.96,0.18,1.04) 1.1s both;
    pointer-events: auto;
}

@keyframes craneHoist {
    0% { transform: translateX(-50%) translateY(118%); }
    44% { transform: translateX(-50%) translateY(-62px); }
    58% { transform: translateX(-50%) translateY(22px); }
    70% { transform: translateX(-50%) translateY(-32px); }
    80% { transform: translateX(-50%) translateY(10px); }
    88% { transform: translateX(-50%) translateY(-15px); }
    94% { transform: translateX(-50%) translateY(4px); }
    100% { transform: translateX(-50%) translateY(-58px); }
}

/* ─── MODAL ─────────────────────────────────────────── */
#craneModal {
    background: var(--card);
    border-radius: 22px 22px 0 0;
    border: 1px solid rgba(12,18,28,0.07);
    border-bottom: none;
    box-shadow:
        0 -28px 100px rgba(6,49,106,0.26),
        0 -6px 24px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,1);
    position: relative;
    overflow: visible;
    animation: craneSway 5.0s ease 1.1s both;
}

@keyframes craneSway {
    0% { transform: rotate(0deg); }
    14% { transform: rotate(-2.6deg); }
    32% { transform: rotate(2.0deg); }
    50% { transform: rotate(-1.3deg); }
    63% { transform: rotate(0.75deg); }
    74% { transform: rotate(-0.42deg); }
    83% { transform: rotate(0.22deg); }
    91% { transform: rotate(-0.10deg); }
    100% { transform: rotate(0deg); }
}

#craneModalInner {
    border-radius: 22px 22px 0 0;
    overflow: hidden;
    position: relative;
}

/* Hazard stripe at top */
#craneModalInner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(90deg,
        #F5C400 0,
        #F5C400 22px,
        var(--brand) 22px,
        var(--brand) 40px
    );
    z-index: 2;
}

/* ─── MODAL CONTENT ─────────────────────────────────── */
.crane-inner {
    padding: 42px 40px 48px;
}

.crane-eyebrow {
    text-align: center;
    font-size: 12pt;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: none;
    color: var(--brand);
    margin: 12px 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.greeting-word {
    display: inline-block;
    animation: greetingFade 8s ease-in-out infinite;
    opacity: 0.85;
}

.greeting-word:nth-child(1) { animation-delay: 0s; }
.greeting-word:nth-child(3) { animation-delay: 0.3s; }
.greeting-word:nth-child(5) { animation-delay: 0.6s; }
.greeting-word:nth-child(7) { animation-delay: 0.9s; }
.greeting-word:nth-child(9) { animation-delay: 1.2s; }
.greeting-word:nth-child(11) { animation-delay: 1.5s; }

.greeting-separator {
    color: rgba(6, 49, 106, 0.3);
    font-size: 8pt;
}

@keyframes greetingFade {
    0%, 100% { opacity: 0.85; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
}

/* Remove the ::before and ::after from crane-eyebrow */
.crane-eyebrow::before,
.crane-eyebrow::after {
    display: none;
}
.crane-title {
    font-size: 18pt;
    font-weight: 900;
    color: var(--brand);
    line-height: 1.1;
    text-align: center;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}

.crane-sub {
    font-size: 11pt;
    color: var(--muted);
    text-align: center;
    line-height: 1.65;
    margin-bottom: 6px;
}

.crane-note {
    font-size: 9.5pt;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
    margin-bottom: 30px;
}

.crane-note strong {
    color: var(--text);
    font-weight: 700;
}

.crane-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.crane-btn {
    border: 2px solid var(--border);
    background: #f6f8fb;
    border-radius: var(--radius);
    padding: 22px 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.22s ease;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    font-size: 10.5pt;
    font-weight: 900;
    color: var(--text);
    text-align: center;
    line-height: 1.35;
}

.crane-btn:hover {
    border-color: var(--brand);
    background: rgba(6,49,106,0.06);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(6,49,106,0.14);
}

.crane-ico {
    font-size: 50px;
    line-height: 1;
    transition: transform 0.22s ease;
    filter: drop-shadow(0 3px 7px rgba(0,0,0,0.10));
}

.crane-btn:hover .crane-ico {
    transform: scale(1.15) translateY(-3px);
}

.crane-btn-prim {
    background: linear-gradient(145deg, var(--brand), var(--brand-dark));
    border-color: var(--brand);
    color: #fff;
    box-shadow: 0 8px 28px rgba(6,49,106,0.25);
}

.crane-btn-prim:hover {
    background: linear-gradient(145deg, #0a3e84, var(--brand-dark));
    box-shadow: 0 15px 38px rgba(6,49,106,0.36);
}

/* ─── PULLEY SPIN ─────────────────────────────────────── */
#cranePulley {
    transform-box: fill-box;
    transform-origin: center;
    animation: cranePulleySpin 5.0s linear 1.1s both;
}

@keyframes cranePulleySpin {
    to { transform: rotate(-900deg); }
}

/* ─── DUST PARTICLES ─────────────────────────────────── */
.crane-dust {
    position: fixed;
    bottom: 0;
    border-radius: 50%;
    background: rgba(245,196,0,0.48);
    z-index: 1200;
    pointer-events: none;
    animation: craneDustUp var(--d, 2s) ease var(--dl, 0s) forwards;
}

@keyframes craneDustUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    70% {
        opacity: 0.28;
    }
    100% {
        transform: translateY(-45vh) scale(0.15);
        opacity: 0;
    }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 600px) {
    #craneModalWrap {
        max-width: 100%;
        padding: 0 16px;
    }

    .crane-inner {
        padding: 32px 24px 36px;
    }

    .crane-title {
        font-size: 18pt;
    }

    .crane-actions {
        grid-template-columns: 1fr;
    }

    .crane-btn {
        padding: 20px 16px;
    }
}
/* Demo Form Styles */
.demo-form {
    text-align: left;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 10.5pt;
    color: var(--text);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 11pt;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(6, 49, 106, 0.10);
}

.form-input::placeholder {
    color: var(--muted);
    opacity: 0.7;
}

.form-error {
    margin-top: 16px;
    padding: 12px 14px;
    background: rgba(220, 38, 38, 0.10);
    border: 1px solid rgba(220, 38, 38, 0.30);
    border-radius: 10px;
    color: #dc2626;
    font-size: 10.5pt;
    line-height: 1.5;
}

.form-success {
    text-align: center;
    padding: 20px;
}

.form-success h4 {
    margin: 0 0 10px 0;
    color: var(--accent);
    font-size: 14pt;
}

.form-success p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}
/* ============================================
   COOKIE CONSENT BANNER STYLES
   Add this to your landing.css file
   ============================================ */

.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: calc(100% - 40px);
    background: #1a1a2e;
    color: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    padding: 28px;
    z-index: 10000; /* Higher than everything else */
    animation: cookieSlideUp 0.4s ease-out;
}

@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cookie-banner-content {
    /* Container - no special styling needed */
}

.cookie-icon {
    width: 56px;
    height: 56px;
    background: #F5C400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(245, 196, 0, 0.3);
}

.cookie-title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 14px;
    color: white;
}

.cookie-text {
    font-size: 1em;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 20px;
}

.cookie-benefits {
    background: rgba(245, 196, 0, 0.1);
    border-left: 3px solid #F5C400;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #eee;
    font-size: 0.95em;
    line-height: 1.5;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-check {
    color: #F5C400;
    font-weight: bold;
    font-size: 1.1em;
    flex-shrink: 0;
}

.cookie-privacy-guarantee {
    background: rgba(0, 168, 107, 0.15);
    border: 2px solid rgba(0, 168, 107, 0.5);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.guarantee-lock {
    font-size: 24px;
    flex-shrink: 0;
}

.guarantee-text {
    color: #fff;
    font-weight: 600;
    font-size: 0.95em;
    line-height: 1.5;
}

.guarantee-text strong {
    color: #F5C400;
}
/* ============================================
   COOKIE CONSENT BANNER STYLES
   ============================================ */

/* Blocking overlay that prevents interaction with page */
.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 150px;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cookie-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #00a86b 0%, #00c878 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.4);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.5);
}

.cookie-btn-essential {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-essential:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-deny {
    background: transparent;
    color: #bbb;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-deny:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ddd;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: none;
        width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 24px 20px;
        transform: none; /* ← ADD THIS LINE */
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        min-width: auto;
    }
}
header .btn-link,
header .btn-outline,
header .btn-primary {
    font-weight: 650;
}