/* KREATIS / Foundations, navigation, content, forms, footer, responsive.
   All public custom styles live here; shared tokens are in tokens.css. */
body { background: var(--surface); }
.container { width: min(100% - 64px, 1200px); max-width: 1200px; margin-inline: auto; padding: 0; }
h1, h2, h3, h4 { color: var(--secondary); line-height: 1.2; margin: 0 0 20px; }
h1, h2 { font-weight: 600; letter-spacing: -.045em; }
h1 { font-size: clamp(38px, 4.7vw, 68px); }
h2 { font-size: clamp(30px, 3.3vw, 46px); }
h3 { font-size: 23px; font-weight: 700; letter-spacing: -.025em; }
h4 { font-size: 19px; font-weight: 700; }
p { color: var(--muted); margin: 0 0 20px; }
em { font-family: var(--font-display); font-weight: 400; color: var(--primary); }
a { transition: color var(--transition), background var(--transition), border-color var(--transition); }
a:hover { color: var(--primary-hover); text-decoration: none; }
.eyebrow { display: block; font-size: 11px; line-height: 1.5; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.kr-btn-primary, .kr-btn-secondary, .kr-btn-cta, .kr-order-btn, .kr-submit-btn, .kr-success-modal-action, .kr-nav-cta, .footer-cta-btn, .kr-mobile-cta {
  display: inline-flex; justify-content: center; align-items: center; gap: 16px; min-height: 48px; padding: 13px 23px;
  border: 1px solid var(--primary); border-radius: var(--radius-sm); background: var(--primary); color: #fff; font-weight: 700; font-size: 14px;
  text-decoration: none; cursor: pointer; transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.kr-btn-primary:hover, .kr-btn-cta:hover, .kr-order-btn:hover, .kr-submit-btn:hover, .kr-success-modal-action:hover, .kr-nav-cta:hover, .footer-cta-btn:hover, .kr-mobile-cta:hover { background: var(--primary-hover); border-color: var(--primary-hover); color: white; }
.kr-btn-secondary { background: transparent; border-color: var(--border); color: var(--text); }
.kr-btn-secondary:hover { border-color: var(--primary); background: #edf2fc; }
.kr-link-arrow, .kr-news-link { display: inline-flex; align-items: center; gap: 14px; min-height: 44px; color: var(--primary); font-size: 14px; font-weight: 800; text-decoration: none; }
.kr-link-arrow::after { content: '↗'; font-size: 22px; }
.kr-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Navigation */
.kr-header { position: sticky; top: 0; z-index: 100; background: var(--surface); border-bottom: 1px solid var(--border); }
.kr-nav-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.kr-nav-logo, .kr-mobile-brand { display: flex; align-items: center; gap: 10px; color: var(--secondary); text-decoration: none; }
.kr-nav-logo img, .kr-mobile-brand img { width: 45px; height: 52px; object-fit: contain; }
.kr-brand-name { font-size: 26px; font-weight: 800; letter-spacing: -.055em; line-height: 1; }
.kr-brand-name small { display: block; font-size: 9px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; margin-top: 7px; }
.kr-nav-menu > ul { display: flex; align-items: center; gap: 26px; padding: 0; margin: 0; list-style: none; }
.nav-item { position: relative; }
.nav-item > a { display: inline-block; padding: 29px 0; font-size: 13px; font-weight: 700; color: var(--muted); text-decoration: none; }
.nav-item > a[aria-current="page"] { color: var(--primary); box-shadow: inset 0 -2px var(--primary); }
.nav-item > a:hover { color: var(--primary); }
.kr-dropdown-toggle { margin-left: 3px; width: 28px; height: 38px; border: 0; background: transparent; color: var(--muted); font-size: 10px; cursor: pointer; }
.kr-nav-dropdown-menu { display: none; position: absolute; top: 100%; left: -16px; width: 270px; padding: 10px; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.kr-nav-dropdown.open .kr-nav-dropdown-menu { display: block; }
.kr-nav-dropdown-menu a { display: block; padding: 11px 13px; color: var(--text); border-radius: var(--radius-sm); font-size: 13px; text-decoration: none; }
.kr-nav-dropdown-menu a:hover { color: var(--primary); background: #eef3fc; }
.kr-nav-cta { white-space: nowrap; min-height: 42px; padding: 10px 16px; font-size: 12px; }
.kr-nav-toggle, .kr-mobile-panel-header, .kr-mobile-panel-footer, .kr-nav-overlay { display: none; }

/* Hero and content rhythm */
.kr-hero, .kr-services-hero, .kr-contact-hero, .kr-realisations-hero, .kr-news-hero, .kr-article-hero { background: var(--paper); padding: 76px 0 66px; border-bottom: 1px solid var(--border); }
.kr-hero h1, .kr-services-hero h1, .kr-contact-hero h1, .kr-realisations-hero h1, .kr-news-hero h1, .kr-article-hero h1 { max-width: 940px; }
.kr-hero-lede, .kr-services-hero p, .kr-contact-hero p, .kr-realisations-hero p, .kr-news-hero p { max-width: 660px; font-size: 17px; line-height: 1.8; margin: 22px 0 0; }
.kr-page-hero .container { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 64px; align-items: center; }
.kr-page-hero-copy { min-width: 0; }
.kr-page-hero-media { margin: 0; overflow: hidden; border-radius: 80px 8px 8px 8px; background: var(--background); }
.kr-page-hero-media img { display: block; width: 100%; height: 290px; object-fit: cover; }
.kr-home .kr-hero { padding: 64px 0 0; overflow: hidden; }
.kr-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; padding-bottom: 54px; }
.kr-home h1 { font-size: clamp(40px, 4.6vw, 66px); line-height: 1.12; }
.kr-home h1 em { display: block; }
.kr-home .kr-hero-lede { max-width: 440px; font-size: 16px; margin-bottom: 28px; }
.kr-hero-note { display: flex; gap: 8px; align-items: center; font-size: 11px; margin-top: 24px; color: var(--muted); }
.kr-hero-note::before { content: ''; width: 6px; height: 6px; background: var(--success); border-radius: 50%; }
.kr-hero-carousel-wrap { min-width: 0; position: relative; }
.kr-hero-carousel:not(.owl-loaded) .item:not(:first-child) { display: none; }
.kr-hero-carousel.owl-carousel { display: block; }
.kr-hero-carousel .item { position: relative; }
.kr-hero-carousel .item img { width: 100%; height: 445px; object-fit: cover; border-radius: 120px 12px 12px 12px; }
.kr-hero-slide-caption { position: absolute; bottom: 18px; left: 18px; right: 18px; padding: 18px; background: white; color: var(--text); font-size: 13px; font-weight: 700; border-radius: 6px; }
.kr-carousel-toolbar { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; gap: 12px; }
.kr-carousel-toolbar > span { font-size: 11px; color: var(--muted); }
.kr-carousel-controls { display: flex; gap: 6px; }
.kr-carousel-controls button { width: 36px; height: 36px; border: 1px solid #cbd3df; border-radius: 50%; color: var(--secondary); background: transparent; cursor: pointer; }
.kr-expertise-strip { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 22px 0; border-top: 1px solid #d8d8d4; font-size: 12px; color: var(--secondary); }
.kr-expertise-strip span:first-child { color: var(--muted); }
.kr-section, .kr-services-section, .kr-realisations-section, .kr-news-section { padding: 80px 0; }
.tint { background: var(--paper); }
.kr-section-head { max-width: 720px; margin-bottom: 38px; }
.kr-section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 32px; }
.kr-section-heading-row .kr-section-head { margin: 0; }
.kr-section-title { margin-bottom: 18px; }
.kr-num { display: block; font-family: var(--font-display); font-size: 22px; color: var(--primary); padding-bottom: 18px; margin-bottom: 28px; border-bottom: 1px solid var(--border); }
.kr-grid-2, .kr-grid-3, .kr-grid-4, .kr-pillar-grid, .kr-genesis-wrap, .kr-price-grid { display: grid; gap: 24px; }
.kr-grid-2, .kr-pillar-grid, .kr-genesis-wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.kr-grid-3, .kr-price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.kr-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.kr-pillar-grid, .kr-genesis-wrap { align-items: center; gap: 70px; }
.kr-genesis-frame img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius); }
.kr-pillar { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.kr-pillar h4 { margin-bottom: 7px; }
.kr-pillar p { margin: 0; font-size: 14px; }
.kr-pillar-icon, .kr-vmv-box .icon, .kr-feature-card .icon, .kr-value-card .icon { color: var(--primary); font-size: 22px; margin-bottom: 16px; }
.kr-pillar-icon { flex: 0 0 30px; }
.kr-genesis-wrap .kr-btn-primary { margin-top: 24px; }
.kr-stats-row { display: flex; gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.kr-stat { flex: 1; }
.kr-stat-num { display: block; font-size: 34px; font-weight: 800; color: var(--secondary); }
.kr-stat-label { font-size: 11px; color: var(--muted); }
.kr-hero-tags { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 30px; color: var(--secondary); font-size: 12px; }
.kr-hero-tags i { margin-right: 8px; color: var(--primary); }
.kr-vmv-box, .kr-value-card, .kr-feature-card { padding: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.kr-value-card p, .kr-feature-card p { font-size: 14px; margin-bottom: 0; }
.kr-subhead { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin: 36px 0 20px; }
.kr-team-carousel.owl-carousel { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.kr-team-carousel.owl-loaded { display: block; }
.kr-team-card { min-width: 0; text-align: center; }
.kr-avatar { width: min(100%, 220px); margin: 0 auto 16px; background: var(--paper); border-radius: var(--radius); overflow: hidden; }
.kr-avatar img { width: 100%; height: 220px; object-fit: cover; object-position: center 18%; }
.kr-team-card h4 { margin-bottom: 4px; }
.kr-role { display: block; color: var(--primary); font-size: 12px; margin-bottom: 12px; font-weight: 700; }
.kr-team-card p { max-width: 30ch; margin-inline: auto; font-size: 13px; }
.kr-team-carousel .owl-dots { display: flex; justify-content: center; gap: 8px; padding-top: 20px; }
.kr-team-carousel .owl-dot span { display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.kr-team-carousel .owl-dot.active span { background: var(--primary); }
.kr-team-contact { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; max-width: 900px; margin: 36px auto 0; }
.kr-team-contact a { display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: 13px; padding: 18px 20px; color: var(--text); background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-sm); text-decoration: none; transition: border-color .2s ease, background-color .2s ease, transform .2s ease; }
.kr-team-contact a:hover { background: #eef3fc; border-color: var(--primary); transform: translateY(-2px); }
.kr-team-contact i { grid-row: 1 / 3; align-self: center; color: var(--primary); font-size: 20px; }
.kr-team-contact span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.kr-team-contact strong { min-width: 0; font-size: 13px; overflow-wrap: anywhere; }

/* Expertise, pricing and published content */
.kr-home-services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.kr-expertise-card { border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.kr-expertise-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 20px; }
.kr-expertise-card small { color: var(--primary); font-size: 11px; font-weight: 700; }
.kr-expertise-card h3 { font-size: 20px; margin: 8px 0 12px; }
.kr-expertise-card p { font-size: 14px; margin-bottom: 12px; }
.kr-expertise-card:last-child { grid-column: span 3; display: grid; grid-template-columns: 1fr 2fr; gap: 30px; padding-top: 8px; }
.kr-expertise-card:last-child img { margin: 0; aspect-ratio: 16/8; }
.kr-service-card, .kr-realisation-card, .kr-news-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; min-width: 0; }
.kr-service-card { display: flex; flex-direction: column; }
.kr-service-image, .kr-realisation-img-wrapper, .kr-news-img-wrapper { position: relative; background: var(--paper); }
.kr-service-image img, .kr-realisation-img-wrapper img, .kr-news-img-wrapper img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.kr-service-index { position: absolute; left: 20px; bottom: 20px; padding: 6px 12px; background: white; font-size: 13px; font-weight: 700; border-radius: 4px; }
.kr-service-body, .kr-realisation-body, .kr-news-body { padding: 28px; }
.kr-service-body { display: flex; flex: 1; flex-direction: column; }
.kr-service-desc, .kr-realisation-desc, .kr-news-excerpt { font-size: 14px; line-height: 1.8; }
.kr-service-features, .kr-price-card ul { list-style: none; margin: 0 0 24px; padding: 0; }
.kr-service-features li, .kr-price-card li { position: relative; padding: 7px 0 7px 22px; font-size: 13px; color: var(--muted); }
.kr-service-features li::before, .kr-price-card li::before { content: '✓'; color: var(--primary); position: absolute; left: 0; font-weight: 700; }
.kr-pricing { margin-top: auto; border-top: 1px solid var(--border); padding-top: 12px; }
.kr-price-item { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; font-size: 12px; border-bottom: 1px solid var(--border); }
.kr-price-item .value { font-weight: 800; text-align: right; }
.kr-order-btn { align-self: start; margin-top: 24px; }
.kr-complex-project-cta { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); align-items: center; gap: 48px; margin-top: 48px; padding: 48px; overflow: hidden; background: var(--secondary); border-radius: var(--radius); color: #fff; }
.kr-complex-project-cta .eyebrow { color: #b9ceff; }
.kr-complex-project-cta h2 { margin-bottom: 14px; color: #fff; font-size: clamp(30px, 4vw, 46px); }
.kr-complex-project-cta p { max-width: 620px; margin-bottom: 0; color: #d3dced; }
.kr-complex-project-actions { display: grid; gap: 12px; }
.kr-complex-project-actions .kr-btn-primary, .kr-complex-project-actions .kr-btn-secondary { width: 100%; }
.kr-complex-project-actions .kr-btn-primary { background: #fff; border-color: #fff; color: var(--secondary); }
.kr-complex-project-actions .kr-btn-primary:hover { background: #dce7ff; border-color: #dce7ff; color: var(--secondary); }
.kr-complex-project-actions .kr-btn-secondary { border-color: rgb(255 255 255 / 42%); color: #fff; }
.kr-complex-project-actions .kr-btn-secondary:hover { background: rgb(255 255 255 / 10%); border-color: #fff; color: #fff; }
.kr-services-faq .kr-section-head { max-width: 680px; }
.kr-faq-list { max-width: 900px; border-top: 1px solid var(--border); }
.kr-faq-item { border-bottom: 1px solid var(--border); }
.kr-faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 4px; color: var(--text); font-weight: 800; cursor: pointer; list-style: none; }
.kr-faq-item summary::-webkit-details-marker { display: none; }
.kr-faq-item summary span { position: relative; flex: 0 0 28px; width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 50%; transition: background var(--transition), border-color var(--transition); }
.kr-faq-item summary span::before, .kr-faq-item summary span::after { content: ''; position: absolute; left: 50%; top: 50%; width: 10px; height: 1px; background: var(--primary); transform: translate(-50%, -50%); }
.kr-faq-item summary span::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform var(--transition); }
.kr-faq-item[open] summary span { background: var(--primary); border-color: var(--primary); }
.kr-faq-item[open] summary span::before, .kr-faq-item[open] summary span::after { background: #fff; }
.kr-faq-item[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.kr-faq-answer { padding: 0 58px 22px 4px; }
.kr-faq-answer p { margin: 0; font-size: 14px; }
.kr-price-card { display: flex; flex-direction: column; position: relative; padding: 32px; background: white; border: 1px solid var(--border); border-radius: var(--radius); }
.price-plan { font-weight: 700; font-size: 15px; margin-bottom: 24px; }
.price-amount { font-size: 46px; letter-spacing: -.045em; margin: 0; }
.price-period { display: block; font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.kr-price-card .kr-btn-cta { margin-top: auto; }
.kr-price-card.featured { border: 2px solid var(--primary); }
.kr-price-card .badge { position: absolute; right: 18px; top: -12px; font-size: 10px; padding: 7px 12px; border-radius: 4px; background: var(--primary); color: #fff; }
.kr-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 28px; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.kr-filter-btn { padding: 10px 16px; border: 1px solid var(--border); border-radius: 6px; color: var(--muted); font-size: 12px; font-weight: 700; text-decoration: none; }
.kr-filter-btn:hover { background: #edf2fc; border-color: var(--primary); }
.kr-filter-btn.active { background: var(--secondary); color: white; border-color: var(--secondary); }
.kr-count { font-size: 12px; margin-bottom: 24px; }
.kr-realisations-grid, .kr-news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.kr-news-card, .kr-news-body { display: flex; flex-direction: column; }
.kr-news-body { flex: 1; }
.kr-news-link { margin-top: auto; }
.kr-realisation-title, .kr-news-title { font-size: 21px; }
.kr-category-tag, .kr-news-cat { position: absolute; bottom: 14px; left: 14px; right: 14px; width: fit-content; max-width: calc(100% - 28px); padding: 7px 12px; border-radius: 4px; background: white; color: var(--primary); font-size: 11px; font-weight: 700; }
.kr-realisation-meta { padding-top: 18px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); display: grid; gap: 8px; }
.kr-realisation-client-coordinates { margin-top: 18px; padding: 16px; background: var(--background); border-radius: 6px; font-size: 12px; display: grid; gap: 8px; overflow-wrap: anywhere; }
.kr-realisation-client-coordinates span, .kr-realisation-client-coordinates a { display: flex; align-items: baseline; gap: 8px; }
.coordinates-label { font-weight: 800; }
.kr-news-meta, .kr-article-meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 11px; margin-bottom: 20px; }
.kr-news-empty, .kr-realisations-empty { grid-column: 1/-1; padding: 60px 24px; text-align: center; border: 1px dashed var(--border); border-radius: var(--radius); }
.kr-news-empty i, .kr-realisations-empty i { color: var(--primary); font-size: 28px; margin-bottom: 20px; }
.kr-article-back { display: block; width: fit-content; margin-bottom: 30px; font-size: 13px; }
.kr-article-section { padding: 60px 0 80px; }
.kr-article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 60px; }
.kr-article-cover { margin: 0 0 36px; }
.kr-article-cover img { width: 100%; border-radius: var(--radius); }
.kr-article-content { max-width: 72ch; font-size: 17px; line-height: 1.9; overflow-wrap: anywhere; }
.kr-article-side { align-self: start; position: sticky; top: 118px; }
.kr-article-side-label { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.kr-newsletter-card { margin-top: 30px; background: var(--paper); padding: 24px; border-radius: var(--radius); }
.kr-newsletter-card p { font-size: 13px; }
.kr-newsletter-form { display: grid; gap: 12px; }
.kr-article-cta { background: var(--paper); padding: 32px; border-radius: var(--radius); margin-top: 40px; }

/* Contact and feedback */
.kr-info-section { padding: 40px 0; }
.kr-info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--border); border-radius: var(--radius); }
.kr-info-card { padding: 28px; }
.kr-info-card + .kr-info-card { border-left: 1px solid var(--border); }
.kr-info-icon { color: var(--primary); margin-bottom: 16px; }
.kr-info-label { display: block; font-weight: 800; font-size: 13px; margin-bottom: 8px; }
.kr-info-card a, .kr-info-card p { display: block; font-size: 13px; color: var(--muted); overflow-wrap: anywhere; }
.kr-form-section { padding: 12px 0 80px; }
.kr-form-wrap { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.kr-form-card { padding: 36px; border: 1px solid var(--border); border-radius: var(--radius); }
.kr-form-card h2 { font-size: 30px; }
.kr-form-sub { font-size: 14px; margin-bottom: 28px; }
.kr-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.kr-field { margin-bottom: 22px; min-width: 0; }
.kr-field label, .kr-newsletter-form label { display: block; margin-bottom: 8px; color: var(--text); font-weight: 700; font-size: 13px; }
.kr-field input, .kr-field select, .kr-field textarea, .kr-newsletter-form input { width: 100%; min-height: 48px; border: 1px solid #bac3d0; background: var(--surface); border-radius: 6px; padding: 12px; color: var(--text); font-size: 15px; }
.kr-field textarea { min-height: 150px; resize: vertical; }
.kr-field input:focus, .kr-field select:focus, .kr-field textarea:focus, .kr-newsletter-form input:focus { border-color: var(--primary); outline: 3px solid #dce7ff; outline-offset: 1px; }
.kr-field [aria-invalid="true"] { border-color: var(--error); }
.kr-field-error { color: var(--error); display: block; margin-top: 6px; font-size: 12px; }
.kr-form-note { font-size: 11px; margin: 16px 0 0; }
.kr-alert { border: 1px solid #efbdc4; background: #fff0f2; color: var(--error); padding: 16px; border-radius: 6px; margin-bottom: 20px; }
.kr-alert ul { margin: 0; padding-left: 18px; }
.kr-map-frame { border-radius: var(--radius); background: var(--background); overflow: hidden; }
.kr-map-frame iframe { border: 0; display: block; width: 100%; height: 280px; }
.kr-hours-card { padding: 30px 0; }
.kr-hours-card h3 { font-size: 20px; }
.kr-hours-row { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--border); padding: 12px 0; font-size: 12px; }
.kr-socials { display: flex; gap: 8px; margin-top: 22px; }
.kr-socials a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%; }
.kr-modal-open { overflow: hidden; }
.kr-success-modal { display: none; position: fixed; inset: 0; z-index: 200; padding: 20px; background: rgb(16 27 56 / 65%); align-items: center; justify-content: center; }
.kr-success-modal.is-visible { display: flex; }
.kr-success-modal-panel { position: relative; width: min(480px, 100%); max-height: calc(100dvh - 40px); overflow-y: auto; padding: 44px 32px 32px; background: white; border-radius: 16px; text-align: center; box-shadow: var(--shadow); }
.kr-success-modal-panel h2 { font-size: 30px; }
.kr-success-modal-icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 24px; background: #e9f5ee; color: var(--success); border-radius: 50%; font-size: 26px; }
.kr-success-modal-close { position: absolute; top: 12px; right: 12px; border: 0; border-radius: 50%; background: var(--background); width: 36px; height: 36px; cursor: pointer; }
.kr-response-modal { display: none; position: fixed; inset: 0; z-index: 200; align-items: center; justify-content: center; padding: 20px; background: rgb(16 27 56 / 72%); backdrop-filter: blur(5px); }
.kr-response-modal.is-visible { display: flex; }
.kr-response-modal-panel { position: relative; width: min(560px, 100%); max-height: calc(100dvh - 40px); overflow-y: auto; padding: 48px 40px 38px; background: #fff; border-radius: 18px; text-align: center; box-shadow: 0 24px 80px rgb(5 14 34 / 35%); }
.kr-response-modal-panel h2 { margin-bottom: 16px; font-size: clamp(30px, 5vw, 42px); }
.kr-response-modal-panel p { max-width: 46ch; margin: 0 auto 28px; }
.kr-response-modal-icon { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 22px; color: var(--primary); background: #eaf0ff; border-radius: 50%; font-size: 27px; }
.kr-response-modal-close { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--background); color: var(--text); cursor: pointer; }
.kr-response-modal-actions { display: flex; justify-content: center; gap: 10px; }
.kr-response-modal-actions > * { flex: 1 1 0; }

/* Footer */
.kr-cta-section { background: var(--secondary); padding: 70px 0; text-align: center; }
.kr-cta-inner { max-width: 760px; margin-inline: auto; }
.kr-cta-inner h2, .kr-cta-inner .eyebrow { color: white; }
.kr-cta-inner p { color: #bac6da; }
.kreatis-footer { background: var(--secondary); color: #bac6da; }
.footer-cta { position: relative; isolation: isolate; display: flex; align-items: center; min-height: clamp(560px, 70vh, 720px); padding: 100px 0; overflow: hidden; border-bottom: 1px solid #ffffff24; background: #0b142b; }
.footer-cta::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgb(7 15 34 / 98%) 0%, rgb(10 20 43 / 91%) 35%, rgb(10 20 43 / 58%) 62%, rgb(10 20 43 / 25%) 100%), linear-gradient(0deg, rgb(7 15 34 / 62%) 0%, transparent 55%); }
.footer-cta::after { content: ''; position: absolute; inset: 28px; z-index: 0; border: 1px solid rgb(255 255 255 / 15%); border-radius: 14px; pointer-events: none; }
.footer-cta-media { position: absolute; inset: -12%; z-index: -2; transform: translate3d(0, var(--kr-parallax-y, 0), 0) scale(1.08); will-change: transform; }
.footer-cta-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.footer-cta-inner { position: relative; z-index: 1; width: 100%; }
.footer-cta-content { max-width: 720px; }
.footer-cta-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; color: #c8d8ff; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-cta-kicker::before { content: ''; width: 28px; height: 1px; background: #89a9f6; }
.footer-cta h2 { max-width: 760px; margin-bottom: 26px; color: #fff; font-size: clamp(42px, 5vw, 72px); line-height: 1.06; letter-spacing: -.052em; }
.footer-cta h2 em { display: block; color: #bfd2ff; }
.footer-cta p { max-width: 650px; margin-bottom: 32px; color: #d3dced; font-size: 16px; line-height: 1.8; }
.footer-cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.footer-cta-btn { flex-shrink: 0; min-height: 54px; padding-inline: 27px; background: #fff; border-color: #fff; color: var(--secondary); }
.footer-cta-btn:hover { color: #fff; }
.footer-cta-secondary { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 13px 24px; border: 1px solid rgb(255 255 255 / 38%); border-radius: var(--radius-sm); color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; }
.footer-cta-secondary:hover { border-color: #fff; background: rgb(255 255 255 / 10%); color: #fff; }
.footer-cta-proof { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgb(255 255 255 / 20%); color: #d8e1f1; }
.footer-cta-proof span { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 700; }
.footer-cta-proof span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #89a9f6; box-shadow: 0 0 0 4px rgb(137 169 246 / 15%); }
.footer-main { padding: 55px 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .7fr 1fr; gap: 40px; }
.footer-col .footer-wordmark { font-size: 32px; color: white; font-weight: 800; letter-spacing: -.05em; text-decoration: none; }
.footer-brand-desc { font-size: 12px; color: #bac6da; margin-top: 18px; }
.footer-heading { font-family: var(--font-body); font-size: 12px; color: white; margin: 10px 0 22px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 12px; overflow-wrap: anywhere; }
.footer-col a { color: #bac6da; text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid #ffffff38; border-radius: 50%; }
.footer-contact li { display: flex; align-items: baseline; gap: 10px; }
.footer-bottom-bar { border-top: 1px solid #ffffff24; padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 20px; font-size: 11px; }
.footer-bottom-inner p { color: #bac6da; margin: 0; }
.footer-bottom-inner a { color: #bac6da; }
.scroll-top-arrow { position: fixed; right: 20px; bottom: 20px; width: 42px; height: 42px; display: none; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: white; color: var(--primary); box-shadow: var(--shadow); z-index: 50; cursor: pointer; }
.scroll-top-arrow.is-visible { display: grid; }

/* Visible without JavaScript; no mandatory reveal animation. */
@media (hover: hover) {
  .kr-service-card:hover, .kr-news-card:hover { border-color: #a4b7db; }
  .kr-expertise-card:hover h3 { color: var(--primary); }
}
@media (min-width: 992px) and (hover: hover) {
  .kr-nav-dropdown:hover .kr-nav-dropdown-menu { display: block; }
  .kr-nav-dropdown:hover > a, .kr-nav-dropdown:hover > .kr-dropdown-toggle { color: var(--primary); }
}
@media (max-width: 1100px) {
  .kr-nav-menu > ul { gap: 16px; }
  .kr-nav-inner { gap: 16px; }
  .kr-nav-cta { padding-inline: 12px; }
  .kr-hero-grid { gap: 36px; }
  .kr-page-hero .container { gap: 36px; }
  .kr-realisations-grid, .kr-news-grid, .kr-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kr-article-layout { gap: 30px; }
}
@media (max-width: 991px) {
  .footer-cta { min-height: 600px; }
  .footer-cta-content { max-width: 620px; }
  .footer-cta-media img { object-position: 58% center; }
  .kr-page-hero .container { grid-template-columns: 1fr; gap: 30px; }
  .kr-page-hero-media { border-radius: 64px 8px 8px 8px; }
  .kr-page-hero-media img { height: 280px; }
  .kr-nav-inner { min-height: 76px; }
  .kr-nav-actions { margin-left: auto; }
  .kr-nav-toggle { display: grid; place-content: center; gap: 5px; width: 44px; height: 44px; background: white; border: 1px solid var(--border); border-radius: 6px; cursor: pointer; }
  .kr-nav-toggle span { width: 19px; height: 2px; background: var(--secondary); }
  .kr-nav-menu { position: fixed; top: 0; bottom: 0; right: 0; width: min(380px, 90vw); padding: 24px; background: white; visibility: hidden; transform: translateX(100%); transition: transform var(--transition), visibility var(--transition); overflow-y: auto; z-index: 102; }
  .menu-open .kr-nav-menu { visibility: visible; transform: none; }
  .kr-nav-menu > ul { display: block; }
  .nav-item { border-bottom: 1px solid var(--border); }
  .nav-item > a { padding: 16px 0; font-size: 15px; }
  .nav-item > a[aria-current="page"] { box-shadow: none; }
  .kr-dropdown-toggle { float: right; width: 44px; height: 56px; }
  .kr-nav-dropdown-menu { position: static; width: 100%; box-shadow: none; border: 0; margin-bottom: 8px; padding: 6px; background: var(--background); }
  .kr-mobile-panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
  .kr-mobile-close { width: 40px; height: 40px; border: 1px solid var(--border); background: white; border-radius: 50%; }
  .kr-mobile-panel-footer { display: block; padding-top: 28px; }
  .kr-mobile-panel-footer p { font-size: 13px; }
  .kr-nav-overlay.is-visible { display: block; position: fixed; inset: 0; background: rgb(16 27 56 / 55%); z-index: 99; }
  body.kr-nav-open { overflow: hidden; }
  .kr-hero-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .kr-hero-carousel .item img { height: 400px; border-top-left-radius: 80px; }
  .kr-home-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kr-expertise-card:last-child { grid-column: span 2; grid-template-columns: 1fr 1fr; }
  .kr-price-card { padding: 24px; }
  .kr-genesis-wrap, .kr-pillar-grid { gap: 32px; }
  .kr-grid-3, .kr-team-carousel.owl-carousel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kr-form-wrap { gap: 24px; grid-template-columns: 1.5fr 1fr; }
  .kr-form-card { padding: 24px; }
  .kr-field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .container { width: calc(100% - 40px); }
  .kr-nav-actions { display: none; }
  .kr-nav-logo img { width: 34px; height: 40px; }
  .kr-brand-name { font-size: 24px; }
  .kr-hero, .kr-services-hero, .kr-contact-hero, .kr-realisations-hero, .kr-news-hero, .kr-article-hero { padding: 44px 0; }
  .kr-home .kr-hero { padding-top: 40px; }
  /* Internal heroes become immersive image panels on phones. The copy sits on
     the lower gradient so the image remains visible without sacrificing contrast. */
  .kr-page-hero {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: clamp(460px, 66svh, 580px);
    padding: 0;
    overflow: hidden;
    background: var(--secondary);
  }
  .kr-page-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-height: inherit;
    padding: 0 20px;
  }
  .kr-page-hero-copy {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 42px 0 44px;
  }
  .kr-page-hero-copy .eyebrow { color: #dbe6ff; }
  .kr-page-hero-copy h1 { max-width: 100%; color: #fff; font-size: clamp(38px, 10.5vw, 58px); }
  .kr-page-hero-copy h1 em { color: #b9ceff; }
  .kr-page-hero-copy p { max-width: 42ch; color: #f0f3f9; }
  .kr-page-hero-copy .kr-hero-tags { color: #f0f3f9; }
  .kr-page-hero-copy .kr-hero-tags i { color: #b9ceff; }
  .kr-page-hero-copy .kr-article-back { color: #fff; }
  .kr-page-hero-copy .kr-article-meta { color: #f0f3f9; margin-bottom: 0; }
  .kr-page-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 0;
    background: var(--secondary);
  }
  .kr-page-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(16 27 56 / 8%) 18%, rgb(16 27 56 / 24%) 44%, rgb(16 27 56 / 91%) 100%);
  }
  .kr-page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
  .kr-hero-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 28px; }
  .kr-home h1 { font-size: clamp(38px, 8vw, 54px); max-width: 540px; }
  .kr-home .kr-hero-lede { margin-top: 18px; max-width: 100%; }
  .kr-hero-carousel .item img { height: 300px; border-top-left-radius: 68px; }
  .kr-hero-note { margin-top: 18px; }
  .kr-expertise-strip { display: grid; grid-template-columns: 1fr 1fr; font-size: 10px; gap: 12px; }
  .kr-expertise-strip span:first-child { grid-column: 1/-1; }
  .kr-section, .kr-services-section, .kr-realisations-section, .kr-news-section { padding: 48px 0; }
  .kr-section-heading-row { display: block; }
  .kr-section-heading-row > a { margin-top: 8px; }
  .kr-home-services, .kr-grid-2, .kr-grid-3, .kr-price-grid, .kr-genesis-wrap, .kr-pillar-grid, .kr-realisations-grid, .kr-news-grid, .kr-form-wrap, .kr-info-grid, .kr-article-layout { grid-template-columns: 1fr; }
  .kr-expertise-card:last-child { grid-column: auto; display: block; }
  .kr-expertise-card:last-child img { margin-bottom: 20px; aspect-ratio: 16/10; }
  .kr-grid-4 { gap: 14px; }
  .kr-value-card { padding: 20px; }
  .kr-value-card h4 { font-size: 16px; }
  .kr-value-card p { font-size: 12px; }
  .kr-genesis-frame img { height: 350px; }
  .kr-avatar { width: min(100%, 190px); }
  .kr-avatar img { height: 190px; }
  .kr-team-contact { grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
  .kr-price-grid { gap: 28px; }
  .kr-price-card { padding: 28px; }
  .kr-info-section { padding: 24px 0; }
  .kr-info-card + .kr-info-card { border-left: 0; border-top: 1px solid var(--border); }
  .kr-info-card { padding: 22px; }
  .kr-form-card { padding: 24px 20px; }
  .kr-form-section, .kr-article-section { padding-bottom: 48px; }
  .kr-filter-bar { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 16px; }
  .kr-filter-btn { flex-shrink: 0; }
  .kr-service-body, .kr-realisation-body, .kr-news-body { padding: 24px; }
  .kr-price-item { align-items: flex-start; }
  .kr-complex-project-cta { grid-template-columns: 1fr; gap: 28px; margin-top: 32px; padding: 34px 24px; }
  .kr-complex-project-actions { width: 100%; }
  .kr-faq-item summary { padding-block: 20px; font-size: 14px; }
  .kr-faq-answer { padding-right: 0; }
  .kr-response-modal { padding: 14px; }
  .kr-response-modal-panel { max-height: calc(100dvh - 28px); padding: 42px 20px 24px; border-radius: 14px; }
  .kr-response-modal-panel .eyebrow { margin-bottom: 14px; }
  .kr-response-modal-panel p { margin-bottom: 22px; font-size: 14px; }
  .kr-response-modal-actions { flex-direction: column; }
  .kr-response-modal-actions > * { width: 100%; }
  .kr-article-side { position: static; }
  .kr-article-cta { padding: 24px; }
  .footer-cta { min-height: 560px; padding: 68px 0; }
  .footer-cta::before { background: linear-gradient(180deg, rgb(7 15 34 / 43%) 0%, rgb(7 15 34 / 88%) 48%, rgb(7 15 34 / 98%) 100%); }
  .footer-cta::after { inset: 16px; }
  .footer-cta-media { inset: -8% -34%; transform: none; will-change: auto; }
  .footer-cta-media img { object-position: 65% center; }
  .footer-cta-inner, .footer-bottom-inner { display: block; }
  .footer-cta-content { max-width: none; }
  .footer-cta-kicker { margin-bottom: 18px; font-size: 9px; letter-spacing: .13em; }
  .footer-cta h2 { max-width: 560px; margin-bottom: 20px; font-size: clamp(36px, 10vw, 48px); }
  .footer-cta p { margin-bottom: 26px; font-size: 14px; line-height: 1.7; }
  .footer-cta-actions { align-items: stretch; flex-direction: column; }
  .footer-cta-btn, .footer-cta-secondary { width: 100%; }
  .footer-cta-proof { display: grid; gap: 13px; margin-top: 28px; padding-top: 20px; }
  .footer-grid { gap: 26px; }
  .footer-brand-col { grid-column: 1/-1; }
  .footer-bottom-inner p { margin-bottom: 10px; }
}
@media (max-width: 380px) {
  .container { width: calc(100% - 32px); }
  .kr-actions { align-items: stretch; flex-direction: column; }
  .kr-grid-4, .footer-grid { grid-template-columns: 1fr; }
}
