/* ============================================================
   KONTAKTI.CSS – Контакти page styles
   All sizing is in rem/px; layout uses CSS Grid + Flexbox.
   Mobile-first: base = mobile, then up via min-width queries.
   ============================================================ */

/* ─── Nav: uses styles.css — no page override needed ─── */


/* ─── PAGE LAYOUT ─── */
main {
  overflow: hidden;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.kt-hero {
  padding: 64px 0 48px;
  background: #fff;
}

.kt-hero-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ─ Left column ─ */
.kt-hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kt-hero-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.88px;
  color: #101828;
  margin: 0 0 20px 0;
}

.kt-hero-desc {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #6a7282;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kt-hero-desc p {
  margin: 0;
}

.kt-link-blue {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.kt-link-blue:hover { opacity: 0.8; }

.kt-hero-illustration {
  width: 100%;
  max-width: 483px;
  margin-top: 16px;
}
.kt-hero-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─ Right column: form ─ */
.kt-hero-right {
  display: flex;
  flex-direction: column;
}

.kt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kt-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kt-form-group--textarea {
  flex: 1;
}

.kt-form-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #364153;
  line-height: 1.5;
}

.kt-form-input {
  width: 100%;
  height: 47px;
  border: 1px solid #d1d5dc;
  border-radius: 8px;
  background: #fff;
  padding: 0 16px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #101828;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}

.kt-form-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.kt-form-textarea {
  width: 100%;
  min-height: 160px;
  border: 1px solid #d1d5dc;
  border-radius: 8px;
  background: #fff;
  padding: 12px 16px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #101828;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
  line-height: 1.5;
}

.kt-form-textarea::placeholder {
  color: #99a1af;
}

.kt-form-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* ─ reCAPTCHA row ─ */
.kt-recaptcha {
  background: #f9fafb;
  border: 1px solid #d1d5dc;
  border-radius: 8px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  flex-shrink: 0;
}

.kt-recaptcha-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kt-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #2563eb;
  flex-shrink: 0;
}

.kt-recaptcha-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #364153;
  cursor: pointer;
  user-select: none;
}

.kt-recaptcha-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.kt-recaptcha-right svg {
  flex-shrink: 0;
}

.kt-recaptcha-labels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.kt-recaptcha-brand {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 8px;
  color: #99a1af;
  font-weight: 400;
  white-space: nowrap;
}

.kt-recaptcha-links {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 7px;
  color: #99a1af;
  white-space: nowrap;
}

/* ─ Submit button ─ */
.kt-submit-btn {
  width: 100%;
  height: 50px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.kt-submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(30deg, #59b5f7 0%, #2563eb 68%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.kt-submit-btn:hover::after {
  opacity: 1;
}

.kt-submit-btn:active {
  transform: translateY(1px);
}


/* ============================================================
   CARDS "СВЪРЖИ СЕ С НАС" SECTION
   ============================================================ */
.kt-cards-section {
  background: #fff;
  padding: 72px 24px;
}

.kt-cards-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.kt-cards-header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kt-cards-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #101828;
  letter-spacing: -0.64px;
  line-height: 1.2;
  margin: 0;
}

.kt-cards-subtitle {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.625;
  letter-spacing: -0.31px;
  margin: 0;
}

.kt-link-indigo {
  color: #6366f1;
  text-decoration: underline;
  text-decoration-color: #6366f1;
  transition: opacity 0.2s;
}
.kt-link-indigo:hover { opacity: 0.75; }

/* 3-column grid on desktop */
.kt-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Individual card */
.kt-card {
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}

.kt-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  border-color: #b0c4e0;
  transform: translateY(-2px);
}

.kt-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.kt-card-icon--indigo { background: #eef2ff; }
.kt-card-icon--red    { background: #fef2f2; }
.kt-card-icon--sky    { background: #f0f9ff; }
.kt-card-icon--amber  { background: #fffbeb; }
.kt-card-icon--emerald{ background: #ecfdf5; }
.kt-card-icon--violet { background: #f5f3ff; }

.kt-card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.kt-card-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #101828;
  letter-spacing: -0.44px;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.kt-card-desc {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.625;
  letter-spacing: -0.31px;
  margin: 0;
}


/* ============================================================
   BETA TESTER CTA BANNER
   ============================================================ */
.kt-beta-section {
  padding: 0 24px 56px;
  background: #fff;
}

.kt-beta-banner {
  max-width: 1140px;
  margin: 0 auto;
  background: rgba(136, 206, 255, 0.14);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.kt-beta-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.kt-beta-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #101828;
  letter-spacing: -0.44px;
  line-height: 1.5;
  margin: 0;
}

.kt-beta-desc {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  letter-spacing: -0.31px;
  margin: 0;
}

.kt-beta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  height: 48px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.31px;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.kt-beta-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.kt-beta-btn:active {
  transform: translateY(0);
}

.kt-beta-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(10);
}


/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.kt-partners-section {
  background: rgba(249, 250, 251, 0.5);
  border-top: 1px solid #f3f4f6;
  padding: 40px 24px;
}

.kt-partners-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.kt-partners-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #99a1af;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  margin: 0;
}

.kt-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.kt-partner-logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(20%);
  transition: opacity 0.2s, filter 0.2s;
}

.kt-partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.kt-partner-slack {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #d1d5dc;
  letter-spacing: -0.2px;
}


/* ============================================================
   FAQ SECTION
   ============================================================ */
.kt-faq-section {
  padding: 80px 24px;
  background: #fff;
}

.kt-faq-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.kt-faq-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kt-faq-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #101828;
  letter-spacing: -0.7px;
  line-height: 1.25;
  margin: 0;
}

.kt-faq-subtitle {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6a7282;
  margin: 0;
  line-height: 1.5;
}

.kt-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kt-faq-item {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.kt-faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.kt-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #101828;
  text-align: left;
  gap: 16px;
  transition: background 0.15s;
}

.kt-faq-question:hover {
  background: #fafafa;
}

.kt-faq-question span {
  flex: 1;
  line-height: 1.5;
}

.kt-faq-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.kt-faq-item.open .kt-faq-icon-wrap {
  background: #e5e7eb;
}

.kt-faq-icon {
  color: #6b7280;
  transition: transform 0.3s ease;
}

.kt-faq-item.open .kt-faq-icon {
  transform: rotate(45deg);
}

.kt-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.kt-faq-item.open .kt-faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.kt-faq-answer p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}


/* ============================================================
   REVIEW / CTA SECTION
   ============================================================ */
.kt-review-section {
  position: relative;
  padding: 80px 24px 80px;
  background: #fff;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kt-review-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.kt-review-illustration {
  position: absolute;
  top: 12%;
  left: 24.88%;
  width: 50.24%;
  height: auto;
  opacity: 1;
}

.kt-review-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  max-width: 640px;
}

.kt-review-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kt-review-headline {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #1c1e22;
  line-height: 1.19;
  margin: 0;
}

.kt-review-headline strong {
  font-weight: 700;
}

.kt-review-sub {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #1c1e22;
  line-height: 1.46;
  margin: 0;
}

.kt-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #000;
  border-radius: 12px;
  background: #fff;
  padding: 0 20px;
  height: 51px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1c1e22;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.kt-review-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.kt-review-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 28px;
  background: #236cff;
  border-radius: 22px;
  color: #fff;
  flex-shrink: 0;
}

.kt-review-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}


/* ============================================================
   DARK FOOTER
   ============================================================ */
.kt-footer {
  background: #1a1a2e;
  color: #fff;
  padding-top: 0;
}

.kt-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.3fr;
  gap: 48px;
}

/* ─ Brand column ─ */
.kt-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kt-footer-logo {
  display: inline-block;
  text-decoration: none;
}

.kt-footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.kt-footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  line-height: 1.35;
  transition: color 0.2s;
}

.kt-footer-email:hover { color: #92d2ff; }
.kt-footer-email svg { flex-shrink: 0; stroke: #92d2ff; }

.kt-footer-tagline {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin: 0;
  max-width: 240px;
}

/* ─ Link columns ─ */
.kt-footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kt-footer-col-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.5;
}

.kt-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kt-footer-links li a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #92d2ff;
  text-decoration: none;
  line-height: 1.35;
  transition: color 0.2s;
}

.kt-footer-links li a:hover { color: #fff; }

/* ─ Newsletter column ─ */
.kt-footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kt-footer-newsletter-desc {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.kt-newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
}

.kt-newsletter-input {
  flex: 1;
  height: 39px;
  background: #fff;
  border: none;
  padding: 0 12px;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #869194;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  outline: none;
  min-width: 0;
}

.kt-newsletter-input::placeholder {
  color: #869194;
}

.kt-newsletter-btn {
  height: 39px;
  background: #0368fe;
  color: #fff;
  border: 1px solid #a0d8ff;
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 0 13px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.kt-newsletter-btn:hover { background: #0250c5; }

/* ─ Popular searches bar ─ */
.kt-footer-searches {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
}

.kt-footer-searches-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kt-footer-searches-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}

.kt-footer-searches-inner svg {
  stroke: #fff;
  flex-shrink: 0;
}

/* ─ Copyright ─ */
.kt-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  text-align: center;
}

.kt-footer-bottom p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}


/* ============================================================
   DARK MODE SUPPORT
   ============================================================ */
body.dark-mode .kt-hero,
body.dark-mode .kt-cards-section,
body.dark-mode .kt-beta-section,
body.dark-mode .kt-faq-section,
body.dark-mode .kt-review-section {
  background: #08101d;
}

body.dark-mode .kt-hero-title,
body.dark-mode .kt-cards-title,
body.dark-mode .kt-faq-title,
body.dark-mode .kt-card-title,
body.dark-mode .kt-beta-title,
body.dark-mode .kt-faq-question {
  color: #f1f5f9;
}

body.dark-mode .kt-hero-desc,
body.dark-mode .kt-cards-subtitle,
body.dark-mode .kt-card-desc,
body.dark-mode .kt-faq-subtitle,
body.dark-mode .kt-faq-answer p,
body.dark-mode .kt-beta-desc,
body.dark-mode .kt-review-headline,
body.dark-mode .kt-review-sub {
  color: #94a3b8;
}

body.dark-mode .kt-form-input,
body.dark-mode .kt-form-textarea {
  background: #111c30;
  border-color: rgba(148, 163, 184, 0.25);
  color: #e2e8f0;
}

body.dark-mode .kt-form-input::placeholder,
body.dark-mode .kt-form-textarea::placeholder {
  color: #4b5563;
}

body.dark-mode .kt-form-label {
  color: #cbd5e1;
}

body.dark-mode .kt-recaptcha {
  background: #111c30;
  border-color: rgba(148, 163, 184, 0.25);
}

body.dark-mode .kt-recaptcha-text {
  color: #cbd5e1;
}

body.dark-mode .kt-card {
  background: #111c30;
  border-color: rgba(148, 163, 184, 0.18);
}

body.dark-mode .kt-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
}

body.dark-mode .kt-faq-item {
  background: #111c30;
  border-color: rgba(148, 163, 184, 0.14);
}

body.dark-mode .kt-faq-icon-wrap {
  background: rgba(148, 163, 184, 0.12);
}

body.dark-mode .kt-faq-question {
  color: #93c5fd;
}

body.dark-mode .kt-faq-question:hover {
  background: rgba(148, 163, 184, 0.06);
}

body.dark-mode .kt-beta-banner {
  background: rgba(37, 99, 235, 0.1);
}

body.dark-mode .kt-partners-section {
  background: #0f172a;
  border-top-color: rgba(148, 163, 184, 0.14);
}

body.dark-mode .kt-review-btn {
  background: #111c30;
  border-color: rgba(148, 163, 184, 0.3);
  color: #e2e8f0;
}

/* Dark mode nav: uses styles.css */


/* ============================================================
   RESPONSIVE – TABLET (≤ 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .kt-hero-grid {
    gap: 40px;
  }

  .kt-hero-title {
    font-size: 36px;
  }

  .kt-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kt-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .kt-footer-newsletter {
    grid-column: 1 / -1;
  }
}


/* ============================================================
   RESPONSIVE – TABLET SMALL (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .kt-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .kt-hero-left {
    order: 2;
  }

  .kt-hero-right {
    order: 1;
  }

  .kt-hero-title {
    font-size: 32px;
  }

  .kt-hero-illustration {
    max-width: 100%;
  }

  .kt-faq-title {
    font-size: 28px;
  }

  .kt-review-headline {
    font-size: 26px;
  }

  .kt-review-sub {
    font-size: 20px;
  }

  .kt-review-illustration {
    left: 0;
    width: 100%;
    opacity: 0.3;
  }

  .kt-beta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .kt-beta-btn {
    align-self: flex-start;
  }
}


/* ============================================================
   RESPONSIVE – MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  /* Hero */
  .kt-hero {
    padding: 40px 0 32px;
  }

  .kt-hero-grid {
    padding: 0 16px;
    gap: 32px;
  }

  .kt-hero-title {
    font-size: 26px;
    letter-spacing: -0.5px;
  }

  .kt-hero-desc {
    font-size: 15px;
  }

  .kt-hero-illustration {
    display: none; /* hide decorative illustration on small screens */
  }

  /* Cards */
  .kt-cards-section {
    padding: 48px 16px;
  }

  .kt-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .kt-cards-title {
    font-size: 22px;
  }

  .kt-cards-subtitle {
    font-size: 14px;
  }

  /* Beta */
  .kt-beta-section {
    padding: 0 16px 40px;
  }

  .kt-beta-banner {
    padding: 24px 20px;
    border-radius: 10px;
  }

  .kt-beta-title {
    font-size: 16px;
  }

  .kt-beta-desc {
    font-size: 14px;
  }

  .kt-beta-btn {
    font-size: 14px;
    height: 42px;
    padding: 0 16px;
  }

  /* Partners */
  .kt-partners-logos {
    gap: 24px;
  }

  .kt-partner-logo {
    max-height: 28px;
  }

  /* FAQ */
  .kt-faq-section {
    padding: 48px 16px;
  }

  .kt-faq-title {
    font-size: 22px;
  }

  .kt-faq-subtitle {
    font-size: 14px;
  }

  .kt-faq-question {
    font-size: 14px;
    height: auto;
    padding: 16px 20px;
  }

  .kt-faq-answer,
  .kt-faq-item.open .kt-faq-answer {
    padding: 0 20px;
  }

  .kt-faq-item.open .kt-faq-answer {
    padding: 0 20px 16px;
  }

  /* Review */
  .kt-review-section {
    padding: 60px 16px;
    min-height: auto;
  }

  .kt-review-illustration {
    display: none;
  }

  .kt-review-headline {
    font-size: 20px;
  }

  .kt-review-sub {
    font-size: 16px;
  }

  .kt-review-btn {
    font-size: 15px;
    height: 44px;
    padding: 0 16px;
  }

  /* Footer */
  .kt-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 16px 32px;
  }

  .kt-footer-newsletter {
    grid-column: auto;
  }

  .kt-newsletter-form {
    flex-direction: column;
    border-radius: 8px;
    overflow: visible;
    gap: 8px;
  }

  .kt-newsletter-input {
    border-radius: 8px;
    height: 42px;
    font-size: 14px;
    padding: 0 14px;
    text-transform: none;
    letter-spacing: 0;
  }

  .kt-newsletter-btn {
    height: 42px;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    width: 100%;
  }

  .kt-footer-searches {
    padding: 12px 16px;
  }

  .kt-footer-searches-label {
    font-size: 15px;
  }
}


/* ============================================================
   RESPONSIVE – SMALL MOBILE (≤ 400px)
   ============================================================ */
@media (max-width: 400px) {
  .kt-hero-title {
    font-size: 22px;
  }

  .kt-cards-title {
    font-size: 20px;
  }

  .kt-faq-title {
    font-size: 20px;
  }

  .kt-partners-logos {
    gap: 16px;
  }

  .kt-partner-logo {
    max-height: 24px;
  }
}
