/* ========================================
   KMK HOME - MANUFACTURER TEMPLATE STYLE
   Editorial, industrial, premium aesthetic
   Large integrated hero image with text overlay
   Scroll-direction reactive rectangle motion
   ======================================== */

/* ===== COLOR VARIABLES ===== */
:root {
    --kmk-navy: #1a2744;
    --kmk-navy-dark: #0f1829;
    --kmk-violet: #6b5b7a;
    --kmk-violet-muted: #8a7d94;
    --kmk-yellow: #f4e8c1;
    --kmk-orange: #e8b89d;
    --kmk-offwhite: #f8f6f3;
    --kmk-cream: #faf8f5;
    --kmk-gray-light: #e8e4df;
    --kmk-gray-mid: #a39e93;
    --kmk-gray-dark: #6b6660;
    --kmk-text: #2c2825;
    --kmk-text-light: #7a7570;

    /* compatibility aliases */
    --kmk-color-navy: var(--kmk-navy);
    --kmk-color-violet: var(--kmk-violet);
    --kmk-color-yellow: var(--kmk-yellow);
    --kmk-color-white: #ffffff;
    --kmk-font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ===== TYPOGRAPHY ===== */
.kmk-home-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--kmk-text);
    line-height: 1.6;
    background: #ffffff;
}

/* ===== HERO SECTION - INTEGRATED IMAGE WITH TEXT OVERLAY ===== */
.kmk-hero-wrapper {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Decorative Rectangles - Architectural & Subtle */
.kmk-hero-rect {
    position: absolute;
    z-index: 1;
    opacity: 0.08;
    pointer-events: none;
    /* Smooth transitions for stretch motion */
    transition: transform 1.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.kmk-rect-1 {
    width: 280px;
    height: 380px;
    background: var(--kmk-navy);
    top: -40px;
    right: -60px;
    /* More responsive to scroll */
    transition: transform 1.6s cubic-bezier(0.2, 0.1, 0.2, 1);
}

.kmk-rect-2 {
    width: 180px;
    height: 180px;
    background: var(--kmk-violet);
    bottom: 12%;
    left: -40px;
    transition: transform 1.3s cubic-bezier(0.25, 0.15, 0.25, 1);
}

.kmk-rect-3 {
    width: 140px;
    height: 280px;
    background: var(--kmk-yellow);
    top: 35%;
    right: 12%;
    transition: transform 1.5s cubic-bezier(0.22, 0.12, 0.22, 1);
}

/* Grid Background - Very Subtle */
.kmk-hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--kmk-gray-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--kmk-gray-light) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    z-index: 0;
}

/* Large Integrated Hero Image Surface - Reduced size by ~12% */
.kmk-hero-image-surface {
    position: absolute;
    inset: 75px;
    z-index: 2;
    overflow: hidden;
    border-radius: 6px;
}

.kmk-hero-image-surface img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kmk-hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 39, 68, 0.85) 0%,
        rgba(26, 39, 68, 0.4) 40%,
        transparent 70%
    );
    pointer-events: none;
}

/* Text Panel Overlay - Sits ON TOP of image - Vertically Centered */
.kmk-hero-text-panel {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 60px;
    margin-left: 80px;
    background: rgba(248, 246, 243, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.kmk-hero-meta {
    margin-bottom: 32px;
}

.kmk-hero-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--kmk-gray-mid);
}

.kmk-hero-title {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--kmk-navy);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.kmk-title-accent {
    font-weight: 400;
    color: var(--kmk-violet);
}

.kmk-hero-description p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--kmk-text-light);
    margin-bottom: 32px;
}

.kmk-hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

/* ===== BUTTONS & LINKS ===== */
.kmk-btn {
    display: inline-block;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 3px;
    background: var(--kmk-navy);
    color: #ffffff;
    transition: background 0.3s ease, transform 0.2s ease;
}

.kmk-btn:hover {
    background: var(--kmk-navy-dark);
    transform: translateY(-1px);
}

.kmk-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--kmk-navy);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

.kmk-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--kmk-navy);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.kmk-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===== GENERAL SECTIONS ===== */
.kmk-section {
    padding: 140px 0;
    position: relative;
}

.kmk-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Decorative Section Rectangles - Architectural */
.kmk-section-rect {
    position: absolute;
    z-index: 1;
    opacity: 0.06;
    transition: transform 1.2s cubic-bezier(0.23, 0.1, 0.23, 1);
}

/* Section Labels & Headings */
.kmk-section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--kmk-violet-muted);
    margin-bottom: 20px;
}

.kmk-section-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--kmk-navy);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.kmk-section-subtitle {
    font-size: 17px;
    color: var(--kmk-text-light);
    line-height: 1.7;
}

.kmk-light {
    color: #ffffff !important;
}

/* Text Styles */
.kmk-text-lead {
    font-size: 19px;
    line-height: 1.8;
    color: var(--kmk-text);
    margin-bottom: 24px;
}

.kmk-text-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--kmk-text-light);
}
/* ===== INTRO SECTION ===== */
.kmk-intro-section {
  background: #ffffff;
}

.kmk-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.kmk-intro-left {
  display: flex;
  align-items: center;
}

.kmk-intro-content-inner {
  background: #F5EDE0;
  padding: 60px 50px;
  border-radius: 3px;
  width: 100%;
}

.kmk-intro-title {
  font-family: var(--kmk-font-display);
  font-size: clamp(60px, 8vw, 90px);
  font-weight: 400;
  color: var(--kmk-color-navy);
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

.kmk-title-since {
  display: block;
  font-size: 0.6em;
  color: var(--kmk-color-violet);
  margin-top: 10px;
  font-weight: 500;
}

.kmk-intro-right {
  padding: 20px 0;
}

.kmk-text-lead {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(26, 26, 46, 0.8);
  margin-bottom: 20px;
  font-weight: 400;
}

.kmk-text-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(26, 26, 46, 0.7);
  margin-bottom: 0;
}

/* ===== WHO WE ARE SECTION ===== */
.kmk-who-section {
    background: #ffffff;
}

.kmk-who-rect-1 {
    width: 260px;
    height: 200px;
    background: var(--kmk-yellow);
    bottom: 15%;
    left: -40px;
}

.kmk-who-rect-2 {
    width: 140px;
    height: 340px;
    background: var(--kmk-violet);
    top: 10%;
    right: 2%;
}

.kmk-who-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 120px;
    align-items: stretch;
}

.kmk-who-image {
    min-height: 540px;
    display: flex;
    align-items: center;
}

.kmk-who-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--kmk-offwhite);
    border-radius: 4px;
}

.kmk-who-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.kmk-who-content {
    min-height: 540px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Architectural Background Field - Who We Are */
.kmk-who-content-bg {
    position: absolute;
    top: 0;
    left: -40px;
    right: 40px;
    bottom: 0;
    background: var(--kmk-offwhite);
    border-radius: 3px;
    z-index: -1;
    opacity: 0.6;
}

.kmk-who-content-inner {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kmk-who-text {
    margin-bottom: auto;
}

.kmk-who-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--kmk-text-light);
    margin-bottom: 20px;
}

.kmk-who-specs {
    display: flex;
    gap: 80px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--kmk-gray-light);
    border-bottom: 1px solid var(--kmk-gray-light);
}

.kmk-spec-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kmk-spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--kmk-gray-mid);
}

.kmk-spec-value {
    font-size: 28px;
    font-weight: 300;
    color: var(--kmk-navy);
}

.kmk-who-content .kmk-link {
    margin-top: auto;
}
/* ===== DARK SECTION ===== */
.kmk-dark-section {
  background: #1A1A2E !important;
  color: var(--kmk-color-white);
  padding: 100px 0;
  position: relative;
}

.kmk-dark-section .kmk-section-label {
  color: var(--kmk-color-yellow);
}

.kmk-dark-section .kmk-section-title {
  color: var(--kmk-color-white);
}

.kmk-dark-section .kmk-section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.kmk-dark-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.kmk-dark-main,
.kmk-dark-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kmk-dark-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), 
              box-shadow 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
              border-color 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.kmk-dark-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Card 1 - 2x bigger */
.kmk-dark-card-primary {
  min-height: 450px;
}

.kmk-dark-card-primary .kmk-dark-card-image {
  height: 480px;
}

/* Card 1 - Text daha belirgin */
.kmk-dark-card-primary .kmk-dark-card-content {
  background: linear-gradient(to top, rgba(26, 26, 46, 0.98) 0%, rgba(26, 26, 46, 0.85) 40%, transparent 100%);
  padding: 40px;
}

.kmk-dark-card-primary .kmk-dark-card-content h3 {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.kmk-dark-card-primary .kmk-dark-card-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Card 2 & 3 - aynı boyut */
.kmk-dark-side .kmk-dark-card .kmk-dark-card-image {
  height: 240px;
  flex-shrink: 0;
}

.kmk-dark-card-image {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.kmk-dark-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.kmk-dark-card:hover .kmk-dark-card-image img {
  transform: scale(1.1);
}

.kmk-dark-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.kmk-dark-card:hover .kmk-dark-card-content {
  transform: translateY(-4px);
}

/* Card 2 & 3 - Text daha belirgin */
.kmk-dark-side .kmk-dark-card .kmk-dark-card-content {
  background: linear-gradient(to top, rgba(26, 26, 46, 0.97) 0%, rgba(26, 26, 46, 0.80) 50%, transparent 100%);
  padding: 28px;
}

.kmk-dark-side .kmk-dark-card .kmk-dark-card-content h3 {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.kmk-dark-side .kmk-dark-card .kmk-dark-card-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Diğer card'lar için varsayılan */
.kmk-dark-card-content h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--kmk-color-white);
  margin-bottom: 8px;
}

.kmk-dark-card-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.kmk-card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.15);
  z-index: 3;
  font-family: var(--kmk-font-display);
  line-height: 1;
  transition: color 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.kmk-dark-card:hover .kmk-card-number {
  color: rgba(255, 255, 255, 0.3);
}

.kmk-dark-card-text {
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  min-height: 260px;
  transition: background 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.kmk-dark-card-text:hover {
  background: rgba(255, 255, 255, 0.08);
}

.kmk-dark-card-text .kmk-dark-card-content {
  position: relative;
  background: none;
  padding: 0;
  z-index: 2;
}

.kmk-dark-card-text h3 {
  font-size: 26px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
}

.kmk-dark-card-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Section header ortala */
.kmk-section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ===== PARTNERS SECTION ===== */
.kmk-partners-section {
    background: #ffffff;
    padding: 100px 10px;
}

.kmk-partners-header {
    text-align: center;
    margin-bottom: 70px;
}

.kmk-partners-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--kmk-gray-mid);
}

.kmk-partners-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.kmk-partner-item {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 24px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--kmk-gray-mid);
    border: 1px solid var(--kmk-gray-light);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.kmk-partner-item:hover {
    color: var(--kmk-navy);
    border-color: var(--kmk-navy);
}

/* ===== PROCESS SECTION - Elegant Accordion ===== */
.kmk-process-section {
    background: #ffffff;
}

.kmk-process-rect-1 {
    width: 200px;
    height: 300px;
    background: var(--kmk-violet);
    top: 25%;
    left: -30px;
}

.kmk-process-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
    position: relative;
}

/* Architectural Background Field - Process Intro */
.kmk-process-intro-bg {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 120px);
    height: calc(100% - 40px);
    background: var(--kmk-cream);
    border-radius: 3px;
    z-index: -1;
    opacity: 0.7;
}

.kmk-process-intro-inner {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
}

.kmk-process-list {
    max-width: 1000px;
    margin: 0 auto;
}

.kmk-process-item {
    background: #ffffff;
    border-left: 3px solid var(--kmk-navy);
    margin-bottom: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.kmk-process-item.active {
    border-left-color: var(--kmk-violet);
}

.kmk-process-header {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 38px 45px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.kmk-process-header:hover {
    background: var(--kmk-offwhite);
}

.kmk-process-number {
    font-size: 46px;
    font-weight: 200;
    color: var(--kmk-violet-muted);
    min-width: 80px;
}

.kmk-process-content {
    flex: 1;
}

.kmk-process-content h3 {
    font-size: 22px;
    font-weight: 400;
    color: var(--kmk-navy);
    margin-bottom: 6px;
}

.kmk-process-content p {
    font-size: 15px;
    color: var(--kmk-text-light);
}

.kmk-process-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.kmk-process-item.active .kmk-process-body {
    max-height: 500px;
}

.kmk-process-body p {
    padding: 0 45px 38px 150px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--kmk-text-light);
}

/* ===== CTA SECTION ===== */
.kmk-cta-section {
  background: #1A1A2E !important;
  padding: 100px 0;
  text-align: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.kmk-cta-section .kmk-section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.kmk-cta-section h2 {
  color: #ffffff !important;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
  margin-bottom: 16px;
}

.kmk-cta-section .kmk-section-title {
  color: #ffffff !important;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.kmk-cta-section .kmk-section-desc {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 18px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.kmk-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.kmk-cta-section .kmk-btn-primary {
  background: #ffffff !important;
  color: var(--kmk-color-violet);
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
}

.kmk-cta-section .kmk-btn-primary:hover {
  background: var(--kmk-color-yellow);
  color: var(--kmk-color-navy);
}

.kmk-cta-section .kmk-btn-secondary {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.6);
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
}

.kmk-cta-section .kmk-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* ===== ANIMATION CLASSES ===== */
.kmk-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.kmk-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
    .kmk-hero-text-panel {
        max-width: 550px;
        padding: 50px;
        margin-left: 60px;
    }
    
    .kmk-who-image,
    .kmk-who-content {
        min-height: 500px;
    }
}

@media (max-width: 1200px) {
    .kmk-hero-text-panel {
        max-width: 500px;
        padding: 40px;
        margin-left: 50px;
    }
    
    .kmk-intro-grid {
        gap: 80px;
    }
    
    .kmk-who-grid {
        gap: 80px;
    }
    
    .kmk-who-image,
    .kmk-who-content {
        min-height: 480px;
    }
    
    .kmk-dark-grid {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .kmk-hero-text-panel {
        max-width: 450px;
        padding: 35px;
        margin-left: 40px;
    }
    
    .kmk-hero-title {
        font-size: 48px;
    }
    
    .kmk-hero-description p {
        font-size: 16px;
    }
    
    .kmk-hero-actions {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .kmk-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .kmk-intro-bg {
        left: -20px;
        right: 20px;
    }
    
    .kmk-intro-content-inner {
        padding: 40px 30px;
    }
    
    .kmk-who-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .kmk-who-image,
    .kmk-who-content {
        min-height: 440px;
    }
    
    .kmk-who-content-bg {
        left: -20px;
        right: 20px;
    }
    
    .kmk-who-content-inner {
        padding: 40px 30px;
    }
    
    .kmk-who-specs {
        gap: 60px;
    }
    
    .kmk-dark-grid {
        grid-template-columns: 1fr;
    }
    
    .kmk-dark-side {
        order: -1;
    }
    
    .kmk-partners-strip {
        justify-content: center;
        gap: 30px;
    }
    
    .kmk-process-intro {
        max-width: 700px;
    }
    
    .kmk-process-intro-bg {
        width: 100%;
    }
    
    .kmk-process-intro-inner {
        padding: 50px 40px;
    }
    
    .kmk-process-list {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .kmk-section {
        padding: 100px 0;
    }
    
    .kmk-hero-wrapper {
        align-items: flex-start;
        padding: 40px 0;
    }
    
    .kmk-hero-image-surface {
        inset: 50px;
    }
    
    .kmk-hero-text-panel {
        max-width: calc(100% - 120px);
        padding: 30px;
        margin: 30px 0 30px 30px;
    }
    
    .kmk-hero-title {
        font-size: 40px;
    }
    
    .kmk-hero-label {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .kmk-hero-description p {
        font-size: 15px;
    }
    
    .kmk-intro-bg,
    .kmk-who-content-bg,
    .kmk-process-intro-bg {
        left: -15px;
        right: -15px;
    }
    
    .kmk-intro-content-inner,
    .kmk-who-content-inner,
    .kmk-process-intro-inner {
        padding: 35px 25px;
    }
    
    .kmk-who-specs {
        flex-direction: column;
        gap: 24px;
    }
    
    .kmk-process-header {
        padding: 28px 25px;
        gap: 25px;
    }
    
    .kmk-process-body p {
        padding: 0 25px 28px 25px;
        font-size: 16px;
    }
    
    .kmk-section-rect {
        display: none;
    }
    
    .kmk-partners-strip {
        flex-direction: column;
        gap: 20px;
    }
    
    .kmk-who-image,
    .kmk-who-content {
        min-height: 380px;
    }
    
    .kmk-dark-card-primary {
        min-height: 440px;
    }
    
    .kmk-dark-card:not(.kmk-dark-card-text) {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .kmk-hero-rect {
        display: none;
    }
    
    .kmk-hero-image-surface {
        inset: 30px;
    }
    
    .kmk-hero-text-panel {
        max-width: calc(100% - 80px);
        padding: 25px;
        margin: 25px 0 25px 25px;
    }
    
    .kmk-hero-title {
        font-size: 34px;
    }
    
    .kmk-section-title {
        font-size: 32px;
    }
    
    .kmk-process-header {
        padding: 25px 20px;
    }
    
    .kmk-process-number {
        font-size: 40px;
        min-width: 70px;
    }
    
    .kmk-who-image,
    .kmk-who-content {
        min-height: 320px;
    }
    
    .kmk-dark-card-primary {
        min-height: 360px;
    }
    
    .kmk-dark-card:not(.kmk-dark-card-text) {
        min-height: 170px;
    }
}