@charset "UTF-8";
/* CSS Variables and Resets */
:root {
  --color-bg-light: #f6f3ee;
  /* The beige background */
  --color-bg-white: #ffffff;
  --color-dark: #121212;
  /* Black/Dark Gray */
  --color-dark-alt: #1a1a1a;
  --color-red: #d34c41;
  /* The main red/orange */
  --color-red-hover: #b93f35;
  --text-dark: #121212;
  --text-gray: #666666;
  --text-light-gray: #aaaaaa;
  --text-white: #ffffff;
  --font-main: "Geologica", sans-serif;
  --font-heading: "Geologica", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  color: var(--text-dark);
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

input,
button {
  font-family: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1374px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100% !important;
}

.container_own {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100% !important;
}

/* Typography Utilities */
.text-red {
  color: var(--color-red);
}

.italic {
  font-style: italic;
  font-family: var(--font-heading);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-red {
  background-color: var(--color-red);
  color: var(--text-white);
}

.btn-red:hover {
  background-color: var(--color-red-hover);
}

.btn-dark {
  background-color: var(--color-dark);
  color: var(--text-white);
}

.btn-dark:hover {
  background-color: #000000;
}

.btn-red-outline {
  background-color: var(--color-red);
  color: var(--text-white);
  /* The CTA button seems solid red, actually */
}

.btn-outline-black {
  border: 1px solid var(--color-dark);
  background-color: transparent;
  color: var(--color-dark);
  padding: 16px 40px;
}

.btn-outline-black:hover {
  background-color: var(--color-dark);
  color: var(--text-white);
}

.full-width {
  width: 100%;
}

/* Header */
.main-header {
  background-color: var(--color-dark);
  color: var(--text-white);
  padding: 16px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-main);
  font-size: 20px;
  letter-spacing: 0.02em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  gap: 24px;
}

.nav-link {
  font-size: 13px;
  color: var(--text-light-gray);
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--text-white);
}

.lang-switch ul.langs {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.lang-switch ul.langs li.lang-item a {
  font-size: 13px;
  padding: 8px 12px;
  color: var(--text-light-gray);
  text-transform: uppercase;
  text-decoration: none;
}

.lang-switch ul.langs li.current-lang a {
  background-color: var(--text-white);
  color: var(--color-dark);
  font-weight: 700;
}

.main-header .btn-red {
  padding: 12px 24px;
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
  background-color: var(--color-bg-white);
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.breadcrumbs {
  font-size: 12px;
  color: var(--text-gray);
}

/* Hero Section */
.hero {
  display: flex;
  min-height: 500px;
}

.hero-left {
  flex: 1;
  background-color: var(--color-dark);
  color: var(--text-white);
  padding: 80px 60px 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 46px;
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-light-gray);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  font-size: 13px;
  color: var(--text-light-gray);
}

.hero-stats strong {
  color: var(--text-white);
  font-size: 15px;
  margin-right: 4px;
}

.hero-right {
  flex: 1;
  background-color: var(--color-red);
  color: var(--text-white);
  padding: 80px 100px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge-top {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0.8;
}

.hero-right h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 30px;
}

.video-list {
  margin-bottom: 40px;
}

.video-list li {
  font-size: 14px;
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.video-list li::before {
  content: "📘";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 12px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form input {
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.hero-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-hint {
  font-size: 11px;
  text-align: center;
  opacity: 0.7;
  margin-top: 8px;
}

/* Category Nav */
.categories-nav {
  background-color: var(--color-bg-white);
  border-bottom: 1px solid #ddd;
}

.categories-nav .container {
  display: flex;
  align-items: center;
  padding: 16px 20px;
}

.cat-list {
  display: flex;
  gap: 10px;
  flex: 1;
  overflow: hidden;
}

.cat-item {
  font-size: 12px;
  color: var(--text-gray);
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  white-space: nowrap;
}

.cat-item.active {
  background-color: var(--color-dark);
  color: var(--text-white);
  border-color: var(--color-dark);
}

.cat-arrows {
  display: flex;
  gap: 5px;
  margin: 0 20px;
}

.arrow-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: white;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn.active {
  background-color: var(--color-red);
  color: white;
  border-color: var(--color-red);
}

.search-box input {
  border: 1px solid #ddd;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 4px;
  width: 200px;
}

/* Section Header (Lines) */
.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.section-header .line {
  flex: 1;
  height: 1px;
  background-color: #ddd;
}

.section-header h3 {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-gray);
  text-transform: uppercase;
  margin: 0;
}

/* =========================================
 * Адаптивність (Responsive Design) 
 * ========================================= */
.fw-semi {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.red-line {
  width: 4px;
  height: 26px;
  background-color: var(--color-red);
  margin-right: 12px;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  border-bottom: 2px solid #0A0A0A;
  padding-bottom: 15px;
}

.section-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #0A0A0A;
  line-height: 1.2;
  margin: 0;
}

.kr_main_section {
  width: 100%;
  padding: 50px 0;
}
.kr_main_section .hero-wrapper {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 64px;
  align-items: flex-start;
}
.kr_main_section .hero-image-col {
  width: 100%;
  position: relative;
}
.kr_main_section .hero-image-col .image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 320/453;
}
.kr_main_section .hero-image-col .image-wrapper .img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kr_main_section .hero-image-col .image-wrapper .image-border {
  position: absolute;
  inset: -6px;
  border: 1px solid var(--color-red);
  opacity: 0.35;
  pointer-events: none;
}
.kr_main_section .hero-image-col .image-wrapper .image-badge {
  position: absolute;
  bottom: -1px;
  left: -1px;
  background-color: var(--color-red);
  color: #fff;
  padding: 7px 14px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.kr_main_section .hero-info-col {
  display: flex;
  flex-direction: column;
  padding-top: 7px;
}
.kr_main_section .hero-info-col .lbl-author {
  color: var(--color-red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.kr_main_section .hero-info-col .h1-author {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.05;
  color: #0A0A0A;
  margin-bottom: 10px;
}
.kr_main_section .hero-info-col .buss {
  color: #777;
  font-size: 15px;
  margin-bottom: 25px;
}
.kr_main_section .hero-info-col .text-description {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-width: 560px;
  margin-bottom: 30px;
}
.kr_main_section .hero-info-col .stats-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: #ddd8ce;
  border: 1px solid #ddd8ce;
  margin-bottom: 30px;
}
.kr_main_section .hero-info-col .stats-blocks .stat-item {
  background-color: #fff;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kr_main_section .hero-info-col .stats-blocks .stat-item .stat-num {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #0A0A0A;
  line-height: 1;
  margin-bottom: 4px;
}
.kr_main_section .hero-info-col .stats-blocks .stat-item .stat-num .plus {
  color: var(--color-red);
}
.kr_main_section .hero-info-col .stats-blocks .stat-item .stat-text {
  font-size: 12px;
  color: #777;
  line-height: 1.4;
}
.kr_main_section .hero-info-col .social-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.kr_main_section .hero-info-col .social-tags .tag-item {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #ddd8ce;
  background-color: #fff;
  font-weight: 500;
  font-size: 12px;
  color: #444;
  letter-spacing: 0.36px;
  transition: all 0.2s;
}
.kr_main_section .hero-info-col .social-tags .tag-item:hover {
  background-color: #f9f9f9;
  border-color: #ccc;
}
.kr_main_section .hero-info-col .social-tags .tag-item .tag-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}
.kr_main_section .hero-info-col .social-tags .tag-item .tag-icon img {
  max-width: 100%;
  max-height: 100%;
}

.metrics-section {
  width: 100%;
  padding: 50px 0;
}
.metrics-section .metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: #ddd8ce;
  border: 1px solid #ddd8ce;
}
.metrics-section .metrics-grid .metric-card {
  background-color: #e8e3da;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.metrics-section .metrics-grid .metric-card .metric-num {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: 38px;
  color: #0A0A0A;
  line-height: 1;
  margin-bottom: 15px;
}
.metrics-section .metrics-grid .metric-card .metric-num span {
  color: var(--color-red);
}
.metrics-section .metrics-grid .metric-card .metric-text {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}

.projects-section {
  width: 100%;
  padding: 50px 0 100px;
}
.projects-section .projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.projects-section .projects-grid .project-card {
  background-color: #eee;
  border: 1px solid #ddd8ce;
  padding: 24px 25px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  text-decoration: none;
}
.projects-section .projects-grid .project-card .project-icon {
  font-size: 26px;
  margin-bottom: 10px;
}
.projects-section .projects-grid .project-card .project-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0A0A0A;
  margin-bottom: 10px;
}
.projects-section .projects-grid .project-card .project-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}
.projects-section .projects-grid .project-card .project-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 12px;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.projects-section .projects-grid .project-card .project-link span {
  font-weight: 700;
}

.expertise-section {
  width: 100%;
  padding: 50px 0;
}
.expertise-section .expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.expertise-section .expertise-grid .expertise-card {
  background-color: #e8e3da;
  border: 1px solid #ddd8ce;
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.expertise-section .expertise-grid .expertise-card .expertise-card-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0A0A0A;
  margin-bottom: 2px;
}
.expertise-section .expertise-grid .expertise-card .expertise-card-desc {
  font-size: 13px;
  color: #444;
  line-height: 1.4;
}

.content-section {
  width: 100%;
  padding: 50px 0;
}
.content-section .content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.content-section .content-grid .content-card {
  background-color: #eee;
  border: 1px solid #ddd8ce;
  padding: 23px;
  display: flex;
  gap: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.content-section .content-grid .content-card .content-icon {
  font-size: 22px;
  padding-top: 2px;
}
.content-section .content-grid .content-card .content-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}
.content-section .content-grid .content-card .content-info .content-title {
  font-family: "Geologica", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #0A0A0A;
}
.content-section .content-grid .content-card .content-info .content-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 8px;
}
.content-section .content-grid .content-card .content-info .content-link {
  font-weight: 600;
  font-size: 12px;
  color: var(--color-red);
  letter-spacing: 0.36px;
}
.content-section .content-grid .content-card .content-info .content-link span {
  font-weight: 700;
}

.cta-section {
  width: 100%;
  background-color: #0A0A0A;
  padding: 64px 15px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.cta-section .cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta-section .cta-box .cta-title {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: #f5f0e8;
  line-height: 1.6;
  margin-bottom: 0;
}
.cta-section .cta-box .cta-desc {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 14px;
}
.cta-section .cta-box .btn-red {
  background-color: #c4443a;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 15px 36px;
  text-transform: uppercase;
  letter-spacing: 1.04px;
  display: inline-block;
  transition: background 0.3s;
  border-radius: 4px;
}
.cta-section .cta-box .btn-red:hover {
  background-color: #a8382f;
}

.main-footer {
  width: 100%;
  background-color: #0A0A0A;
  padding: 30px 15px;
}
.main-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-footer .footer-content .footer-left {
  color: #fff;
}
.main-footer .footer-content .footer-right {
  font-size: 13px;
  color: #fff;
}

/* Планшети (Tablet) */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
  }
  .kr_main_section .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .metrics-section .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects-section .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .expertise-section .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-section .content-grid {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 60px 40px;
  }
  .hero-right {
    padding: 60px 40px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-side {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .featured-small {
    flex: 1;
    min-width: 300px;
  }
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .topics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-wrapper {
    flex-direction: column;
  }
  .cta-left,
  .cta-right {
    padding: 40px;
  }
  .nav-list {
    display: none;
    /* Ховаємо основне меню на планшетах для економії місця */
  }
}
/* Мобільні телефони (Mobile) */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }
  .kr_main_section .hero-info-col .stats-blocks {
    grid-template-columns: 1fr;
  }
  .metrics-section .metrics-grid {
    grid-template-columns: 1fr;
  }
  .projects-section .projects-grid {
    grid-template-columns: 1fr;
  }
  .expertise-section .expertise-grid {
    grid-template-columns: 1fr;
  }
  .cta-section .cta-box .cta-title {
    font-size: 24px;
  }
  .main-footer .footer-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .header-right {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .main-header .btn-red {
    width: 100%;
    text-align: center;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-left,
  .hero-right {
    padding: 40px 20px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }
  .hero-right h2 {
    font-size: 26px;
  }
  .categories-nav .cat-list {
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .categories-nav .cat-arrows,
  .categories-nav .search-box {
    display: none;
  }
  .featured-main .image-wrapper {
    height: 250px;
  }
  .featured-main .title {
    font-size: 24px;
  }
  .featured-main .content {
    padding: 20px;
  }
  .proof-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .proof-title {
    margin-right: 0;
  }
  .logos-track {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pillar-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-left h2 {
    font-size: 26px;
  }
  .quote-text {
    font-size: 18px;
  }
  .bottom-subscribe .title {
    font-size: 24px;
  }
  .subscribe-row {
    flex-direction: column;
    gap: 10px;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}
/* Маленькі мобільні (Small Mobile) */
@media (max-width: 480px) {
  .topics-grid {
    grid-template-columns: 1fr;
  }
  .featured-side {
    flex-direction: column;
  }
  .featured-small {
    min-width: 100%;
  }
}
/* Old email subscribe wrap styles */
.email_subscribe_wrap {
  border-radius: 26px;
  background: #FFF;
  padding: 24px 25px;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.email_subscribe_wrap_area {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background-color: var(--color-dark);
}

.email_subscribe_wrap form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .email_subscribe_wrap form {
    flex-direction: column;
  }
}
.email_subscribe_wrap form .left_text {
  margin: 0;
  width: auto;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  max-width: 500px;
}

.tnp-field-email {
  width: 100%;
  max-width: 455px;
  position: relative;
  border-radius: 26px !important;
  background: none !important;
  margin-bottom: 0 !important;
  display: flex;
}

.tnp-field-email .tnp-email {
  height: 52px;
  border-radius: 26px;
  border: 1px solid #D2D2D2;
  background: #FFF;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  padding: 0 160px 0 20px;
  width: 100%;
}

.tnp-field-email .tnp-submit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 155px;
  height: 52px;
  border-radius: 26px;
  background: #DC5242;
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.tnp-field-email .tnp-submit:hover {
  background: #b83d2e;
}