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

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

:root {
  --kp-text: #111111;
  --kp-text-soft: #333333;
  --kp-surface: rgba(255,255,255,0.94);
  --kp-black: #000000;
  --kp-white: #ffffff;
  --kp-nav-active: #D8D1CB;
  --kp-footer-bg: #F7F4F1;
  --kp-button-bg: #E9E4E0;
  --kp-button-text: #111111;
  --kp-form-outline: #2B2B2B;
  --kp-container: 1160px;
  --kp-side-space: clamp(22px, 4vw, 56px);
  --kp-font-heading: 'Cormorant Garamond', serif;
  --kp-font-body: 'Montserrat', sans-serif;
  --kp-h1: clamp(2.45rem, 5vw, 4rem);
  --kp-h2: clamp(1.95rem, 3.2vw, 2.8rem);
  --kp-h3: clamp(1.02rem, 1.2vw, 1.16rem);
  --kp-body: 1rem;
  --kp-small: 0.95rem;
  --kp-nav-height: 94px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--kp-font-body);
  color: var(--kp-text);
  line-height: 1.7;
  overflow-x: hidden;
  background: url("https://image2url.com/r2/default/images/1775293289284-c034cec1-d034-4092-a514-928e50a5da68.png") center center / cover no-repeat fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.kp-container {
  width: min(calc(100% - (var(--kp-side-space) * 2)), var(--kp-container));
  margin: 0 auto;
}

.kp-full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.kp-main {
  padding-top: var(--kp-nav-height);
}

.kp-site-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--kp-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  width: 100%;
}

.kp-site-nav-inner {
  width: min(calc(100% - (var(--kp-side-space) * 2)), var(--kp-container));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  position: relative;
}

.kp-brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  flex: 0 0 auto;
}

.kp-brand-link:hover {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.kp-brand-logo {
  display: block;
  width: auto;
  height: 46px;
  max-width: 220px;
  object-fit: contain;
}

.kp-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.82);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease, background-color 0.3s ease;
  flex: 0 0 auto;
}

.kp-nav-toggle:hover {
  transform: scale(1.06);
  filter: brightness(1.06);
}

.kp-nav-toggle svg {
  width: 22px;
  height: 22px;
  stroke: #000000;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.kp-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  min-width: 0;
}

.kp-nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--kp-black);
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  flex: 0 0 auto;
  cursor: pointer;
}

.kp-nav-link:hover {
  background: rgba(0,0,0,0.05);
  transform: scale(1.06);
  filter: brightness(1.08);
}

.page-home .kp-nav-link[href="/home"],
.page-services .kp-nav-link[href="/services"],
.page-work .kp-nav-link[href="/work"],
.page-contact .kp-nav-link[href="/contact"],
.page-privacy .kp-nav-link[href="/privacy"] {
  background: var(--kp-nav-active);
  color: var(--kp-black);
}

.kp-hero,
.kp-section {
  padding: 78px 0;
}

.kp-hero--tight {
  padding: 74px 0 48px;
}

.kp-heading-1 {
  font-family: var(--kp-font-heading);
  font-size: var(--kp-h1);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--kp-black);
  margin: 0 0 18px;
}

.kp-heading-2 {
  font-family: var(--kp-font-heading);
  font-size: var(--kp-h2);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--kp-black);
  margin: 0 0 16px;
}

.kp-heading-3 {
  font-size: var(--kp-h3);
  line-height: 1.45;
  font-weight: 700;
  color: var(--kp-black);
  margin: 0 0 12px;
  transition: transform 0.28s ease, color 0.28s ease;
}

.kp-copy,
.kp-copy p,
.kp-copy li,
.kp-text {
  font-size: var(--kp-body);
  line-height: 1.8;
  color: var(--kp-text-soft);
}

.kp-copy-strong {
  font-weight: 500;
  color: var(--kp-black);
}

.kp-one-line-center {
  text-align: center;
  white-space: nowrap;
  max-width: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.kp-cta-btn,
.kp-cta-btn:visited,
.kp-cta-btn:hover,
.kp-cta-btn:active,
.kp-cta-btn:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  background: var(--kp-button-bg);
  color: var(--kp-button-text) !important;
  border: 1px solid var(--kp-button-bg);
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.kp-cta-btn:hover {
  transform: scale(1.06);
  filter: brightness(0.98);
}

.kp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.kp-center-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.kp-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kp-image-wrap img {
  width: 100%;
  max-width: 430px;
  height: auto;
  display: block;
  border-radius: 10px;
}

.kp-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kp-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: var(--kp-body);
  line-height: 1.8;
  color: var(--kp-text-soft);
}

.kp-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--kp-black);
  font-weight: 700;
}

.kp-five-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.kp-card,
.kp-result-card,
.kp-tool-card,
.kp-contact-card-center {
  background: transparent;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.kp-card,
.kp-result-card {
  text-align: left;
}

.kp-tool-card,
.kp-contact-card-center {
  text-align: center;
}

.kp-card p,
.kp-result-card p,
.kp-tool-card p,
.kp-contact-card-center p {
  transition: transform 0.28s ease, color 0.28s ease;
}

.kp-card:hover,
.kp-result-card:hover,
.kp-tool-card:hover,
.kp-contact-card-center:hover {
  transform: translateY(-6px);
  filter: brightness(1.01);
}

.kp-card:hover .kp-heading-3,
.kp-result-card:hover .kp-heading-3,
.kp-tool-card:hover .kp-heading-3,
.kp-contact-card-center:hover .kp-heading-3 {
  transform: translateY(-2px);
  color: #000000;
}

.kp-card:hover p,
.kp-result-card:hover p,
.kp-tool-card:hover p,
.kp-contact-card-center:hover p {
  transform: translateY(-1px);
  color: #1f1f1f;
}

.kp-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px 80px;
  margin-top: 54px;
}

.kp-tool-card p {
  max-width: 430px;
  margin: 0 auto 24px;
}

.kp-logo-stage {
  width: 100%;
  max-width: 360px;
  height: 120px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kp-logo-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.kp-logo-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.kp-logo-frame {
  width: 250px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kp-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.kp-logo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--kp-black);
}

.kp-logo-slide.show-fallback img {
  display: none;
}

.kp-logo-slide.show-fallback .kp-logo-fallback {
  display: flex;
}

.kp-logo-name {
  margin-top: 8px;
  min-height: 1.4em;
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--kp-black);
}

.kp-result-card p {
  margin: 0 0 8px;
  font-size: var(--kp-small);
  line-height: 1.8;
  color: var(--kp-text-soft);
}

.kp-marquee-section {
  padding: 84px 0 76px;
  overflow: hidden;
}

.kp-marquee-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 42px;
  padding-left: var(--kp-side-space);
  padding-right: var(--kp-side-space);
}

.kp-marquee-lane {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.kp-marquee-track {
  display: flex;
  align-items: center;
  gap: 54px;
  width: max-content;
  animation: kpMarqueeLeft 30s linear infinite;
  will-change: transform;
}

.kp-marquee-logo {
  width: var(--w, 220px);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(var(--y, 0));
}

.kp-marquee-logo img {
  width: 100%;
  max-height: 130px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.kp-cta-center {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.kp-contact-three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.kp-contact-card-center .kp-heading-3 {
  min-height: 3em;
}

.kp-icon-button-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.kp-icon-button-group-center {
  justify-content: center;
}

.kp-contact-icon-link {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.kp-contact-icon-link:hover {
  transform: scale(1.12);
  filter: brightness(1.12);
}

.kp-contact-icon-tile {
  width: 96px;
  min-height: 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.kp-contact-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.kp-contact-icon-circle--email { background: #ea4335; }
.kp-contact-icon-circle--whatsapp { background: #25d366; }
.kp-contact-icon-circle--meet { background: #4285F4; }

.kp-contact-icon-circle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.kp-contact-icon-label {
  font-size: 0.84rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  color: var(--kp-black);
}

.kp-contact-form-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.kp-contact-form {
  display: grid;
  gap: 18px;
}

.kp-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.kp-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kp-field-group label {
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--kp-black);
}

.kp-field-group input,
.kp-field-group select,
.kp-field-group textarea {
  width: 100%;
  border: 1px solid var(--kp-form-outline);
  background: rgba(255,255,255,0.18);
  color: var(--kp-black);
  padding: 14px 14px;
  font-size: 0.96rem;
  line-height: 1.4;
  font-weight: 400;
  outline: none;
  border-radius: 0;
  appearance: none;
  font-family: var(--kp-font-body);
}

.kp-field-group input::placeholder,
.kp-field-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.55);
}

.kp-field-group input:focus,
.kp-field-group select:focus,
.kp-field-group textarea:focus {
  box-shadow: 0 0 0 1px var(--kp-form-outline) inset;
}

.kp-field-group textarea {
  min-height: 180px;
  resize: vertical;
}

.kp-field-full {
  grid-column: 1 / -1;
}

.kp-other-support-row {
  display: none;
}

.kp-other-support-row.is-visible {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kp-form-status {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--kp-black);
  min-height: 1.4em;
  margin-top: 12px;
}

.kp-hidden-frame {
  display: none;
  width: 0;
  height: 0;
  border: 0;
}

.kp-policy-wrap {
  max-width: 920px;
}

.kp-policy-block {
  padding: 0 0 30px;
}

.kp-policy-block h3 {
  margin-bottom: 10px;
}

.kp-policy-list {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
}

.kp-policy-list li {
  margin-bottom: 8px;
  font-size: var(--kp-body);
  line-height: 1.8;
  color: var(--kp-text-soft);
}

.kp-footer {
  background-color: var(--kp-footer-bg);
  padding: 28px 0 40px;
  text-align: center;
  margin-top: 28px;
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}

.kp-footer .kp-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.kp-footer-connect-text {
  color: #111111;
  font-size: 16px;
  margin: 0 0 16px;
  font-weight: 600;
}

.kp-footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  width: 100%;
}

.kp-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  width: auto;
  height: auto;
  padding: 0;
}

.kp-footer-social a:hover {
  transform: scale(1.12);
  filter: brightness(1.08);
}

.kp-footer-social img {
  display: block;
  width: auto;
  height: 34px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  background: transparent;
}

.kp-footer-copy {
  color: #666666;
  font-size: 12px;
  margin: 22px 0 0;
  line-height: 1.6;
  display: block;
  width: 100%;
  text-align: center;
}

.kp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.kp-reveal.kp-revealed {
  opacity: 1;
  transform: translateY(0);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1280px) {
  .kp-five-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .kp-tool-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .kp-contact-three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .kp-nav-toggle {
    display: inline-flex;
  }

  .kp-nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 14px;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 9999;
  }

  body.kp-menu-open .kp-nav-links {
    display: flex;
  }

  .kp-nav-link {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.92rem;
    padding: 11px 14px;
    border-radius: 10px;
  }
}

@media (max-width: 860px) {
  .kp-form-row {
    grid-template-columns: 1fr;
  }

  .kp-footer {
    padding: 28px 0 52px;
  }

  .kp-footer-social {
    gap: 18px;
  }

  .kp-footer-copy {
    font-size: 12px;
    margin-top: 20px;
    padding-bottom: 4px;
  }

  .kp-footer-social img {
    height: 30px;
  }
}

@media (max-width: 760px) {
  :root {
    --kp-nav-height: 86px;
  }

  .kp-site-nav-inner {
    min-height: 72px;
    padding: 10px 0;
    gap: 12px;
  }

  .kp-brand-logo {
    height: 40px;
    max-width: 170px;
  }

  .kp-grid-2,
  .kp-tool-grid {
    grid-template-columns: 1fr;
  }

  .kp-contact-three-col {
    grid-template-columns: 1fr;
  }

  .kp-hero,
  .kp-section {
    padding: 58px 0;
  }

  .kp-hero--tight {
    padding: 56px 0 34px;
  }

  .kp-marquee-track {
    gap: 32px;
  }

  .kp-marquee-logo {
    width: calc(var(--w, 220px) * 0.78);
  }

  .kp-marquee-logo img {
    max-height: 88px;
  }

  .kp-one-line-center {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .kp-brand-logo {
    height: 36px;
    max-width: 150px;
  }

  .kp-five-grid {
    grid-template-columns: 1fr;
  }

  .kp-cta-btn {
    width: 100%;
  }

  .kp-heading-1 {
    font-size: 2.35rem;
  }

  .kp-heading-2 {
    font-size: 2rem;
  }

  .kp-copy,
  .kp-copy p,
  .kp-copy li,
  .kp-text,
  .kp-policy-list li {
    font-size: 0.95rem;
  }

  .kp-logo-stage {
    max-width: 300px;
    height: 108px;
  }

  .kp-logo-frame {
    width: 210px;
    height: 62px;
  }

  .kp-footer {
    padding: 24px 0 56px;
  }

  .kp-footer-connect-text {
    font-size: 15px;
  }

  .kp-footer-copy {
    font-size: 11px;
  }

  .kp-footer-social img {
    height: 26px;
  }
}
