/* Kifedha custom styles */
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F7FAFC;
  color: #0A2540;
  margin: 0;
  padding: 0;
}
.kf-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10,37,64,0.97);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  box-shadow: 0 2px 12px rgba(10,37,64,0.07);
  transition: background 0.3s;
}
.kf-navbar-logo {
  height: 44px;
}
.kf-navbar-menu {
  display: flex;
  gap: 32px;
}
.kf-navbar-menu a {
  color: #C6FF00;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.kf-navbar-menu a:hover {
  color: #1DE9B6;
}
.kf-hero, .kf-hero * { color: white !important; }
.kf-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, #0A2540 60%, #1DE9B6 100%);
  padding: 120px 0 60px 0;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}
.kf-hero-content {
  flex: 1 1 50%;
  padding-left: 8vw;
  z-index: 2;
}
.kf-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 16px rgba(10,37,64,0.12);
  animation: fadeInUp 1s 0.1s both;
}
.kf-hero-sub {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 36px;
  color: #C6FF00;
  animation: fadeInUp 1s 0.3s both;
}
.kf-btn-main {
  background: linear-gradient(90deg, #1DE9B6 60%, #C6FF00 100%);
  color: #0A2540;
  border: none;
  border-radius: 32px;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 10px;
  box-shadow: 0 4px 24px rgba(29,233,182,0.12);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 1s 0.5s both;
}
.kf-btn-main:hover {
  background: linear-gradient(90deg, #C6FF00 60%, #1DE9B6 100%);
  color: #0A2540;
  box-shadow: 0 8px 32px rgba(198,255,0,0.18);
}
.kf-hero-illustration {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: fadeInRight 1.2s 0.2s both;
}
.kf-hero-illustration svg {
  width: 340px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(29,233,182,0.12));
}
.kf-hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  width: 100%;
  z-index: 1;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: none; }
}
.kf-how {
  background: #fff;
  padding: 80px 0 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s 0.2s both;
}
.kf-how-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #0A2540;
  margin-left: 70px;
}
.kf-how-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.kf-how-step {
  background: linear-gradient(120deg, #E3F9F6 60%, #C6FF00 100%);
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(10,37,64,0.07);
  padding: 40px 28px;
  width: 260px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeInUp 1s 0.3s both;
}
.kf-how-step:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 36px rgba(29,233,182,0.18);
}
.kf-how-step svg {
  width: 48px; height: 48px; margin-bottom: 18px;
}
.kf-how-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.kf-how-step-desc {
  font-size: 1rem;
  color: #0A2540;
  opacity: 0.8;
}
.kf-wave-bottom {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  width: 100%;
  z-index: 1;
}
.kf-features {
  background: linear-gradient(120deg, #E3F9F6 60%, #1DE9B6 100%);
  padding: 80px 0 40px 0;
  text-align: center;
  position: relative;
  animation: fadeInUp 1s 0.3s both;
}
.kf-features-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #0A2540;
  margin-left: 70px;
}
.kf-features-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.kf-feature {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(10,37,64,0.07);
  padding: 40px 28px;
  width: 260px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeInUp 1s 0.4s both;
}
.kf-feature:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 36px rgba(10,37,64,0.18);
}
.kf-feature svg {
  width: 48px; height: 48px; margin-bottom: 18px;
}
.kf-feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.kf-feature-desc {
  font-size: 1rem;
  color: #0A2540;
  opacity: 0.8;
}
.kf-stats, .kf-stats * { color: white !important; }
.kf-stats {
  background: linear-gradient(120deg, #0A2540 60%, #1DE9B6 100%);
  padding: 80px 0 40px 0;
  text-align: center;
  position: relative;
  animation: fadeInUp 1s 0.4s both;
}
.kf-stats-list {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.kf-stat {
  min-width: 180px;
  margin-bottom: 24px;
}
kf-stat-value {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.kf-stat-label {
  font-size: 1.1rem;
  opacity: 0.85;
}
.kf-testimonials {
  background: #fff;
  padding: 80px 0 40px 0;
  text-align: center;
  animation: fadeInUp 1s 0.5s both;
}
.kf-testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #0A2540;
}
.kf-testimonials-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.kf-testimonial {
  background: #E3F9F6;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(10,37,64,0.07);
  padding: 40px 28px;
  width: 320px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeInUp 1s 0.6s both;
}
.kf-testimonial:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 36px rgba(29,233,182,0.18);
}
.kf-testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 18px;
  color: #0A2540;
}
.kf-testimonial-author {
  font-weight: 700;
  color: #0A2540;
}
.kf-cta {
  background: #C6FF00;
  color: #0A2540 !important;
  text-align: center;
  padding: 64px 0 48px 0;
  animation: fadeInUp 1s 0.7s both;
}
.kf-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.kf-cta-btn {
  background: #0A2540;
  color: #C6FF00;
  border: none;
  border-radius: 32px;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}
.kf-cta-btn:hover {
  background: #1DE9B6;
  color: #0A2540;
}
.kf-footer, .kf-footer * { color: white !important; }
.kf-footer {
  background: #0A2540;
  padding: 48px 0 24px 0;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.kf-footer-col {
  flex: 1 1 240px;
  min-width: 200px;
  margin-bottom: 16px;
  text-align: center;
}
.kf-footer-logo {
  width: 120px;
  margin-bottom: 18px;
}
.kf-footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.kf-footer-menu a {
  color: #C6FF00;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.kf-footer-menu a:hover {
  color: #1DE9B6;
}
.kf-footer-social {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.kf-footer-social a {
  color: #1DE9B6;
  font-size: 1.4rem;
  transition: color 0.2s;
}
.kf-footer-social a:hover {
  color: #C6FF00;
}
.kf-footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 24px;
  color: #E3F9F6;
  font-size: 0.95rem;
}
@media (max-width: 1100px) {
  .kf-hero { flex-direction: column; padding: 100px 0 40px 0; }
  .kf-hero-content, .kf-hero-illustration { padding-left: 0; }
  .kf-footer { flex-direction: column; gap: 0; text-align: center; align-items: center; }
  .kf-footer-col { margin-bottom: 24px; text-align: center; }
}
@media (max-width: 900px) {
  .kf-navbar { padding: 0 16px; }
  .kf-navbar-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(10,37,64,0.97);
    flex-direction: column;
    gap: 0;
    z-index: 2000;
    box-shadow: 0 8px 32px rgba(10,37,64,0.12);
    padding: 0;
    text-align: left;
  }
  .kf-navbar-menu.open {
    display: flex;
  }
  .kf-navbar-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    cursor: pointer;
    margin-left: 12px;
    z-index: 2100;
  }
  .kf-navbar-burger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #C6FF00;
    border-radius: 2px;
    transition: 0.3s;
  }
  .kf-how-steps, .kf-features-list, .kf-stats-list, .kf-testimonials-list { flex-direction: column; gap: 24px; align-items: center; }
}
@media (min-width: 901px) {
  .kf-navbar-burger {
    display: none;
  }
}

/* FAQ Accordion — выравнивание */
.kf-faq-section {
  background: linear-gradient(120deg,#E3F9F6 60%,#C6FF00 100%);
  padding: 80px 0 40px 0;
}
.kf-faq-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 12px;
}
.kf-faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(10,37,64,0.07);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.kf-faq-item:last-child { margin-bottom: 0; }
.kf-faq-question {
  display: flex;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 20px 24px;
  cursor: pointer;
  color: #0A2540;
  background: #E3F9F6;
  border-left: 4px solid #1DE9B6;
  transition: background 0.2s;
}
.kf-faq-question i {
  color: #1DE9B6;
  margin-right: 14px;
  font-size: 1.3rem;
}
.kf-faq-toggle { display: none; }
.kf-faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #F7FAFC;
  color: #0A2540;
  padding: 0 24px;
  font-size: 1rem;
  border-left: 4px solid #C6FF00;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s;
}
.kf-faq-toggle:checked ~ .kf-faq-answer {
  max-height: 200px;
  padding: 18px 24px 24px 24px;
}

/* Timeline — выравнивание */
.kf-timeline-section {
  background: linear-gradient(120deg,#0A2540 60%,#1DE9B6 100%);
  padding: 80px 0 40px 0;
}
.kf-timeline {
  position: relative;
  max-width: 800px;
  margin: 48px auto 0 auto;
  padding: 0 12px;
}
.kf-timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #1DE9B6 0%, #C6FF00 100%);
  transform: translateX(-50%);
  z-index: 0;
}
.kf-timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  width: 100%;
  justify-content: center;
}
.kf-timeline-item.left .kf-timeline-content,
.kf-timeline-item.right .kf-timeline-content {
  min-width: 320px;
  max-width: 340px;
  width: 340px;
}
.kf-timeline-dot {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid #1DE9B6;
  border-radius: 50%;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(29,233,182,0.15);
}
.kf-timeline-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(10,37,64,0.07);
  padding: 24px 32px;
  margin: 0 32px;
  position: relative;
  color: #0A2540;
  animation: fadeInUp 1s both;
}
.kf-timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: #C6FF00;
  margin-bottom: 8px;
}
.kf-timeline-desc {
  font-size: 1rem;
  color: #0A2540;
}
@media (max-width: 900px) {
  .kf-timeline:before { left: 16px; }
  .kf-timeline-item, .kf-timeline-item.left, .kf-timeline-item.right {
    flex-direction: column !important;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .kf-timeline-dot { left: 0; transform: none; margin-bottom: 12px; }
  .kf-timeline-content { margin: 0 0 0 32px; min-width: 0; width: 100%; max-width: 100%; }
}
@media (max-width: 768px) {
    .kf-timeline-item.left .kf-timeline-content, .kf-timeline-item.right .kf-timeline-content{
        max-width: 200px;
        min-width: 200px;
      }
}

/* Stepper — выравнивание */
.kf-stepper-section {
  background: #fff;
  padding: 80px 0 40px 0;
}
.kf-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 48px auto 0 auto;
  max-width: 1100px;
}
.kf-step {
  background: linear-gradient(120deg, #E3F9F6 60%, #C6FF00 100%);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(10,37,64,0.07);
  padding: 32px 24px 24px 24px;
  width: 220px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 0 0 0;
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 1;
}
.kf-step:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 36px rgba(29,233,182,0.18);
}
.kf-step-num {
  background: #1DE9B6;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(29,233,182,0.15);
}
.kf-step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}
.kf-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0A2540;
}
.kf-step-desc {
  font-size: 0.98rem;
  color: #0A2540;
  opacity: 0.85;
  text-align: center;
}
.kf-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #1DE9B6;
  margin: 0 8px;
  height: 220px;
  z-index: 0;
}
@media (max-width: 1100px) {
  .kf-stepper { flex-direction: column; gap: 0; align-items: center; }
  .kf-step-arrow { display: none; }
  .kf-step {  min-width: 0; }
}

/* --- KenVest Premium Minimalism --- */
.kv-premium-bg {
  background: #F7FAFC;
  color: #181F3A;
  font-family: 'Inter', Arial, sans-serif;
}
.kv-navbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 16px rgba(24,31,58,0.06);
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
}
.kv-navbar-logo img { height: 48px; }
.kv-navbar-menu { display: flex; gap: 36px; }
.kv-navbar-menu a {
  color: #181F3A; font-weight: 600; font-size: 1.13rem; text-decoration: none;
  letter-spacing: 0.5px; transition: color 0.2s;
  padding: 2px 0;
}
.kv-navbar-menu a:hover { color: #4B5AEF; border-bottom: 2px solid #4B5AEF; }
.kv-navbar-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.kv-navbar-burger span { width: 28px; height: 3px; background: #181F3A; border-radius: 2px; transition: all 0.3s; }
.kv-navbar-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #181F3A;
  margin-left: 18px;
  letter-spacing: 1px;
  vertical-align: middle;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}
@media (max-width: 900px) {
  .kv-navbar { padding: 0 16px; }
  .kv-navbar-menu { display: none; position: absolute; top: 72px; right: 0; background: #fff; flex-direction: column; gap: 0; min-width: 180px; box-shadow: 0 8px 32px rgba(24,31,58,0.08); border-radius: 0 0 18px 18px; }
  .kv-navbar-menu.open { display: flex; }
  .kv-navbar-burger { display: flex; }
}

.kv-hero-premium {
  display: flex; align-items: center; justify-content: space-between;
  background: none; min-height: 600px; padding: 140px 0 80px 0; position: relative;
}
.kv-hero-content { flex: 1 1 50%; padding-left: 8vw; z-index: 2; }
.kv-hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: 3.8rem; font-weight: 700; margin-bottom: 22px; letter-spacing: 1px; line-height: 1.08;
  color: #181F3A;
}
.kv-gradient-text {
  background: linear-gradient(90deg, #4B5AEF 30%, #1DE9B6 70%, #FFB366 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-fill-color: transparent;
}
.kv-hero-sub {
  font-size: 1.35rem; font-weight: 400; margin-bottom: 38px; color: #4B5AEF;
}
.kv-btn-main {
  background: linear-gradient(90deg, #1DE9B6 60%, #FFB366 100%);
  color: #181F3A; border: none; border-radius: 32px; padding: 18px 44px;
  font-size: 1.13rem; font-weight: 700; cursor: pointer; transition: background 0.2s, box-shadow 0.2s;
  margin-top: 10px; box-shadow: 0 4px 24px rgba(29,233,182,0.10);
  display: inline-flex; align-items: center; gap: 14px;
}
.kv-btn-main:hover {
  background: linear-gradient(90deg, #FFB366 60%, #1DE9B6 100%);
  color: #181F3A; box-shadow: 0 8px 32px rgba(255,179,102,0.13);
}
.kv-hero-illustration { flex: 1 1 50%; display: flex; align-items: center; justify-content: center; z-index: 2; }
.kv-hero-svg { width: 400px; height: auto; filter: drop-shadow(0 8px 32px rgba(29,233,182,0.10)); }
@media (max-width: 900px) {
  .kv-hero-premium { flex-direction: column; padding: 100px 0 40px 0; }
  .kv-hero-content { padding-left: 0; text-align: center; }
  .kv-hero-svg { width: 90vw; max-width: 400px; }
}

.kv-section-premium { margin: 0 auto; max-width: 1200px; padding: 80px 0 40px 0; }
.kv-section-title {
  font-family: 'DM Serif Display', serif; font-size: 2.3rem; font-weight: 700; margin-bottom: 44px; color: #181F3A; letter-spacing: 0.5px;
  text-align: center;
}
.kv-pathways-premium {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin: 0 auto; }
.kv-pathway-premium {
  background: #fff; border-radius: 24px; box-shadow: 0 4px 32px rgba(24,31,58,0.07);
  padding: 48px 36px; width: 270px; min-height: 270px; display: flex; flex-direction: column; align-items: center;
  transition: box-shadow 0.2s, transform 0.2s; position: relative;
  border: 1.5px solid #E3F9F6;
}
.kv-pathway-premium:hover { box-shadow: 0 12px 36px rgba(29,233,182,0.16); transform: translateY(-10px) scale(1.045); border-color: #1DE9B6; }
.kv-pathway-icon { font-size: 2.9rem; margin-bottom: 20px; color: #4B5AEF; }
.kv-pathway-title { font-size: 1.22rem; font-weight: 700; margin-bottom: 12px; color: #181F3A; }
.kv-pathway-desc { font-size: 1.01rem; color: #181F3A; opacity: 0.85; text-align: center; margin-bottom: 20px; }
.kv-pathway-btn { background: #1DE9B6; color: #181F3A; border: none; border-radius: 24px; padding: 12px 32px; font-weight: 700; font-size: 1.01rem; cursor: pointer; transition: background 0.2s; }
.kv-pathway-btn:hover { background: #FFB366; color: #fff; }
@media (max-width: 900px) { .kv-pathways-premium { flex-direction: column; gap: 28px; align-items: center; max-width: 98vw; } }

.kv-tech-section { margin: 0 auto; max-width: 1200px; padding: 80px 0 40px 0; }
.kv-tech-scroll { overflow-x: auto; white-space: nowrap; margin: 0 auto; max-width: 1100px; padding-bottom: 8px; }
.kv-tech-list { display: flex; gap: 36px; }
.kv-tech-premium {
  background: linear-gradient(120deg, #E3F9F6 60%, #B2F1E6 100%);
  border-radius: 20px; box-shadow: 0 2px 12px rgba(24,31,58,0.07);
  padding: 38px 28px; min-width: 230px; display: flex; flex-direction: column; align-items: center;
  animation: fadeInUp 1s 0.3s both;
  border: 1.5px solid #B2F1E6;
}
.kv-tech-icon { font-size: 2.3rem; margin-bottom: 16px; color: #4B5AEF; }
.kv-tech-title { font-size: 1.13rem; font-weight: 600; margin-bottom: 10px; color: #181F3A; }
.kv-tech-desc { font-size: 1.01rem; color: #181F3A; opacity: 0.85; text-align: center; }

.kv-stepper-section { margin: 0 auto; max-width: 1200px; padding: 80px 0 40px 0; }
.kv-stepper-premium { display: flex; justify-content: center; align-items: flex-start; gap: 0; flex-wrap: wrap; }
.kv-step-premium {
  background: #fff; border-radius: 20px; box-shadow: 0 2px 12px rgba(24,31,58,0.07); padding: 38px 28px; width: 230px; min-height: 230px; display: flex; flex-direction: column; align-items: center; position: relative; margin: 0 0 0 0; transition: transform 0.2s, box-shadow 0.2s; z-index: 1; border: 1.5px solid #E3F9F6;
}
.kv-step-premium:hover { box-shadow: 0 8px 32px rgba(29,233,182,0.13); border-color: #1DE9B6; }
.kv-step-num { background: #4B5AEF; color: #fff; font-size: 1.25rem; font-weight: 700; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; box-shadow: 0 2px 8px rgba(75,90,239,0.13); }
.kv-step-icon { font-size: 2.1rem; margin-bottom: 12px; color: #FFB366; }
.kv-step-title { font-size: 1.11rem; font-weight: 600; margin-bottom: 10px; color: #181F3A; }
.kv-step-desc { font-size: 1.01rem; color: #181F3A; opacity: 0.85; text-align: center; }
.kv-step-arrow { display: flex; align-items: center; justify-content: center; font-size: 2.1rem; color: #B2F1E6; margin: 0 10px; height: 230px; z-index: 0; }
@media (max-width: 1100px) { .kv-stepper-premium { flex-direction: column; gap: 0; align-items: center; } .kv-step-arrow { display: none; } .kv-step-premium { min-width: 0; } }

.kv-success-section { margin: 0 auto; max-width: 1200px; padding: 80px 0 40px 0; }
.kv-success-stories-premium { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin: 0 auto; }
.kv-story-premium {
  background: #fff; border-radius: 24px; box-shadow: 0 4px 32px rgba(24,31,58,0.07); padding: 44px 32px; width: 340px; min-height: 220px; display: flex; flex-direction: column; align-items: flex-start; border: 1.5px solid #E3F9F6;
}
.kv-story-photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; }
.kv-story-quote { font-size: 1.09rem; font-style: italic; margin-bottom: 14px; color: #181F3A; }
.kv-story-author { font-weight: 700; color: #181F3A; margin-bottom: 8px; }
.kv-story-link { color: #4B5AEF; font-weight: 600; text-decoration: underline; font-size: 1.01rem; }
@media (max-width: 900px) { .kv-success-stories-premium { flex-direction: column; gap: 28px; align-items: center; max-width: 98vw; } }

.kv-faq-section-premium {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 4px 32px rgba(24,31,58,0.07);
  padding: 48px 0;
  margin: 0;
  width: 99vw;
  border: none;
}
.kv-faq-list {
  width: 100%;
  margin: 0;
  padding: 0;
}
.kv-faq-item { background: #F7FAFC; border-radius: 18px; margin-bottom: 24px; box-shadow: 0 2px 12px rgba(10,37,64,0.07); overflow: hidden; transition: box-shadow 0.2s; border: 1.5px solid #E3F9F6; }
.kv-faq-item:last-child { margin-bottom: 0; }
.kv-faq-question { display: flex; align-items: center; font-size: 1.13rem; font-weight: 700; padding: 22px 28px; cursor: pointer; color: #181F3A; background: #E3F9F6; border-left: 4px solid #1DE9B6; transition: background 0.2s; }
.kv-faq-question i { color: #1DE9B6; margin-right: 16px; font-size: 1.35rem; }
.kv-faq-toggle { display: none; }
.kv-faq-answer { max-height: 0; overflow: hidden; background: #fff; color: #181F3A; padding: 0 28px; font-size: 1.01rem; border-left: 4px solid #FFB366; transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s; }
.kv-faq-toggle:checked ~ .kv-faq-answer { max-height: 220px; padding: 20px 28px 28px 28px; }

.kv-cta-premium { background: linear-gradient(90deg, #1DE9B6 60%, #FFB366 100%); color: #181F3A !important; text-align: center; border-radius: 26px; padding: 72px 0 56px 0; margin: 80px auto 0 auto; max-width: 1200px; animation: fadeInUp 1s 0.7s both; box-shadow: 0 4px 32px rgba(29,233,182,0.10); }
.kv-cta-title { font-family: 'DM Serif Display', serif; font-size: 2.3rem; font-weight: 700; margin-bottom: 22px; color: #181F3A; }
.kv-cta-btn { background: #181F3A; color: #1DE9B6; border: none; border-radius: 32px; padding: 18px 44px; font-size: 1.13rem; font-weight: 700; cursor: pointer; transition: background 0.2s; margin-top: 10px; }
.kv-cta-btn:hover { background: #4B5AEF; color: #fff; }

.kv-footer-premium { background: #fff; border-top: 2px solid #E3F9F6; padding: 60px 0 24px 0; margin-top: 80px; }
.kv-footer-cols { display: flex; gap: 80px; justify-content: center; align-items: flex-start; max-width: 1200px; margin: 0 auto 32px auto; }
.kv-footer-col { flex: 1 1 0; min-width: 220px; }
.kv-footer-logo { height: 44px; margin-bottom: 18px; }
.kv-footer-menu { display: flex; flex-direction: column; gap: 18px; }
.kv-footer-menu a { color: #181F3A; font-weight: 600; font-size: 1.13rem; text-decoration: none; letter-spacing: 0.5px; transition: color 0.2s; }
.kv-footer-menu a:hover { color: #4B5AEF; }
.kv-footer-copy { text-align: center; color: #B2B7C2; font-size: 1.01rem; margin-top: 18px; }
@media (max-width: 900px) { .kv-footer-cols { flex-direction: column; gap: 0; text-align: center; align-items: center; } .kv-footer-col { margin-bottom: 28px; text-align: center; } }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: none; } }

/* --- Premium Asymmetric Blocks --- */
.kv-hero-premium-asym {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: none;
  min-height: 600px;
  padding: 140px 0 80px 0;
  position: relative;
}
@media (max-width: 900px) {
  .kv-hero-premium-asym {
    flex-direction: column;
    padding: 100px 0 40px 0;
    align-items: center;
  }
  .kv-hero-content {
    padding-left: 0;
    text-align: center;
  }
}

.kv-pathways-premium-asym { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; margin: 0 auto; align-items: flex-end; }
.kv-pathway-premium { background: #fff; border-radius: 28px; box-shadow: 0 6px 36px rgba(24,31,58,0.09); padding: 54px 36px 38px 36px; display: flex; flex-direction: column; align-items: center; position: relative; border: 2px solid #E3F9F6; transition: box-shadow 0.2s, border 0.2s, transform 0.2s; }
.kv-pathway-premium:hover { box-shadow: 0 16px 48px rgba(29,233,182,0.18); border-color: #1DE9B6; transform: translateY(-12px) scale(1.05); }
.kv-pathway-tall { min-width: 260px; min-height: 340px; }
.kv-pathway-wide { min-width: 320px; min-height: 260px; }
.kv-pathway-short { min-width: 220px; min-height: 180px; }
.kv-pathway-medium { min-width: 240px; min-height: 220px; }
.kv-pathway-label { position: absolute; top: 18px; left: 24px; background: #E3F9F6; color: #4B5AEF; font-size: 0.93rem; font-weight: 700; border-radius: 12px; padding: 4px 16px; letter-spacing: 0.5px; }
.kv-pathway-icon-overlap { font-size: 3.2rem; color: #4B5AEF; position: absolute; top: -32px; left: 50%; transform: translateX(-50%); background: #fff; border-radius: 50%; box-shadow: 0 2px 12px rgba(75,90,239,0.08); padding: 12px; }
.kv-pathway-title { font-size: 1.22rem; font-weight: 700; margin-top: 32px; margin-bottom: 12px; color: #181F3A; }
.kv-pathway-desc { font-size: 1.01rem; color: #181F3A; opacity: 0.85; text-align: center; margin-bottom: 18px; }
.kv-pathway-mini { font-size: 0.98rem; color: #1DE9B6; margin-bottom: 18px; display: flex; align-items: center; gap: 6px; }
@media (max-width: 900px) { .kv-pathways-premium-asym { flex-direction: column; gap: 28px; align-items: center; max-width: 98vw; } }

.kv-tech-scroll-premium {
  margin: 0 auto;
  max-width: 1100px;
  padding-bottom: 8px;
}
.kv-tech-list-premium {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}
.kv-tech-premium { background: linear-gradient(120deg, #E3F9F6 60%, #B2F1E6 100%); border-radius: 22px; box-shadow: 0 2px 16px rgba(24,31,58,0.07); padding: 44px 32px; display: flex; flex-direction: column; align-items: flex-start; border: 2px solid #B2F1E6; min-width: 220px; position: relative; }
.kv-tech-wide { min-width: 320px; }
.kv-tech-narrow { min-width: 180px; }
.kv-tech-pattern { background: repeating-linear-gradient(135deg, #E3F9F6 0 10px, #B2F1E6 10px 20px); }
.kv-tech-bgicon { font-size: 2.7rem; color: #4B5AEF; opacity: 0.18; position: absolute; top: 18px; right: 18px; z-index: 0; }
.kv-tech-title { font-size: 1.13rem; font-weight: 700; margin-bottom: 10px; color: #181F3A; position: relative; z-index: 1; }
.kv-tech-desc { font-size: 1.01rem; color: #181F3A; opacity: 0.85; text-align: left; margin-bottom: 18px; position: relative; z-index: 1; }
.kv-tech-fact { font-size: 0.98rem; color: #1DE9B6; display: flex; align-items: center; gap: 6px; position: relative; z-index: 1; }

.kv-stepper-premium-asym { display: flex; justify-content: center; align-items: flex-end; gap: 0; flex-wrap: wrap; position: relative; }
.kv-step-premium { background: #fff; border-radius: 50%; box-shadow: 0 2px 12px rgba(24,31,58,0.07); padding: 38px 28px; width: 140px; height: 140px; display: flex; flex-direction: column; align-items: center; position: relative; margin: 0 0 0 0; transition: transform 0.2s, box-shadow 0.2s; z-index: 1; border: 2px solid #E3F9F6; }
.kv-step-circle { border-radius: 50%; }
.kv-step-square { border-radius: 18px; width: 160px; height: 140px; }
.kv-step-wave { border-radius: 40% 60% 60% 40%/60% 40% 60% 40%; width: 150px; height: 140px; }
.kv-step-num { background: #4B5AEF; color: #fff; font-size: 1.15rem; font-weight: 700; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; box-shadow: 0 2px 8px rgba(75,90,239,0.13); }
.kv-step-icon { font-size: 1.7rem; margin-bottom: 8px; color: #FFB366; }
.kv-step-title { font-size: 1.01rem; font-weight: 600; margin-bottom: 8px; color: #181F3A; }
.kv-step-tip { font-size: 0.93rem; color: #1DE9B6; }
.kv-step-connector { width: 48px; height: 4px; background: repeating-linear-gradient(90deg, #B2F1E6 0 8px, #fff 8px 16px); border-radius: 2px; margin: 0 8px; align-self: center; }
@media (max-width: 1100px) { .kv-stepper-premium-asym { flex-direction: column; gap: 0; align-items: center; } .kv-step-connector { display: none; } .kv-step-premium { min-width: 0; margin-bottom: 18px; } }

.kv-success-stories-premium-asym { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; margin: 0 auto; align-items: stretch; }
.kv-story-premium { background: #fff; border-radius: 24px; box-shadow: 0 4px 32px rgba(24,31,58,0.07); width: 340px; min-height: 260px; display: flex; flex-direction: column; align-items: stretch; border: 2px solid #E3F9F6; overflow: hidden; position: relative; }
.kv-story-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: blur(2px) brightness(0.85); z-index: 0; }
.kv-story-content { position: relative; z-index: 1; background: rgba(255,255,255,0.82); padding: 32px 24px; display: flex; flex-direction: column; align-items: flex-start; height: 100%; }
.kv-story-chip { background: #1DE9B6; color: #fff; font-size: 0.93rem; font-weight: 700; border-radius: 12px; padding: 4px 16px; margin-bottom: 12px; letter-spacing: 0.5px; }
.kv-story-quote { font-size: 1.09rem; font-style: italic; margin-bottom: 14px; color: #181F3A; }
.kv-story-author { font-weight: 700; color: #181F3A; margin-bottom: 8px; }
@media (max-width: 900px) { .kv-success-stories-premium-asym { flex-direction: column; gap: 28px; align-items: center; max-width: 98vw; } }

.kv-faq-list-premium { max-width: 900px; margin: 0 auto; padding: 0 12px; }
.kv-faq-item-premium {
  background: #F7FAFC;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(10,37,64,0.07);
  overflow: hidden;
  transition: box-shadow 0.2s;
  border: 2px solid #E3F9F6;
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 900px) {
  .kv-faq-item-premium {
    width: 100%;
  }
}
.kv-faq-num { font-size: 2.1rem; font-weight: 700; color: #E3F9F6; margin: 0 24px 0 0; align-self: center; min-width: 48px; text-align: right; }
.kv-faq-question { display: flex; align-items: center; font-size: 1.13rem; font-weight: 700; padding: 22px 28px; cursor: pointer; color: #181F3A; background: #E3F9F6; border-left: 4px solid #1DE9B6; transition: background 0.2s; flex: 1; }
.kv-faq-question i { color: #1DE9B6; margin-right: 16px; font-size: 1.35rem; }
.kv-faq-toggle { display: none; }
.kv-faq-answer { max-height: 0; overflow: hidden; background: #fff; color: #181F3A; padding: 0 28px; font-size: 1.01rem; border-left: 4px solid #FFB366; transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding 0.3s; flex: 1 1 100%; }
.kv-faq-toggle:checked ~ .kv-faq-answer { max-height: 220px; padding: 20px 28px 28px 28px; }

.kv-cta-premium-asym { background: linear-gradient(90deg, #1DE9B6 60%, #FFB366 100%); color: #181F3A !important; text-align: center; border-radius: 32px; padding: 88px 0 64px 0; margin: 100px auto 0 auto; max-width: 1200px; animation: fadeInUp 1s 0.7s both; box-shadow: 0 4px 32px rgba(29,233,182,0.10); position: relative; overflow: hidden; }
.kv-cta-premium-asym .kv-cta-title { font-family: 'DM Serif Display', serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 28px; color: #181F3A; }
.kv-cta-premium-asym .kv-cta-btn { background: #181F3A; color: #1DE9B6; border: none; border-radius: 32px; padding: 20px 48px; font-size: 1.18rem; font-weight: 700; cursor: pointer; transition: background 0.2s; margin-top: 14px; display: inline-flex; align-items: center; gap: 12px; }
.kv-cta-premium-asym .kv-cta-btn:hover { background: #4B5AEF; color: #fff; }

.kv-footer-contacts { margin-top: 12px; }
.kv-footer-title { font-size: 1.13rem; font-weight: 700; color: #181F3A; margin-bottom: 10px; }
.kv-footer-contact { color: #4B5AEF; font-size: 1.01rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.kv-footer-partners { display: flex; gap: 24px; justify-content: center; align-items: center; margin: 24px 0 0 0; }
.kv-footer-partner { height: 32px; opacity: 0.7; transition: opacity 0.2s; }
.kv-footer-partner:hover { opacity: 1; }

.kv-hero-img {
  position: absolute;
  right: 40px;
  top: 40px;
  width: 426px;
  max-width: 48vw;
  height: 454px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(24,31,58,0.13);
  z-index: 2;
  border: 6px solid #fff;
}
.kv-hero-illustration-overlap {
  position: relative;
  min-width: 420px;
  min-height: 360px;
}
@media (max-width: 900px) {
  .kv-hero-img {
    position: static;
    width: 100vw;
    max-width: 100vw;
    height: 440px;
    margin-bottom: 18px;
    border-radius: 22px;
  }
  .kv-hero-illustration-overlap {
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    align-items: center;
  }
}

.kv-values-premium-bg {
  position: relative;
  overflow: visible;
  background: none;
}
.kv-values-bg-svg {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.kv-values-premium {
  gap: 48px;
  position: relative;
  z-index: 1;
}
.kv-pathway-gradient {
  border: 2.5px solid;
  border-image: linear-gradient(120deg, #4B5AEF 10%, #1DE9B6 90%) 1;
  background: linear-gradient(120deg, #fff 80%, #E3F9F6 100%);
  box-shadow: 0 8px 40px rgba(75,90,239,0.07);
  animation: fadeInUp 1s 0.1s both;
}
.kv-pathway-gradient2 {
  border: 2.5px solid;
  border-image: linear-gradient(120deg, #1DE9B6 10%, #FFB366 90%) 1;
  background: linear-gradient(120deg, #fff 80%, #B2F1E6 100%);
  box-shadow: 0 8px 40px rgba(29,233,182,0.07);
  animation: fadeInUp 1s 0.2s both;
}
.kv-pathway-gradient3 {
  border: 2.5px solid;
  border-image: linear-gradient(120deg, #FFB366 10%, #4B5AEF 90%) 1;
  background: linear-gradient(120deg, #fff 80%, #FFB366 100%);
  box-shadow: 0 8px 40px rgba(255,179,102,0.07);
  animation: fadeInUp 1s 0.3s both;
}
.kv-pathway-gradient4 {
  border: 2.5px solid;
  border-image: linear-gradient(120deg, #B2F1E6 10%, #4B5AEF 90%) 1;
  background: linear-gradient(120deg, #fff 80%, #B2F1E6 100%);
  box-shadow: 0 8px 40px rgba(178,241,230,0.07);
  animation: fadeInUp 1s 0.4s both;
}
.kv-pathway-overlap {
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s, transform 0.2s;
}
.kv-pathway-overlap:hover {
  box-shadow: 0 16px 48px rgba(29,233,182,0.18), 0 2px 24px rgba(75,90,239,0.10);
  transform: translateY(-10px) scale(1.04);
}
.kv-pathway-icon-big {
  font-size: 3.8rem;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 16px rgba(75,90,239,0.10);
  padding: 18px;
  position: absolute;
  z-index: 2;
}
.kv-pathway-quote {
  font-style: italic;
  color: #4B5AEF;
  font-size: 1.01rem;
  margin: 18px 0 10px 0;
  opacity: 0.85;
}

.kv-timeline-premium-bg {
  position: relative;
  overflow: visible;
  background: none;
}
.kv-timeline-bg-svg {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.kv-timeline-premium-vertical {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  z-index: 1;
}
.kv-timeline-premium-vertical:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #4B5AEF 0%, #1DE9B6 100%);
  border-radius: 3px;
  z-index: 0;
  transform: translateX(-50%);
}
.kv-timeline-step {
  position: relative;
  width: 420px;
  min-height: 160px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(24,31,58,0.07);
  padding: 44px 36px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  animation: fadeInUp 1s both;
}
.kv-timeline-step.left { align-self: flex-start; margin-left: 0; }
.kv-timeline-step.right { align-self: flex-end; margin-right: 0; }
.kv-timeline-dot-premium {
  position: absolute;
  left: -54px;
  top: 32px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #4B5AEF 40%, #1DE9B6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: #fff;
  box-shadow: 0 2px 16px rgba(75,90,239,0.10);
  z-index: 3;
}
.kv-timeline-step.right .kv-timeline-dot-premium {
  left: auto;
  right: -54px;
}
.kv-timeline-year-premium {
  font-size: 2.2rem;
  font-weight: 700;
  color: #4B5AEF;
  margin-bottom: 8px;
}
.kv-timeline-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #181F3A;
  margin-bottom: 8px;
}
.kv-timeline-desc-premium {
  font-size: 1.01rem;
  color: #181F3A;
  opacity: 0.85;
}
.kv-timeline-gradient {
  border: 2.5px solid;
  border-image: linear-gradient(120deg, #4B5AEF 10%, #1DE9B6 90%) 1;
  animation: fadeInUp 1s 0.1s both;
}
.kv-timeline-gradient2 {
  border: 2.5px solid;
  border-image: linear-gradient(120deg, #1DE9B6 10%, #FFB366 90%) 1;
  animation: fadeInUp 1s 0.2s both;
}
.kv-timeline-gradient3 {
  border: 2.5px solid;
  border-image: linear-gradient(120deg, #FFB366 10%, #4B5AEF 90%) 1;
  animation: fadeInUp 1s 0.3s both;
}
.kv-timeline-gradient4 {
  border: 2.5px solid;
  border-image: linear-gradient(120deg, #B2F1E6 10%, #4B5AEF 90%) 1;
  animation: fadeInUp 1s 0.4s both;
}
@media (max-width: 900px) {
  .kv-timeline-step, .kv-timeline-step.left, .kv-timeline-step.right {
    width: 80vw;
    min-width: 0;
    max-width: 100vw;
    align-self: center;
  }
  .kv-timeline-dot-premium, .kv-timeline-step.right .kv-timeline-dot-premium {
    left: 16px;
    right: auto;
    top: 16px;
  }
  .kv-timeline-premium-vertical:before {
    left: 32px;
    width: 4px;
  }
}

/* --- KenVest Premium Contact Form --- */
.kv-contact-form-premium {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(75,90,239,0.07);
  padding: 54px 48px 44px 48px;
  max-width: 540px;
  margin: 0 auto 48px auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border: 2.5px solid #E3F9F6;
  animation: fadeInUp 1s 0.2s both;
}
.kv-contact-form-premium input,
.kv-contact-form-premium textarea {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.18rem;
  padding: 20px 24px 20px 54px;
  border-radius: 18px;
  border: 2px solid #E3F9F6;
  background: linear-gradient(120deg, #F7FAFC 80%, #E3F9F6 100%);
  color: #181F3A;
  box-shadow: 0 2px 12px rgba(24,31,58,0.06);
  outline: none;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
  margin-bottom: 0;
  width: 100%;
  resize: none;
}
.kv-contact-form-premium input:focus,
.kv-contact-form-premium textarea:focus {
  border: 2px solid #4B5AEF;
  background: linear-gradient(120deg, #fff 80%, #B2F1E6 100%);
  box-shadow: 0 4px 24px rgba(75,90,239,0.13);
}
.kv-contact-form-premium input::placeholder,
.kv-contact-form-premium textarea::placeholder {
  color: #B2B7C2;
  opacity: 1;
  font-size: 1.13rem;
}
.kv-contact-form-premium textarea {
  min-height: 120px;
  max-height: 260px;
}
.kv-contact-form-premium .kv-cta-btn {
  background: linear-gradient(90deg, #4B5AEF 30%, #1DE9B6 70%, #FFB366 100%);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 20px 0;
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(29,233,182,0.10);
  margin-top: 10px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background 0.2s, box-shadow 0.2s;
}
.kv-contact-form-premium .kv-cta-btn:hover {
  background: linear-gradient(90deg, #FFB366 30%, #1DE9B6 70%, #4B5AEF 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255,179,102,0.13);
}
.kv-contact-form-premium .fa {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #B2B7C2;
  font-size: 1.25rem;
  pointer-events: none;
}
.kv-contact-form-premium .kv-input-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 700px) {
  .kv-contact-form-premium {
    padding: 32px 10vw 28px 10vw;
    max-width: 98vw;
    border-radius: 18px;
  }
  .kv-contact-form-premium input,
  .kv-contact-form-premium textarea {
    font-size: 1.05rem;
    padding: 16px 18px 16px 44px;
    border-radius: 12px;
  }
  .kv-contact-form-premium .kv-cta-btn {
    font-size: 1.05rem;
    padding: 16px 0;
    border-radius: 18px;
  }
}