* {
  margin: 0;
  font-family: "Roboto", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
body {
  background-color: white;
}
a {
  text-decoration: none;
}
.content {
  max-width: 1300px;
  padding: 0 12px 0 12px;
  margin-left: auto;
  margin-right: auto;
}
.content-2 {
  max-width: 1800px;
  padding: 0 12px 0 12px;
  margin-left: auto;
  margin-right: auto;
}
.main-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.main-header.scrolled {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
}
.main-header.scrolled .top-bar {
  display: none;
}
.main-header.scrolled .main-nav {
  padding: 10px 0;
}
.top-bar {
  background-color: #87c03d;
  color: #ffffff;
  padding: 10px 0;
  font-size: 14px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-info {
  display: flex;
  gap: 20px;
}
.contact-link {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  color: white;
  font-size: 18px;
}
.contact-link:hover {
  color: var(--secondary-color);
}
.social-account > span {
  color: white;
  font-size: 18px;
}
.social-account {
  display: flex;
  align-items: center;
  gap: 15px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
}
.social-links a:hover {
  color: var(--secondary-color);
  transform: translateY(-3px);
}
.account-btn {
  padding: 20px 15px 18px;
  font-size: 13px;
  color: #fff;
  background: #efb443;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
}
.account-btn:hover {
  background-color: white;
  color: #efb443;
}
.main-nav {
  padding: 15px 0;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.95);
}
.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 24px;
  gap: 10px;
}
.logo img {
  height: 40px;
}
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}
.desktop-nav ul li {
  position: relative;
}
.desktop-nav ul li a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.desktop-nav ul li a:hover {
  color: var(--primary-color);
}
.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: var(--box-shadow);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: var(--dark-color);
  transition: var(--transition);
}
.dropdown-menu a:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
  padding-left: 25px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.search-btn,
.hamburger {
  background: none;
  border: none;
  color: var(--dark-color);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.search-btn:hover,
.hamburger:hover {
  color: var(--primary-color);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  position: relative;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark-color);
  transition: var(--transition);
}
.slide-sot {
  height: 80vh;
  display: flex;
}
.slide-sot > div {
  margin-top: auto;
  margin-bottom: auto;
}
.slide-sot > div > p {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  color: #fff;
  margin-bottom: 30px;
}
.slide-sot > div > h1 {
  font-size: 100px;
  font-weight: 400;
  font-family: Lobster;
  text-transform: capitalize;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 15px;
}
.slider-ver {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slide-button {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  display: flex;
  transform: translateY(-50%);
}
.slide-button > button:last-of-type {
  margin-left: auto;
  margin-right: 20px;
  display: flex;
  background-color: rgba(0, 0, 0, 0.35);
  border: 0;
  height: 75px;
  width: 75px;
  cursor: pointer;
}
.slide-button > button:first-of-type {
  margin-left: 20px;
  display: flex;
  background-color: rgba(0, 0, 0, 0.35);
  border: 0;
  height: 75px;
  width: 75px;
  cursor: pointer;
}
.slide-button svg {
  height: 45px;
  width: auto;
  filter: invert(100%) sepia(0%) saturate(7488%) hue-rotate(257deg)
    brightness(98%) contrast(107%);
  cursor: pointer;
  transition: fill 0.3s ease, transform 0.3s ease;
  margin: auto;
}
.slide-button svg:hover {
  filter: invert(100%) sepia(0%) saturate(7488%) hue-rotate(257deg)
    brightness(98%) contrast(107%);
  transform: scale(1.2);
}
.slides-container {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.slide {
  min-width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.slide.active .slide-text {
  transform: translateY(0);
  opacity: 1;
}
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}
.slider-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: #efb443;
  transform: scale(1.2);
  border-color: white;
}
.home-plus {
  margin-top: 70px;
  margin-bottom: 70px;
}
.home-plus-content {
  display: flex;
  gap: 40px;
}
.home-plus-item {
  width: calc(100% / 3 - (20px * 2 / 3));
  box-shadow: -1px 5px 6px #0000002e;
  position: relative;
}
.home-plus-item > div:nth-child(2) {
  width: 100%;
  height: 300px;
  background-position: center center;
  background-size: cover;
}
.home-plus-item > div:first-of-type > p {
  font-size: 22px;
  text-align: center;
  color: #255946;
  text-transform: capitalize;
  background: #fff;
  padding: 26px 0;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 89, 70, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 999;
}
.hover-overlay span {
  color: white;
  font-size: 22px;
  text-align: center;
  padding: 20px;
}
.home-plus-item:hover .hover-overlay {
  opacity: 1;
}
.home-falos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.home-falos > div {
  width: calc(100% / 2 - (20px * 1 / 2));
}
.home-falos-1 {
  width: auto;
  margin-top: 30px;
}
.home-falos-2 {
  margin-bottom: auto;
  margin-top: auto;
}
.home-falos-2-1gl > p {
  margin: 0 0 10px;
  font-size: 16px;
  color: #87c03d;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 4px;
  margin-top: 25px;
}
.home-falos-2-1gl > h2 {
  font-size: 40px;
  margin-bottom: 0px;
  text-transform: capitalize;
  margin-top: 0;
  line-height: 1.2;
  color: #255946;
}
.home-falos-2-1gl > h2 > span {
  color: #87c03d;
}
.home-falos-2-1gl > h4 {
  font-size: 20px;
  font-weight: 400;
  color: #6e7673;
  font-weight: bold;
  margin-top: 25px;
}
.home-falos-2-1gl > div {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.home-falos-2-1gl > div > div {
  display: flex;
  gap: 20px;
  width: calc(100% / 2 - (20px * 1 / 2));
}
.home-falos-2-1gl > div > div > p {
  margin-top: auto;
  margin-bottom: auto;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: #255946;
}
.dfghj > p {
  font-size: 15px;
  font-weight: 400;
  color: #6e7673;
  line-height: 28px;
}
.ertyhfnkjhs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}
.bottome-sdzhz1 {
  margin-bottom: 60px;
}
.classic-button111 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  background: #efb443;
  padding: 18px 50px;
  border-radius: 4px;
  color: #fff;
  transition: 0.5s;
  display: inline-block;
  margin-top: 25px;
}
.classic-button111:hover {
  background: #87c03d;
  color: #fff;
}
.main-celection-fon {
  background-image: url(../img/gom-bg2.png);
  min-width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.mcf-content-top > p {
  margin: 0 0 10px;
  font-size: 16px;
  color: #87c03d;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 4px;
}
.mcf-content-top > h3 {
  font-size: 40px;
  margin-bottom: 0px;
  text-transform: capitalize;
  margin-top: 0;
  line-height: 1.2;
  color: #255946;
}
.mcf-content-top > h3 > span {
  color: #87c03d;
}
.bottome-sdzhz1 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.mcf-content-top {
  margin-top: auto;
  margin-bottom: auto;
}
.bottome-sdzhz1 > .my-bt-right {
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  display: flex;
}
.main-celection-blocs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main-celection-blocs > a {
  width: calc(100% / 3 - (20px * 2 / 3));
}
.main-celection-blocs-1-back {
  width: 100%;
  height: 200px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mcb123 {
  padding: 45px 20px 20px 20px;
  background-color: white;
  position: relative;
}
.mcb123 > h4 {
  font-size: 21px;
  font-weight: 600;
  text-transform: capitalize;
  color: #255946;
  margin-top: 10px;
  margin-bottom: 30px;
}
.mcb123 > p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #6e7673;
  line-height: 1.5;
}
.mcb123 > span {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  color: #255946;
  display: inline-block;
  margin-top: 15px;
}
.mcb123 > span:hover {
  text-decoration: none;
}
.main-celection-fon {
  padding: 60px 0;
}
.main-celection-blocs-3 > .mcb123 {
  transition: background-color 0.3s ease;
}
.main-celection-blocs-3:hover > .mcb123 {
  background-color: #87c03d;
}
.main-celection-blocs-3 > .mcb123 > h4 {
  transition: color 0.3s ease;
}
.main-celection-blocs-3:hover > .mcb123 > h4 {
  color: white;
}
.main-celection-blocs-3 > .mcb123 > p {
  transition: color 0.3s ease;
}
.main-celection-blocs-3:hover > .mcb123 > p {
  color: white;
}
.main-celection-blocs-3 > .mcb123 > span {
  transition: color 0.3s ease;
}
.main-celection-blocs-3:hover > .mcb123 > span {
  color: white;
}
.mcb123 > img {
  position: absolute;
  left: 30px;
  background: #fff;
  padding: 12px;
  border-radius: 5px;
  bottom: 200px;
  top: -40px;
  height: 60px;
  width: auto;
}
.stages-of-work-2 > h4 {
  font-size: 16px;
  color: #87c03d;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 4px;
  margin-top: 10px;
}
.stages-of-work-2 > h2 {
  font-size: 40px;
  margin-bottom: 0px;
  text-transform: capitalize;
  margin-top: 0;
  line-height: 1.2;
  color: #255946;
  margin-bottom: 20px;
}
.stages-of-work-2 > h2 > span {
  color: #87c03d;
}
.stages-of-work-2 > p {
  color: #6e7673;
  font-size: 15px;
  font-weight: 400;
  padding: 0 50px 14px 0;
  line-height: 1.7;
  margin-top: -5px;
}
.stages-of-work-2 > img {
  width: 100%;
  border-radius: 5px;
}
.stages-of-work-2 {
  padding: 60px;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  background: #fff;
}
.stages-of-work {
  display: flex;
  gap: 24px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.stages-of-work > div {
  width: calc(100% / 2 - (24px * 1 / 2));
}
.sow2 {
  display: flex;
  gap: 25px;
}
.sow2-left > img {
  padding: 7px 7px;
  border: 2px solid #87c03d;
  border-radius: 5px;
  height: 81px;
  width: auto;
}
.sow2-left {
  width: 81px;
  height: auto;
  display: flex;
}
.sow2-right {
  width: calc(100% - 81px - 20px);
}
.sow2-right > h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #255946;
  text-transform: capitalize;
}
.sow2-right > p {
  color: #6e7673;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
.solw-left {
  width: 2px;
  height: 46px;
  margin-left: auto;
  margin-right: auto;
  background-color: #87c03d;
}
.sow2 {
  margin-top: 20px;
}
.stages-of-work-1 {
  background-image: url(../img/why-choos-us.jpg);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  background-size: cover;
}
.home-up-counter {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 120px 20px;
  background-color: transparent;
}
.home-up-c-pre-block {
  background-image: url(../img/counter-bg-uppp.png);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-up-number-block {
  text-align: center;
  padding: 20px;
  background-color: transparent;
  min-width: 200px;
}
.home-up-number-value {
  font-size: 55px;
  font-weight: 700;
  color: #255945;
  font-style: italic;
}
.home-up-number-text {
  font-size: 16px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1.4;
}
.novosti-glav > p {
  margin: 0 0 10px;
  font-size: 16px;
  color: #87c03d;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 4px;
  text-align: center;
  margin-top: 30px;
}
.novosti-glav > h3 {
  font-size: 40px;
  margin-bottom: 0px;
  text-transform: capitalize;
  margin-top: 0;
  line-height: 1.2;
  color: #255946;
  text-align: center;
}
.novosti-glav > h3 > span {
  color: #87c03d;
}
.novosti-blok {
  background-position: center center;
  background-image: url(../img/banner-3453.jpg);
  background-size: cover;
  width: 100%;
  height: 300px;
}
.novosti-glav-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.ngb-elementor {
  width: calc(100% / 4 - (30px * 3 / 4));
  box-shadow: 0 0 10px rgb(0 0 0 / 5%);
  background: #fff;
}
.novosti-glav-block {
  margin-top: 30px;
}
.ngb-elementor-sod > h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #255945;
}
.ngb-elementor-sod > p {
  color: #6e7673;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin-top: -5px;
}
.ngb-elementor-sod {
  padding: 20px;
}
.rastet > p {
  text-align: center;
  margin-top: 65px;
  font-size: 16px;
  color: #87c03d;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 4px;
}
.rastet > h3 {
  font-size: 39px;
  text-transform: capitalize;
  margin-top: 0;
  line-height: 1.2;
  color: #255946;
  margin-bottom: 27px;
  text-align: center;
  margin-bottom: 56px;
}
.rastet > h3 > span {
  color: #87c03d;
}
.rastet-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 125px;
}
.rastet-con-div-coor {
  background-color: white;
  padding-top: 40px;
  padding-bottom: 40px;
}
.rastet-block > a {
  width: calc(100% / 3 - 20px * 2 / 3);
  display: grid;
  border: 1px solid #ede9da;
  border-radius: 5px;
  padding: 40px;
  margin: auto;
  background-color: white;
}
.rastet-block > a > h4 {
  font-size: 20px;
  font-weight: 600;
  color: #255946;
  padding: 17px 0 0;
  margin-left: auto;
  text-align: center;
  margin-right: auto;
}
.rastet-block > a > p {
  font-size: 18px;
  color: #6e7673;
  font-weight: 400;
  display: flex;
  margin: 0;
  line-height: 1.7;
  margin-left: auto;
  text-align: center;
  margin-right: auto;
}
.rastet-block > a > img {
  margin-left: auto;
  margin-right: auto;
}
.rastet-block > a:hover {
  border: 1px solid #87c03d;
}
.home-news-block {
  background-image: url(../img/testi-bg.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-bottom: 40px;
  background-color: white;
  padding-top: 40px;
}
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 15px;
  display: inline-block;
}
input[type="text"]:focus,
input[type="password"]:focus {
  background-color: #ddd;
  outline: none;
}
hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}
.registerbtn {
  background-color: #4caf50;
  color: white;
  padding: 16px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}
.registerbtn:hover {
  opacity: 1;
}
a {
  color: dodgerblue;
}
.signin {
  background-color: #f1f1f1;
  text-align: center;
}
.contact-form-glav {
  display: flex;
  background-color: white;
}
.form-contact-r > h5 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #87c03d;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 4px;
}
.form-contact-r > h3 {
  font-size: 39px;
  text-transform: capitalize;
  margin-top: 0;
  line-height: 1.2;
  color: #255946;
  margin-bottom: 27px;
}
.contact-section {
  display: flex;
  width: 100%;
}
.image-container {
  position: relative;
  flex: 1;
  overflow: visible;
}
.image-container img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.form-container {
  flex: 1;
  padding: 40px;
}
.section-title span {
  display: block;
  font-size: 0.875rem;
  color: #8bc34a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-title h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 32px;
}
.section-title strong {
  color: #8bc34a;
}
.form-group {
  margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  background: #f5f5e9;
  border-radius: 4px;
  font-size: 1rem;
  color: #555;
}
.form-group textarea {
  resize: none;
  height: 140px;
}
.btn-submit {
  display: inline-block;
  padding: 15px 30px;
  background: #f9a825;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-submit:hover {
  background: #e6b71e;
}
.home-gov-logo {
  padding: 50px 20px;
  background: #ffffff;
}
.partners-title {
  text-align: center;
  font-size: 1.75rem;
  color: #264a39;
  margin-bottom: 30px;
}
.home-gov-logo-container {
  position: relative;
  width: 100%;
}
.home-gov-logo-viewport {
  overflow: hidden;
}
.home-gov-logo-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}
.home-gov-logo-slide {
  flex: 0 0 calc((100% - 80px) / 5);
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.home-gov-logo-slide:hover {
  transform: scale(1.1);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(38, 74, 57, 0.8);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s;
}
.slider-btn:hover {
  background: rgba(38, 74, 57, 1);
}
.slider-btn.prev {
  left: 10px;
}
.slider-btn.next {
  right: 10px;
}
.footer {
  color: #fff;
  font-family: Arial, sans-serif;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1300px;
  padding: 0 12px 0 12px;
  margin-left: auto;
  margin-right: auto;
}
.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
}
.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}
.footer-section p {
  line-height: 1.6;
  margin-bottom: 15px;
}
ul {
  list-style: none;
  padding: 0;
}
ul li a,
ul li i {
  color: #000000;
  text-decoration: none;
}
ul li a:hover {
  text-decoration: underline;
}
.social-icons a {
  margin-right: 10px;
  font-size: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: none;
}
.social-icons a:hover {
  background: rgba(255, 255, 255, 0.4);
}
.newsletter {
  gap: 10px;
}
.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 50px;
}
.newsletter button {
  padding: 12px 17px;
  border: none;
  border-radius: 50px;
  background-color: #8cc63f;
  color: #fff;
  cursor: pointer;
}
.newsletter button:hover {
  background-color: #7aae35;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
}
.footer-links a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-zelenoe {
  background-color: #2559469a;
  padding: 80px 0 20px 0;
}
.footer-section > h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.mobile-menu-toggle {
  display: none;
  top: 20px;
  right: 15px;
  width: 40px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #255946;
  transition: all 0.3s ease;
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: white;
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.mobile-menu-logo {
  height: 40px;
  width: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.mobile-menu-item {
  position: relative;
  border-bottom: 1px solid #eee;
}
.mobile-menu-item > a {
  display: block;
  padding: 15px 20px;
  color: #255946;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
}
.mobile-submenu-toggle {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.mobile-submenu-toggle svg {
  transition: transform 0.3s ease;
}
.mobile-menu-item.active .mobile-submenu-toggle svg {
  transform: rotate(90deg);
}
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
}
.mobile-submenu a {
  display: block;
  padding: 12px 20px 12px 40px;
  color: #6e7673;
  text-decoration: none;
  font-size: 14px;
}
.mobile-submenu a:hover {
  color: #87c03d;
}
.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mobile-menu-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.mobile-menu-social a {
  color: #255946;
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.top-bar {
  background-color: #87c03d;
  color: #ffffff;
  padding: 10px 0;
  font-size: 14px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-link {
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}
.contact-link:hover {
  color: #efb443;
}
.social-account > span {
  color: #ffffff;
  font-size: 18px;
}
.social-links a {
  color: #ffffff;
  font-size: 16px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-links a:hover {
  color: #efb443;
  transform: translateY(-3px);
}
.social-header > a > svg {
  height: 15px;
  width: auto;
  margin-top: auto;
  margin-bottom: auto;
  filter: invert(100%) sepia(70%) saturate(1%) hue-rotate(340deg)
    brightness(107%) contrast(101%);
}
.account-btn,
.classic-button1 {
  padding: 15px 30px;
  font-size: 13px;
  color: #ffffff;
  background-color: #efb443;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}
.account-btn:hover,
.classic-button1:hover {
  background-color: #ffffff;
  color: #efb443;
}
.main-nav {
  padding: 15px 0;
  background-color: transparent;
}
.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #255946;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 26px;
  gap: 10px;
}
.logo img {
  height: 45px;
}
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  flex-wrap: wrap;
}
.desktop-nav ul li a {
  color: #255946;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1px;
}
.desktop-nav ul li a:hover {
  color: #87c03d;
}
.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: #255946;
  font-size: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.dropdown-menu a:hover {
  background-color: #f0f0f0;
  color: #87c03d;
  padding-left: 25px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.search-btn,
.hamburger {
  background: none;
  border: none;
  color: #255946;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.search-btn:hover,
.hamburger:hover {
  color: #87c03d;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  position: relative;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #255946;
  transition: all 0.3s ease;
}
.registration-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}
.registration-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.registration-left {
  flex: 1;
  padding: 40px;
  background: linear-gradient(135deg, #4a8f29 0%, #6bb644 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.registration-form-container {
  flex: 1;
  padding: 60px;
}
.form-header {
  margin-bottom: 40px;
  text-align: center;
}
.form-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
.form-header p {
  color: #7f8c8d;
  font-size: 14px;
}
.login-link {
  color: #4a8f29;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.login-link:hover {
  color: #3a7320;
}
.registration-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.form-group {
  position: relative;
}
.form-group.floating input,
.form-group.floating select {
  width: 100%;
  padding: 15px 20px 15px 40px;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  background-color: transparent;
  transition: all 0.3s;
  z-index: 2;
  position: relative;
}
.form-group.floating select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.form-group.floating label {
  position: absolute;
  top: 15px;
  left: 40px;
  color: #999;
  font-size: 16px;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 1;
}
.form-group.floating i {
  position: absolute;
  left: 15px;
  top: 15px;
  color: #7f8c8d;
  transition: all 0.3s;
  z-index: 3;
}
.form-group.floating .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4a8f29;
  transition: width 0.3s;
}
.form-group.floating input:focus,
.form-group.floating select:focus {
  outline: none;
}
.form-group.floating input:focus ~ label,
.form-group.floating input:valid ~ label,
.form-group.floating select:focus ~ label,
.form-group.floating select:valid ~ label {
  top: -10px;
  left: 35px;
  font-size: 12px;
  color: #4a8f29;
  background-color: #fff;
  padding: 0 5px;
  z-index: 3;
}
.form-group.floating input:focus ~ i,
.form-group.floating input:valid ~ i,
.form-group.floating select:focus ~ i,
.form-group.floating select:valid ~ i {
  color: #4a8f29;
}
.form-group.floating input:focus ~ .underline,
.form-group.floating select:focus ~ .underline {
  width: 100%;
}
.password-group {
  position: relative;
}
.toggle-password {
  position: absolute;
  right: 10px;
  top: 15px;
  background: none;
  border: none;
  color: #7f8c8d;
  cursor: pointer;
  z-index: 3;
}
.toggle-password:hover {
  color: #4a8f29;
}
.checkbox-group {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.checkbox-group input {
  margin-right: 10px;
  width: 16px;
  height: 16px;
  accent-color: #4a8f29;
}
.checkbox-group label {
  font-size: 14px;
  color: #7f8c8d;
}
.checkbox-group a {
  color: #4a8f29;
  text-decoration: none;
}
.checkbox-group a:hover {
  text-decoration: underline;
}
.submit-btn {
  position: relative;
  padding: 15px 30px;
  background-color: #4a8f29;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
  z-index: 1;
  margin-top: 10px;
}
.submit-btn span {
  position: relative;
  z-index: 2;
}
.submit-btn:hover {
  background-color: #3a7320;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 143, 41, 0.4);
}
.btn-plants {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  border-radius: 50px;
}
.wheat-plant,
.corn-plant {
  position: absolute;
  bottom: -10px;
  height: 40px;
  transition: all 0.5s ease-out;
}
.wheat-plant {
  left: -20px;
  width: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 40"><path d="M10 0 L12 20 L8 20 Z" fill="%23ffffff20"/><path d="M10 0 L12 10 L8 10 Z" fill="%23ffffff30"/><path d="M10 0 L10 40" stroke="%23ffffff50" stroke-width="1.5"/><path d="M10 10 L13 15 L7 15 Z" fill="%23ffffff30"/><path d="M10 20 L14 25 L6 25 Z" fill="%23ffffff30"/><path d="M10 30 L15 35 L5 35 Z" fill="%23ffffff30"/></svg>')
    no-repeat;
}
.corn-plant {
  right: -20px;
  width: 25px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 40"><path d="M12.5 0 L12.5 40" stroke="%23ffffff50" stroke-width="2"/><path d="M12.5 5 L17 10 L8 10 Z" fill="%23ffffff20"/><path d="M12.5 15 L18 20 L7 20 Z" fill="%23ffffff20"/><path d="M12.5 25 L19 30 L6 30 Z" fill="%23ffffff20"/><path d="M12.5 35 L20 38 L5 38 Z" fill="%23ffffff20"/></svg>')
    no-repeat;
}
.submit-btn:hover .wheat-plant {
  left: 10px;
  transform: rotate(5deg);
}
.submit-btn:hover .corn-plant {
  right: 10px;
  transform: rotate(-5deg);
}
.social-registration {
  margin-top: 30px;
  text-align: center;
}
.social-registration p {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 15px;
}
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.social-btn.google {
  background-color: #db4437;
}
.social-btn.facebook {
  background-color: #4267b2;
}
.social-btn.linkedin {
  background-color: #0077b5;
}
.registration-benefits {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.registration-benefits h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}
.registration-benefits ul {
  list-style: none;
  padding: 0;
}
.registration-benefits li {
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.registration-benefits i {
  margin-right: 10px;
  font-size: 18px;
}
.field-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
}
.field-row {
  display: flex;
  height: 33.33%;
  width: 100%;
}
.wheat,
.corn,
.sunflower {
  flex: 1;
  height: 100%;
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom;
  opacity: 0.8;
}
.wheat {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 100 L52 80 L48 80 Z" fill="%23ffffff"/><path d="M50 100 L52 60 L48 60 Z" fill="%23ffffff"/><path d="M50 100 L52 40 L48 40 Z" fill="%23ffffff"/></svg>');
}
.corn {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 100 L70 70 L30 70 Z" fill="%23ffffff"/><path d="M50 100 L70 50 L30 50 Z" fill="%23ffffff"/></svg>');
}
.sunflower {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="70" r="10" fill="%23ffffff"/><path d="M50 100 L55 70 L45 70 Z" fill="%23ffffff"/><path d="M50 100 L60 75 L40 75 Z" fill="%23ffffff"/><path d="M50 100 L65 80 L35 80 Z" fill="%23ffffff"/></svg>');
}
.delayed-1 {
  animation-delay: 0.5s;
}
.delayed-2 {
  animation-delay: 1s;
}
.tractor {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 100px;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 60"><rect x="20" y="30" width="60" height="20" fill="%23ffffff"/><rect x="10" y="40" width="10" height="10" fill="%23ffffff"/><rect x="70" y="40" width="20" height="10" fill="%23ffffff"/><circle cx="25" cy="50" r="10" fill="none" stroke="%23ffffff" stroke-width="2"/><circle cx="65" cy="50" r="10" fill="none" stroke="%23ffffff" stroke-width="2"/><rect x="40" y="20" width="20" height="10" fill="%23ffffff"/></svg>')
    no-repeat;
  animation: tractorMove 20s linear infinite;
}
.sun {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 50px;
  height: 50px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  animation: sunPulse 5s infinite alternate;
}
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: cloudMove 30s linear infinite;
}
.cloud-1 {
  top: 15%;
  left: -100px;
  width: 80px;
  height: 40px;
  animation-duration: 40s;
}
.cloud-2 {
  top: 25%;
  left: -150px;
  width: 120px;
  height: 60px;
  animation-duration: 50s;
}
.registration-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  z-index: 10;
}
.registration-success h2 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 15px;
}
.registration-success p {
  color: #7f8c8d;
  margin-bottom: 30px;
  max-width: 400px;
}
.success-btn {
  padding: 12px 30px;
  background-color: #4a8f29;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.success-btn:hover {
  background-color: #3a7320;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 143, 41, 0.4);
}
.success-animation {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
}
.success-icon {
  width: 100%;
  height: 100%;
}
.success-icon-circle {
  stroke: #4a8f29;
  stroke-width: 2;
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  fill: none;
  animation: circleAnimation 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.success-icon-check {
  position: absolute;
  top: 0;
  left: 0;
  stroke: #4a8f29;
  stroke-width: 2;
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  fill: none;
  animation: checkAnimation 0.8s 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #f00;
  opacity: 0;
}
.confetti:nth-child(1) {
  background-color: #4a8f29;
  top: 10%;
  left: 20%;
  animation: confettiAnimation 2s 1.5s ease-out forwards;
}
.confetti:nth-child(2) {
  background-color: #f1c40f;
  top: 5%;
  left: 50%;
  animation: confettiAnimation 2.2s 1.6s ease-out forwards;
}
.confetti:nth-child(3) {
  background-color: #e74c3c;
  top: 15%;
  left: 70%;
  animation: confettiAnimation 2.1s 1.7s ease-out forwards;
}
.confetti:nth-child(4) {
  background-color: #3498db;
  top: 20%;
  left: 30%;
  animation: confettiAnimation 2.3s 1.8s ease-out forwards;
}
.confetti:nth-child(5) {
  background-color: #9b59b6;
  top: 10%;
  left: 80%;
  animation: confettiAnimation 2s 1.9s ease-out forwards;
}
.hidden {
  display: none;
}
@keyframes tractorMove {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(calc(100vw + 100px));
  }
}
@keyframes sunPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes cloudMove {
  0% {
    transform: translateX(-200px);
  }
  100% {
    transform: translateX(calc(100vw + 200px));
  }
}
@keyframes circleAnimation {
  0% {
    stroke-dashoffset: 226;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes checkAnimation {
  0% {
    stroke-dashoffset: 70;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes confettiAnimation {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(100px) rotate(360deg);
    opacity: 0;
  }
}
.login-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}
.login-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.login-left {
  flex: 1;
  padding: 40px;
  background: linear-gradient(135deg, #2c5e1a 0%, #4a8f29 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.login-form-container {
  flex: 1;
  padding: 60px;
}
.farm-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
}
.barn {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 90px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 90"><polygon points="60,0 120,50 120,90 0,90 0,50" fill="%23ffffff"/><rect x="40" y="50" width="40" height="40" fill="%23ffffff"/><polygon points="50,20 70,20 80,40 40,40" fill="%23ffffff"/></svg>')
    no-repeat;
}
.fence {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 30"><rect x="0" y="10" width="400" height="10" fill="%23ffffff"/><rect x="0" y="0" width="10" height="20" fill="%23ffffff"/><rect x="40" y="0" width="10" height="20" fill="%23ffffff"/><rect x="80" y="0" width="10" height="20" fill="%23ffffff"/><rect x="120" y="0" width="10" height="20" fill="%23ffffff"/><rect x="160" y="0" width="10" height="20" fill="%23ffffff"/><rect x="200" y="0" width="10" height="20" fill="%23ffffff"/><rect x="240" y="0" width="10" height="20" fill="%23ffffff"/><rect x="280" y="0" width="10" height="20" fill="%23ffffff"/><rect x="320" y="0" width="10" height="20" fill="%23ffffff"/><rect x="360" y="0" width="10" height="20" fill="%23ffffff"/></svg>')
    repeat-x;
}
.tree {
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 100px;
  background-repeat: no-repeat;
}
.tree-1 {
  left: 10%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 100"><rect x="25" y="60" width="10" height="40" fill="%23ffffff"/><circle cx="30" cy="40" r="25" fill="%23ffffff"/></svg>');
  animation: treeSway 8s infinite alternate-reverse;
}
.tree-2 {
  right: 15%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 100"><rect x="25" y="60" width="10" height="40" fill="%23ffffff"/><path d="M30,10 Q50,30 30,50 Q10,70 30,90 Q50,70 30,50 Q10,30 30,10" fill="%23ffffff"/></svg>');
  animation: treeSway 7s infinite alternate;
}
.animal {
  position: absolute;
  bottom: 30px;
  width: 40px;
  height: 30px;
  animation: animalMove 20s linear infinite;
}
.cow {
  left: -50px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 30"><ellipse cx="25" cy="15" rx="15" ry="10" fill="%23ffffff"/><ellipse cx="10" cy="15" rx="8" ry="6" fill="%23ffffff"/><circle cx="32" cy="10" r="2" fill="%23000"/><circle cx="32" cy="20" r="2" fill="%23000"/></svg>')
    no-repeat;
  animation-duration: 25s;
}
.chicken {
  left: -70px;
  bottom: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><circle cx="20" cy="15" r="10" fill="%23ffffff"/><circle cx="20" cy="12" r="3" fill="%23ff9900"/><polygon points="20,12 25,7 23,5" fill="%23ff9900"/><path d="M10,25 Q15,15 20,25" stroke="%23ffffff" stroke-width="2" fill="none"/></svg>')
    no-repeat;
  animation-duration: 30s;
  animation-delay: 5s;
}
.sun {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 50px;
  height: 50px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  animation: sunPulse 5s infinite alternate;
}
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: cloudMove 30s linear infinite;
}
.cloud-1 {
  top: 15%;
  left: -100px;
  width: 80px;
  height: 40px;
  animation-duration: 40s;
}
.cloud-2 {
  top: 25%;
  left: -150px;
  width: 120px;
  height: 60px;
  animation-duration: 50s;
}
.login-benefits {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.login-benefits h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}
.login-benefits ul {
  list-style: none;
  padding: 0;
}
.login-benefits li {
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.login-benefits i {
  margin-right: 10px;
  font-size: 18px;
}
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}
.checkbox-group.remember-me {
  display: flex;
  align-items: center;
}
.checkbox-group.remember-me input {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  accent-color: #4a8f29;
}
.checkbox-group.remember-me label {
  font-size: 14px;
  color: #7f8c8d;
}
.forgot-password {
  font-size: 14px;
  color: #4a8f29;
  text-decoration: none;
}
.forgot-password:hover {
  text-decoration: underline;
}
.submit-btn {
  position: relative;
  padding: 15px 30px;
  background-color: #4a8f29;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
  z-index: 1;
  margin-top: 10px;
}
.submit-btn span {
  position: relative;
  z-index: 2;
}
.submit-btn:hover {
  background-color: #3a7320;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 143, 41, 0.4);
}
.btn-animals {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  border-radius: 50px;
}
.cow-head,
.chicken-head {
  position: absolute;
  bottom: -5px;
  height: 30px;
  width: 30px;
  transition: all 0.5s ease-out;
  background-repeat: no-repeat;
}
.cow-head {
  left: -30px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><ellipse cx="20" cy="15" rx="10" ry="8" fill="%23ffffff30"/><circle cx="25" cy="12" r="1.5" fill="%23000"/></svg>');
}
.chicken-head {
  right: -30px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><circle cx="15" cy="15" r="8" fill="%23ffffff30"/><circle cx="18" cy="12" r="1.5" fill="%23ff9900"/></svg>');
}
.submit-btn:hover .cow-head {
  left: 10px;
  transform: rotate(10deg);
}
.submit-btn:hover .chicken-head {
  right: 10px;
  transform: rotate(-10deg);
}
.agronalytics-main-container {
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  line-height: 1.3;
}
.agronalytics-section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}
.agronalytics-section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 5px;
  background-color: var(--secondary-color);
  border-radius: 3px;
}
.agronalytics-section-badge {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.agronalytics-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.agronalytics-section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.agronalytics-hero-section {
  height: 100vh;
  min-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-text);
  overflow: hidden;
}
.agronalytics-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 92, 54, 0.9) 0%,
    rgba(26, 147, 111, 0.8) 100%
  );
  z-index: 1;
}
.agronalytics-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease;
}
.agronalytics-main-title {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.agronalytics-hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  font-weight: 400;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
.agronalytics-scroll-down {
  position: absolute;
  bottom: -260px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}
.agronalytics-scroll-down span {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.agronalytics-mouse-icon {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  position: relative;
}
.agronalytics-mouse-wheel {
  width: 6px;
  height: 10px;
  background-color: white;
  border-radius: 3px;
  margin-top: 10px;
  animation: scrollWheel 2s infinite;
}
.agronalytics-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.agronalytics-about-section {
  background-color: white;
  position: relative;
}
.agronalytics-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.agronalytics-about-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.agronalytics-about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-color);
  transition: var(--transition);
}
.agronalytics-about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.agronalytics-about-card:hover::before {
  height: 10px;
}
.agronalytics-card-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(26, 147, 111, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  font-size: 2rem;
  transition: var(--transition);
}
.agronalytics-about-card:hover .agronalytics-card-icon {
  background-color: var(--primary-color);
  color: white;
  transform: rotateY(180deg);
}
.agronalytics-about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}
.agronalytics-about-card p {
  color: #666;
  font-size: 1rem;
}
.agronalytics-tech-section {
  background-color: var(--background-light);
}
.agronalytics-tech-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.agronalytics-tech-tab {
  padding: 1rem 2rem;
  background-color: white;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 2px solid transparent;
}
.agronalytics-tech-tab i {
  font-size: 1.2rem;
  color: var(--primary-color);
}
.agronalytics-tech-tab.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-dark);
}
.agronalytics-tech-tab.active i {
  color: white;
}
.agronalytics-tech-tab:not(.active):hover {
  border-color: var(--primary-light);
}
.agronalytics-tech-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.agronalytics-tech-content.active {
  display: grid;
  animation: fadeIn 0.8s ease;
}
.agronalytics-tech-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}
.agronalytics-tech-placeholder {
  height: 400px;
  background-size: cover;
  background-position: center;
}
.ai-placeholder {
  background-image: url("https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
}
.iot-placeholder {
  background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
}
.agronalytics-tech-description h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}
.agronalytics-tech-description p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #555;
}
.agronalytics-tech-list {
  list-style-type: none;
}
.agronalytics-tech-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.agronalytics-tech-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}
.agronalytics-viz-section {
  background-color: white;
}
.agronalytics-viz-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
}
.agronalytics-viz-main {
  height: 500px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
.agronalytics-viz-placeholder {
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
}
.agronalytics-viz-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.agronalytics-viz-option {
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.agronalytics-viz-option i {
  font-size: 1.2rem;
  color: var(--primary-color);
}
.agronalytics-viz-option.active {
  background-color: var(--primary-color);
  color: white;
}
.agronalytics-viz-option.active i {
  color: white;
}
.agronalytics-viz-option:not(.active):hover {
  transform: translateX(5px);
}
.agronalytics-cases-section {
  background-color: var(--background-light);
}
.agronalytics-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.agronalytics-case-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.agronalytics-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.agronalytics-case-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}
.case-1 {
  background-image: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
}
.case-2 {
  background-image: url("https://images.unsplash.com/photo-1523741543316-beb7fc7023d8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
}
.case-3 {
  background-image: url("https://images.unsplash.com/photo-1492496913980-501348b61469?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
}
.agronalytics-case-content {
  padding: 2rem;
}
.agronalytics-case-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}
.agronalytics-case-content p {
  color: #666;
  margin-bottom: 1.5rem;
}
.agronalytics-case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.agronalytics-case-link:hover {
  color: var(--primary-dark);
  gap: 1rem;
}
.agronalytics-team-section {
  background-color: white;
}
.agronalytics-team-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.agronalytics-team-member {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.agronalytics-team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}
.agronalytics-member-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background-size: cover;
  background-position: center;
  border: 5px solid var(--primary-light);
  transition: var(--transition);
}
.agronalytics-team-member:hover .agronalytics-member-photo {
  border-color: var(--primary-color);
  transform: scale(1.05);
}
.member-1 {
  background-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-1.2.1&auto=format&fit=crop&w=334&q=80");
}
.member-2 {
  background-image: url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-1.2.1&auto=format&fit=crop&w=334&q=80");
}
.member-3 {
  background-image: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-1.2.1&auto=format&fit=crop&w=334&q=80");
}
.agronalytics-team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.agronalytics-team-member p {
  color: #666;
  margin-bottom: 1.5rem;
}
.agronalytics-member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.agronalytics-member-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}
.agronalytics-member-social a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}
.agronalytics-partners-section {
  background-color: var(--background-light);
}
.agronalytics-partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  align-items: center;
}
.agronalytics-partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}
.agronalytics-partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}
.agronalytics-logo-placeholder {
  width: 160px;
  height: 80px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.logo-1 {
  background-image: url("https://via.placeholder.com/160x80?text=Partner+1");
}
.logo-2 {
  background-image: url("https://via.placeholder.com/160x80?text=Partner+2");
}
.logo-3 {
  background-image: url("https://via.placeholder.com/160x80?text=Partner+3");
}
.logo-4 {
  background-image: url("https://via.placeholder.com/160x80?text=Partner+4");
}
.agronalytics-cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-color) 100%
  );
  color: white;
  text-align: center;
  padding: 8rem 2rem;
}
.agroconsult-main-container {
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.3;
}
.agroconsult-section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--agroconsult-text-color);
  position: relative;
}
.agroconsult-section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--agroconsult-secondary-color);
  border-radius: 2px;
}
.agroconsult-section-badge {
  display: inline-block;
  background-color: var(--agroconsult-secondary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.agroconsult-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--agroconsult-section-padding);
}
.agroconsult-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.agroconsult-hero-section {
  height: 100vh;
  min-height: 800px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
      no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--agroconsult-light-text);
  position: relative;
}
.agroconsult-hero-content {
  max-width: 800px;
  padding: 0 2rem;
  z-index: 2;
}
.agroconsult-main-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.agroconsult-hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  color: white;
}
.agroconsult-hero-button {
  display: inline-block;
  background-color: var(--agroconsult-secondary-color);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--agroconsult-transition);
  box-shadow: 0 5px 15px rgba(255, 160, 0, 0.3);
}
.agroconsult-hero-button:hover {
  background-color: var(--agroconsult-secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 160, 0, 0.4);
}
.agroconsult-hero-scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.agroconsult-scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 15px;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  position: relative;
}
.agroconsult-scroll-wheel {
  width: 6px;
  height: 10px;
  background-color: white;
  border-radius: 3px;
  margin-top: 10px;
  animation: scrollWheel 2s infinite;
}
.agroconsult-services-section {
  background-color: white;
}
.agroconsult-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.agroconsult-service-card {
  background: white;
  padding: var(--agroconsult-card-padding);
  border-radius: var(--agroconsult-border-radius);
  box-shadow: var(--agroconsult-box-shadow);
  transition: var(--agroconsult-transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.agroconsult-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--agroconsult-primary-color);
  transition: var(--agroconsult-transition);
}
.agroconsult-service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--agroconsult-box-shadow-hover);
}
.agroconsult-service-card:hover::before {
  height: 10px;
}
.agroconsult-service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--agroconsult-primary-color);
  font-size: 1.8rem;
  transition: var(--agroconsult-transition);
}
.agroconsult-service-card:hover .agroconsult-service-icon {
  background-color: var(--agroconsult-primary-color);
  color: white;
  transform: rotateY(180deg);
}
.agroconsult-service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.agroconsult-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--agroconsult-primary-color);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: var(--agroconsult-transition);
}
.agroconsult-service-link:hover {
  color: var(--agroconsult-primary-dark);
  gap: 1rem;
}
.agroconsult-process-section {
  background-color: var(--agroconsult-background-light);
}
.agroconsult-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.agroconsult-process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--agroconsult-border-radius);
  box-shadow: var(--agroconsult-box-shadow);
  transition: var(--agroconsult-transition);
}
.agroconsult-process-step:hover {
  transform: translateY(-10px);
}
.agroconsult-step-number {
  width: 60px;
  height: 60px;
  background-color: var(--agroconsult-primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}
.agroconsult-experts-section {
  background-color: white;
}
.agroconsult-experts-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.agroconsult-expert-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--agroconsult-border-radius);
  box-shadow: var(--agroconsult-box-shadow);
  transition: var(--agroconsult-transition);
}
.agroconsult-expert-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--agroconsult-box-shadow-hover);
}
.agroconsult-expert-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background-size: cover;
  background-position: center;
  border: 5px solid var(--agroconsult-primary-light);
  transition: var(--agroconsult-transition);
}
.agroconsult-expert-card:hover .agroconsult-expert-photo {
  border-color: var(--agroconsult-primary-color);
  transform: scale(1.05);
}
.expert-1 {
  background-image: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-1.2.1&auto=format&fit=crop&w=334&q=80");
}
.expert-2 {
  background-image: url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-1.2.1&auto=format&fit=crop&w=334&q=80");
}
.expert-3 {
  background-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-1.2.1&auto=format&fit=crop&w=334&q=80");
}
.agroconsult-form-section {
  background-color: var(--agroconsult-background-light);
}
.agroconsult-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.agroconsult-form-content {
  background: white;
  padding: 3rem;
  border-radius: var(--agroconsult-border-radius);
  box-shadow: var(--agroconsult-box-shadow);
}
.agroconsult-form-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.agroconsult-form-description {
  margin-bottom: 2rem;
  color: #666;
}
.agroconsult-form-group {
  margin-bottom: 1.5rem;
}
.agroconsult-form-group input,
.agroconsult-form-group select,
.agroconsult-form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--agroconsult-border-radius);
  font-family: "Montserrat", sans-serif;
  transition: var(--agroconsult-transition);
}
.agroconsult-form-group input:focus,
.agroconsult-form-group select:focus,
.agroconsult-form-group textarea:focus {
  border-color: var(--agroconsult-primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}
.agroconsult-form-button {
  width: 100%;
  padding: 1rem;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: var(--agroconsult-border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--agroconsult-transition);
}
.agroconsult-form-button:hover {
  background-color: rgba(0, 128, 0, 0.316);
  transform: translateY(-3px);
}
.agroconsult-form-image {
  height: 100%;
}
.agroconsult-form-placeholder {
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  border-radius: var(--agroconsult-border-radius);
}
.agroconsult-faq-accordion {
  width: 100%;
  max-width: 920px;
  margin: 24px auto 80px;
  display: grid;
  gap: 16px;
}
.agroconsult-faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.06s ease;
}
.agroconsult-faq-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.agroconsult-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 18px 20px;
  user-select: none;
  outline: none;
  background: #8cc63f;
  color: #fff;
  transition: background-color 0.25s ease;
}
.agroconsult-faq-item.open .agroconsult-faq-question {
  background: #76a834;
}
.agroconsult-faq-question h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2px;
}
.agroconsult-faq-question i {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: transform 0.25s ease, background-color 0.2s ease;
  flex-shrink: 0;
}
.agroconsult-faq-item.open .agroconsult-faq-question i.fa-chevron-down {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.3);
}
.agroconsult-faq-question:focus-visible {
  box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.45);
  border-radius: 4px;
}
.agroconsult-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.35s ease, padding 0.25s ease, opacity 0.25s ease,
    transform 0.25s ease;
}
.agroconsult-faq-item.open .agroconsult-faq-answer {
  padding: 16px 20px 20px;
  opacity: 1;
  transform: none;
}
.agroconsult-faq-answer p {
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}
@media (prefers-color-scheme: dark) {
  .agroconsult-faq-item {
    background: #16191f;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  }
  .agroconsult-faq-question {
    background: #8cc63f;
    color: #fff;
  }
  .agroconsult-faq-answer p {
    color: #cbd5e1;
  }
}
.agroconsult-cta-section {
  background: linear-gradient(
    135deg,
    var(--agroconsult-primary-dark) 0%,
    var(--agroconsult-primary-color) 100%
  );
  color: white;
  text-align: center;
}
.agroconsult-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.agroconsult-cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.agroconsult-cta-button {
  display: inline-block;
  background-color: var(--agroconsult-secondary-color);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--agroconsult-transition);
  box-shadow: 0 5px 15px rgba(255, 160, 0, 0.3);
}
.agroconsult-cta-button:hover {
  background-color: var(--agroconsult-secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 160, 0, 0.4);
}
.agroconsult-footer {
  background-color: var(--agroconsult-background-dark);
  color: white;
}
.agroconsult-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.agroconsult-footer-about h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.agroconsult-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.agroconsult-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--agroconsult-transition);
}
.agroconsult-footer-social a:hover {
  background-color: var(--agroconsult-primary-color);
  transform: translateY(-3px);
}
.agroconsult-footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}
.agroconsult-footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
  text-decoration: none;
  transition: var(--agroconsult-transition);
}
.agroconsult-footer-links a:hover {
  color: white;
  transform: translateX(5px);
}
.agroconsult-footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}
.agroconsult-footer-contact i {
  width: 20px;
  text-align: center;
}
.agroconsult-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.agroconsult-footer-legal {
  display: flex;
  gap: 1.5rem;
}
.agroconsult-footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--agroconsult-transition);
}
.agroconsult-footer-legal a:hover {
  color: white;
}
@keyframes scrollWheel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes treeSway {
  0% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(2deg);
  }
}
@keyframes animalMove {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(calc(100vw + 100px));
  }
}
@keyframes sunPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes cloudMove {
  0% {
    transform: translateX(-200px);
  }
  100% {
    transform: translateX(calc(100vw + 200px));
  }
}
.contacts-page {
  font-family: "Segoe UI", Roboto, sans-serif;
  color: #333;
}
.contacts-hero {
  background: linear-gradient(135deg, #87c03d, #87c03d);
  color: white;
  padding: 123px 0;
  text-align: center;
}
.contacts-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
  margin-top: 47px;
}
.contacts-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}
.contacts-content {
  padding: 60px 0;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}
.contact-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-icon svg {
  width: 24px;
  height: 24px;
  color: #2e7d32;
}
.contact-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2e7d32;
  font-weight: 600;
}
.contact-links,
.contact-text {
  color: #000000a1;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-links:hover {
  color: #2e7d32;
}
.contacts-form {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.form-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #2e7d32;
  font-weight: 600;
}
.form-group {
  position: relative;
  margin-bottom: 25px;
}
.form-input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
}
.form-input:focus {
  border-color: #4caf50;
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}
.form-label {
  position: absolute;
  left: 15px;
  top: 15px;
  color: #999;
  transition: all 0.3s;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.342);
  padding: 0 5px;
}
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: -10px;
  font-size: 0.8rem;
  color: #4caf50;
}
.form-textarea {
  min-height: 150px;
  resize: vertical;
}
.submit-btn {
  background: #4caf50;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
  font-weight: 600;
}
.submit-btn:hover {
  background: #3d8b40;
  transform: translateY(-2px);
}
.contacts-map {
  position: relative;
}
.map-container {
  position: relative;
  height: 500px;
}
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.map-container iframe {
  position: relative;
  z-index: 2;
  border: none;
}
.contact-card,
.contacts-form,
.map-container {
  transform: translateY(30px);
  transition: all 0.5s ease;
}
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.scroll-top-btn:hover {
  background: #3d8b40;
  transform: translateY(-3px) scale(1.1);
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.contact-icon {
  animation: pulse 2s infinite;
}
.contacts-hero {
  animation: gradientShift 10s ease infinite;
  background-size: 200% 200%;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.submit-btn {
  position: relative;
  overflow: hidden;
}
.submit-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}
.submit-btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}
@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}
.quantum-agro-about-main-container {
  overflow-x: hidden;
  position: relative;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  color: #e0e0e0;
  font-family: "Exo 2", sans-serif;
}
.neomorphic-about-hero-section {
  height: 100vh;
  min-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fractal-gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a3d3a 0%, #1b5e5a 50%, #3c8c87 100%);
  z-index: 1;
  animation: fractalPulse 15s infinite alternate;
}
@keyframes fractalPulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}
.parallax-agro-particle-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 2;
  opacity: 0.3;
}
.parallax-agro-particle-layer:nth-child(1) {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="20" cy="20" r="1" fill="white"/><circle cx="50" cy="50" r="0.7" fill="white"/><circle cx="80" cy="30" r="0.5" fill="white"/></svg>');
  animation: particleMove 60s linear infinite;
}
.parallax-agro-particle-layer:nth-child(2) {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="10" cy="70" r="0.8" fill="white"/><circle cx="40" cy="20" r="0.4" fill="white"/><circle cx="90" cy="60" r="0.6" fill="white"/></svg>');
  animation: particleMove 90s linear infinite reverse;
}
@keyframes particleMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
.cybernetic-about-content-wrapper {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 1200px;
  padding: 0 20px;
}
.holographic-text-title {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 50%, #00d2ff 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: holographicShine 3s linear infinite;
  text-shadow: 0 0 10px rgba(58, 123, 213, 0.3);
}
@keyframes holographicShine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.quantum-flux-highlight {
  position: relative;
  display: inline-block;
}
.quantum-flux-highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #7bff00, #00ff88);
  transform: scaleX(0);
  transform-origin: left;
  animation: quantumUnderline 3s infinite alternate;
}
@keyframes quantumUnderline {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0);
    opacity: 0;
  }
}
.kinetic-typography-subtitle {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: kineticTypoReveal 1.5s 0.5s forwards
    cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes kineticTypoReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.morphing-agro-shape-animator {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #00d2ff, #3a7bd5);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(60px);
  opacity: 0.4;
  z-index: 3;
  animation: morphingShape 15s infinite alternate ease-in-out;
}
@keyframes morphingShape {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: translateX(-50%) rotate(0deg);
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    transform: translateX(-50%) rotate(360deg);
  }
}
.hyperdimensional-about-features {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(
    to bottom,
    rgba(11, 29, 38, 0.8) 0%,
    rgba(27, 65, 80, 0.5) 100%
  );
  z-index: 4;
}
.quantum-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.fractal-card-item {
  position: relative;
  background: rgba(15, 30, 40, 0.7);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 210, 255, 0.1);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fractal-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 210, 255, 0.2);
}
.card-holographic-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00d2ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fractal-card-item:hover .card-holographic-edge {
  opacity: 1;
  animation: holographicEdgeFlow 2s linear infinite;
}
@keyframes holographicEdgeFlow {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.neon-agro-heading {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #00d2ff;
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}
.interstellar-card-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b0e0e6;
}
.particle-accelerator-indicator {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 210, 255, 0.8) 0%,
    rgba(0, 210, 255, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fractal-card-item:hover .particle-accelerator-indicator {
  opacity: 1;
  animation: particlePulse 1.5s infinite ease-in-out;
}
@keyframes particlePulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.7;
  }
}
.quantum-agro-timeline-section {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(
    to bottom,
    rgba(27, 65, 80, 0.5) 0%,
    rgba(11, 29, 38, 0.8) 100%
  );
  z-index: 5;
}
.glitch-text-heading {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 5rem;
  position: relative;
  color: #fff;
}
.glitch-text-heading::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #00d2ff;
  animation: glitchEffect 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}
.glitch-text-heading::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #ff00aa;
  animation: glitchEffect 2s infinite linear alternate-reverse;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}
@keyframes glitchEffect {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 3px);
  }
  40% {
    transform: translate(-3px, -3px);
  }
  60% {
    transform: translate(3px, 3px);
  }
  80% {
    transform: translate(3px, -3px);
  }
  100% {
    transform: translate(0);
  }
}
.temporal-distortion-effect {
  position: relative;
  display: inline-block;
}
.temporal-distortion-effect::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #ff00aa, #00d2ff, #ff00aa);
  z-index: -1;
  filter: blur(10px);
  opacity: 0;
  animation: temporalDistortion 4s infinite;
}
@keyframes temporalDistortion {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
.chrono-agro-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}
.time-vortex-connector {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #00d2ff, transparent);
  transform: translateX(-50%);
}
.temporal-milestone-card {
  position: relative;
  width: calc(50% - 40px);
  padding: 20px;
  margin-bottom: 80px;
  background: rgba(15, 30, 40, 0.7);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 210, 255, 0.2);
}
.temporal-milestone-card::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #00d2ff;
  box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.2), 0 0 20px rgba(0, 210, 255, 0.6);
  z-index: 1;
}
.temporal-milestone-card.left {
  left: 0;
}
.temporal-milestone-card.left::before {
  right: -55px;
}
.temporal-milestone-card.right {
  left: calc(50% + 40px);
}
.temporal-milestone-card.right::before {
  left: -55px;
}
.milestone-hologram {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 210, 255, 0.05),
    transparent
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.temporal-milestone-card:hover .milestone-hologram {
  opacity: 1;
  animation: hologramFlicker 2s infinite;
}
:root {
  --primary-color: #4caf50;
  --primary-dark: #388e3c;
  --primary-light: #c8e6c9;
  --secondary-color: #ff9800;
  --accent-color: #8bc34a;
  --dark-color: #333;
  --light-color: #f9f9f9;
  --gray-color: #e0e0e0;
  --danger-color: #f44336;
  --warning-color: #ffc107;
  --info-color: #2196f3;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
.agro-dashboard {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.dashboard-header {
  background-color: white;
  padding: 1rem 2rem;
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 10;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.welcome-message {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
}
.user-name {
  color: var(--primary-color);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.search-field {
  position: relative;
  display: flex;
  align-items: center;
}
.search-field i {
  position: absolute;
  left: 12px;
  color: #999;
}
.search-field input {
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  border: 1px solid var(--gray-color);
  border-radius: var(--border-radius);
  width: 250px;
  transition: var(--transition);
}
.search-field input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}
.notification-btn {
  position: relative;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
  transition: var(--transition);
}
.notification-btn:hover {
  color: var(--primary-color);
}
.notification-badge {
  position: absolute;
  top: 4px;
  right: -68px;
  background-color: var(--danger-color);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  display: none;
}
.user-avatar img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid var(--primary-light);
  transition: var(--transition);
}
.user-avatar img:hover {
  border-color: var(--primary-color);
}
.dashboard-content {
  display: flex;
  flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.sidebar {
  width: 280px;
  background-color: white;
  padding: 1.5rem 0;
  border-right: 1px solid var(--gray-color);
  display: flex;
  flex-direction: column;
}
.main-nav ul {
  list-style: none;
}
.main-nav li {
  margin-bottom: 0.2rem;
}
.main-nav a {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  color: #555;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}
.main-nav a:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}
.main-nav li.active a {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-left: 3px solid var(--primary-color);
}
.weather-widget {
  margin-top: auto;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: var(--border-radius);
  margin: 1rem;
}
.weather-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.weather-header h3 {
  font-size: 1rem;
  color: #555;
}
.refresh-weather {
  color: #999;
  cursor: pointer;
  transition: var(--transition);
}
.refresh-weather:hover {
  color: var(--primary-color);
  transform: rotate(180deg);
}
.weather-cards {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.weather-card {
  background-color: white;
  padding: 0.8rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.weather-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}
.weather-info {
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
}
.weather-info i {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  color: var(--secondary-color);
}
.weather-info span {
  font-weight: 600;
}
.weather-card p {
  font-size: 0.8rem;
  color: #777;
}
.main-content {
  flex: 1;
  padding: 1.5rem;
  background-color: #f9f9f9;
  overflow-y: auto;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.section-header h2 {
  font-size: 1.5rem;
  color: var(--dark-color);
}
.section-actions {
  display: flex;
  gap: 0.8rem;
}
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn i {
  font-size: 0.9rem;
}
.primary-btn {
  background-color: var(--primary-color);
  color: white;
}
.primary-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}
.outline-btn {
  background-color: transparent;
  border: 1px solid var(--gray-color);
  color: #555;
}
.outline-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.small-btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}
.fields-container {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.fields-map {
  flex: 2;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  position: relative;
}
.map-toolbar {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem;
  background-color: #f5f5f5;
  border-bottom: 1px solid var(--gray-color);
}
.map-search {
  position: relative;
  flex: 1;
  max-width: 400px;
}
.map-search input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  border: 1px solid var(--gray-color);
  border-radius: var(--border-radius);
}
.map-search .search-btn {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #999;
}
.map-tools {
  display: flex;
  gap: 0.5rem;
}
.tool-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid var(--gray-color);
  border-radius: 4px;
  color: #666;
  cursor: pointer;
  transition: var(--transition);
}
.tool-btn:hover {
  background-color: #f0f0f0;
}
.tool-btn.active {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary-color);
}
.map-area {
  height: 100%;
  position: relative;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}
.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.field-overlay {
  position: absolute;
  background-color: rgba(76, 175, 80, 0.3);
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.field-overlay:hover {
  background-color: rgba(76, 175, 80, 0.5);
}
.field-label {
  position: absolute;
  bottom: -25px;
  left: 0;
  background-color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.fields-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.field-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}
.field-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.field-card.selected {
  border-color: var(--primary-color);
  background-color: var(--primary-light);
}
.field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.field-header h3 {
  font-size: 1.1rem;
}
.field-area {
  font-size: 0.9rem;
  color: #777;
  background-color: #f0f0f0;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.field-info p {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.3rem;
}
.field-info i {
  margin-right: 0.5rem;
  width: 14px;
  color: #999;
}
.field-crops {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0;
}
.crop-tag {
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.crop-tag i {
  font-size: 0.6rem;
}
.wheat {
  background-color: #fff9c4;
  color: #f57f17;
}
.corn {
  background-color: #e8f5e9;
  color: #2e7d32;
}
.sunflower {
  background-color: #fff3e0;
  color: #e65100;
}
.field-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.action-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border: none;
  border-radius: 4px;
  color: #666;
  cursor: pointer;
  transition: var(--transition);
}
.action-btn:hover {
  background-color: var(--primary-color);
  color: white;
}
.planning-content {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.recommendations {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.recommendation-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  transition: var(--transition);
}
.recommendation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.rec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.rec-header h3 {
  font-size: 1.1rem;
  color: var(--dark-color);
}
.rec-confidence {
  font-size: 0.7rem;
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
}
.rec-content p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}
.rec-crops {
  list-style: none;
  margin-bottom: 1rem;
}
.rec-crops li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.crop-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.crop-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.crop-info h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.crop-info p {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
}
.water-schedule {
  background-color: #e3f2fd;
  border-radius: var(--border-radius);
  padding: 0.8rem;
  margin-bottom: 1rem;
}
.schedule-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(33, 150, 243, 0.2);
}
.schedule-item:last-child {
  border-bottom: none;
}
.schedule-date {
  font-weight: 500;
  color: #0d47a1;
}
.schedule-amount {
  font-weight: 600;
  color: #1976d2;
}
.plan-form {
  flex: 1;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  align-self: flex-start;
  position: sticky;
  top: 1rem;
}
.plan-form h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 0.5rem;
}
.plan-form h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 500;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--gray-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}
.dropdown-select {
  position: relative;
  cursor: pointer;
}
.select-header {
  padding: 0.7rem 1rem;
  border: 1px solid var(--gray-color);
  border-radius: var(--border-radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}
.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid var(--gray-color);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.dropdown-select.active .select-options {
  max-height: 300px;
}
.select-options li {
  padding: 0.7rem 1rem;
  transition: var(--transition);
}
.select-options li:hover {
  background-color: #f5f5f5;
}
.select-options li.add-new {
  color: var(--primary-color);
  font-weight: 500;
}
.fertilizer-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.fertilizer-tag {
  background-color: #f5f5f5;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fertilizer-tag i {
  font-size: 0.7rem;
  color: #999;
  cursor: pointer;
  transition: var(--transition);
}
.fertilizer-tag i:hover {
  color: var(--danger-color);
}
.add-fertilizer {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.add-fertilizer:hover {
  text-decoration: underline;
}
.form-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.analytics-content {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
}
.time-filter {
  display: flex;
  gap: 0.5rem;
}
.time-btn {
  padding: 0.4rem 0.8rem;
  background-color: #f5f5f5;
  border: none;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}
.time-btn:hover {
  background-color: #e0e0e0;
}
.time-btn.active {
  background-color: var(--primary-color);
  color: white;
}
.analytics-charts {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.chart-container {
  flex: 1;
  background-color: #f9f9f9;
  border-radius: var(--border-radius);
  padding: 1rem;
}
.chart-container h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
}
.chart {
  height: 200px;
  position: relative;
}
.analytics-table {
  margin-top: 2rem;
}
.analytics-table h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
th,
td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}
th {
  background-color: #f5f5f5;
  font-weight: 500;
  font-size: 0.9rem;
  color: #555;
}
td {
  font-size: 0.9rem;
  color: #333;
}
tr:hover td {
  background-color: #f9f9f9;
}
.table-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-container {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.modal-overlay.active .modal-container {
  transform: translateY(0);
}
.modal-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--gray-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 {
  font-size: 1.3rem;
  color: var(--dark-color);
}
.close-modal {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #999;
  cursor: pointer;
  transition: var(--transition);
}
.close-modal:hover {
  color: var(--danger-color);
  transform: rotate(90deg);
}
.modal-content {
  padding: 1.5rem;
}
.location-selector {
  margin-top: 0.5rem;
}
.map-preview {
  height: 150px;
  background-color: #f5f5f5;
  border-radius: var(--border-radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  position: relative;
}
.map-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.field-card,
.recommendation-card,
.chart-container {
  animation: fadeIn 0.5s ease forwards;
}
.field-card:nth-child(1) {
  animation-delay: 0.1s;
}
.field-card:nth-child(2) {
  animation-delay: 0.2s;
}
.recommendation-card:nth-child(1) {
  animation-delay: 0.1s;
}
.recommendation-card:nth-child(2) {
  animation-delay: 0.2s;
}
.chart-container:nth-child(1) {
  animation-delay: 0.1s;
}
.chart-container:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(76, 175, 80, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}
.agromind-main-container {
  overflow-x: hidden;
}
.agromind-section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}
.agromind-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
}
.agromind-section-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 1080px;
  color: white;
}
.agromind-main-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}
.agromind-hero-subtitle {
  font-size: 1.5rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}
.agromind-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.agromind-hero-section {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
      no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.agromind-hero-content {
  animation: fadeInUp 1s ease;
}
.agromind-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.agromind-scroll-indicator i {
  margin-top: 10px;
  font-size: 1.5rem;
}
.agromind-about-section {
  background-color: white;
}
.agromind-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.agromind-feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}
.agromind-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.agromind-feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.agromind-feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}
.agromind-feature-card p {
  font-size: 0.9rem;
  color: #666;
}
.agromind-monetization-section {
  background-color: var(--background-light);
}
.agromind-feature-list {
  list-style-type: none;
  max-width: 800px;
}
.agromind-feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.agromind-feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}
.agromind-founder-section {
  background-color: white;
}
.agromind-founder-profile {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}
.agromind-founder-image-placeholder {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #ddd;
  background-image: url("../img/paripamaximpavlovich.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--box-shadow);
  flex-shrink: 0;
}
.agromind-founder-info h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}
.agromind-founder-description {
  font-size: 1.1rem;
  line-height: 1.8;
}
.agromind-history-section {
  background-color: var(--background-light);
}
.agromind-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}
.agromind-timeline::before {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--primary-light);
  top: 0;
  bottom: 0;
  left: 50px;
  margin-left: -2px;
}
.agromind-timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 100px;
}
.agromind-timeline-date {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  padding: 0.5rem;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  border-radius: var(--border-radius);
  font-weight: bold;
}
.agromind-timeline-content {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
.agromind-timeline-content h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}
.agromind-meeting-photo-placeholder {
  height: 300px;
  background-color: #ddd;
  margin-top: 1.5rem;
  border-radius: var(--border-radius);
  background-image: url("../img/kachanova.jpg");
  background-size: cover;
  background-position: center;
}
.agromind-video-placeholder {
  margin-top: 1.5rem;
}
.agromind-video-thumbnail {
  height: 200px;
  background-color: #ddd;
  border-radius: var(--border-radius);
  background-image: url("https://www.youtube.com/shorts/nWasPtKZejs");
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
}
.agromind-video-thumbnail::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  opacity: 0.8;
}
.agromind-gallery-section {
  background-color: white;
}
.agromind-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.agromind-gallery-item {
  height: 250px;
  border-radius: var(--border-radius);
  background-color: #ddd;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--box-shadow);
}
.agromind-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.gallery-item-1 {
  background-image: url("../img/belta1.jpg");
  background-size: cover;
  background-position: center;
}
.gallery-item-2 {
  background-image: url("../img/belta2.jpg");
  background-size: cover;
  background-position: center;
}
.gallery-item-3 {
  background-image: url("../img/belta44.jpg");
  background-size: cover;
  background-position: center;
}
.gallery-item-4 {
  background-image: url("../img/belta66.jpg");
  background-size: cover;
  background-position: center;
}
.gallery-item-5 {
  background-image: url("../img/betla77.jpg");
  background-size: cover;
  background-position: center;
}
.gallery-item-6 {
  background-image: url("../img/kachanova.jpg");
  background-size: cover;
  background-position: center;
}
.agromind-video-section {
  background-color: var(--background-light);
}
.agromind-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.agromind-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.agromind-video-placeholder-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ddd;
  background-image: url("https://img.youtube.com/vi/dQw4w9WgXcQ/maxresdefault.jpg");
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
  cursor: pointer;
}
.agromind-video-placeholder-large::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: white;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  opacity: 0.8;
}
.agromind-future-section {
  background-color: var(--primary-dark);
  color: var(--light-text);
  text-align: center;
}
.agromind-future-section .agromind-section-title {
  color: white;
}
.agromind-future-section .agromind-section-title::after {
  background-color: var(--secondary-color);
}
.agromind-cta-button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 2rem;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.agromind-cta-button:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.agromind-footer {
  background-color: var(--background-dark);
  color: var(--light-text);
  padding: 3rem 0 1rem;
}
.agromind-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.agromind-footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}
.agromind-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.agromind-footer-links a {
  color: var(--light-text);
  text-decoration: none;
  transition: var(--transition);
}
.agromind-footer-links a:hover {
  color: var(--primary-light);
}
.agromind-footer-social {
  display: flex;
  gap: 1rem;
}
.agromind-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light-text);
  transition: var(--transition);
}
.agromind-footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}
.agromind-footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.agro-management-platform {
  --primary-color: #2e7d32;
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --secondary-color: #0277bd;
  --background-light: #f5f5f5;
  --text-primary: #212121;
  --text-secondary: #757575;
  --white: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  font-family: "Roboto", sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--background-light);
}
.platform-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 8%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
}
.hero-content {
  max-width: 500px;
}
.platform-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.platform-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
}
.primary-cta,
.secondary-cta {
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.primary-cta {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
}
.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}
.secondary-cta {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.secondary-cta:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.hero-dashboard {
  position: relative;
}
.dashboard-image {
  width: 500px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.dashboard-image:hover {
  transform: scale(1.02);
}
.dashboard-highlights {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}
.highlight-item {
  background-color: var(--white);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.highlight-item:hover {
  transform: translateY(-5px);
}
.highlight-icon {
  font-size: 1.25rem;
}
.platform-features {
  padding: 5rem 8%;
  background-color: var(--white);
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}
.section-description {
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}
.feature-card p {
  color: var(--text-secondary);
}
.platform-integrations {
  padding: 4rem 8%;
  background-color: var(--background-light);
}
.integrations-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.integrations-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
}
.integration-logo {
  height: 50px;
  opacity: 0.7;
  transition: var(--transition);
}
.integration-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}
.platform-pricing {
  padding: 5rem 8%;
  background-color: var(--white);
}
.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}
.pricing-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  width: 300px;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.pricing-card:hover {
  transform: translateY(-5px);
}
.pricing-card.recommended {
  border: 2px solid var(--primary-color);
}
.recommended-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  text-align: center;
}
.price {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}
.price span {
  font-size: 1rem;
  color: var(--text-secondary);
}
.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.features-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-secondary);
}
.features-list li:last-child {
  border-bottom: none;
}
.pricing-cta {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.pricing-cta:hover {
  background-color: var(--primary-dark);
}
.pricing-card.recommended .pricing-cta {
  background-color: var(--secondary-color);
}
.pricing-card.recommended .pricing-cta:hover {
  background-color: #01579b;
}
.platform-testimonials {
  padding: 4rem 8%;
  background-color: var(--background-light);
}
.testimonials-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
}
.testimonial-card {
  min-width: 350px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  scroll-snap-align: start;
}
.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-weight: 500;
  color: var(--text-primary);
}
.author-farm {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.platform-tutorial {
  --primary-color: #2e7d32;
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --secondary-color: #0277bd;
  --background-light: #f5f5f5;
  --text-primary: #212121;
  --text-secondary: #757575;
  --white: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  font-family: "Roboto", sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
}
.tutorial-nav {
}
.nav-container {
  display: none;
}
.tutorial-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}
.progress-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.progress-bar {
  height: 8px;
  background-color: var(--white);
  border-radius: 4px;
  width: 200px;
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}
.progress-bar::after {
  content: "";
  display: block;
  height: 100%;
  background-color: var(--white);
  border-radius: 4px;
}
.progress-text {
  font-size: 0.9rem;
  opacity: 0.9;
}
.tutorial-content {
  display: flex;
  max-width: 1200px;
  margin: 2rem auto;
  gap: 2rem;
}
.tutorial-sidebar {
  width: 280px;
  flex-shrink: 0;
}
.sidebar-section {
  margin-bottom: 2rem;
}
.sidebar-title {
  font-size: 1.1rem;
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--border-radius);
}
aside.sidebar a {
  width: 100%;
  display: inline-flex;
}
aside.sidebar a:hover {
  border-left: 4px solid green;
}
aside.sidebar .page_item a {
  background-color: var(--primary-light);
  border-left: 4px solid green;
}
.menu-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.menu-item.active {
  background-color: var(--primary-light);
  color: var(--white);
}
.item-icon {
  margin-right: 0.75rem;
  font-size: 1.2rem;
}
.item-text {
  font-size: 0.95rem;
}
.tutorial-main {
  flex-grow: 1;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
}
.section-title {
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-light);
}
.step-container {
  margin-bottom: 2rem;
}
.step {
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.step-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: var(--background-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  margin-right: 1rem;
  font-weight: 500;
}
.step-title {
  font-size: 1.2rem;
  margin: 0;
}
.step-content {
  padding: 1.5rem;
}
.tutorial-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 1.5rem;
  background-color: #000;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.tutorial-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tutorial-text {
  line-height: 1.7;
}
.tutorial-text ol,
.tutorial-text ul {
  padding-left: 1.5rem;
}
.tutorial-text li {
  margin-bottom: 0.5rem;
}
.tutorial-images {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.tutorial-images img {
  max-height: 300px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
.interactive-demo {
  position: relative;
  margin-bottom: 1.5rem;
}
.demo-image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: block;
}
.demo-tooltip {
  position: absolute;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.interface-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.interface-item {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.interface-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--box-shadow);
}
.interface-item .item-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.interface-item h4 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}
.interface-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}
.step-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.nav-button {
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.nav-button:hover {
  background-color: var(--primary-dark);
}
.nav-button:disabled {
  background-color: var(--text-secondary);
  cursor: not-allowed;
  opacity: 0.6;
}
.step-indicator {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.knowledge-check {
  background-color: var(--background-light);
  padding: 3rem 2rem;
}
.check-container {
  max-width: 1200px;
  margin: 0 auto;
}
.check-title {
  text-align: center;
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
}
.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
.quiz-question {
  margin-bottom: 1.5rem;
}
.quiz-question p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.option {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}
.option:hover {
  border-color: var(--primary-light);
  background-color: rgba(76, 175, 80, 0.05);
}
.option input {
  margin-right: 0.75rem;
}
.quiz-submit {
  display: block;
  margin: 1.5rem auto 0;
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}
.quiz-submit:hover {
  background-color: var(--primary-dark);
}
.organic-fertilizers-guide {
  --primary-green: #2e7d32;
  --light-green: #8bc34a;
  --dark-green: #1b5e20;
  --earth-brown: #5d4037;
  --compost-dark: #4e342e;
  --compost-light: #8d6e63;
  --background-light: #f5f5f5;
  --text-dark: #212121;
  --text-medium: #616161;
  --text-light: #9e9e9e;
  --white: #ffffff;
  font-family: "Roboto", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}
.organic-hero {
  display: flex;
  align-items: center;
  padding: 4rem 8%;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.1),
    rgba(139, 195, 74, 0.05)
  );
}
.hero-content {
  flex: 1;
  padding-right: 3rem;
}
.guide-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.highlight {
  color: var(--primary-green);
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--light-green);
  opacity: 0.3;
  z-index: -1;
}
.hero-text {
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 600px;
  margin-bottom: 2rem;
}
.quick-nav {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.nav-pill {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.nav-pill:hover {
  background-color: var(--dark-green);
  transform: translateY(-2px);
}
.hero-image {
  position: relative;
  width: 45%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.hero-img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.hero-image:hover .hero-img {
  transform: scale(1.03);
}
.eco-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.leaf-icon {
  width: 18px;
  height: 18px;
  fill: var(--primary-green);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.benefit-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}
.benefit-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}
.timeline-section {
  background-color: var(--white);
  padding: 4rem 0;
  margin: 3rem 0;
  position: relative;
}
.timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("soil-texture.jpg");
  background-size: cover;
  opacity: 0.03;
  z-index: 0;
}
.timeline-title {
  text-align: center;
  font-size: 2rem;
  color: var(--earth-brown);
  margin-bottom: 3rem;
  position: relative;
}
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--light-green);
}
.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}
.timeline-dot {
  width: 20px;
  height: 20px;
  background-color: var(--primary-green);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--light-green);
}
.timeline-content {
  width: calc(50% - 40px);
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 40px;
}
.timeline-item:nth-child(even) .timeline-content {
  margin-left: 40px;
}
.timeline-content h3 {
  color: var(--earth-brown);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.timeline-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
}
.fertilizer-tabs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.tab-button {
  padding: 0.8rem 1.5rem;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: var(--text-medium);
}
.tab-button:hover {
  background-color: rgba(139, 195, 74, 0.1);
  color: var(--primary-green);
}
.tab-button.active {
  background-color: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.content-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.content-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.content-image:hover img {
  transform: scale(1.03);
}
.news-single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.news-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.news-category {
  background-color: var(--primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}
.news-views {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.news-image {
  margin: 2rem 0;
  position: relative;
}
.news-image img {
  width: 85%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: block;
}
.image-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.5rem;
  font-style: italic;
}
.news-content {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.news-content h2 {
  color: var(--primary-dark);
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
}
.news-content ul {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}
.news-content li {
  margin-bottom: 0.5rem;
}
blockquote {
  border-left: 4px solid var(--secondary);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background-color: var(--light);
  font-style: italic;
  color: var(--dark);
}
blockquote footer {
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-dark);
}
.news-tags {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 2rem 0 3rem;
}
.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background-color: var(--light-gray);
  color: var(--dark);
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tag:hover {
  background-color: var(--primary);
  color: white;
}
.news-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.news-share span {
  font-weight: 600;
  color: var(--gray);
}
.social-buttons {
  display: flex;
  gap: 0.8rem;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.social-btn.fb {
  background-color: #3b5998;
}
.social-btn.tg {
  background-color: #0088cc;
}
.social-btn.vk {
  background-color: #4a76a8;
}
.social-btn.whatsapp {
  background-color: #25d366;
}
.related-news {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
}
.related-news h2 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.related-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}
.related-item:hover {
  transform: translateY(-5px);
}
.related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.related-content {
  padding: 1.5rem;
}
.related-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.related-content h3 a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}
.related-content h3 a:hover {
  color: var(--primary);
}
.related-content time {
  font-size: 0.9rem;
  color: var(--gray);
}
.content-text h3 {
  font-size: 1.8rem;
  color: var(--earth-brown);
  margin-bottom: 1rem;
}
.content-text p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}
.fertilizer-specs {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.spec-item {
  display: flex;
  flex-direction: column;
}
.spec-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.spec-value {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1.1rem;
}
.preparation-steps {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.preparation-steps li {
  margin-bottom: 0.8rem;
  color: var(--text-medium);
}
.best-for {
  background-color: rgba(139, 195, 74, 0.1);
  padding: 1rem;
  border-radius: 8px;
  color: var(--primary-green);
  font-size: 0.95rem;
}
.application-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}
.app-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.card-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--primary-green);
  color: var(--white);
}
.season-icon {
  font-size: 1.8rem;
  margin-right: 1rem;
}
.card-header h3 {
  margin: 0;
  font-size: 1.3rem;
}
.card-content {
  padding: 1.5rem;
}
.recommendation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recommendation-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-medium);
}
.recommendation-list li:last-child {
  border-bottom: none;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.tip-icon {
  font-size: 1.5rem;
  color: var(--primary-green);
  flex-shrink: 0;
}
.tip-item p {
  margin: 0;
  color: var(--text-medium);
  font-size: 0.95rem;
}
.myths-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.myth-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.card-label {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.myth .card-label {
  background-color: #ffeb3b;
  color: #f57f17;
}
.fact .card-label {
  background-color: #4caf50;
  color: var(--white);
}
.card-content {
  padding: 2rem 1.5rem 1.5rem;
  background-color: var(--white);
  margin-top: 30px;
}
.myth .card-content {
  border-top: 4px solid #ffeb3b;
}
.fact .card-content {
  border-top: 4px solid #4caf50;
}
.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.card-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin: 0;
}
.platform-integration {
  display: flex;
  align-items: center;
  background-color: var(--primary-green);
  color: var(--white);
  padding: 4rem 8%;
}
.integration-content {
  flex: 1;
  padding-right: 3rem;
}
.integration-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.integration-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
}
.integration-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
}
.feature-icon {
  font-size: 1.2rem;
}
.integration-button {
  padding: 1rem 2rem;
  background-color: var(--white);
  color: var(--primary-green);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.integration-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.integration-image {
  width: 45%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.screenshot {
  width: 100%;
  display: block;
}
.screenshot-tooltip {
  position: absolute;
  background-color: var(--white);
  color: var(--primary-green);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
.timeline-extra {
  background-color: var(--white);
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.timeline-extra h4 {
  color: var(--primary-green);
  margin-top: 0;
  font-size: 1rem;
}
.timeline-extra p {
  font-size: 0.9rem;
  color: var(--text-medium);
}
.close-extra {
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 0.5rem;
}
.season-map {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 1000px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.season-map h3 {
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}
.map-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.month {
  background-color: var(--light-green);
  color: var(--white);
  padding: 0.8rem 0.5rem;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.month:hover {
  background-color: var(--primary-green);
}
.month.active {
  background-color: var(--earth-brown);
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.map-info {
  background-color: rgba(139, 195, 74, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
}
.map-info h4 {
  color: var(--earth-brown);
  margin-top: 0;
}
.recommended {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
.recommended span {
  font-size: 0.9rem;
  color: var(--text-medium);
}
.fertilizers {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.fert-tag {
  background-color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.fertilizer-calculator {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.fertilizer-calculator h3 {
  text-align: center;
  color: var(--primary-green);
  margin-top: 0;
}
.calc-form {
  display: grid;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-medium);
}
.form-group input,
.form-group select {
  padding: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 1rem;
}
#calc-submit {
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
#calc-submit:hover {
  background-color: var(--dark-green);
}
.calc-result {
  background-color: rgba(139, 195, 74, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}
#calc-amount {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1.2rem;
}
.calc-note {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 0;
}
.tippy-box[data-theme~="organic"] {
  background-color: var(--primary-green);
  color: var(--white);
  font-size: 0.9rem;
}
.tippy-box[data-theme~="organic"] .tippy-arrow {
  color: var(--primary-green);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.agro-seed-main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  font-family: "AgroFont", sans-serif;
  color: #2a3f2f;
}
.phytomorphogenesis-intro-section {
  position: relative;
  padding: 5rem 2rem;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, #5a8f3d 0%, #2c5a1c 100%);
  color: white;
  text-align: center;
}
.germination-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
}
.photosynthetic-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  animation: phototropism-animation 2s ease-in-out;
}
.chlorophyll-highlight {
  color: #d4ed9f;
  text-shadow: 0 0 10px rgba(212, 237, 159, 0.3);
}
.xylem-description {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: xylem-fade-in 1s ease-out 0.5s forwards;
}
.stoma-filter-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.transpiration-filter-group {
  display: flex;
  flex-direction: column;
  min-width: 250px;
}
.phloem-filter-label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #3a5a40;
  font-size: 1.1rem;
}
.auxin-select {
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  border: 2px solid #c8e0b4;
  background-color: #f8fbf6;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(58, 90, 64, 0.1);
}
.auxin-select:focus {
  outline: none;
  border-color: #5a8f3d;
  box-shadow: 0 0 0 3px rgba(90, 143, 61, 0.2);
}
.meristem-seed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}
.endosperm-seed-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(42, 63, 47, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
}
.endosperm-seed-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(42, 63, 47, 0.2);
}
.cotyledon-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.radicle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.endosperm-seed-card:hover .radicle-image {
  transform: scale(1.05);
}
.hilum-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #e63946;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.embryo-card-content {
  padding: 1.5rem;
}
.plumule-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2a3f2f;
}
.aleurone-features {
  margin-bottom: 1.5rem;
}
.coleoptile-feature {
  margin-bottom: 0.6rem;
  display: flex;
}
.scutellum-label {
  font-weight: 600;
  margin-right: 0.5rem;
  color: #3a5a40;
  min-width: 100px;
}
.epicotyl-actions {
  display: flex;
  gap: 0.8rem;
}
.gibberellin-btn {
  padding: 0.7rem 1.2rem;
  border-radius: 0.6rem;
  border: none;
  background: #5a8f3d;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}
.gibberellin-btn.outlined {
  background: transparent;
  border: 2px solid #5a8f3d;
  color: #5a8f3d;
}
.gibberellin-btn:hover {
  background: #4a7d32;
  transform: translateY(-2px);
}
.gibberellin-btn.outlined:hover {
  background: rgba(90, 143, 61, 0.1);
}
.testa-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.endosperm-seed-card:hover .testa-overlay {
  opacity: 1;
}
.rhizosphere-info-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: #f8fbf6;
  border-radius: 1.5rem;
}
.mycorrhiza-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2a3f2f;
  position: relative;
}
.mycorrhiza-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #5a8f3d, #d4ed9f);
  border-radius: 2px;
}
.nodulation-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.bacteroid-info-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(42, 63, 47, 0.05);
  transition: transform 0.3s ease;
}
.bacteroid-info-card:hover {
  transform: translateY(-5px);
}
.symbiosome-icon {
  width: 60px;
  height: 60px;
  background: #e8f4e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.leghemoglobin-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #3a5a40;
}
.nitrogenase-text {
  color: #5a6d5f;
  line-height: 1.6;
}
@keyframes phototropism-animation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes xylem-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f7;
}
.agro-mechanization-main-container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.hydrodynamic-intro-section {
  position: relative;
  background: linear-gradient(135deg, #4a934a, #3a7a3a);
  color: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 30px;
}
.kinematic-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}
.actuator-highlight {
  color: #f8a13a;
}
.pneumatic-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}
.tribology-filter-container {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.viscosity-filter-group {
  flex: 1;
  min-width: 200px;
}
.lubricity-filter-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.bearing-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}
.gearbox-equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}
.driveline-equipment-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}
.driveline-equipment-card:hover {
  transform: translateY(-5px);
}
.crankshaft-image-container {
  height: 200px;
  background: #f5f7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.piston-image {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.flywheel-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f8a13a;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.transmission-card-content {
  padding: 20px;
}
.camshaft-title {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 15px;
  color: #3a7a3a;
}
.turbocharger-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.manifold-feature {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.valve-label {
  font-weight: 600;
  color: #555;
}
.differential-actions {
  display: flex;
  gap: 10px;
}
.hydraulic-btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background: #4a934a;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.hydraulic-btn:hover {
  background: #3a7a3a;
}
.hydraulic-btn.outlined {
  background: transparent;
  border: 1px solid #4a934a;
  color: #4a934a;
}
.hydraulic-btn.outlined:hover {
  background: #f5f7f2;
}
.mechatronics-info-section {
  margin-bottom: 40px;
}
.servomechanism-title {
  text-align: center;
  font-size: 2rem;
  color: #3a7a3a;
  margin-bottom: 30px;
}
.actuation-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}
.transducer-info-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.hmi-title {
  color: #4a934a;
  margin-top: 0;
}
.plc-text {
  line-height: 1.6;
}
.telemetry-stats-section {
  margin-bottom: 40px;
}
.iot-title {
  text-align: center;
  font-size: 2rem;
  color: #3a7a3a;
  margin-bottom: 30px;
}
.sensor-highlight {
  color: #f8a13a;
}
.bigdata-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.cloud-stat-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.dashboard-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #4a934a;
  margin-bottom: 10px;
}
.dashboard-stat-label {
  font-size: 0.9rem;
  color: #666;
}
.agro-protection-main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  font-family: "AgroFont", sans-serif;
  color: #2f3f2a;
  overflow-x: hidden;
  background-color: #fcf9f8;
}
.phytosanitary-intro-section {
  position: relative;
  padding: 5rem 2rem;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, #5a8f3d 0%, #3d5a1c 100%);
  color: white;
  text-align: center;
}
.pesticide-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
}
.herbicide-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  animation: spray-animation 2s ease-in-out;
}
.fungicide-highlight {
  color: #edf49f;
  text-shadow: 0 0 10px rgba(237, 244, 159, 0.3);
}
.insecticide-description {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: droplet-fade-in 1s ease-out 0.5s forwards;
}
.resistance-filter-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.toxicity-filter-group {
  display: flex;
  flex-direction: column;
  min-width: 250px;
}
.ld50-filter-label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #5a3a40;
  font-size: 1.1rem;
}
.formulation-select {
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  border: 2px solid #e0b4c4;
  background-color: #fbf6f8;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(90, 58, 64, 0.1);
}
.formulation-select:focus {
  outline: none;
  border-color: #8f3d5a;
  box-shadow: 0 0 0 3px rgba(143, 61, 90, 0.2);
}
.mode-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}
.active-substance-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(63, 42, 47, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
}
.active-substance-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(63, 42, 47, 0.2);
}
.formulation-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.ai-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.active-substance-card:hover .ai-image {
  transform: scale(1.05);
}
.hazard-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #e63946;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.compound-card-content {
  padding: 1.5rem;
}
.trade-name-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2f3f2a;
}
.spectrum-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.spectrum-tag {
  background: #e8f4e0;
  color: #3a5a40;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.application-features {
  margin-bottom: 1.5rem;
}
.dosage-feature {
  margin-bottom: 0.6rem;
  display: flex;
  flex-wrap: wrap;
}
.param-label {
  font-weight: 600;
  margin-right: 0.5rem;
  color: #5a3a40;
  min-width: 160px;
}
.treatment-actions {
  display: flex;
  gap: 0.8rem;
}
.agrochem-btn {
  padding: 0.7rem 1.2rem;
  border-radius: 0.6rem;
  border: none;
  background: #8f3d5a;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}
.agrochem-btn.outlined {
  background: transparent;
  border: 2px solid #8f3d5a;
  color: #8f3d5a;
}
.agrochem-btn:hover {
  background: #7d324a;
  transform: translateY(-2px);
}
.agrochem-btn.outlined:hover {
  background: rgba(143, 61, 90, 0.1);
}
.residue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.active-substance-card:hover .residue-overlay {
  opacity: 1;
}
.application-guidelines-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: #f8fbf6;
  border-radius: 1.5rem;
}
.phytotoxicity-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2f3f2a;
  position: relative;
}
.resistance-highlight {
  color: #8f3d5a;
}
.phytotoxicity-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #8f3d5a, #ed9fd4);
  border-radius: 2px;
}
.withdrawal-period-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.mrl-guideline-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(63, 42, 47, 0.05);
  transition: transform 0.3s ease;
}
.mrl-guideline-card:hover {
  transform: translateY(-5px);
}
.safety-icon {
  width: 60px;
  height: 60px;
  background: #f4e0e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.preharvest-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #8f3d5a;
}
.recommendation-list {
  color: #6d5f5a;
  line-height: 1.6;
  padding-left: 1.2rem;
}
.recommendation-list li {
  margin-bottom: 0.5rem;
}
.safety-data-section {
  margin: 4rem 0;
  padding: 0 1rem;
}
.ecotoxicology-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2f3f2a;
}
.mrl-highlight {
  color: #5a8f3d;
}
.environmental-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}
.pollinator-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(63, 42, 47, 0.05);
  transition: transform 0.3s ease;
}
.pollinator-card:hover {
  transform: translateY(-5px);
}
.bee-safety-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #8f3d5a;
}
.water-protection-text {
  color: #6d5f5a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.safety-progress {
  height: 10px;
  background: #f0f0f0;
  border-radius: 5px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.toxicity-level {
  height: 100%;
  transition: width 1s ease;
}
.hazard-label {
  font-size: 0.9rem;
  color: #8f3d5a;
  text-align: right;
}
@keyframes spray-animation {
  0% {
    opacity: 0;
    transform: translateY(20px) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
@keyframes droplet-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.crop-category {
  margin-bottom: 2rem;
}
.crop-category h3 {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-color);
}
.crop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.crop-item {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.crop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.crop-image {
  height: 120px;
  overflow: hidden;
}
.crop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.crop-item:hover .crop-image img {
  transform: scale(1.05);
}
.crop-details {
  padding: 1rem;
}
.crop-details h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}
.crop-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #777;
}
.crop-type {
  background-color: #e3f2fd;
  color: #1976d2;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
}
.knowledge-item {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.knowledge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  cursor: pointer;
}
.knowledge-header h3 {
  font-size: 1.1rem;
  color: var(--dark-color);
}
.knowledge-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.knowledge-item.active .knowledge-content {
  max-height: 1000px;
}
.knowledge-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.member-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  text-align: center;
}
.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-light);
}
.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-name {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.member-role {
  font-size: 0.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.member-contacts {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.member-contacts a {
  color: #666;
  transition: var(--transition);
}
.member-contacts a:hover {
  color: var(--primary-color);
}
.invite-member {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.settings-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-color);
  margin-bottom: 1.5rem;
}
.settings-tab {
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  position: relative;
  color: #666;
}
.settings-tab.active {
  color: var(--primary-color);
  font-weight: 500;
}
.settings-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-color);
}
.settings-content {
  display: none;
}
.settings-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
.account-type {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.account-type label {
  flex: 1;
  position: relative;
}
.account-type input {
  position: absolute;
  opacity: 0;
}
.account-type .type-card {
  padding: 1.5rem;
  border: 1px solid var(--gray-color);
  border-radius: var(--border-radius);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.account-type input:checked + .type-card {
  border-color: var(--primary-color);
  background-color: var(--primary-light);
}
.account-type .type-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}
.account-type .type-card h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.account-type .type-card p {
  font-size: 0.8rem;
  color: #666;
}
@keyframes hologramFlicker {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.3;
  }
}
.year-glow-title {
  font-size: 2rem;
  color: #00d2ff;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}
.milestone-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #b0e0e6;
}
.neon-agro-team-section {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(
    to bottom,
    rgba(11, 29, 38, 0.8) 0%,
    rgba(27, 65, 80, 0.5) 100%
  );
  z-index: 6;
}
.cyberpunk-gradient-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 5rem;
  background: linear-gradient(90deg, #ff00aa, #00d2ff, #ff00aa);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: cyberpunkGradient 3s linear infinite;
}
@keyframes cyberpunkGradient {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.data-stream-animation {
  position: relative;
  display: inline-block;
}
.data-stream-animation::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff00aa, #00d2ff);
  animation: dataStream 3s infinite linear;
}
@keyframes dataStream {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.quantum-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.holographic-team-card {
  position: relative;
  background: rgba(15, 30, 40, 0.7);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 210, 255, 0.1);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.holographic-team-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 210, 255, 0.3);
}
.team-card-matrix-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      rgba(0, 210, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(0, 210, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.holographic-team-card:hover .team-card-matrix-pattern {
  opacity: 1;
  animation: matrixScan 2s linear infinite;
}
@keyframes matrixScan {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 20px 20px;
  }
}
.team-photo-container {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 5px rgba(0, 210, 255, 0.2), 0 0 30px rgba(0, 210, 255, 0.4);
}
.photo-spectrum-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 0, 170, 0.1),
    rgba(0, 210, 255, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.holographic-team-card:hover .photo-spectrum-overlay {
  opacity: 1;
}
.cybernetic-team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.holographic-team-card:hover .cybernetic-team-photo {
  transform: scale(1.1);
}
.team-member-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #00d2ff;
}
.team-member-position {
  font-size: 1rem;
  color: #b0e0e6;
  margin-bottom: 1.5rem;
}
.social-quantum-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.phytomorphogenesis-catalog-container {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.agroclimatic-intro-section {
  position: relative;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, #4a8f3d 0%, #2c5a1c 100%);
  color: white;
  text-align: center;
}
.crop-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
}
.cultivar-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  animation: crop-emergence 1.5s ease;
}
.germplasm-highlight {
  color: #d4ed9f;
  text-shadow: 0 0 10px rgba(212, 237, 159, 0.3);
}
.phenology-description {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: phenology-fade-in 1s ease-out 0.5s forwards;
}
.edaphic-filter-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pedological-filter-group {
  display: flex;
  flex-direction: column;
  min-width: 250px;
}
.rhizosphere-filter-label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #3a5a40;
  font-size: 1.1rem;
}
.horizon-select {
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  border: 2px solid #c8e0b4;
  background-color: #f8fbf6;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(58, 90, 64, 0.1);
}
.horizon-select:focus {
  outline: none;
  border-color: #5a8f3d;
  box-shadow: 0 0 0 3px rgba(90, 143, 61, 0.2);
}
.allelopathy-crops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.genotype-crop-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(42, 63, 47, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 1;
}
.genotype-crop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(42, 63, 47, 0.2);
}
.propagule-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.embryo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.genotype-crop-card:hover .embryo-image {
  transform: scale(1.05);
}
.cultivar-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #5a8f3d;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.phenotype-card-content {
  padding: 1.5rem;
}
.accession-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2a3f2f;
}
.agrobiology-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.ecotype-tag {
  background: #e8f4e0;
  color: #3a5a40;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.growing-features {
  margin-bottom: 1.5rem;
}
.trait-feature {
  margin-bottom: 0.6rem;
  display: flex;
  flex-wrap: wrap;
}
.character-label {
  font-weight: 600;
  margin-right: 0.5rem;
  color: #3a5a40;
  min-width: 120px;
}
.agronomic-actions {
  display: flex;
  gap: 0.8rem;
}
.biodynamic-btn {
  padding: 0.7rem 1.2rem;
  border-radius: 0.6rem;
  border: none;
  background: #5a8f3d;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}
.biodynamic-btn.outlined {
  background: transparent;
  border: 2px solid #5a8f3d;
  color: #5a8f3d;
}
.biodynamic-btn:hover {
  background: #4a7d32;
  transform: translateY(-2px);
}
.biodynamic-btn.outlined:hover {
  background: rgba(90, 143, 61, 0.1);
}
.exudate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.genotype-crop-card:hover .exudate-overlay {
  opacity: 1;
}
.crop-rotation-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: #f8fbf6;
  border-radius: 1.5rem;
}
.succession-title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 3rem;
  color: #2a3f2f;
  position: relative;
}
.rotation-highlight {
  color: #5a8f3d;
}
.succession-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #5a8f3d, #d4ed9f);
  border-radius: 2px;
}
.fallow-systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.intercropping-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(42, 63, 47, 0.05);
  transition: transform 0.3s ease;
}
.intercropping-card:hover {
  transform: translateY(-5px);
}
.cropping-system-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #5a8f3d;
  text-align: center;
}
.rotation-sequence {
  color: #5a6d5f;
  line-height: 1.6;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.rotation-sequence li {
  margin-bottom: 0.7rem;
  position: relative;
}
.rotation-sequence li::marker {
  color: #5a8f3d;
  font-weight: bold;
}
.productivity-indicator {
  text-align: center;
  padding: 0.8rem;
  background: #f0f7ed;
  border-radius: 0.5rem;
}
.yield-label {
  font-weight: 600;
  color: #3a5a40;
  margin-right: 0.5rem;
}
.yield-value {
  color: #5a8f3d;
  font-weight: 600;
}
@keyframes crop-emergence {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes phenology-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:root {
  --primary-color: #4caf50;
  --secondary-color: #2e7d32;
  --accent-color: #8bc34a;
  --background-color: #f5f5f5;
  --card-color: #ffffff;
  --text-color: #333333;
  --text-secondary: #666666;
  --card-border-radius: 12px;
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] {
  --background-color: #121212;
  --card-color: #1e1e1e;
  --text-color: #e0e0e0;
  --text-secondary: #9e9e9e;
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.analytics-container {
  padding: 20px;
  background-color: var(--background-color);
  color: var(--text-color);
  min-height: 100%;
}
.analytics-title {
  color: var(--primary-color);
  margin-bottom: 24px;
  text-align: center;
}
.tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--text-secondary);
  overflow-x: auto;
}
.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-secondary);
  position: relative;
  transition: all 0.3s ease;
}
.tab-btn.active {
  color: var(--primary-color);
  font-weight: bold;
}
.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.dashboard-card {
  background-color: var(--card-color);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow);
  padding: 20px;
  transition: transform 0.3s ease;
}
.dashboard-card:hover {
  transform: translateY(-5px);
}
.dashboard-card.wide {
  grid-column: span 2;
}
.chart-container {
  position: relative;
  height: 300px;
  margin: 20px 0;
}
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}
.legend-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-secondary);
}
.legend-item::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--color);
  margin-right: 6px;
  border-radius: 3px;
}
.chart-filters {
  margin-top: 15px;
  text-align: center;
}
.chart-select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--text-secondary);
  background-color: var(--card-color);
  color: var(--text-color);
  font-size: 14px;
}
.financial-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 20px 0;
}
.metric {
  text-align: center;
  padding: 15px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 8px;
}
.metric-value {
  font-size: 24px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.metric-value.positive {
  color: #2e7d32;
}
.metric-value.negative {
  color: #d32f2f;
}
.metric-label {
  font-size: 14px;
  color: var(--text-secondary);
}
.heatmap-container {
  margin: 20px 0;
}
.heatmap {
  width: 100%;
  height: 250px;
  background: var(--background-color);
  border-radius: 8px;
  overflow: hidden;
}
.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  width: 100%;
  height: 100%;
  gap: 2px;
}
.heatmap-cell {
  background-color: rgba(76, 175, 80, 0.5);
  border-radius: 2px;
  transition: opacity 0.3s;
}
.heatmap-cell:hover {
  opacity: 0.7;
}
.heatmap-legend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-secondary);
}
.gradient-bar {
  flex-grow: 1;
  height: 8px;
  margin: 0 10px;
  background: linear-gradient(90deg, #f5f5f5, #4caf50);
  border-radius: 4px;
}
.heatmap-info {
  margin-top: 15px;
  padding: 10px;
  background-color: rgba(255, 152, 0, 0.1);
  border-left: 4px solid #ff9800;
  border-radius: 4px;
}
.export-section {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
}
.export-btn {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.export-btn:hover {
  background-color: var(--secondary-color);
}
.phenological-calendar-container {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.agro-temporal-intro-section {
  position: relative;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, #3d5a8f 0%, #1c2c5a 100%);
  color: white;
  text-align: center;
}
.seasonal-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
}
.crop-cycle-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  animation: seasonal-pulse 2s ease;
}
.agroperiod-highlight {
  color: #9fbfed;
  text-shadow: 0 0 10px rgba(159, 191, 237, 0.3);
}
.growing-season-description {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: temporal-fade-in 1s ease-out 0.5s forwards;
}
.temporal-navigation-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.chronoselector-group {
  display: flex;
  background: #f0f4f9;
  border-radius: 0.8rem;
  padding: 0.3rem;
}
.timescale-selector {
  padding: 0.6rem 1.2rem;
  border: none;
  background: transparent;
  border-radius: 0.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.timescale-selector.active {
  background: white;
  box-shadow: 0 2px 8px rgba(61, 90, 143, 0.1);
  color: #3d5a8f;
}
.timescale-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.period-nav-btn {
  background: #f0f4f9;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.period-nav-btn:hover {
  background: #d9e3f2;
}
.current-period-display {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2a2f3f;
  min-width: 120px;
  text-align: center;
}
.crop-filter-group {
  min-width: 250px;
}
.crop-selector {
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  border: 2px solid #b4c4e0;
  background-color: #f6f8fb;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}
.crop-selector:focus {
  outline: none;
  border-color: #3d5a8f;
  box-shadow: 0 0 0 3px rgba(61, 90, 143, 0.2);
}
.phenophase-calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.agroevent-card {
  position: relative;
  display: flex;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(42, 47, 63, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.agroevent-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(42, 47, 63, 0.1);
}
.event-timeline-marker {
  width: 6px;
  background: linear-gradient(to bottom, #5a8f3d, #3d5a8f);
}
.event-content-wrapper {
  padding: 1.5rem;
  flex: 1;
}
.event-date-badge {
  background: #f0f7ed;
  color: #5a8f3d;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}
.operation-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2a2f3f;
}
.crop-phase {
  color: #5a6d5f;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.event-details {
  margin-bottom: 1.5rem;
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.detail-icon {
  font-size: 1.2rem;
}
.detail-text {
  font-size: 0.9rem;
  color: #5a6d5f;
}
.event-actions {
  display: flex;
  gap: 0.8rem;
}
.agroschedule-btn {
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  border: none;
  background: #3d5a8f;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  font-size: 0.9rem;
}
.agroschedule-btn.outlined {
  background: transparent;
  border: 2px solid #3d5a8f;
  color: #3d5a8f;
}
.agroschedule-btn:hover {
  background: #324a7d;
  transform: translateY(-2px);
}
.agroschedule-btn.outlined:hover {
  background: rgba(61, 90, 143, 0.1);
}
.event-importance-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.event-importance-indicator[data-importance="high"] {
  background: #e63946;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}
.event-importance-indicator[data-importance="medium"] {
  background: #ff9f1c;
  box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.2);
}
.event-importance-indicator[data-importance="low"] {
  background: #5a8f3d;
  box-shadow: 0 0 0 3px rgba(90, 143, 61, 0.2);
}
.seasonal-recommendations-section {
  margin-bottom: 4rem;
  background: #f6f8fb;
  border-radius: 1.5rem;
  padding: 2rem;
}
.phenological-guide-title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 2rem;
  color: #2a2f3f;
}
.worktype-highlight {
  color: #3d5a8f;
}
.agroperiod-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0.5rem;
}
.season-tab {
  padding: 0.8rem 1.5rem;
  border: none;
  background: #e0e8f4;
  border-radius: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.season-tab.active {
  background: #3d5a8f;
  color: white;
}
.seasonal-content-area {
  display: none;
}
.seasonal-content-area.active {
  display: block;
}
.seasonal-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #3d5a8f;
  text-align: center;
}
.seasonal-task-list {
  max-width: 800px;
  margin: 0 auto;
  list-style-type: none;
}
.periodic-task {
  padding: 1rem;
  margin-bottom: 0.8rem;
  background: white;
  border-radius: 0.8rem;
  box-shadow: 0 2px 10px rgba(61, 90, 143, 0.05);
  position: relative;
  padding-left: 2.5rem;
}
.periodic-task::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d5a8f;
}
.calendar-export-panel {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.ics-export-btn,
.pdf-export-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 0.8rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ics-export-btn {
  background: #3d5a8f;
  color: white;
}
.pdf-export-btn {
  background: #e63946;
  color: white;
}
.ics-export-btn:hover,
.pdf-export-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@keyframes seasonal-pulse {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  70% {
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes temporal-fade-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.agro-knowledge-base-container {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.cognitive-agronomy-intro-section {
  position: relative;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, #1c2c5a 0%, #3d5a8f 100%);
  color: white;
  text-align: center;
}
.epistemology-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
}
.heuristic-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  animation: knowledge-emerge 1.5s ease;
}
.pedagogy-highlight {
  color: #9fbfed;
  text-shadow: 0 0 10px rgba(159, 191, 237, 0.3);
}
.didactics-description {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: pedagogy-fade-in 1s ease-out 0.5s forwards;
}
.knowledge-retrieval-system {
  margin-bottom: 3rem;
}
.information-query-group {
  display: flex;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.semantic-search-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid #b4c4e0;
  border-radius: 0.8rem 0 0 0.8rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.semantic-search-input:focus {
  outline: none;
  border-color: #3d5a8f;
  box-shadow: 0 0 0 3px rgba(61, 90, 143, 0.2);
}
.ontological-search-btn {
  background: #3d5a8f;
  color: white;
  border: none;
  border-radius: 0 0.8rem 0.8rem 0;
  padding: 0 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ontological-search-btn:hover {
  background: #324a7d;
}
.taxonomic-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.categorical-filter {
  padding: 0.7rem 1.5rem;
  background: #f0f4f9;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.categorical-filter.active,
.categorical-filter:hover {
  background: #3d5a8f;
  color: white;
}
.knowledge-repository-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.cognitive-article-card {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(42, 47, 63, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cognitive-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(42, 47, 63, 0.2);
}
.conceptual-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.paradigm-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cognitive-article-card:hover .paradigm-image {
  transform: scale(1.05);
}
.expertise-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #e63946;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.epistemic-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.publication-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}
.knowledge-domain {
  background: #e0e8f4;
  color: #3d5a8f;
  padding: 0.2rem 0.7rem;
  border-radius: 0.5rem;
  font-weight: 500;
}
.recency-indicator {
  color: #5a6d5f;
}
.theoretical-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2a2f3f;
  flex-grow: 1;
}
.abstract-text {
  color: #5a6d5f;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.conceptual-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.taxonomic-tag {
  background: #f0f4f9;
  color: #3d5a8f;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.epistemological-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: auto;
}
.cognition-btn {
  padding: 0.7rem 1.2rem;
  border-radius: 0.6rem;
  border: none;
  background: #3d5a8f;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}
.cognition-btn.outlined {
  background: transparent;
  border: 2px solid #3d5a8f;
  color: #3d5a8f;
}
.cognition-btn:hover {
  background: #324a7d;
  transform: translateY(-2px);
}
.cognition-btn.outlined:hover {
  background: rgba(61, 90, 143, 0.1);
}
.knowledge-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.cognitive-article-card:hover .knowledge-gradient-overlay {
  opacity: 1;
}
.pedagogical-resources-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: #f6f8fb;
  border-radius: 1.5rem;
}
.didactic-title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 3rem;
  color: #2a2f3f;
  position: relative;
}
.methodology-highlight {
  color: #3d5a8f;
}
.didactic-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #3d5a8f, #9fbfed);
  border-radius: 2px;
}
.instructional-materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.pedagogical-resource-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(42, 47, 63, 0.05);
  transition: transform 0.3s ease;
}
.pedagogical-resource-card:hover {
  transform: translateY(-5px);
}
.curriculum-icon {
  width: 60px;
  height: 60px;
  background: #e0e8f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.syllabus-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #3d5a8f;
}
.pedagogical-description {
  color: #5a6d5f;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.instructional-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #5a6d5f;
}
.duration,
.difficulty {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.research-frontiers-section {
  margin-bottom: 4rem;
}
.scientific-title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 3rem;
  color: #2a2f3f;
}
.discovery-highlight {
  color: #e63946;
}
.experimental-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}
.innovation-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(42, 47, 63, 0.05);
  transition: transform 0.3s ease;
  border-left: 4px solid #3d5a8f;
}
.innovation-card:hover {
  transform: translateY(-5px);
}
.hypothesis-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #2a2f3f;
}
.research-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #5a6d5f;
}
.institution {
  font-weight: 600;
}
.findings-text {
  color: #5a6d5f;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.research-actions {
  text-align: center;
}
.dissemination-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 0.6rem;
  border: none;
  background: #e63946;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dissemination-btn:hover {
  background: #c1121f;
  transform: translateY(-2px);
}
.knowledge-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.epistemic-pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f0f4f9;
  color: #3d5a8f;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.epistemic-pagination-btn.active,
.epistemic-pagination-btn:hover {
  background: #3d5a8f;
  color: white;
}
.epistemic-pagination-btn.next {
  width: auto;
  padding: 0 1.5rem;
  border-radius: 2rem;
}
@keyframes knowledge-emerge {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pedagogy-fade-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cybernetic-agro-cta {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(
    to bottom,
    rgba(27, 65, 80, 0.5) 0%,
    rgba(11, 29, 38, 0.8) 100%
  );
  z-index: 7;
  overflow: hidden;
}
.pulsar-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.infinity-glow-heading {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.text-matrix-animation {
  position: relative;
  display: inline-block;
}
.text-matrix-animation::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #00ff88, #7bff00, #00ff88);
  z-index: -1;
  filter: blur(10px);
  opacity: 0;
  animation: matrixPulse 4s infinite;
}
@keyframes matrixPulse {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
.quantum-agro-button {
  position: relative;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #00d2ff, #3a7bd5);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 1;
}
.quantum-agro-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4);
}
.button-plasma-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff00aa, #00d2ff, #ff00aa);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.quantum-agro-button:hover .button-plasma-effect {
  opacity: 1;
  animation: plasmaFlow 3s infinite linear;
}
@keyframes plasmaFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.cta-particle-emitter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="10" cy="10" r="0.5" fill="white"/><circle cx="30" cy="70" r="0.7" fill="white"/><circle cx="70" cy="20" r="0.4" fill="white"/><circle cx="90" cy="90" r="0.6" fill="white"/></svg>');
  background-size: 100% 100%;
  z-index: -1;
  opacity: 0.1;
  animation: ctaParticleMove 30s linear infinite;
}
@keyframes ctaParticleMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
[data-aos="quantum-fade-right"] {
  opacity: 0;
  transform: translateX(-50px);
  transition-property: transform, opacity;
}
[data-aos="quantum-fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}
[data-aos="quantum-fade-left"] {
  opacity: 0;
  transform: translateX(50px);
  transition-property: transform, opacity;
}
[data-aos="quantum-fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}
[data-aos="quantum-zoom"] {
  opacity: 0;
  transform: scale(0.8);
  transition-property: transform, opacity;
}
[data-aos="quantum-zoom"].aos-animate {
  opacity: 1;
  transform: scale(1);
}
[data-aos="quantum-flip"] {
  opacity: 0;
  transform: perspective(1000px) rotateY(90deg);
  transition-property: transform, opacity;
  transform-origin: center;
}
.ontological-search-btn svg {
  max-width: 98px;
  max-height: 20px;
}
[data-aos="quantum-flip"].aos-animate {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg);
}
.application-tips > h3 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--dark-color);
  margin-top: 10px;
}
.quantum-agro-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: quantumFloat infinite linear;
  filter: blur(1px);
  opacity: 0.7;
}
@keyframes quantumFloat {
  0% {
    transform: translate(0, 0);
    opacity: 0.7;
  }
  25% {
    transform: translate(20px, -10px);
    opacity: 0.9;
  }
  50% {
    transform: translate(10px, 20px);
    opacity: 0.5;
  }
  75% {
    transform: translate(-15px, -5px);
    opacity: 0.8;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0.7;
  }
}
.interactive-particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.interactive-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat infinite linear;
  filter: blur(1px);
  opacity: 0.5;
  will-change: transform;
  transition: transform 0.1s ease-out;
}
@keyframes particleFloat {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(10px, -15px);
  }
  50% {
    transform: translate(20px, 5px);
  }
  75% {
    transform: translate(-10px, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes quantumPulse {
  0% {
    stroke-width: 1px;
    opacity: 0.7;
  }
  50% {
    stroke-width: 2px;
    opacity: 1;
  }
  100% {
    stroke-width: 1px;
    opacity: 0.7;
  }
}
.holographic-team-card.in-viewport {
  animation: hologramAppear 1s forwards;
}
@keyframes hologramAppear {
  from {
    opacity: 0;
    transform: translateY(20px) rotateX(45deg);
    filter: hue-rotate(90deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: hue-rotate(0);
  }
}
.fractal-card-item.in-viewport {
  animation: fractalCardReveal 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    forwards;
  animation-delay: calc(var(--i) * 0.1s);
}
@keyframes fractalCardReveal {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}
.agro-team-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.organizational-intro-section {
  position: relative;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a14 0%, #2c5a1c 100%);
  color: white;
  text-align: center;
}
.team-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
}
.leadership-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  animation: leadership-emerge 1.5s ease;
}
.foundership-highlight {
  color: #d4ed9f;
  text-shadow: 0 0 10px rgba(212, 237, 159, 0.3);
}
.vision-description {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: vision-fade-in 1s ease-out 0.5s forwards;
}
.architectural-profile-container {
  max-width: 1000px;
  margin: 0 auto 4rem;
}
.foundational-figure-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(42, 63, 47, 0.15);
}
.creator-image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.pioneer-image {
  width: 100%;
  height: 142%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.foundational-figure-card:hover .pioneer-image {
  transform: scale(1.03);
}
.principal-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: #2c5a1c;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  z-index: 2;
}
.innovator-content {
  padding: 2.5rem;
}
.visionary-name {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1e3a14;
}
.executive-title {
  font-size: 1.2rem;
  color: #4a8f3d;
  margin-bottom: 2rem;
  font-weight: 600;
}
.professional-timeline,
.core-competencies,
.philosophy-statement {
  margin-bottom: 2.5rem;
}
.trajectory-title,
.expertise-title,
.mission-title {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: #2c5a1c;
  position: relative;
  padding-bottom: 0.5rem;
}
.trajectory-title::after,
.expertise-title::after,
.mission-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #4a8f3d;
  border-radius: 2px;
}
.milestone-list {
  list-style-type: none;
  padding-left: 0;
}
.career-event {
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.6;
}
.career-event::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4a8f3d;
}
.epoch-year {
  font-weight: 600;
  color: #2c5a1c;
}
.competency-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.proficiency-tag {
  background: #e8f4e0;
  color: #2c5a1c;
  padding: 0.5rem 1rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.vision-quote {
  background: #f8fbf6;
  border-left: 4px solid #4a8f3d;
  padding: 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  line-height: 1.8;
  color: #2a3f2f;
  margin: 0;
}
section.agroconsult-hero-section {
  margin-bottom: 80px;
}
.technological-backbone-section {
  margin-bottom: 4rem;
}
.infrastructure-title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 3rem;
  color: #1e3a14;
}
.stack-highlight {
  color: #4a8f3d;
}
.development-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.technology-pillar-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(42, 63, 47, 0.05);
  transition: transform 0.3s ease;
  border-top: 4px solid #4a8f3d;
}
.technology-pillar-card:hover {
  transform: translateY(-8px);
}
.stack-icon {
  width: 60px;
  height: 60px;
  background: #e8f4e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.layer-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #2c5a1c;
  text-align: center;
}
.component-list {
  list-style-type: none;
  padding-left: 0;
}
.tech-component {
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  background: #f8fbf6;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
  color: #2a3f2f;
}
.collaborative-network-section {
  margin-bottom: 4rem;
}
.synergy-title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 3rem;
  color: #1e3a14;
}
.partnership-highlight {
  color: #4a8f3d;
}
.alliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.institutional-partner {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(42, 63, 47, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}
.institutional-partner:hover {
  transform: translateY(-5px);
}
.affiliation-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.affiliation-logo img {
  max-height: 80px;
  max-width: 100%;
}
.institution-name {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #2c5a1c;
}
.collaboration-description {
  color: #5a6d5f;
  line-height: 1.6;
}
.visionary-contact-panel {
  max-width: 800px;
  margin: 0 auto;
}
.direct-communication-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(42, 63, 47, 0.1);
  text-align: center;
}
.engagement-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #1e3a14;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.communication-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.8rem;
  background: #f8fbf6;
  text-decoration: none;
  color: #2a3f2f;
  transition: all 0.3s ease;
}
.communication-link:hover {
  background: #e8f4e0;
  transform: translateX(5px);
}
.channel-icon {
  font-size: 1.5rem;
}
.channel-detail {
  font-size: 1.1rem;
  font-weight: 500;
}
.collaboration-cta {
  margin-top: 2rem;
}
.strategic-partnership-btn {
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  border: none;
  background: #2c5a1c;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.strategic-partnership-btn:hover {
  background: #1e3a14;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(30, 58, 20, 0.2);
}
@keyframes leadership-emerge {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes vision-fade-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.agro-settings-container {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.configuration-intro-section {
  position: relative;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, #3d5a8f 0%, #1c2c5a 100%);
  color: white;
  text-align: center;
}
.preferences-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
}
.customization-title {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  animation: settings-appear 1.2s ease;
}
.personalization-highlight {
  color: #9fbfed;
  text-shadow: 0 0 10px rgba(159, 191, 237, 0.3);
}
.tuning-description {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: tuning-fade-in 1s ease-out 0.4s forwards;
}
.parametric-interface-wrapper {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}
.settings-navigation-panel {
  flex: 0 0 300px;
  background: white;
  border-radius: 1.2rem;
  box-shadow: 0 5px 20px rgba(42, 47, 63, 0.05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-section.links-section a {
  color: white;
}
.preference-category {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.preference-category:hover {
  background: #f6f8fb;
}
.preference-category.active {
  background: #e0e8f4;
  border-left: 4px solid #3d5a8f;
}
.category-icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  background: #f0f4f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-details {
  flex: 1;
}
.parameter-group-title {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #2a2f3f;
}
.category-description {
  font-size: 0.9rem;
  color: #5a6d5f;
}
.settings-configuration-area {
  flex: 1;
  background: white;
  border-radius: 1.2rem;
  box-shadow: 0 5px 20px rgba(42, 47, 63, 0.05);
  padding: 2rem;
  min-height: 600px;
}
.parameter-section {
  display: none;
}
.parameter-section.active {
  display: block;
}
.configuration-section-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #2a2f3f;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f4f9;
}
.parametric-form-group {
  max-width: 800px;
}
.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-column {
  flex: 1;
}
.input-parameter-group {
  margin-bottom: 1.5rem;
}
.parameter-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2a2f3f;
}
.parametric-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid #e0e8f4;
  border-radius: 0.8rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.parametric-input:focus {
  outline: none;
  border-color: #3d5a8f;
  box-shadow: 0 0 0 3px rgba(61, 90, 143, 0.2);
}
.parametric-textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border: 2px solid #e0e8f4;
  border-radius: 0.8rem;
  font-size: 1rem;
  resize: vertical;
  transition: all 0.3s ease;
}
.parametric-textarea:focus {
  outline: none;
  border-color: #3d5a8f;
  box-shadow: 0 0 0 3px rgba(61, 90, 143, 0.2);
}
.form-action-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.parametric-action-btn {
  padding: 0.9rem 1.8rem;
  border-radius: 0.8rem;
  border: none;
  background: #3d5a8f;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.parametric-action-btn:hover {
  background: #324a7d;
  transform: translateY(-2px);
}
.parametric-action-btn.outlined {
  background: transparent;
  border: 2px solid #3d5a8f;
  color: #3d5a8f;
}
.parametric-action-btn.outlined:hover {
  background: rgba(61, 90, 143, 0.1);
}
.avatar-upload-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.profile-avatar-preview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f0f4f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid #e0e8f4;
}
.initials-avatar {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3d5a8f;
}
.avatar-controls {
  display: flex;
  gap: 0.8rem;
}
.avatar-action-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  border: none;
  background: #f0f4f9;
  color: #3d5a8f;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.avatar-action-btn:hover {
  background: #e0e8f4;
}
.avatar-action-btn.outlined {
  background: transparent;
  border: 2px solid #f0f4f9;
}
.notification-preference-group {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f4f9;
}
.notification-category-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #2a2f3f;
}
.toggle-parameter-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
}
.toggle-parameter-group:hover {
  background: #f6f8fb;
}
.toggle-label-group {
  flex: 1;
}
.parameter-description {
  font-size: 0.9rem;
  color: #5a6d5f;
  margin-top: 0.3rem;
}
.parametric-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.parametric-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e0e8f4;
  transition: 0.4s;
  border-radius: 24px;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .toggle-slider {
  background: #3d5a8f;
}
input:checked + .toggle-slider:before {
  transform: translateX(26px);
}
.radio-parameter-group {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}
.parametric-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.radio-custom {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #e0e8f4;
  position: relative;
}
.parametric-radio input:checked + .radio-custom {
  border-color: #3d5a8f;
}
.parametric-radio input:checked + .radio-custom::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d5a8f;
}
.security-status-card {
  display: flex;
  gap: 2rem;
  padding: 1.5rem;
  background: #f8fbf6;
  border-radius: 1rem;
  margin-bottom: 2rem;
  border: 1px solid #e0e8f4;
}
.security-metric {
  text-align: center;
  padding: 1rem;
}
.metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff9f1c;
}
.metric-label {
  font-size: 0.9rem;
  color: #5a6d5f;
}
.security-recommendations {
  flex: 1;
}
.security-recommendations ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}
.security-recommendations li {
  margin-bottom: 0.5rem;
}
.security-action-group {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f4f9;
}
.security-action-title {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #2a2f3f;
}
.action-description {
  font-size: 0.9rem;
  color: #5a6d5f;
  margin-bottom: 1rem;
}
.active-session-list {
  margin-top: 1.5rem;
}
.session-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid #f0f4f9;
  border-radius: 0.8rem;
  margin-bottom: 0.8rem;
}
.session-info {
  flex: 1;
}
.session-device {
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.session-location,
.session-time {
  font-size: 0.9rem;
  color: #5a6d5f;
}
.session-terminate-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid #e0e8f4;
  background: white;
  color: #e63946;
  cursor: pointer;
  transition: all 0.3s ease;
}
.session-terminate-btn:hover {
  background: #fce8e8;
}
.settings-footer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #f0f4f9;
}
.platform-action-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 0.8rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.platform-action-btn.danger {
  background: #f8f0f0;
  color: #e63946;
  border: 1px solid #f8d7da;
}
.platform-action-btn.danger:hover {
  background: #fce8e8;
  transform: translateY(-2px);
}
@keyframes settings-appear {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tuning-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:root {
  --primary-color: #4caf50;
  --primary-dark: #2e7d32;
  --primary-light: #c8e6c9;
  --text-color: #333;
  --text-light: #666;
  --text-on-primary: #fff;
  --background: #f9f9f9;
  --card-bg: #fff;
  --border-color: #e0e0e0;
  --tag-bg: #f5f5f5;
  --border-radius: 8px;
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --max-content-width: 1200px;
}
.news-archive .archive-header {
  margin-bottom: 30px;
}
.news-archive h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.news-archive .archive-filters {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.news-archive .filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-archive .filter-select {
  padding: 8px 12px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-color);
}
.news-archive .filter-reset {
  padding: 8px 16px;
  background: var(--primary-light);
  border: none;
  border-radius: var(--border-radius);
  color: var(--primary-dark);
  cursor: pointer;
  transition: all 0.2s;
}
.news-archive .filter-reset:hover {
  background: var(--primary-color);
  color: white;
}
.news-archive .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}
.news-archive .news-card {
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-archive .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.news-archive .news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-archive .card-content {
  padding: 20px;
}
.news-archive .card-category {
  display: inline-block;
  padding: 3px 10px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.news-archive .card-content h2 {
  font-size: 1.2rem;
  margin: 0 0 10px;
}
.news-archive .card-content h2 a {
  color: var(--text-color);
  text-decoration: none;
}
.news-archive .card-content h2 a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.news-archive .card-excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 15px;
}
.news-archive .card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
}
.news-archive .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
.news-archive .pagination button {
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.2s;
}
.news-archive .pagination button:hover:not(:disabled) {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
.news-archive .pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.news-archive .page-active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
.tutorial-planning {
  --primary-color: #4caf50;
  --secondary-color: #8bc34a;
  --accent-color: #ffc107;
  --text-primary: #333;
  --text-secondary: #666;
  --bg-light: #f9f9f9;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  color: var(--text-primary);
}
.tutorial-planning__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.tutorial-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.tutorial-subheading {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.tutorial-planning__content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.tutorial-planning__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tutorial-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.tutorial-step.active {
  border-left-color: var(--primary-color);
  background-color: rgba(76, 175, 80, 0.05);
}
.tutorial-step:hover:not(.active) {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.step-number {
  width: 28px;
  height: 28px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}
.tutorial-step.active .step-number {
  background: var(--accent-color);
}
.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.tutorial-planning__demo {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  overflow: hidden;
}
.demo-container {
  margin-bottom: 1.5rem;
}
.demo-field {
  width: 100%;
  height: 400px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}
.crop-zone {
  transition: var(--transition);
  cursor: pointer;
}
.crop-zone:hover {
  opacity: 0.9 !important;
  stroke: var(--text-primary);
  stroke-width: 1px;
}
.demo-controls {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}
.demo-btn {
  padding: 0.6rem 1.2rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.demo-btn.active,
.demo-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
.demo-stats {
  display: grid;
  gap: 1rem;
}
.stat-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 1rem;
  text-align: center;
  box-shadow: var(--box-shadow);
}
.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.tutorial-planning__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
.tutorial-nav-btn {
  padding: 0.7rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tutorial-nav-btn:hover {
  background: #3e8e41;
  transform: translateY(-1px);
}
.tutorial-nav-btn.prev {
  background: white;
  color: var(--text-primary);
  border: 1px solid #ddd;
}
.tutorial-nav-btn.prev:hover {
  background: #f5f5f5;
}
.progress-container {
  flex-grow: 1;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  margin: 0 1.5rem;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--primary-color);
  border-radius: 4px;
  transition: width 0.5s ease;
}
.tutorial-analytics {
  --primary-color: #4caf50;
  --secondary-color: #2196f3;
  --accent-color: #ffc107;
  --warning-color: #ff9800;
  --danger-color: #f44336;
  --text-primary: #333;
  --text-secondary: #666;
  --bg-light: #f9f9f9;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  color: var(--text-primary);
}
.tutorial-analytics__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.tutorial-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.tutorial-subheading {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.analytics-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.metric-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.metric-card.primary {
  border-top: 4px solid var(--primary-color);
}
.metric-card.warning {
  border-top: 4px solid var(--warning-color);
}
.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.metric-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.metric-card.primary .metric-value {
  color: var(--primary-color);
}
.metric-card.warning .metric-value {
  color: var(--warning-color);
}
.metric-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.metric-change {
  font-size: 0.85rem;
  font-weight: 500;
}
.metric-change.positive {
  color: var(--primary-color);
}
.metric-change.negative {
  color: var(--danger-color);
}
.metric-icon {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  opacity: 0.2;
  color: var(--primary-color);
}
.metric-card.warning .metric-icon {
  color: var(--warning-color);
}
.visualization-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 1.5rem;
}
.viz-tab {
  padding: 0.8rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.viz-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}
.viz-tab:hover:not(.active) {
  color: var(--text-primary);
}
.visualization-content {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.viz-pane {
  display: none;
}
.viz-pane.active {
  display: block;
}
.chart-container {
  position: relative;
  height: 300px;
  margin-bottom: 1rem;
}
.chart-legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.legend-color {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
}
.weather-cards {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.weather-card {
  background: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}
.weather-card h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.weather-chart {
  height: 200px;
}
.economics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}
.economics-chart {
  background: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}
.economics-chart h4 {
  margin-bottom: 1rem;
}
.recommendations-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.recommendation-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.rec-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.rec-icon.urgent {
  background: rgba(244, 67, 54, 0.1);
  color: var(--danger-color);
}
.rec-icon.warning {
  background: rgba(255, 152, 0, 0.1);
  color: var(--warning-color);
}
.rec-icon.info {
  background: rgba(33, 150, 243, 0.1);
  color: var(--secondary-color);
}
.rec-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.rec-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.rec-action {
  margin-top: auto;
  padding: 0.6rem 1.2rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}
.rec-action:hover {
  background: #3e8e41;
}
.tutorial-analytics__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
.tutorial-nav-btn {
  padding: 0.7rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tutorial-nav-btn:hover {
  background: #3e8e41;
  transform: translateY(-1px);
}
.tutorial-nav-btn.prev {
  background: white;
  color: var(--text-primary);
  border: 1px solid #ddd;
}
.tutorial-nav-btn.prev:hover {
  background: #f5f5f5;
}
.progress-container {
  flex-grow: 1;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  margin: 0 1.5rem;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--primary-color);
  border-radius: 4px;
  transition: width 0.5s ease;
}
.tutorial-upcoming {
  --primary-color: #4caf50;
  --secondary-color: #2196f3;
  --accent-color: #ffc107;
  --text-primary: #333;
  --text-secondary: #666;
  --bg-light: #f9f9f9;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: var(--text-primary);
}
.upcoming-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.upcoming-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
  text-transform: uppercase;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: translateX(-50%) rotate(-5deg) scale(1);
  }
  50% {
    transform: translateX(-50%) rotate(-5deg) scale(1.05);
  }
  100% {
    transform: translateX(-50%) rotate(-5deg) scale(1);
  }
}
.upcoming-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.upcoming-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.upcoming-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.feature-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  transition: var(--transition);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.feature-card[data-feature="iot"] {
  border-top-color: var(--secondary-color);
}
.feature-card[data-feature="ai"] {
  border-top-color: #9c27b0;
}
.feature-card[data-feature="market"] {
  border-top-color: var(--accent-color);
}
.feature-card[data-feature="drone"] {
  border-top-color: #607d8b;
}
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}
.feature-card[data-feature="iot"] .feature-icon {
  background: var(--secondary-color);
}
.feature-card[data-feature="ai"] .feature-icon {
  background: #9c27b0;
}
.feature-card[data-feature="market"] .feature-icon {
  background: var(--accent-color);
}
.feature-card[data-feature="drone"] .feature-icon {
  background: #607d8b;
}
.feature-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.feature-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.feature-progress {
  margin-top: 1.5rem;
}
.feature-progress .progress-bar {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.feature-progress .progress-bar div {
  height: 100%;
  border-radius: 3px;
}
.feature-card[data-feature="iot"] .progress-bar div {
  background: var(--secondary-color);
  width: 80%;
}
.feature-card[data-feature="ai"] .progress-bar div {
  background: #9c27b0;
  width: 65%;
}
.feature-card[data-feature="market"] .progress-bar div {
  background: var(--accent-color);
  width: 45%;
}
.feature-card[data-feature="drone"] .progress-bar div {
  background: #607d8b;
  width: 30%;
}
.feature-progress span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.upcoming-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.cta-card {
  background: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  color: white;
}
.cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.cta-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.cta-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.cta-form input {
  flex-grow: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}
.cta-form button {
  padding: 0.8rem 1.5rem;
  background: white;
  color: var(--primary-color);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.cta-form button:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}
.cta-note {
  font-size: 0.8rem;
  opacity: 0.7;
}
.cta-social {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-social p {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  color: var(--primary-color);
  transition: var(--transition);
}
.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  color: var(--secondary-color);
}
.upcoming-roadmap {
  margin-bottom: 2rem;
}
.upcoming-roadmap h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--primary-color);
}
.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.roadmap-timeline::before {
  content: "";
  position: absolute;
  width: 2px;
  background: #eee;
  top: 0;
  bottom: 0;
  left: 50px;
}
.timeline-item {
  padding-left: 80px;
  position: relative;
  margin-bottom: 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  left: 42px;
  top: 5px;
  background: #ddd;
  border: 4px solid white;
  box-shadow: 0 0 0 2px #ddd;
}
.timeline-item.completed::before {
  background: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-color);
}
.timeline-item.current::before {
  background: var(--accent-color);
  box-shadow: 0 0 0 2px var(--accent-color);
  animation: pulse 2s infinite;
}
.timeline-date {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  text-align: right;
  padding-right: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.timeline-content {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
}
.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.tutorial-reports {
  --primary-color: #4caf50;
  --secondary-color: #2196f3;
  --accent-color: #ffc107;
  --text-primary: #333;
  --text-secondary: #666;
  --bg-light: #f9f9f9;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  color: var(--text-primary);
}
.reports-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.reports-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.reports-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.reports-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.selector-tabs {
  display: flex;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 4px;
}
.type-tab {
  padding: 0.6rem 1.5rem;
  background: none;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.type-tab.active {
  background: white;
  color: var(--primary-color);
  box-shadow: var(--box-shadow);
}
.type-tab:hover:not(.active) {
  color: var(--text-primary);
}
.report-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.date-picker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.date-picker label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.date-picker select {
  padding: 0.6rem 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  background: white;
}
.generate-btn {
  padding: 0.7rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.generate-btn:hover {
  background: #3e8e41;
  transform: translateY(-1px);
}
.reports-grid {
  margin-bottom: 2rem;
}
.report-category {
  display: none;
}
.report-category.active {
  display: block;
}
.report-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}
.report-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.report-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}
.report-card[data-report="finance"] .report-icon {
  background: rgba(33, 150, 243, 0.1);
  color: var(--secondary-color);
}
.report-card[data-report="operations"] .report-icon {
  background: rgba(255, 193, 7, 0.1);
  color: var(--accent-color);
}
.report-card[data-report="weather"] .report-icon {
  background: rgba(158, 158, 158, 0.1);
  color: var(--text-secondary);
}
.report-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.report-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.report-preview {
  width: 150px;
  height: 80px;
}
.mini-chart {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  border-radius: 4px;
}
.custom-report-editor {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  min-height: 500px;
}
.editor-sidebar {
  border-right: 1px solid #eee;
  padding-right: 1.5rem;
}
.editor-sidebar h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.data-category {
  margin-bottom: 1.5rem;
}
.data-category h5 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}
.data-fields {
  list-style: none;
  padding: 0;
  margin: 0;
}
.data-fields li {
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.5rem;
  background: var(--bg-light);
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: move;
  transition: var(--transition);
}
.data-fields li:hover {
  background: rgba(76, 175, 80, 0.1);
  color: var(--primary-color);
}
.editor-main {
  display: flex;
  flex-direction: column;
}
.report-config {
  margin-bottom: 1.5rem;
}
.config-section {
  margin-bottom: 1rem;
}
.config-section label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.config-section input,
.config-section select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}
.report-preview-area {
  flex-grow: 1;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  border: 2px dashed #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.report-preview-area.highlight {
  border-color: var(--primary-color);
  background: rgba(76, 175, 80, 0.05);
}
.empty-state {
  text-align: center;
  color: var(--text-secondary);
}
.empty-state svg {
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.empty-state p {
  font-size: 0.9rem;
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.5;
}
.selected-fields {
  width: 100%;
  display: none;
}
.editor-actions {
  display: flex;
  gap: 1rem;
}
.save-template,
.generate-report {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.generate-report {
  background: var(--primary-color);
  color: white;
}
.generate-report:hover {
  background: #3e8e41;
}
.save-template {
  background: white;
  border: 1px solid #ddd;
  color: var(--text-primary);
}
.save-template:hover {
  background: #f5f5f5;
}
.export-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.export-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.export-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

aside.tutorial-sidebar {
    display: none;
}
.export-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
}
.export-card:nth-child(2) .export-icon {
  background: rgba(33, 150, 243, 0.1);
  color: var(--secondary-color);
}
.collaborative-network-section {
  display: none;
}
.export-card:nth-child(3) .export-icon {
  background: rgba(255, 193, 7, 0.1);
  color: var(--accent-color);
}
.export-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}
.export-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.export-btn {
  padding: 0.6rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.export-btn:hover {
  background: #3e8e41;
  transform: translateY(-1px);
}
.report-preview-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.report-preview-modal.active {
  display: flex;
  opacity: 1;
}
.modal-content {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.report-preview-modal.active .modal-content {
  transform: translateY(0);
}
.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 0;
}
.close-modal {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0.5rem;
}
.close-modal:hover {
  color: var(--text-primary);
}
.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
}
.report-toolbar {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.toolbar-btn {
  padding: 0.6rem 1rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toolbar-btn:hover {
  background: #f5f5f5;
  border-color: #ccc;
}
.report-fullview {
  background: white;
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  min-height: 400px;
  overflow: auto;
}
.report-placeholder img {
  max-width: 100%;
  height: auto;
  display: block;
}
.tutorial-question {
  --tq-primary: var(--color-primary, #4caf50);
  --tq-primary-dark: var(--color-primary-dark, #3d8b40);
  --tq-text: var(--color-text-primary, #2d3748);
  --tq-text-secondary: var(--color-text-secondary, #4a5568);
  --tq-border: var(--color-border, #e2e8f0);
  --tq-bg: var(--color-bg, #ffffff);
  --tq-bg-secondary: var(--color-bg-secondary, #f7fafc);
  --tq-error: var(--color-error, #e53e3e);
  --tq-success: var(--color-success, #38a169);
  --tq-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --tq-radius: 8px;
  --tq-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  color: var(--tq-text);
}
.tutorial-question__header {
  margin-bottom: 2rem;
  text-align: center;
}
.tutorial-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--tq-primary);
}
.tutorial-subheading {
  font-size: 1.125rem;
  color: var(--tq-text-secondary);
}
.tutorial-form {
  background: var(--tq-bg);
  border-radius: var(--tq-radius);
  padding: 2rem;
  box-shadow: var(--tq-shadow);
  margin-bottom: 2rem;
}
.tutorial-form__group {
  position: relative;
  margin-bottom: 1.5rem;
}
.tutorial-form__label {
  position: absolute;
  top: 1rem;
  left: 0.75rem;
  color: var(--tq-text-secondary);
  pointer-events: none;
  transition: var(--tq-transition);
  transform-origin: left center;
  background: var(--tq-bg);
  padding: 0 0.25rem;
}
.tutorial-form__input,
.tutorial-form__select,
.tutorial-form__textarea {
  width: 100%;
  padding: 1rem 0.75rem;
  border: 1px solid var(--tq-border);
  border-radius: var(--tq-radius);
  font-size: 1rem;
  transition: var(--tq-transition);
  background: transparent;
}
.tutorial-form__input:focus,
.tutorial-form__select:focus,
.tutorial-form__textarea:focus {
  outline: none;
  border-color: var(--tq-primary);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}
.tutorial-form__input:focus + .tutorial-form__label,
.tutorial-form__input:not(:placeholder-shown) + .tutorial-form__label,
.tutorial-form__select:focus + .tutorial-form__label,
.tutorial-form__select:not([value=""]) + .tutorial-form__label,
.tutorial-form__textarea:focus + .tutorial-form__label,
.tutorial-form__textarea:not(:placeholder-shown) + .tutorial-form__label {
  transform: translateY(-1.5rem) scale(0.85);
  color: var(--tq-primary);
}
.tutorial-form__focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tq-primary);
  transition: var(--tq-transition);
}
.tutorial-form__input:focus ~ .tutorial-form__focus-line,
.tutorial-form__select:focus ~ .tutorial-form__focus-line,
.tutorial-form__textarea:focus ~ .tutorial-form__focus-line {
  width: 100%;
}
.tutorial-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.tutorial-form__file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.tutorial-form__file-label {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px dashed var(--tq-border);
  border-radius: var(--tq-radius);
  cursor: pointer;
  transition: var(--tq-transition);
}
.tutorial-form__file-label:hover {
  border-color: var(--tq-primary);
  background: var(--tq-bg-secondary);
}
.tutorial-form__file-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.75rem;
  fill: var(--tq-text-secondary);
}
.tutorial-form__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.tutorial-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--tq-radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tq-transition);
  border: none;
}
.tutorial-button--primary {
  background: var(--tq-primary);
  color: white;
}
.tutorial-button--primary:hover {
  background: var(--tq-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.tutorial-button--outline {
  background: transparent;
  border: 1px solid var(--tq-primary);
  color: var(--tq-primary);
}
.tutorial-button--outline:hover {
  background: var(--tq-bg-secondary);
}
.tutorial-button__icon {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  fill: currentColor;
}
.tutorial-question__success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--tq-bg);
  border-radius: var(--tq-radius);
  box-shadow: var(--tq-shadow);
}
.tutorial-question__success-icon {
  width: 64px;
  height: 64px;
  fill: var(--tq-success);
  margin-bottom: 1rem;
}
.tutorial-question__success-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--tq-success);
}
.tutorial-question__success-text {
  color: var(--tq-text-secondary);
  margin-bottom: 1.5rem;
}
.tutorial-question__faq {
  margin-top: 2rem;
}
.tutorial-question__faq-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--tq-text);
}
.tutorial-accordion__item {
  border-bottom: 1px solid var(--tq-border);
}
.tutorial-accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  color: var(--tq-text);
  cursor: pointer;
  transition: var(--tq-transition);
}
.tutorial-accordion__header:hover {
  color: var(--tq-primary);
}
.tutorial-accordion__icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: var(--tq-transition);
}
.tutorial-accordion__item[open] .tutorial-accordion__icon {
  transform: rotate(180deg);
}
.tutorial-accordion__content {
  padding: 0 0 1rem;
  color: var(--tq-text-secondary);
}
.wpcf7-form {
  font-family: sans-serif;
  max-width: 600px;
  margin: 0 auto;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  background-color: #f9f8ec;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.castom-mobile-meny ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.castom-mobile-meny li {
  position: relative;
}
.castom-mobile-meny a {
  display: block;
  padding: 0.75em 1em;
  color: #000;
  text-decoration: none;
}
.castom-mobile-meny li.menu-item-has-children > a::after {
  content: "\25BA";
  float: right;
  transition: transform 0.3s;
}
.castom-mobile-meny li.open > a::after {
  transform: rotate(90deg);
}
.castom-mobile-meny ul.sub-menu {
  display: none;
  margin: 0;
  padding: 0;
}
.castom-mobile-meny li.open > ul.sub-menu {
  display: block;
}
.castom-mobile-meny ul.sub-menu li a {
  padding-left: 1.5em;
}
.wpcf7-form textarea {
  height: 140px;
  resize: vertical;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: #ffd966;
  outline: none;
}
.wpcf7-form input[type="submit"] {
  background: linear-gradient(to right, #ffb347, #ffcc33);
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.wpcf7-form input[type="submit"]:hover {
  background: linear-gradient(to right, #ff9900, #ffcc00);
  transform: translateY(-2px);
}
.wpcf7-form p {
  margin: 0 0 15px;
}
.wpcf7-form label {
  font-weight: normal;
  color: #444;
  display: block;
  margin-bottom: 5px;
}
.castom-mobile-meny li {
  display: block;
  width: 100%;
}
.castom-mobile-meny a {
  float: none;
}
.castom-mobile-meny ul.sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.castom-mobile-meny li.open > ul.sub-menu {
  display: block;
}
.castom-mobile-meny ul.sub-menu li a {
  padding-left: 1.5em;
}
@media (max-width: 1200px) {
  .home-plus-content {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
  .home-plus-item:last-of-type {
    width: 100%;
  }
  .slide-sot > div > h1 {
    font-size: 70px;
  }
  .home-plus-item > div:first-of-type > p {
    font-size: 18px;
    padding: 20px 0;
  }
  .home-falos-2-1gl > h2 {
    font-size: 32px;
  }
  .home-falos-2-1gl > h4 {
    font-size: 18px;
  }
  .mcf-content-top > h3 {
    font-size: 32px;
  }
  .stages-of-work-2 > h2 {
    font-size: 32px;
  }
  .home-up-number-value {
    font-size: 45px;
  }
  .home-up-number-text {
    font-size: 14px;
  }
  .rastet > h3 {
    font-size: 32px;
  }
  .rastet-block > a {
    padding: 30px;
  }
  .slide-button > button:first-of-type {
    height: 59px;
    width: 59px;
  }
  .slide-button > button:last-of-type {
    height: 59px;
    width: 59px;
  }
  .slide-sot {
    padding: 0 90px;
  }
}
@media (max-width: 1200px) {
  .fields-container {
    flex-direction: column;
  }
  .analytics-charts {
    flex-direction: column;
  }
  .chart {
    height: 250px;
  }
}
@media (max-width: 1100px) {
  .ertyhfnkjhs {
    background-image: none;
  }
  .newsletter {
    flex-wrap: wrap;
  }
  .newsletter button {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .platform-hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 5%;
  }
  .hero-content {
    margin-bottom: 2rem;
  }
  .cta-buttons {
    justify-content: center;
  }
  .dashboard-image {
    width: 100%;
    max-width: 500px;
  }
  .dashboard-highlights {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  .organic-hero,
  .platform-integration {
    flex-direction: column;
    text-align: center;
  }
  .hero-content,
  .integration-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .hero-image,
  .integration-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .quick-nav,
  .integration-features {
    justify-content: center;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .agroconsult-form-container {
    grid-template-columns: 1fr;
  }
  .agroconsult-form-image {
    height: 400px;
  }
}
@media (max-width: 992px) {
  .slide-sot {
    height: 50vh;
    padding: 0 20px;
    height: 100vh;
  }
  .slide-sot > div > h1 {
    font-size: 42px;
    line-height: 1.1;
  }
  .slider-nav {
    bottom: 20px;
  }
  .slide-sot > div {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .stages-of-work-2 {
    padding: 30px;
  }
  .social-account > span {
    display: none;
  }
  .social-header > a > svg {
    display: none;
  }
  .sow2-right > h3 {
    font-size: 18px;
  }
  .sow2-right > p {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .header-level-1 > .content-2 > div {
    width: 100%;
  }
  .image-container img {
    display: none;
  }
  .section-title span {
    text-align: center;
  }
  .section-title h2 {
    text-align: center;
  }
  .header-level-1-12 {
    justify-content: flex-end;
  }
  .header-level-1-11 {
    justify-content: flex-start;
  }
  .slide-sot > div > h1 {
    font-size: 50px;
  }
  .slide-sot > div > p {
    font-size: 16px;
  }
  .home-plus-item {
    width: calc(50% - 20px);
  }
  .home-falos-1 {
    text-align: center;
  }
  .home-falos-1 img {
    height: auto;
  }
  .main-celection-blocs > a {
    width: calc(50% - 10px);
  }
  .stages-of-work > div {
    height: 705px;
  }
  .stages-of-work-1 {
    height: 300px;
  }
  .home-up-counter {
    flex-wrap: wrap;
    padding: 60px 20px;
  }
  .home-up-number-block {
    width: calc(50% - 20px);
    margin-bottom: 30px;
  }
  .ngb-elementor {
    width: calc(50% - 15px);
  }
  .rastet-block > a {
    width: calc(50% - 10px);
  }
  .contact-section {
    flex-direction: column;
  }
  .image-container {
    order: 2;
  }
  .form-container {
    order: 1;
    padding: 30px 20px;
    margin-top: -121px;
  }
  .btn-submit {
    width: 100%;
  }
  .home-gov-logo-slide {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}
@media (max-width: 992px) {
  .login-container {
    flex-direction: column;
  }
  .login-left {
    padding: 30px;
    min-height: 300px;
  }
  .login-form-container {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .registration-container {
    flex-direction: column;
  }
  .registration-left {
    padding: 30px;
    min-height: 300px;
  }
  .registration-form-container {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .tutorial-content {
    flex-direction: column;
    padding: 0 1rem;
  }
  .tutorial-sidebar {
    width: 100%;
  }
  .tutorial-images {
    flex-direction: column;
  }
  .tutorial-images img {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .dashboard-content {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    flex-direction: row;
    padding: 0;
    border-right: none;
    border-bottom: 1px solid var(--gray-color);
  }
  .main-nav ul {
    display: flex;
    overflow-x: auto;
    padding: 0 1rem;
    flex-wrap: wrap;
  }
  .main-nav li {
    margin-bottom: 0;
    margin-right: 0.2rem;
  }
  .main-nav a {
    padding: 1rem;
    border-bottom: 3px solid transparent;
  }
  .main-nav li.active a {
    border-left: none;
    border-bottom: 3px solid var(--primary-color);
  }
  .weather-widget {
    display: none;
  }
  .planning-content {
    flex-direction: column;
  }
  .plan-form {
    position: static;
  }
}
@media (max-width: 992px) {
  .tutorial-planning__content {
    grid-template-columns: 1fr;
  }
  .tutorial-planning__steps {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  .tutorial-step {
    min-width: 220px;
  }
  .tutorial-planning {
    padding: 0;
  }
  .demo-controls {
    flex-wrap: wrap;
  }
  .demo-stats {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .reports-controls {
    flex-direction: column;
    align-items: flex-start;
  }
  .custom-report-editor {
    grid-template-columns: 1fr;
  }
  .editor-sidebar {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-right: 0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 888px) {
  .desktop-nav ul {
    gap: 20px;
  }
}
ul#menu-header-1 {
  margin-top: 50px;
}
@media (max-width: 878px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 800px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .header-level-2-22 > nav {
    display: none;
  }
  .ertyhfnkjhs {
    background-color: white !important;
    background-position: -10000%;
  }
}
@media (max-width: 800px) {
  .desktop-nav ul li a {
    font-size: 12px;
    gap: 6px;
  }
  .logo {
    font-size: 24px;
    gap: 6px;
  }
}
@media (max-width: 800px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .home-up-counter {
    flex-direction: column;
    align-items: center;
  }
  .home-up-number-block {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .slide-sot {
    height: 60vh;
  }
  .slide-sot > div > h1 {
    font-size: 36px;
  }
  .slide-button > button:first-of-type,
  .slide-button > button:last-of-type {
    height: 50px;
    width: 50px;
  }
  .slide-button svg {
    height: 30px;
  }
  .home-plus-item {
    width: 100%;
  }
  .main-celection-blocs > a {
    width: 100%;
  }
  .home-up-number-block {
    width: 100%;
  }
  .ngb-elementor {
    width: 100%;
  }
  .rastet-block > a {
    width: 100%;
  }
  .home-gov-logo-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .footer-links a {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .header-level-1-11,
  .header-level-1-12 {
    justify-content: center;
    text-align: center;
  }
  .header-level-1-12 > .social-header {
    justify-content: center;
  }
  .header-level-1-12 > .classic-button1 {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .form-container {
    padding: 20px 15px;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  .form-group input,
  .form-group textarea {
    padding: 12px;
  }
  .btn-submit {
    padding: 12px 20px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .contacts-hero {
    padding: 60px 0;
  }
  .contacts-title {
    font-size: 2rem;
  }
  .contacts-form {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .agroconsult-main-title {
    font-size: 3.5rem;
  }
  .agroconsult-hero-subtitle {
    font-size: 1.5rem;
  }
  .agroconsult-section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .platform-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card {
    width: 100%;
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .agromind-main-title {
    font-size: 3rem;
  }
  .agromind-hero-subtitle {
    font-size: 1.2rem;
  }
  .agromind-founder-profile {
    flex-direction: column;
    text-align: center;
  }
  .agromind-founder-image-placeholder {
    width: 200px;
    height: 200px;
  }
  .agromind-timeline-item {
    padding-left: 70px;
  }
  .agromind-timeline::before {
    left: 35px;
  }
  .agromind-timeline-date {
    width: 60px;
  }
  .agromind-video-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .progress-container {
    width: 100%;
  }
  .progress-bar {
    flex-grow: 1;
  }
  .step-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .step-number {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .header-actions {
    width: 100%;
    justify-content: space-between;
  }
  .search-field {
    flex: 1;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .section-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .table-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .news-title {
    font-size: 2rem;
  }
  .news-image img {
    width: 100%;
  }
  .news-content {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .news-meta {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
}
@media (max-width: 768px) {
  .guide-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
  }
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 60px !important;
  }
  .timeline-dot {
    left: 20px;
  }
}
@media (max-width: 768px) {
  .month {
    padding: 0.6rem 0.3rem;
    font-size: 0.9rem;
  }
  .calc-form {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .kinematic-title {
    font-size: 2rem;
  }
  .pneumatic-description {
    font-size: 1rem;
  }
  .tribology-filter-container {
    flex-direction: column;
  }
  .servomechanism-title,
  .iot-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .dashboard-grid {
    display: grid;
  }
  .dashboard-card.wide {
    grid-column: span 1;
  }
  .tabs {
    flex-wrap: wrap;
  }
  .financial-metrics {
    grid-template-columns: 1fr;
  }
  .export-section {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .holographic-text-title {
    font-size: 3rem;
  }
  .quick-nav,
  .integration-features {
    flex-wrap: wrap;
  }
  .temporal-milestone-card {
    width: 100%;
    left: 0 !important;
    margin-bottom: 50px;
  }
  .temporal-milestone-card::before {
    display: none;
  }
  .main-content {
    padding: 0;
  }
  .time-vortex-connector {
    left: 20px;
  }
  .phenological-calendar-container {
    padding: 0;
  }
  .agro-knowledge-base-container {
    padding: 0;
  }
  .pedagogy-highlight {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .quantum-agro-particle {
    display: none;
  }
  .interactive-particle {
    animation-duration: 15s !important;
  }
}
@media (max-width: 768px) {
  .tutorial-question {
    padding: 1rem;
  }
  .tutorial-form {
    padding: 1.5rem;
  }
  .report-actions {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .parametric-interface-wrapper {
    flex-direction: column;
  }
  .settings-navigation-panel {
    flex: 0 0 auto;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .radio-parameter-group {
    flex-direction: column;
    gap: 1rem;
  }
  .agro-settings-container {
    padding: 0;
  }
  .phytomorphogenesis-catalog-container {
    padding: 0px;
  }
}
@media (max-width: 768px) {
  .news-single .news-title {
    font-size: 1.6rem;
  }
  .news-single .related-grid {
    grid-template-columns: 1fr;
  }
  .news-archive .archive-filters {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-archive .news-grid {
    grid-template-columns: 1fr;
  }
  .news-archive .pagination {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .analytics-metrics {
    grid-template-columns: 1fr;
  }
  .visualization-tabs {
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .viz-tab {
    white-space: nowrap;
  }
  .economics-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-content.active {
    display: block !important;
}

.chart-card {
    margin-bottom: 20px !important;
}
}
@media (max-width: 768px) {
  .upcoming-features {
    grid-template-columns: 1fr;
  }
  .tutorial-main {
    padding: 0;
  }
  .upcoming-cta {
    grid-template-columns: 1fr;
  }
  .roadmap-timeline::before {
    left: 30px;
  }
  .timeline-item {
    padding-left: 60px;
  }
  .timeline-item::before {
    left: 22px;
  }
  .timeline-date {
    width: 60px;
    font-size: 0.9rem;
  }
  .home-up-counter {
    margin-top: 200px;
  }
}
@media (max-width: 768px) {
  .report-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .report-preview {
    display: none;
  }
  .export-options {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .top-bar {
    display: none;
  }
  .home-falos > div {
    width: 100%;
  }
  .home-falos-1 img {
    display: none;
  }
  .stages-of-work > div {
    width: 100%;
  }
  .stages-of-work > div:first-of-type {
    height: 500px;
  }
  .home-up-number-value {
    margin-top: 138px;
  }
}
@media (max-width: 576px) {
  .agroconsult-main-title {
    font-size: 2.8rem;
  }
  .agroconsult-hero-button,
  .agroconsult-cta-button {
    padding: 0.8rem 1.8rem;
  }
  .agroconsult-section-container {
    padding: 4rem 1.5rem;
  }
  .agroconsult-service-card,
  .agroconsult-process-step,
  .agroconsult-expert-card {
    padding: 1.5rem;
  }
}
@media (max-width: 576px) {
  .registration-form-container {
    padding: 30px 20px;
  }
  .form-header h2 {
    font-size: 24px;
  }
  .form-group.floating input,
  .form-group.floating select {
    padding: 12px 15px 12px 35px;
  }
  .form-group.floating i {
    left: 10px;
    top: 12px;
  }
  .submit-btn {
    padding: 12px 25px;
  }
}
@media (max-width: 576px) {
  .login-form-container {
    padding: 30px 20px;
  }
  .form-header h2 {
    font-size: 24px;
  }
  .form-group.floating input {
    padding: 12px 15px 12px 35px;
  }
  .form-group.floating i {
    left: 10px;
    top: 12px;
  }
  .submit-btn {
    padding: 12px 25px;
  }
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .forgot-password {
    margin-top: 5px;
  }
}
@media (max-width: 576px) {
  .slide-sot > div > h1 {
    font-size: 28px;
  }
  .slide-sot > div > p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .classic-button1 {
    padding: 15px 10px;
    font-size: 12px;
  }
  .home-falos-2-1gl > h2,
  .mcf-content-top > h3,
  .stages-of-work-2 > h2,
  .rastet > h3 {
    font-size: 26px;
  }
  .home-falos-2-1gl > h4 {
    font-size: 16px;
  }
  .home-falos-2-1gl > div {
    flex-direction: column;
    gap: 15px;
  }
  .home-falos-2-1gl > div > div {
    width: 100%;
  }
  .home-gov-logo-slide {
    flex: 0 0 100%;
    height: 80px;
  }
  .slider-btn {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .mobile-menu {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 576px) {
  .footer-zelenoe {
    padding: 50px 0 20px;
  }
  .newsletter {
    flex-direction: column;
  }
  .newsletter button {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .slide-button > button:first-of-type {
    display: none;
  }
  .slide-button > button:last-of-type {
    display: none;
  }
  .slide-sot > div {
    padding: 0px;
  }
}
@media (max-width: 480px) {
  .agromind-main-title {
    font-size: 2.5rem;
  }
  .agromind-section-title {
    font-size: 2rem;
  }
  .agromind-section-container {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .news-title {
    font-size: 1.7rem;
  }
  .news-share {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .kinematic-title {
    font-size: 1.7rem;
  }
  .hydraulic-btn {
    padding: 8px;
    font-size: 0.9rem;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .endosperm-seed-card {
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .endosperm-seed-card.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .bacteroid-info-card {
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
  }
  .bacteroid-info-card.in-view {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .active-substance-card {
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .active-substance-card.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .mrl-guideline-card {
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
  }
  .mrl-guideline-card.in-view {
    opacity: 1;
  }
  .pollinator-card {
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .pollinator-card.in-view {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .genotype-crop-card {
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .genotype-crop-card.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .intercropping-card {
    opacity: 0;
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
  }
  .intercropping-card.in-view {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .agroevent-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .agroevent-card.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .seasonal-content-area {
    opacity: 0;
    transition: opacity 0.6s ease 0.2s;
  }
  .seasonal-content-area.active {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .cognitive-article-card {
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .cognitive-article-card.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .pedagogical-resource-card,
  .innovation-card {
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
  }
  .pedagogical-resource-card.in-view,
  .innovation-card.in-view {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .foundational-figure-card {
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .foundational-figure-card.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .technology-pillar-card,
  .institutional-partner {
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
  }
  .technology-pillar-card.in-view,
  .institutional-partner.in-view {
    opacity: 1;
  }
}
