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

:root {
  --primary: #2d5016;
  --secondary: #6b8e23;
  --accent: #8fbc3f;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.4rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

.btn-secondary {
  background: var(--accent);
  color: var(--dark);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-light:hover {
  background: var(--accent);
  color: var(--dark);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
  font-size: 13px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-link {
  color: var(--accent);
  text-decoration: underline;
  font-size: 13px;
}

.cookie-accept {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 10px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
}

.header {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.03) 0%,
    rgba(143, 188, 63, 0.03) 100%
  );
  z-index: 0;
}

.header-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-main {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.5px;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-icon {
  font-size: 1.1rem;
  opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(45, 80, 22, 0.08);
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
  opacity: 1;
  transform: scale(1.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(143, 188, 63, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(45, 80, 22, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(107, 142, 35, 0.06) 0%,
      transparent 50%
    );
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f8e9 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-main {
  max-width: 650px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(143, 188, 63, 0.15);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(143, 188, 63, 0.3);
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-heading {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.highlight-text {
  display: block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 35px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-chip i {
  color: var(--accent);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
}

.btn-hero-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-hero-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  padding: 25px;
  gap: 20px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--light);
  border-radius: 15px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 22px;
  color: var(--white);
}

.stat-info {
  flex: 1;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-text {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 4px;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: floatBadge 3s infinite ease-in-out;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.badge-1 {
  top: 50px;
  left: -40px;
  color: var(--primary);
}

.badge-2 {
  bottom: 100px;
  right: -40px;
  color: var(--secondary);
  animation-delay: 1.5s;
}

.floating-badge i {
  font-size: 18px;
  color: var(--accent);
}

.services {
  padding: 100px 0;
  background: var(--light);
  position: relative;
}

.section-badge {
  display: inline-block;
  background: rgba(45, 80, 22, 0.1);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
  border-color: var(--accent);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(45, 80, 22, 0.05);
  line-height: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 0 25px 0;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.service-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--secondary);
  gap: 12px;
}

.service-link i {
  font-size: 12px;
}

.about {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: auto;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(45, 80, 22, 0.3);
  border: 8px solid var(--white);
}

.badge-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
}

.about-content h2 {
  color: var(--primary);
  margin-bottom: 25px;
  font-size: 2.5rem;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 15px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 35px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: var(--light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(143, 188, 63, 0.1);
  transform: translateX(10px);
}

.feature-item i {
  color: var(--accent);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-item strong {
  color: var(--dark);
  font-weight: 600;
  font-size: 15px;
}

.feature-item span {
  color: var(--gray);
  font-size: 13px;
}

.products {
  padding: 80px 0;
  background: var(--light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px 28px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px var(--shadow);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(45, 80, 22, 0.15);
}

.product-card.featured {
  border: 3px solid var(--accent);
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light);
}

.product-header h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
}

.product-features {
  list-style: none;
  margin-bottom: 25px;
}

.product-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
}

.product-features i {
  color: var(--accent);
  font-size: 16px;
}

.product-card .btn {
  width: 100%;
}

.process {
  padding: 80px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.process-step h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.process-step p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  text-align: center;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.content-section {
  padding: 70px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-text h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.content-text p {
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.8;
}

.content-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px var(--shadow);
}

.features-section {
  padding: 70px 0;
  background: var(--light);
}

.features-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-box {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 15px var(--shadow);
}

.feature-box i {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-box h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature-box p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.info-section {
  padding: 70px 0;
}

.info-content h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 50px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.info-card {
  background: var(--light);
  padding: 30px 25px;
  border-radius: 10px;
  border-left: 4px solid var(--accent);
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.info-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.timeline-section {
  padding: 70px 0;
  background: var(--light);
}

.timeline-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 50px;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px var(--shadow);
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.tips-section {
  padding: 70px 0;
}

.tips-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 50px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.tip-card {
  background: var(--light);
  padding: 30px 25px;
  border-radius: 10px;
  text-align: center;
}

.tip-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip-icon i {
  font-size: 28px;
  color: var(--dark);
}

.tip-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.tip-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.benefits-section {
  padding: 70px 0;
  background: var(--light);
}

.benefits-content {
  max-width: 900px;
  margin: 0 auto;
}

.benefits-content h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  padding: 15px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.benefits-list i {
  color: var(--accent);
  font-size: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-section {
  padding: 70px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-side h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-info-side > p {
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 18px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: var(--dark);
}

.contact-text h3 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-text p {
  color: var(--gray);
  font-size: 14px;
}

.contact-form-side {
  background: var(--light);
  padding: 40px 35px;
  border-radius: 12px;
}

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

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

.form-group label {
  font-weight: 500;
  color: var(--dark);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray);
}

.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.map-section {
  padding: 70px 0;
  background: var(--light);
}

.map-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px var(--shadow);
}

.thankyou-section,
.error-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 700px;
}

.thankyou-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-icon i {
  font-size: 50px;
  color: var(--dark);
}

.thankyou-content h1,
.error-content h1 {
  color: var(--primary);
  margin-bottom: 20px;
}

.thankyou-content p,
.error-content p {
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 35px;
  flex-wrap: wrap;
}

.error-number {
  font-size: 8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}

.policy-section {
  padding: 70px 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  word-break: break-all;
}

.policy-content h1 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.policy-date {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 40px;
  font-style: italic;
}

.policy-content h2 {
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.policy-content h3 {
  color: var(--secondary);
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.policy-content h4 {
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.policy-content p {
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.policy-content li {
  color: var(--gray);
  margin-bottom: 10px;
  line-height: 1.7;
}

.policy-content strong {
  color: var(--dark);
  font-weight: 600;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 35px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-info {
  flex: 1;
  min-width: 250px;
}

.footer-brand {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent);
}

.footer-info p {
  font-size: 13px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.8;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    max-width: 550px;
    margin: 0 auto;
  }

  .hero-main {
    max-width: 100%;
    text-align: center;
  }

  .hero-features {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .hero-actions {
    justify-content: center;
  }

  .floating-badge {
    display: none;
  }

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

  .about-grid {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  h1,
  .policy-content h1 {
    font-size: 1.8rem;
  }
  h2,
  .policy-content h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  body {
    font-size: 14px;
  }

  .logo-main {
    font-size: 1.1rem;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px var(--shadow);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    gap: 8px;
    z-index: 999;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 80vh;
    padding: 100px 0 60px;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .card-image {
    height: 400px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-chip {
    padding: 10px 16px;
    font-size: 13px;
  }

  .services,
  .about,
  .products,
  .process,
  .cta,
  .content-section,
  .features-section,
  .info-section,
  .timeline-section,
  .tips-section,
  .benefits-section,
  .contact-section,
  .map-section,
  .policy-section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 45px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 35px 25px;
  }

  .about-grid,
  .content-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-badge {
    width: 110px;
    height: 110px;
    bottom: -20px;
    right: -20px;
    border-width: 6px;
  }

  .badge-number {
    font-size: 2rem;
  }

  .badge-text {
    font-size: 0.75rem;
  }

  .products-grid,
  .process-grid,
  .features-grid,
  .info-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    transform: scale(1);
  }

  .timeline-item {
    flex-direction: column;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }

  .thankyou-actions .btn,
  .error-actions .btn {
    width: 100%;
  }

  .error-number {
    font-size: 5rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-tag {
    font-size: 12px;
    padding: 6px 16px;
  }

  .card-image {
    height: 350px;
  }

  .visual-stats {
    padding: 20px;
    gap: 15px;
  }

  .stat-box {
    padding: 12px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-text {
    font-size: 0.75rem;
  }

  .btn-hero {
    padding: 14px 28px;
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .services,
  .about,
  .products,
  .process,
  .cta,
  .content-section,
  .features-section,
  .info-section,
  .timeline-section,
  .tips-section,
  .benefits-section,
  .contact-section,
  .map-section,
  .policy-section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .service-card,
  .product-card,
  .feature-box,
  .tip-card {
    padding: 25px 20px;
  }

  .service-number {
    font-size: 2.5rem;
    top: 15px;
    right: 15px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .experience-badge {
    width: 90px;
    height: 90px;
    bottom: -15px;
    right: -15px;
    border-width: 5px;
  }

  .badge-number {
    font-size: 1.6rem;
  }

  .badge-text {
    font-size: 0.7rem;
  }

  .contact-form-side {
    padding: 30px 20px;
  }
}

@media (max-width: 375px) {
  .hero-heading {
    font-size: 1.75rem;
  }

  .hero-tag {
    font-size: 11px;
    padding: 5px 14px;
  }

  .card-image {
    height: 320px;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .stat-text {
    font-size: 0.7rem;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }

  .about-content h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 13px;
  }

  h1,
  .policy-content h1 {
    font-size: 1.4rem;
  }
  h2,
  .policy-content h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.05rem;
  }

  .logo-main {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 70vh;
    padding: 80px 0 50px;
  }

  .hero-heading {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .hero-tag {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 20px;
  }

  .card-image {
    height: 280px;
  }

  .visual-stats {
    padding: 15px;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 10px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-icon i {
    font-size: 18px;
  }

  .stat-value {
    font-size: 1.2rem;
  }

  .stat-text {
    font-size: 0.65rem;
  }

  .btn-hero {
    padding: 12px 24px;
    font-size: 13px;
  }

  .hero-features {
    gap: 8px;
    margin-bottom: 30px;
  }

  .feature-chip {
    padding: 8px 14px;
    font-size: 12px;
  }

  .feature-chip i {
    font-size: 14px;
  }

  .services,
  .about,
  .products,
  .process,
  .cta {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .section-badge {
    font-size: 11px;
    padding: 5px 14px;
  }

  .service-card {
    padding: 20px 16px;
  }

  .service-number {
    font-size: 2rem;
    top: 12px;
    right: 12px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
    margin-bottom: 20px;
    border-radius: 15px;
  }

  .service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .service-link {
    font-size: 12px;
  }

  .about-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .about-content p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .experience-badge {
    width: 75px;
    height: 75px;
    bottom: -12px;
    right: -12px;
    border-width: 4px;
  }

  .badge-number {
    font-size: 1.3rem;
  }

  .badge-text {
    font-size: 0.6rem;
  }

  .feature-item {
    padding: 12px;
    gap: 12px;
  }

  .feature-item i {
    font-size: 20px;
  }

  .feature-item strong {
    font-size: 13px;
  }

  .feature-item span {
    font-size: 12px;
  }
}
