@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #2d5a4a;
  --primary-dark: #1e3d32;
  --secondary: #d4a574;
  --accent: #8b6914;
  --bg-light: #faf8f5;
  --bg-cream: #f5f1eb;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --border: #e0ddd8;
  --shadow: rgba(45, 90, 74, 0.1);
  --font-display: "Playfair Display", serif;
  --font-body: "Space Grotesk", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--secondary);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-desktop a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover {
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  display: none;
}

.btn-contact {
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  position: absolute;
}

.menu-toggle span:first-child {
  transform: translateY(-6px);
}

.menu-toggle span:last-child {
  transform: translateY(6px);
}

.menu-toggle.active span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:last-child {
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-light);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.nav-mobile a:hover {
  color: var(--primary);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(212, 165, 116, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  padding: 12px 26px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px var(--shadow);
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid var(--secondary);
  border-radius: 20px;
  z-index: -1;
}

.section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-subtitle {
  display: inline-block;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

.services-section {
  background: var(--bg-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: var(--white);
  padding: 30px 22px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow);
}

.service-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--white);
  font-size: 22px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 16px;
  box-shadow: 0 15px 40px var(--shadow);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -8px;
  background: var(--secondary);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 12px;
  text-align: center;
}

.about-badge-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.about-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.about-feature i {
  color: var(--primary);
  font-size: 14px;
}

.process-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
}

.process-section .section-subtitle {
  color: var(--secondary);
}

.process-section .section-title,
.process-section .section-desc {
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -12px;
  width: 25px;
  height: 2px;
  background: var(--secondary);
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.process-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-text {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.6;
}

.testimonials-section {
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: var(--white);
  padding: 28px 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 13px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}

.testimonial-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 11px;
  color: var(--text-muted);
}

.cta-section {
  background: var(--bg-cream);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 35px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 35px;
  margin-bottom: 25px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-desc {
  font-size: 12px;
  opacity: 0.7;
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary);
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  font-size: 12px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 1;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 10px;
}

.footer-contact i {
  color: var(--secondary);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 11px;
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  font-size: 11px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.page-header {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 120px 0 60px;
  text-align: center;
  color: var(--white);
}

.page-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}

.page-breadcrumb {
  font-size: 12px;
  opacity: 0.8;
}

.page-breadcrumb a {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.page-breadcrumb a:hover {
  opacity: 1;
}

.products-section {
  background: var(--bg-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow);
}

.product-image {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 48px;
}

.product-content {
  padding: 20px;
}

.product-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.product-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

.about-page-section {
  background: var(--bg-light);
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-page-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 18px;
}

.about-page-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.team-section {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.team-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-light);
  border-radius: 16px;
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
  font-size: 28px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.team-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-section {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 35px;
  border-radius: 20px;
  color: var(--white);
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-info > p {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-details {
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-item-text p {
  font-size: 12px;
  opacity: 0.8;
}

.contact-hours h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-hours p {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}

.form-checkbox input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--primary-dark);
}

.map-section {
  height: 350px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.policy-section {
  background: var(--bg-light);
  padding: 60px 0;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: var(--text-dark);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.policy-content ul {
  margin: 14px 0;
  padding-left: 20px;
}

.policy-content ul li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.policy-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--secondary);
  border-radius: 50%;
}

.policy-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.error-page {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-light);
}

.error-content {
  max-width: 450px;
}

.error-code {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 15px;
}

.error-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 14px;
}

.error-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.thankyou-page {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.thankyou-content {
  max-width: 500px;
}

.thankyou-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 40px;
}

.thankyou-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--primary);
}

.thankyou-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 420px;
  background: var(--white);
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cookie-popup p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.cookie-popup a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: var(--primary);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--primary-dark);
}

.cookie-btn-decline {
  background: var(--bg-light);
  color: var(--text-dark);
}

.cookie-btn-decline:hover {
  background: var(--border);
}

.values-section {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  text-align: center;
  padding: 25px 18px;
  background: var(--bg-light);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--white);
  font-size: 20px;
}

.value-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.subpage-intro {
  background: var(--bg-light);
}

.subpage-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.subpage-intro-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.subpage-intro-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.subpage-intro-image img {
  border-radius: 16px;
  box-shadow: 0 15px 40px var(--shadow);
}

.benefits-section {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.benefit-card {
  display: flex;
  gap: 18px;
  padding: 25px;
  background: var(--bg-light);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.benefit-content p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-section {
  background: var(--bg-cream);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.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: 300px;
}

.faq-answer p {
  padding: 0 22px 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 991px) {
  .header-cta {
    display: block;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-desc {
    margin: 0 auto 28px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .about-page-grid,
  .subpage-intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-image {
    max-width: 450px;
    margin: 0 auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .process-step::after {
    display: none;
  }

  .testimonials-grid,
  .team-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 100px 0 50px;
  }

  .hero-title {
    font-size: 32px;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .services-grid,
  .testimonials-grid,
  .team-grid,
  .products-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 28px;
  }

  .error-code {
    font-size: 80px;
  }

  .policy-content {
    padding: 25px;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 12px;
  }

  .section-title {
    font-size: 22px;
  }

  .service-card,
  .testimonial-card,
  .team-card,
  .value-card,
  .benefit-card {
    padding: 20px 15px;
  }

  .cookie-popup {
    left: 10px;
    right: 10px;
    padding: 18px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    text-align: center;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 13px;
  }

  .logo {
    font-size: 16px;
  }

  .hero-title {
    font-size: 22px;
  }

  .section-title {
    font-size: 20px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 9px 16px;
    font-size: 11px;
  }
}
