@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@600;700&display=swap');

:root {
    --color-primary: #0A6CF1;
    --color-secondary: #0EBE7F;
    --color-accent: #FFB020;
    --color-dark: #0F172A;
    --color-light: #F5F7FB;
    --color-muted: #64748B;
    --color-border: rgba(15, 23, 42, 0.12);
    --color-surface: #FFFFFF;
    --shadow-soft: 0 24px 48px rgba(15, 23, 42, 0.08);
    --shadow-light: 0 12px 24px rgba(15, 23, 42, 0.06);
    --radius-large: 24px;
    --radius-medium: 16px;
    --radius-small: 12px;
    --font-base: 'Inter', sans-serif;
    --font-heading: 'Manrope', sans-serif;
    --transition: all 0.3s ease;
}

body[data-theme="dark"] {
    --color-surface: #0F172A;
    --color-light: #111C31;
    --color-dark: #E2E8F0;
    --color-muted: #94A3B8;
    --color-border: rgba(148, 163, 184, 0.16);
    background-color: #0B1220;
    color: #E2E8F0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-base);
    font-weight: 400;
    line-height: 1.7;
    background-color: var(--color-light);
    color: var(--color-dark);
    transition: background-color 0.4s ease, color 0.4s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-medium);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

section.section {
    padding: clamp(72px, 10vw, 120px) 0;
    position: relative;
}

.section-header {
    max-width: 720px;
    margin-bottom: clamp(32px, 6vw, 56px);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 6vw, 44px);
    margin: 0 0 16px;
    line-height: 1.2;
}

.section-header p {
    margin: 0;
    color: var(--color-muted);
    font-size: 18px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(245, 247, 251, 0.95);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--color-border);
    transition: background 0.4s ease, border-color 0.3s ease;
}

body[data-theme="dark"] .site-header {
    background: rgba(11, 18, 32, 0.95);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-dark);
}

.brand-name {
    display: none;
}

.logo {
    max-width: 50px;
    height: auto;
    border-radius: 0;
}

.footer-logo {
    max-width: 100px;
    height: auto;
    border-radius: 0;
}

.desktop-nav {
    display: none;
}

.desktop-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 500;
    color: var(--color-dark);
    transition: background-color 0.2s ease;
}

body[data-theme="dark"] .nav-link {
    color: #E2E8F0;
}

.nav-link:hover {
    background-color: rgba(10, 108, 241, 0.1);
}

.nav-link.active {
    background: var(--color-primary);
    color: #fff;
    box-shadow: var(--shadow-light);
}

.theme-toggle {
    background: rgba(10, 108, 241, 0.12);
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

body[data-theme="dark"] .theme-toggle {
    background: rgba(14, 190, 127, 0.16);
    color: var(--color-secondary);
}

.theme-toggle:hover {
    transform: translateY(-2px);
}

.theme-toggle-track {
    width: 36px;
    height: 20px;
    border-radius: 999px;
    background: rgba(10, 108, 241, 0.16);
    position: relative;
    transition: background 0.3s ease;
}

body[data-theme="dark"] .theme-toggle-track {
    background: rgba(14, 190, 127, 0.2);
}

.theme-toggle-indicator {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary);
    transition: left 0.3s ease, background 0.3s ease;
}

body[data-theme="dark"] .theme-toggle-indicator {
    left: 18px;
    background: var(--color-secondary);
}

.theme-toggle-text {
    font-size: 14px;
}

.burger {
    display: flex;
    flex-direction: column;
    width: 46px;
    height: 46px;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

body[data-theme="dark"] .burger {
    background: rgba(15, 23, 42, 0.6);
}

.burger span {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: var(--color-dark);
    border-radius: 999px;
    transition: background 0.3s ease;
}

body[data-theme="dark"] .burger span {
    background: #E2E8F0;
}

.nav-toggle {
    display: none;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.96);
    z-index: 998;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    justify-content: flex-end;
}

.nav-toggle:checked ~ .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-inner {
    width: min(320px, 80vw);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: #E2E8F0;
}

.close-menu {
    align-self: flex-end;
    font-size: 28px;
    cursor: pointer;
    color: #E2E8F0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    font-size: 20px;
    color: #CBD5F5;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.mobile-nav-link.active {
    color: #fff;
}

.mobile-meta {
    font-size: 16px;
    line-height: 1.6;
}

.mobile-meta a {
    color: #fff;
}

.hero {
    padding-top: clamp(96px, 12vw, 140px);
}

.hero-grid {
    display: grid;
    gap: clamp(36px, 6vw, 72px);
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 8vw, 52px);
    margin: 0 0 16px;
    line-height: 1.15;
}

.hero-content p {
    margin: 0 0 24px;
    font-size: 18px;
    color: var(--color-muted);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.metric {
    padding: 20px 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-light);
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.metric-label {
    font-size: 15px;
    color: var(--color-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(10, 108, 241, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    background: rgba(10, 108, 241, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(10, 108, 241, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

body[data-theme="dark"] .btn-secondary {
    background: rgba(14, 190, 127, 0.15);
    border-color: rgba(14, 190, 127, 0.4);
    color: var(--color-secondary);
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.visual-overlay,
.data-overlay {
    position: absolute;
    inset: auto 24px 24px 24px;
    padding: 24px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    border-radius: var(--radius-medium);
    backdrop-filter: blur(12px);
}

.visual-overlay h3,
.data-overlay h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.visual-overlay ul,
.data-overlay p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
    padding-left: 18px;
}

.grid {
    display: grid;
}

.insights-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.insight-card {
    padding: 32px;
    border-radius: var(--radius-medium);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-6px);
}

.insight-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-family: var(--font-heading);
}

.insight-card p {
    margin: 0 0 16px;
    color: var(--color-muted);
}

.insight-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--color-dark);
}

.service-grid {
    gap: clamp(32px, 6vw, 64px);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.service-intro {
    display: grid;
    gap: 20px;
}

.service-intro h2 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 6vw, 40px);
    margin: 0;
}

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

.service-columns {
    display: grid;
    gap: 24px;
}

.service-card {
    padding: 28px;
    border-radius: var(--radius-medium);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-light);
}

.service-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 22px;
}

.service-card p {
    margin: 0 0 16px;
    color: var(--color-muted);
}

.service-card ul {
    margin: 0;
    padding-left: 20px;
}

.sector-grid {
    gap: clamp(32px, 6vw, 68px);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.sector-stats {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.sector-stat {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(10, 108, 241, 0.08);
}

.sector-stat:nth-child(2) {
    background: rgba(14, 190, 127, 0.12);
}

.sector-stat:nth-child(3) {
    background: rgba(255, 176, 32, 0.12);
}

.sector-stat .stat-value {
    font-family: var(--font-heading);
    font-size: 28px;
}

.timeline {
    display: grid;
    gap: 24px;
}

.timeline-step {
    display: grid;
    grid-template-columns: minmax(120px, 160px) 1fr;
    gap: 24px;
    padding: 28px;
    border-radius: var(--radius-medium);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-light);
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(10, 108, 241, 0.16);
    font-weight: 600;
    color: var(--color-primary);
    height: fit-content;
}

.timeline-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-family: var(--font-heading);
}

.timeline-content p {
    margin: 0 0 12px;
    color: var(--color-muted);
}

.data-grid {
    gap: clamp(32px, 6vw, 68px);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.data-list {
    margin: 24px 0;
    padding-left: 20px;
}

.runway-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.runway-card {
    padding: 28px;
    border-radius: var(--radius-medium);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-light);
}

.runway-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 22px;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.faq-item {
    padding: 24px;
    border-radius: var(--radius-medium);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-light);
}

.faq-item h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-family: var(--font-heading);
}

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

.contact-grid {
    gap: clamp(32px, 6vw, 60px);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: start;
}

.contact-details p,
.contact-content p {
    color: var(--color-muted);
}

.contact-form-wrapper {
    padding: clamp(24px, 4vw, 32px);
    background: var(--color-surface);
    border-radius: var(--radius-large);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.lead-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    font-weight: 600;
    font-size: 15px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    background: var(--color-light);
    font-family: var(--font-base);
    font-size: 16px;
    color: var(--color-dark);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

body[data-theme="dark"] .form-field input,
body[data-theme="dark"] .form-field textarea {
    background: #111C31;
    color: #E2E8F0;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(10, 108, 241, 0.15);
}

.form-field input.is-valid,
.form-field textarea.is-valid {
    border-color: var(--color-secondary);
}

.form-field input.is-invalid,
.form-field textarea.is-invalid {
    border-color: #F97316;
}

.form-hint {
    margin: 0;
    font-size: 13px;
    color: var(--color-muted);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--color-muted);
}

.form-consent input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.site-footer {
    background: var(--color-dark);
    color: #E2E8F0;
    padding: 72px 0 32px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: start;
}

.footer-brand p {
    margin: 0 0 12px;
    color: rgba(226, 232, 240, 0.78);
}

.footer-menu,
.footer-legal {
    display: grid;
    gap: 16px;
}

.footer-menu h4,
.footer-legal h4 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 18px;
}

.footer-menu ul,
.footer-legal ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-menu a,
.footer-legal a {
    color: rgba(226, 232, 240, 0.78);
    font-size: 15px;
}

.footer-bottom {
    margin-top: 32px;
    text-align: center;
    font-size: 14px;
    color: rgba(226, 232, 240, 0.6);
}

.cookie-banner {
    position: fixed;
    inset: auto 24px 24px;
    background: var(--color-surface);
    color: var(--color-dark);
    border-radius: var(--radius-medium);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    padding: 24px;
    width: min(420px, 94vw);
    z-index: 9999;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

body[data-theme="dark"] .cookie-banner {
    background: #111C31;
    color: #E2E8F0;
}

.cookie-banner.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.cookie-content {
    display: grid;
    gap: 16px;
}

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

.cookie-note {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-medium);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.cookie-table th,
.cookie-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
    background: rgba(10, 108, 241, 0.08);
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.legal-intro h1 {
    font-family: var(--font-heading);
    font-size: clamp(34px, 6vw, 46px);
    margin: 0 0 16px;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin: 0 0 12px;
}

.legal-section p,
.legal-section ul,
.legal-section table {
    color: var(--color-muted);
}

.legal-section ul {
    padding-left: 20px;
}

.summary-card {
    padding: clamp(28px, 5vw, 36px);
    border-radius: var(--radius-large);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.summary-card h2 {
    margin-top: 0;
    font-family: var(--font-heading);
}

.summary-list {
    display: grid;
    gap: 16px;
    margin: 0 0 24px;
}

.summary-list div {
    padding: 16px;
    border-radius: var(--radius-medium);
    background: rgba(10, 108, 241, 0.08);
}

.summary-list dt {
    font-weight: 600;
    margin-bottom: 6px;
}

.summary-list dd {
    margin: 0;
    color: var(--color-dark);
}

.next-steps-grid {
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.next-step {
    padding: 24px;
    border-radius: var(--radius-medium);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: var(--shadow-light);
}

.next-step h3 {
    margin-top: 0;
    font-size: 20px;
    font-family: var(--font-heading);
}

.about-values .values-grid,
.tech-grid,
.impact-grid,
.governance-grid,
.package-grid,
.detail-grid,
.delivery-grid,
.cta-grid,
.contact-info-grid,
.process-grid,
.contact-form-grid {
    gap: clamp(24px, 4vw, 48px);
    display: grid;
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.values-list {
    display: grid;
    gap: 20px;
}

.value-card,
.method-card,
.package-card,
.detail-content,
.detail-visual,
.delivery-card,
.process-card,
.contact-info,
.contact-hours {
    padding: 28px;
    border-radius: var(--radius-medium);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-light);
}

.value-card h3,
.method-card h3,
.package-card h3,
.delivery-card h3,
.process-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
}

.package-note {
    margin: 18px 0 0;
    font-size: 14px;
    color: var(--color-muted);
}

.contact-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-info ul,
.contact-hours ul,
.contact-list {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--color-muted);
}

.contact-hours p {
    margin: 12px 0 0;
    color: var(--color-muted);
}

.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(10, 108, 241, 0.4);
    border-radius: 4px;
}

body[data-theme="dark"] .insight-card,
body[data-theme="dark"] .service-card,
body[data-theme="dark"] .sector-stat,
body[data-theme="dark"] .timeline-step,
body[data-theme="dark"] .runway-card,
body[data-theme="dark"] .faq-item,
body[data-theme="dark"] .contact-form-wrapper,
body[data-theme="dark"] .value-card,
body[data-theme="dark"] .method-card,
body[data-theme="dark"] .package-card,
body[data-theme="dark"] .delivery-card,
body[data-theme="dark"] .process-card,
body[data-theme="dark"] .contact-info,
body[data-theme="dark"] .contact-hours,
body[data-theme="dark"] .summary-card,
body[data-theme="dark"] .next-step,
body[data-theme="dark"] .detail-content,
body[data-theme="dark"] .detail-visual {
    background: #111C31;
    border-color: rgba(148, 163, 184, 0.16);
    box-shadow: none;
}

body[data-theme="dark"] .metric {
    background: #111C31;
    border-color: rgba(148, 163, 184, 0.16);
}

body[data-theme="dark"] .metric-value {
    color: var(--color-secondary);
}

body[data-theme="dark"] .sector-stat {
    color: #E2E8F0;
}

body[data-theme="dark"] .summary-list dd,
body[data-theme="dark"] .summary-list div {
    color: #E2E8F0;
}

@media (min-width: 768px) {
    .brand-name {
        display: block;
    }

    .desktop-nav {
        display: block;
    }

    .burger {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-grid {
        grid-template-columns: 1fr 1.2fr;
    }

    .sector-grid {
        grid-template-columns: 1.1fr 1fr;
    }

    .data-grid {
        grid-template-columns: 1fr 1.1fr;
    }

    .detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .cookie-actions {
        flex-direction: column;
    }

    .cookie-banner {
        inset: auto 12px 12px;
        width: auto;
    }

    .timeline-step {
        grid-template-columns: 1fr;
    }

    .metric {
        padding: 18px;
    }
}