@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@300;400;500;600;700&display=swap');

* {
  border-radius: 0px !important;
  box-sizing: border-box;
}

strong, p {
  color: inherit;
}

html, body {
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 50%, #F4F4F4 100%);
}

.cin-svg {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 200px;
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  box-shadow: 10px 10px 0px #E63946;
  padding: 16px 12px;
  z-index: 9999;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cin-svg.cin-compact {
  width: 76px;
}

.cin-film-perf {
  position: absolute;
  left: -3px;
  top: 0;
  bottom: 0;
  width: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
}

.cin-film-perf span {
  width: 8px;
  height: 8px;
  background: #1A1A1A;
  display: block;
}

.cin-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 2px solid #1A1A1A;
  padding-bottom: 14px;
  margin-bottom: 12px;
}

.cin-logo-mark {
  width: 56px;
  height: 56px;
  border: 3px solid #1A1A1A;
  background: linear-gradient(135deg, #E63946 0%, #1A1A1A 100%);
  box-shadow: 6px 6px 0px #1A1A1A;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cin-pulse 2.4s ease-in-out infinite;
}

.cin-svg.cin-compact .cin-logo-mark {
  width: 40px;
  height: 40px;
}

@keyframes cin-pulse {
  0%, 100% { background: linear-gradient(135deg, #E63946 0%, #1A1A1A 100%); }
  50% { background: linear-gradient(135deg, #1A1A1A 0%, #E63946 100%); }
}

.cin-logo-mark::before {
  content: '';
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  clip-path: polygon(50% 0%, 80% 30%, 100% 100%, 0% 100%, 20% 30%);
}

.cin-logo-mark::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #FFB800;
  border-radius: 50%;
  top: 8px;
  right: 8px;
  animation: cin-spot 8s linear infinite;
}

@keyframes cin-spot {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

.cin-logo-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1A1A1A;
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
}

.cin-svg.cin-compact .cin-logo-domain {
  font-size: 8px;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 4px;
}

.cin-logo-company {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #1A1A1A;
  text-align: center;
  margin-top: 6px;
  line-height: 1.3;
  text-transform: uppercase;
}

.cin-svg.cin-compact .cin-logo-company {
  display: none;
}

.cin-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.cin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 8px;
  border: 2px solid transparent;
  background: transparent;
  color: #1A1A1A;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
}

.cin-nav-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: 2px solid #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #1A1A1A;
  font-weight: 800;
}

.cin-nav-item:hover, .cin-nav-item.cin-active {
  background: #E63946;
  color: #FFFFFF;
  border-color: #1A1A1A;
}

.cin-nav-item:hover .cin-nav-icon, .cin-nav-item.cin-active .cin-nav-icon {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cin-nav-item::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: background 0.25s ease;
}

.cin-nav-item:hover::before, .cin-nav-item.cin-active::before {
  background: #FFB800;
}

.cin-svg.cin-compact .cin-nav-text {
  display: none;
}

.cin-nav-text {
  font-weight: 600;
}

.cin-cta-panel {
  background: linear-gradient(135deg, #E63946 0%, #FFB800 100%);
  border: 2.5px solid #1A1A1A;
  box-shadow: 5px 5px 0px #1A1A1A;
  color: #FFFFFF;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cin-cta-panel:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px #1A1A1A, 0 0 0 4px rgba(255, 184, 0, 0.45);
  color: #FFFFFF;
}

.cin-toggle {
  position: absolute;
  top: 8px;
  right: -22px;
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  border: 2px solid #1A1A1A;
  color: #E63946;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.cin-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #E63946, #FFB800, transparent);
  opacity: 0.85;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.1s linear;
}

.cin-mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #FFFFFF;
  border-bottom: 3px solid #1A1A1A;
  z-index: 9998;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
}

.cin-mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.cin-mobile-logo::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 12px;
  bottom: 12px;
  width: 4px;
  background: #1A1A1A;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-image: linear-gradient(#1A1A1A 4px, transparent 4px);
  background-size: 4px 12px;
}

.cin-mobile-mark {
  width: 40px;
  height: 40px;
  border: 3px solid #1A1A1A;
  background: linear-gradient(135deg, #E63946 0%, #1A1A1A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cin-mobile-mark::before {
  content: '';
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  clip-path: polygon(50% 0%, 80% 30%, 100% 100%, 0% 100%, 20% 30%);
}

.cin-mobile-text {
  display: flex;
  flex-direction: column;
}

.cin-mobile-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1A1A1A;
  font-weight: 600;
}

.cin-mobile-company {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cin-burger {
  width: 44px;
  height: 44px;
  border: 3px solid #1A1A1A;
  background: #FFFFFF;
  box-shadow: 4px 4px 0px #E63946;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.cin-burger span {
  width: 22px;
  height: 2.5px;
  background: #1A1A1A;
  transition: transform 0.3s ease;
}

.cin-burger.cin-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.cin-burger.cin-open span:nth-child(2) {
  opacity: 0;
}

.cin-burger.cin-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.cin-mobile-menu {
  position: fixed;
  top: 64px;
  right: 0;
  bottom: 0;
  width: 92%;
  background: #FFFFFF;
  border-left: 3px solid #1A1A1A;
  z-index: 9997;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 30px 24px;
}

.cin-mobile-menu.cin-open {
  transform: translateX(0);
}

.cin-mobile-menu::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background-image: linear-gradient(#1A1A1A 8px, transparent 8px);
  background-size: 8px 24px;
  background-repeat: repeat-y;
  opacity: 0.4;
}

.cin-mobile-link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 2.5px solid #1A1A1A;
  text-decoration: none;
  color: #1A1A1A;
  font-family: 'Archivo Black', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.cin-mobile-link-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #E63946;
  font-weight: 700;
}

.cin-mobile-cta {
  display: block;
  background: linear-gradient(135deg, #E63946 0%, #FFB800 100%);
  border: 3px solid #1A1A1A;
  color: #FFFFFF;
  padding: 18px;
  text-align: center;
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 24px;
  text-decoration: none;
  box-shadow: 6px 6px 0px #1A1A1A;
}

.cin-content {
  margin-left: 240px;
  min-height: 100vh;
  position: relative;
}

.cin-hero {
  position: relative;
  min-height: 100vh;
  padding: 60px 40px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 50%, #F4F4F4 100%);
  overflow: hidden;
}

.cin-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#1A1A1A 1px, transparent 1px), linear-gradient(90deg, #1A1A1A 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.06;
  pointer-events: none;
}

.cin-hero-perf-l, .cin-hero-perf-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 16px;
  border-right: 16px solid #1A1A1A;
  border-left: 16px solid #1A1A1A;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
  background-image: linear-gradient(#FFFFFF 8px, transparent 8px);
  background-size: 8px 32px;
  background-repeat: repeat-y;
  background-position: center;
}

.cin-hero-perf-l { left: 0; }
.cin-hero-perf-r { right: 0; }

.cin-hero-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 3px solid #1A1A1A;
  opacity: 0.7;
}

.cin-hero-corner.tl { top: 24px; left: 24px; border-right: none; border-bottom: none; }
.cin-hero-corner.tr { top: 24px; right: 24px; border-left: none; border-bottom: none; }
.cin-hero-corner.bl { bottom: 24px; left: 24px; border-right: none; border-top: none; }
.cin-hero-corner.br { bottom: 24px; right: 24px; border-left: none; border-top: none; }

.cin-hero-corner::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #E63946;
}

.cin-hero-corner.tl::after { top: -3px; left: -3px; }
.cin-hero-corner.tr::after { top: -3px; right: -3px; }
.cin-hero-corner.bl::after { bottom: -3px; left: -3px; }
.cin-hero-corner.br::after { bottom: -3px; right: -3px; }

.cin-marquee-bg {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 56px;
  font-weight: 700;
  color: #1A1A1A;
  opacity: 0.06;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.cin-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  overflow: hidden;
}

.cin-card-poster {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  box-shadow: 14px 14px 0px #1A1A1A;
  padding: 44px 40px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.cin-card-poster:hover {
  transform: translate(-4px, -4px);
  box-shadow: 18px 18px 0px #E63946;
  z-index: 5;
}

.cin-stamp {
  display: inline-block;
  background: #E63946;
  border: 3px solid #1A1A1A;
  box-shadow: 4px 4px 0px #1A1A1A;
  color: #FFFFFF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 8px 14px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.cin-h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(54px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin: 0 0 18px 0;
  font-weight: 900;
}

.cin-divider-red {
  height: 6px;
  width: 240px;
  background: #E63946;
  margin-bottom: 22px;
  position: relative;
}

.cin-divider-red::before {
  content: '';
  position: absolute;
  left: -10px;
  top: -4px;
  width: 14px;
  height: 14px;
  background: #E63946;
}

.cin-editorial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  color: #E63946;
  margin-bottom: 14px;
  line-height: 1.3;
}

.cin-tech-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 18px;
}

.cin-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #4A4A4A;
  margin-bottom: 18px;
}

.cin-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.cin-btn-primary {
  background: linear-gradient(135deg, #E63946 0%, #FFB800 100%);
  border: 3px solid #1A1A1A;
  box-shadow: 6px 6px 0px #1A1A1A;
  color: #FFFFFF;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  padding: 18px 32px;
  text-decoration: none;
  display: inline-block;
  transform: skewX(-2deg);
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cin-btn-primary:hover {
  color: #FFFFFF;
  transform: skewX(-2deg) translate(-3px, -3px);
  box-shadow: 9px 9px 0px #1A1A1A, 0 0 0 4px rgba(255, 184, 0, 0.45);
}

.cin-btn-secondary {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  box-shadow: 5px 5px 0px #E63946;
  color: #1A1A1A;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  padding: 16px 28px;
  text-decoration: none;
  display: inline-block;
  transform: skewX(2deg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cin-btn-secondary:hover {
  color: #1A1A1A;
  transform: skewX(2deg) translate(-3px, -3px);
  box-shadow: 8px 8px 0px #E63946;
}

.cin-card-3d {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  border: 3px solid #1A1A1A;
  box-shadow: 14px 14px 0px #E63946;
  padding: 28px;
  position: relative;
  z-index: 2;
  margin-left: -32px;
  margin-top: 30px;
  height: 540px;
  display: flex;
  flex-direction: column;
  max-width: calc(100% + 32px);
  overflow: hidden;
}

.cin-3d-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #E63946;
  color: #FFFFFF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 8px 10px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  border: 2px solid #FFB800;
  box-shadow: 3px 3px 0px #FFB800;
  z-index: 3;
}

.cin-3d-object {
  flex: 1;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  border: 2px solid #E63946;
  position: relative;
  overflow: hidden;
}

.cin-3d-object img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cin-3d-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #E63946;
  text-transform: uppercase;
  text-align: center;
  border-top: 2px solid #E63946;
  padding-top: 12px;
}

.cin-card-stat {
  background: #E63946;
  border: 3px solid #1A1A1A;
  box-shadow: 6px 6px 0px #1A1A1A;
  padding: 22px 28px;
  position: absolute;
  bottom: 22%;
  left: 25%;
  z-index: 3;
  width: 320px;
  max-width: calc(100% - 48px);
}

.cin-card-stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}

.cin-card-stat-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: #FFB800;
  text-transform: uppercase;
}

.cin-card-promo {
  background: #FFB800;
  border: 3px solid #1A1A1A;
  box-shadow: 5px 5px 0px #1A1A1A;
  padding: 14px 18px;
  position: absolute;
  bottom: 8%;
  left: 8%;
  z-index: 4;
  width: 220px;
  max-width: calc(100% - 48px);
}

.cin-card-promo-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  color: #1A1A1A;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cin-card-promo-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #1A1A1A;
  text-transform: uppercase;
  font-weight: 700;
}

.cin-hero-stamp-cert {
  position: absolute;
  top: 12%;
  left: 4%;
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  box-shadow: 4px 4px 0px #1A1A1A;
  padding: 10px 14px;
  z-index: 4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #1A1A1A;
  text-transform: uppercase;
  line-height: 1.4;
}

.cin-hero-stamp-bar {
  position: absolute;
  bottom: 12%;
  right: 2%;
  width: 48px;
  height: 160px;
  background: repeating-linear-gradient(0deg, #E63946 0px, #E63946 12px, #1A1A1A 12px, #1A1A1A 24px);
  box-shadow: 4px 4px 0px #FFB800;
  z-index: 4;
}

.cin-hero-stamp-mini {
  position: absolute;
  bottom: 5%;
  left: 30%;
  background: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 6px 6px 0px #FFB800;
  padding: 14px 18px;
  z-index: 4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #E63946;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.cin-section {
  padding: 100px 40px;
  background: #FFFFFF;
  border-top: 3px solid #1A1A1A;
  position: relative;
}

.cin-section-dark {
  background: #1A1A1A;
  color: #FFFFFF;
  border-top: 3px solid #1A1A1A;
}

.cin-section-silver {
  background: #C0C0C0;
  color: #1A1A1A;
  border-top: 3px solid #1A1A1A;
}

.cin-section-warm {
  background: #2A2A2A;
  color: #FFFFFF;
  border-top: 3px solid #1A1A1A;
}

.cin-section-light {
  background: #E8E8E8;
  color: #1A1A1A;
  border-top: 3px solid #1A1A1A;
}

.cin-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cin-h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 96px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: inherit;
  margin: 0 0 20px 0;
  line-height: 0.95;
}

.cin-h2-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: inherit;
  margin: 0 0 20px 0;
  line-height: 0.95;
}

.cin-h2-editorial {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-style: italic;
  font-weight: 500;
  color: inherit;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.cin-h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: inherit;
  margin: 0 0 14px 0;
}

.cin-h3-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: inherit;
  margin: 0 0 14px 0;
}

.cin-section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E63946;
  margin-bottom: 16px;
  font-weight: 700;
  display: inline-block;
  border-bottom: 3px solid #E63946;
  padding-bottom: 4px;
}

.cin-section-dark .cin-section-label, .cin-section-warm .cin-section-label {
  color: #FFB800;
  border-bottom-color: #FFB800;
}

.cin-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.cin-bento-card {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 10px 10px 0px #1A1A1A;
  padding: 30px 26px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, outline 0.3s ease;
  outline: 0px solid #E63946;
  outline-offset: 0px;
  position: relative;
}

.cin-section-dark .cin-bento-card, .cin-section-warm .cin-bento-card {
  background: #FFFFFF;
  color: #1A1A1A;
}

.cin-bento-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 16px 16px 0px #E63946;
  z-index: 10;
  outline: 3px solid #E63946;
  outline-offset: 6px;
}

.cin-bento-1 { grid-column: span 5; }
.cin-bento-2 { grid-column: span 4; }
.cin-bento-3 { grid-column: span 3; }
.cin-bento-4 { grid-column: span 4; }
.cin-bento-5 { grid-column: span 4; }
.cin-bento-6 { grid-column: span 4; }

.cin-icon-square {
  width: 64px;
  height: 64px;
  background: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 4px 4px 0px #E63946;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 28px;
  color: #FFFFFF;
}

.cin-icon-square.cin-red {
  background: #E63946;
  color: #FFFFFF;
  box-shadow: 4px 4px 0px #1A1A1A;
}

.cin-feature-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
}

.cin-feature-list li {
  padding: 6px 0;
  border-bottom: 1px solid #1A1A1A;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #1A1A1A;
  display: flex;
  justify-content: space-between;
}

.cin-feature-list li::before {
  content: '▸';
  color: #E63946;
  margin-right: 8px;
  font-weight: 700;
}

.cin-accordion {
  display: flex;
  flex-direction: row;
  gap: 8px;
  height: 600px;
  margin-top: 50px;
  overflow: hidden;
}

.cin-acc-panel {
  flex: 1;
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  box-shadow: 6px 6px 0px #1A1A1A;
  padding: 28px 20px;
  cursor: pointer;
  position: relative;
  transition: flex 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  outline: 0px solid #E63946;
}

.cin-acc-panel:hover, .cin-acc-panel.cin-open {
  flex: 5;
  box-shadow: 14px 14px 0px #E63946;
  z-index: 5;
  outline: 3px solid #E63946;
  outline-offset: 6px;
}

.cin-acc-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 80px;
  line-height: 0.85;
  color: #1A1A1A;
  opacity: 0.85;
  margin-bottom: 18px;
  writing-mode: horizontal-tb;
}

.cin-acc-panel:nth-child(2n) .cin-acc-num,
.cin-acc-panel:nth-child(4n) .cin-acc-num,
.cin-acc-panel:nth-child(6n) .cin-acc-num {
  color: #E63946;
}

.cin-acc-panel:not(.cin-open) .cin-acc-detail {
  display: none;
}

.cin-acc-panel.cin-open .cin-acc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #E63946;
  margin-bottom: 10px;
}

.cin-acc-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 14px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.cin-acc-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #4A4A4A;
  margin-bottom: 14px;
  max-width: 78%;
}

.cin-acc-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #E63946;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.cin-acc-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #6B7280;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

.cin-acc-icon {
  width: 80px;
  height: 80px;
  background: #1A1A1A;
  border: 3px solid #E63946;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFB800;
  font-size: 36px;
  margin-bottom: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

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

.cin-process-node {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 10px 10px 0px #1A1A1A;
  padding: 30px 26px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  outline: 0px solid #E63946;
}

.cin-process-node:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0px #E63946;
  outline: 3px solid #E63946;
  outline-offset: 6px;
  z-index: 5;
}

.cin-process-step {
  font-family: 'JetBrains Mono', monospace;
  font-size: 48px;
  font-weight: 700;
  color: #E63946;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cin-process-arrow {
  position: absolute;
  top: 50%;
  right: -22px;
  width: 22px;
  height: 22px;
  border-top: 3px solid #1A1A1A;
  border-right: 3px solid #1A1A1A;
  transform: translateY(-50%) rotate(45deg);
  background: #FFFFFF;
  z-index: 6;
}

.cin-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.cin-team-card {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 10px 10px 0px #1A1A1A;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  outline: 0px solid #E63946;
  overflow: hidden;
}

.cin-team-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0px #E63946;
  outline: 3px solid #E63946;
  outline-offset: 6px;
  z-index: 5;
}

.cin-team-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #F4F4F4;
  border-bottom: 3px solid #1A1A1A;
  overflow: hidden;
}

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

.cin-team-info {
  padding: 22px 22px 24px 22px;
}

.cin-team-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.cin-team-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #E63946;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}

.cin-team-bio {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #4A4A4A;
}

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

.cin-review {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 10px 10px 0px #1A1A1A;
  padding: 26px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  outline: 0px solid #E63946;
  position: relative;
}

.cin-review:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0px #E63946;
  outline: 3px solid #E63946;
  outline-offset: 6px;
  z-index: 5;
}

.cin-review-photo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.cin-review-img {
  width: 60px;
  height: 60px;
  background: #F4F4F4;
  border: 2px solid #1A1A1A;
  overflow: hidden;
  flex-shrink: 0;
}

.cin-review-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cin-review-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #1A1A1A;
  letter-spacing: -0.01em;
}

.cin-review-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #6B7280;
  text-transform: uppercase;
}

.cin-review-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #4A4A4A;
  font-style: italic;
}

.cin-review-rating {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #E63946;
  margin-top: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.cin-case {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 10px 10px 0px #1A1A1A;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  outline: 0px solid #E63946;
  overflow: hidden;
}

.cin-case:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0px #E63946;
  outline: 3px solid #E63946;
  outline-offset: 6px;
  z-index: 5;
}

.cin-case-img {
  width: 100%;
  height: 220px;
  background: #F4F4F4;
  border-bottom: 3px solid #1A1A1A;
  overflow: hidden;
}

.cin-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cin-case-info {
  padding: 22px;
}

.cin-case-tag {
  display: inline-block;
  background: #E63946;
  border: 2px solid #1A1A1A;
  color: #FFFFFF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 4px 8px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.cin-case-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.cin-case-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #4A4A4A;
  margin-bottom: 10px;
}

.cin-case-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #E63946;
  text-transform: uppercase;
  font-weight: 700;
}

.cin-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #1A1A1A;
  color: #FFFFFF;
  border: 3px solid #1A1A1A;
  box-shadow: 10px 10px 0px #E63946;
  margin-top: 50px;
}

.cin-stat {
  padding: 32px 26px;
  border-right: 2px solid #FFFFFF;
  position: relative;
}

.cin-stat:last-child {
  border-right: none;
}

.cin-stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  color: #E63946;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cin-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.cin-faq {
  margin-top: 50px;
}

.cin-faq-item {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 6px 6px 0px #1A1A1A;
  margin-bottom: 18px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.cin-faq-item.cin-open {
  box-shadow: 8px 8px 0px #E63946;
}

.cin-faq-q {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #1A1A1A;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 900;
}

.cin-faq-toggle {
  width: 36px;
  height: 36px;
  background: #E63946;
  border: 2px solid #1A1A1A;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
  margin-left: 18px;
  transition: transform 0.3s ease;
  font-family: 'JetBrains Mono', monospace;
}

.cin-faq-item.cin-open .cin-faq-toggle {
  transform: rotate(45deg);
  background: #1A1A1A;
  color: #FFB800;
}

.cin-faq-a {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #4A4A4A;
}

.cin-faq-item.cin-open .cin-faq-a {
  padding: 0 26px 24px 26px;
  max-height: 600px;
}

.cin-form {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 14px 14px 0px #1A1A1A;
  padding: 40px;
  max-width: 700px;
  margin: 40px auto 0 auto;
}

.cin-form-row {
  margin-bottom: 20px;
}

.cin-form-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 8px;
  font-weight: 700;
}

.cin-form-input, .cin-form-textarea, .cin-form-select {
  width: 100%;
  border: 3px solid #1A1A1A;
  background: #FFFFFF;
  color: #1A1A1A;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: box-shadow 0.2s ease;
}

.cin-form-input::placeholder, .cin-form-textarea::placeholder {
  color: #6B7280;
}

.cin-form-input:focus, .cin-form-textarea:focus, .cin-form-select:focus {
  box-shadow: 4px 4px 0px #E63946;
}

.cin-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.cin-form-submit {
  background: linear-gradient(135deg, #E63946 0%, #FFB800 100%);
  border: 3px solid #1A1A1A;
  box-shadow: 6px 6px 0px #1A1A1A;
  color: #FFFFFF;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  padding: 18px 32px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cin-form-submit:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px #1A1A1A, 0 0 0 4px rgba(255, 184, 0, 0.45);
}

.cin-form-success {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 10px 10px 0px #E63946;
  padding: 30px;
  text-align: center;
  margin: 20px 0;
}

.cin-form-success-icon {
  width: 64px;
  height: 64px;
  background: #E63946;
  border: 3px solid #1A1A1A;
  color: #FFFFFF;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.cin-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}

.cin-contact-card {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 10px 10px 0px #1A1A1A;
  padding: 30px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.cin-contact-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0px #E63946;
}

.cin-contact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #E63946;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.cin-contact-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  word-break: break-all;
}

.cin-contact-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #4A4A4A;
  margin-top: 6px;
  line-height: 1.5;
}

.cin-marquee {
  background: #1A1A1A;
  color: #FFFFFF;
  border-top: 3px solid #1A1A1A;
  border-bottom: 3px solid #1A1A1A;
  overflow: hidden;
  padding: 26px 0;
  position: relative;
}

.cin-marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: cin-marquee 50s linear infinite;
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cin-marquee-track span {
  color: #E63946;
  margin: 0 30px;
}

@keyframes cin-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cin-footer {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 80px 40px 30px 40px;
  border-top: 6px solid #E63946;
  position: relative;
}

.cin-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cin-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.cin-footer-brand {
  border-right: 3px solid #FFFFFF;
  padding-right: 30px;
}

.cin-footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.cin-footer-mark {
  width: 56px;
  height: 56px;
  border: 3px solid #FFFFFF;
  background: linear-gradient(135deg, #E63946 0%, #1A1A1A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cin-footer-mark::before {
  content: '';
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  clip-path: polygon(50% 0%, 80% 30%, 100% 100%, 0% 100%, 20% 30%);
}

.cin-footer-text-block {
  display: flex;
  flex-direction: column;
}

.cin-footer-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFB800;
  font-weight: 700;
}

.cin-footer-company {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 700;
  margin-top: 4px;
}

.cin-footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #B8B8B8;
  margin-bottom: 20px;
}

.cin-footer-address {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #FFFFFF;
  line-height: 1.65;
  border: 2px solid #FFFFFF;
  padding: 12px 14px;
  margin-top: 14px;
  background: #2A2A2A;
}

.cin-footer-h {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFB800;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  padding-bottom: 8px;
  border-bottom: 2px solid #E63946;
}

.cin-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cin-footer-list li {
  margin-bottom: 10px;
}

.cin-footer-list a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  display: inline-block;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.cin-footer-list a:hover {
  color: #E63946;
  border-bottom-color: #E63946;
}

.cin-footer-bottom {
  border-top: 2px solid #FFFFFF;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cin-footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #B8B8B8;
  text-transform: uppercase;
}

.cin-footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cin-footer-legal a {
  color: #B8B8B8;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cin-footer-legal a:hover {
  color: #E63946;
}

.cin-cookie {
  position: fixed;
  bottom: 24px;
  left: 270px;
  background: #FFFFFF;
  color: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 8px 8px 0px #E63946;
  padding: 22px 26px;
  max-width: 440px;
  z-index: 9000;
  font-family: 'Inter', sans-serif;
}

.cin-cookie-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.cin-cookie-text {
  font-size: 13px;
  line-height: 1.65;
  color: #4A4A4A;
  margin-bottom: 14px;
}

.cin-cookie-text a {
  color: #E63946;
  text-decoration: underline;
  font-weight: 700;
}

.cin-cookie-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cin-cookie-btn {
  background: #FFFFFF;
  border: 2.5px solid #1A1A1A;
  box-shadow: 4px 4px 0px #1A1A1A;
  color: #1A1A1A;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cin-cookie-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #1A1A1A;
}

.cin-cookie-btn.cin-accept {
  background: linear-gradient(135deg, #E63946 0%, #FFB800 100%);
  color: #FFFFFF;
  border-color: #1A1A1A;
}

.cin-cookie-btn.cin-accept:hover {
  box-shadow: 6px 6px 0px #1A1A1A, 0 0 0 3px rgba(255, 184, 0, 0.45);
}

.cin-page-hero {
  background: #FFFFFF;
  color: #1A1A1A;
  border-bottom: 3px solid #1A1A1A;
  padding: 100px 40px 60px 40px;
  position: relative;
  overflow: hidden;
}

.cin-page-hero-dark {
  background: #1A1A1A;
  color: #FFFFFF;
}

.cin-page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cin-page-hero-stamp {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  background: #E63946;
  color: #FFFFFF;
  border: 3px solid #1A1A1A;
  box-shadow: 4px 4px 0px #FFB800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
}

.cin-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #1A1A1A;
  color: #FFFFFF;
  border-top: 3px solid #1A1A1A;
}

.cin-stats-strip .cin-stat {
  border-right: 2px solid #FFFFFF;
}

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

.cin-blog-card {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 10px 10px 0px #1A1A1A;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  overflow: hidden;
  outline: 0px solid #E63946;
}

.cin-blog-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0px #E63946;
  outline: 3px solid #E63946;
  outline-offset: 6px;
  z-index: 5;
}

.cin-blog-img {
  width: 100%;
  height: 200px;
  background: #F4F4F4;
  border-bottom: 3px solid #1A1A1A;
  overflow: hidden;
}

.cin-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cin-blog-info {
  padding: 22px;
}

.cin-blog-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #E63946;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.cin-blog-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 19px;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.cin-blog-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #4A4A4A;
}

.cin-process-step-row {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #FFFFFF;
  color: #1A1A1A;
  border: 3px solid #1A1A1A;
  box-shadow: 10px 10px 0px #1A1A1A;
  padding: 30px;
  margin-bottom: 22px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  outline: 0px solid #E63946;
}

.cin-process-step-row:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0px #E63946;
  outline: 3px solid #E63946;
  outline-offset: 6px;
  z-index: 5;
}

.cin-process-step-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 80px;
  color: #E63946;
  line-height: 0.85;
  flex-shrink: 0;
  letter-spacing: -0.04em;
}

.cin-process-step-content {
  flex: 1;
}

.cin-process-step-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.cin-process-step-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #4A4A4A;
}

.cin-process-step-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #E63946;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 8px;
}

@media (max-width: 1200px) {
  .cin-h1 { font-size: 90px; }
  .cin-team-grid { grid-template-columns: repeat(2, 1fr); }
  .cin-reviews { grid-template-columns: repeat(2, 1fr); }
  .cin-case-grid { grid-template-columns: repeat(2, 1fr); }
  .cin-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .cin-bento-1, .cin-bento-2, .cin-bento-3, .cin-bento-4, .cin-bento-5, .cin-bento-6 { grid-column: span 6; }
  .cin-process { grid-template-columns: repeat(2, 1fr); }
  .cin-process-arrow { display: none; }
  .cin-accordion { height: auto; flex-direction: column; }
  .cin-acc-panel { min-height: 200px; }
  .cin-acc-panel.cin-open { flex: 1; }
  .cin-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .cin-footer-brand { grid-column: span 2; border-right: none; border-bottom: 2px solid #FFFFFF; padding-bottom: 30px; }
  .cin-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .cin-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .cin-stats-bar .cin-stat:nth-child(2n) { border-right: none; }
  .cin-stats-strip .cin-stat:nth-child(2n) { border-right: none; }
}

@media (max-width: 900px) {
  .cin-svg { display: none; }
  .cin-mobile-bar { display: flex; }
  .cin-content { margin-left: 0; padding-top: 64px; }
  .cin-hero { padding: 30px 20px; }
  .cin-hero-inner { grid-template-columns: 1fr; gap: 20px; overflow-x: hidden; }
  .cin-card-3d { margin-left: 0; height: 380px; margin-top: 0; max-width: 100%; }
  .cin-card-stat { position: relative; bottom: auto; left: auto; width: 100%; margin-top: 16px; max-width: 100%; }
  .cin-card-promo { position: relative; bottom: auto; left: auto; width: 100%; margin-top: 12px; max-width: 100%; }
  .cin-hero-stamp-cert, .cin-hero-stamp-bar, .cin-hero-stamp-mini { display: none; }
  .cin-hero-perf-l, .cin-hero-perf-r { display: none; }
  .cin-marquee-bg { display: none; }
  .cin-section { padding: 70px 20px; }
  .cin-page-hero { padding: 80px 20px 40px 20px; }
  .cin-page-hero-stamp { width: 70px; height: 70px; font-size: 9px; top: 20px; right: 20px; }
  .cin-team-grid { grid-template-columns: 1fr; }
  .cin-reviews { grid-template-columns: 1fr; }
  .cin-case-grid { grid-template-columns: 1fr; }
  .cin-blog-grid { grid-template-columns: 1fr; }
  .cin-bento-1, .cin-bento-2, .cin-bento-3, .cin-bento-4, .cin-bento-5, .cin-bento-6 { grid-column: span 12; }
  .cin-process { grid-template-columns: 1fr; }
  .cin-process-arrow { display: none; }
  .cin-process-step-row { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px; }
  .cin-process-step-num { font-size: 56px; }
  .cin-contact-grid { grid-template-columns: 1fr; }
  .cin-stats-bar { grid-template-columns: 1fr; }
  .cin-stats-strip { grid-template-columns: 1fr; }
  .cin-stats-bar .cin-stat, .cin-stats-strip .cin-stat { border-right: none; border-bottom: 2px solid #FFFFFF; }
  .cin-stats-bar .cin-stat:last-child, .cin-stats-strip .cin-stat:last-child { border-bottom: none; }
  .cin-footer { padding: 50px 20px 24px 20px; }
  .cin-footer-grid { grid-template-columns: 1fr; }
  .cin-footer-brand { grid-column: span 1; }
  .cin-form { padding: 26px; }
  .cin-cta-row { flex-direction: column; }
  .cin-btn-primary, .cin-btn-secondary { width: 100%; text-align: center; }
  .cin-marquee-track { font-size: 22px; }
  .cin-cookie { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .cin-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .cin-h1 { font-size: 52px; }
  .cin-h2 { font-size: 36px; }
  .cin-card-poster { padding: 26px 22px; }
  .cin-card-3d { padding: 18px; height: 320px; }
  .cin-cta-row .cin-btn-primary, .cin-cta-row .cin-btn-secondary { padding: 14px 18px; font-size: 12px; }
}
