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

:root {
  --primary: #10b981;
  --primary-light: #34d399;
  --primary-dark: #059669;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --text-white: #fff;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-lg: rgba(0, 0, 0, 0.12);
  --gradient-1: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-2: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  background: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.1rem;
}

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;
}

.header-unique {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px var(--shadow);
}

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

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

.main-nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

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

.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-text h1 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.visual-card {
  background: var(--bg-white);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  height: 200px;
}

.visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-lg);
  border-color: var(--primary-light);
}

.visual-card:nth-child(3) {
  grid-column: 1 / -1;
}

.visual-card i {
  font-size: 3rem;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.visual-card:nth-child(1) {
  background-image: url(../green_visuals/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.visual-card:nth-child(2) {
  background-image: url(../green_visuals/bg2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.visual-card:nth-child(3) {
  background-image: url(../green_visuals/bg3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.visual-card span {
  display: block;
  font-weight: 600;
  color: black;
  font-size: 1.1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--shadow);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

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

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

.services-intro,
.about-section,
.process-section,
.products-section,
.services-detailed,
.benefits-section,
.faq-section,
.contact-section {
  padding: 70px 0;
}

.section-header {
  text-align: left;
  margin-bottom: 50px;
}

.section-header.centered {
  text-align: center;
}

.label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-header h2 {
  color: var(--primary-dark);
}

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

.service-card {
  background: var(--bg-white);
  padding: 35px 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 12px 40px var(--shadow-lg);
  transform: translateY(-5px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--text-white);
}

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

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.about-section {
  background: var(--bg-light);
}

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

.about-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--shadow-lg);
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Sora', sans-serif;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
}

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

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

.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: 'Sora', sans-serif;
}

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

.process-step p {
  font-size: 14px;
  color: var(--text-light);
}

.products-section {
  background: var(--bg-light);
}

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

.product-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 40px 35px;
  border: 2px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 48px var(--shadow-lg);
  transform: translateY(-8px);
}

.product-card.featured {
  border-color: var(--primary);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

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

.price-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 15px;
  text-align: center;
}

.badge {
  position: absolute;
  top: 0;
  right: 20px;
  background: var(--accent);
  color: var(--text-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

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

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

.product-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: 'Sora', sans-serif;
}

.period {
  font-size: 1rem;
  color: var(--text-light);
}

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

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

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

.product-card .btn-primary,
.product-card .btn-secondary {
  width: 100%;
  text-align: center;
}

.cta-section {
  padding: 100px 0;
  background: var(--gradient-1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  opacity: 0.4;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: white;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  backdrop-filter: blur(10px);
}

.cta-icon i {
  font-size: 2.5rem;
  color: var(--text-white);
}

.cta-faq {
  max-width: 900px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  text-align: left;
}

.faq-item-compact {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.faq-item-compact:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.faq-item-compact h3 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item-compact h3 i {
  font-size: 1.2rem;
}

.faq-item-compact p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

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

.cta-section .btn-primary:hover {
  background: var(--bg-light);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-note {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  text-align: center;
}

.page-hero h1 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  word-break: break-all;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.service-detail-content {
  max-width: 800px;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon-large i {
  font-size: 2.5rem;
  color: var(--text-white);
}

.service-detail h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.service-detail p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 14px;
}

.feature-list i {
  color: var(--accent);
  font-size: 1.1rem;
}

.benefits-section {
  background: var(--bg-light);
}

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

.benefit-card {
  text-align: center;
  padding: 30px 20px;
}

.benefit-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

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

.benefit-card p {
  color: var(--text-light);
  font-size: 14px;
}

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

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Sora', sans-serif;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-cta {
  padding: 60px 0;
  background: var(--bg-light);
}

.cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-box h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.cta-box p {
  color: var(--text-light);
  margin-bottom: 25px;
}

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

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

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

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

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

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

.contact-icon i {
  font-size: 1.3rem;
  color: var(--text-white);
}

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

.contact-text p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  margin-top: 20px;
}

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

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

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

.contact-form .btn-primary {
  width: 100%;
  margin-top: 10px;
}

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

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

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

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

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.success-icon i {
  font-size: 3.5rem;
  color: white;
}

.error-icon {
  background: var(--bg-light);
}

.error-icon i {
  font-size: 3.5rem;
  color: var(--accent);
}

.error-content h1 {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

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

.thankyou-content p,
.error-content p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

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

.thankyou-info {
  margin-top: 40px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
}

.thankyou-info p {
  margin: 0;
  font-size: 14px;
}

.policy-section {
  padding: 60px 0;
  word-break: break-all;
}

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

.policy-content h1 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.policy-date {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 40px;
  display: block;
}

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

.policy-content h3 {
  color: var(--primary);
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.policy-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.policy-content ul {
  margin: 15px 0 15px 25px;
  color: var(--text-light);
  line-height: 1.8;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-content a {
  color: var(--primary);
  text-decoration: underline;
}

.form-template {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid var(--accent);
}

.form-template p {
  margin-bottom: 10px;
}

.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--text-white);
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: var(--text-white);
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

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

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--text-white);
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -5px 20px var(--shadow-lg);
  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: 25px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

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

.btn-accept,
.btn-learn {
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

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

.btn-learn {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-learn:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.2rem;
  }

  .logo a {
    font-size: 1rem;
  }

  .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    gap: 15px;
  }
  .main-nav.active {
    transform: translateX(0);
  }
  .menu-toggle {
    display: flex;
  }
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-section {
    padding: 50px 0;
  }
  .services-intro,
  .about-section,
  .process-section,
  .products-section,
  .services-detailed,
  .benefits-section,
  .faq-section,
  .contact-section {
    padding: 50px 0;
  }
  .section-header {
    margin-bottom: 35px;
  }
  .stats-row {
    flex-direction: column;
    gap: 20px;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  .btn-accept,
  .btn-learn {
    width: 100%;
  }
  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }
  .thankyou-actions .btn-primary,
  .thankyou-actions .btn-secondary,
  .error-actions .btn-primary,
  .error-actions .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .hero-visual {
    grid-template-columns: 1fr;
  }
  .visual-card:nth-child(3) {
    grid-column: 1;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .error-content h1 {
    font-size: 3.5rem;
  }
}

.cookie-popup h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.cookie-policy-link {
  margin-top: 10px;
  font-size: 12px;
}

.cookie-policy-link a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.btn-reject {
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--text-white);
}

.btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-settings {
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--text-white);
  text-decoration: none;
}

.btn-settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: var(--text-dark);
}

.cookie-modal-content h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.cookie-modal-content > p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.cookie-option {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-option h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 0;
}

.cookie-option p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cookie-always-on {
  background: var(--bg-light);
  color: var(--text-light);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
  background-color: var(--primary);
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.cookie-modal-buttons .btn-primary {
  flex: 1;
}

@media (max-width: 768px) {
  .cookie-modal-content {
    padding: 30px 20px;
  }

  .cookie-option-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
