*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #5b7b6a;
  --primary-dark: #3d5a4a;
  --primary-light: #8baf9a;
  --secondary: #c1956b;
  --secondary-light: #d4ad85;
  --accent: #e8ddd3;
  --bg: #f8f5f1;
  --white: #ffffff;
  --dark: #2e2e2e;
  --text: #4a4a4a;
  --text-light: #7a7a7a;
  --border: #e0dad3;
  --radius: 6px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --transition: 0.3s ease;
  --font-heading: "DM Serif Display", serif;
  --font-body: "Outfit", sans-serif;
}
html {
  scroll-behavior: smooth;
  font-size: 14px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
main {
  flex: 1;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--secondary);
}
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.3;
  font-weight: 400;
}
h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.35rem;
}
h4 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 0.8rem;
}
p:last-child {
  margin-bottom: 0;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.btn {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--secondary-light);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.section-title {
  margin-bottom: 0.6rem;
}
.section-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  max-width: 560px;
}
.text-center {
  text-align: center;
}
.section-desc.text-center {
  margin-left: auto;
  margin-right: auto;
}
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.9rem 0;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.header-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header-logo i {
  color: var(--primary);
  font-size: 1.1rem;
}
.header-bg {
  background: rgba(248, 245, 241, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
}
.header-hidden {
  transform: translateY(-100%);
}
.header-nav {
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.nav-list a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.15rem 0;
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--secondary);
  transition: width var(--transition);
}
.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--primary-dark);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--dark);
  padding: 0.3rem;
  z-index: 1001;
  position: relative;
}
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-overlay.show {
  display: block;
  opacity: 1;
}
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 40%,
    var(--primary-light) 100%
  );
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 35vw;
  height: 35vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  color: var(--white);
}
.hero-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.hero-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.hero-actions .btn-primary {
  background: var(--secondary);
  color: var(--white);
}
.hero-actions .btn-primary:hover {
  background: var(--secondary-light);
}
.hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}
.hero-decor {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
}
.hero-decor-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 180px;
}
.hero-decor-item i {
  color: var(--secondary-light);
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}
.hero-decor-item span {
  display: block;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
}
.hero-decor-item small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
}
.sec-welcome {
  padding: 4rem 0;
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.welcome-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.welcome-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome-text .section-tag {
  margin-bottom: 0.4rem;
}
.welcome-text h2 {
  margin-bottom: 0.8rem;
}
.welcome-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}
.welcome-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.2rem 0;
}
.welcome-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.welcome-feature i {
  color: var(--secondary);
  font-size: 0.75rem;
}
.sec-services {
  padding: 4rem 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.8rem;
}
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--secondary);
  transition: height 0.4s ease;
}
.service-card:hover::before {
  height: 100%;
}
.service-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.service-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}
.service-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.service-card .btn {
  font-size: 0.75rem;
  padding: 0.45rem 1.1rem;
}
.sec-products {
  padding: 4rem 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.8rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 1.5rem;
  text-align: center;
  color: var(--white);
}
.product-card-header i {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.product-card-header h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}
.product-card-header small {
  font-size: 0.7rem;
  opacity: 0.8;
}
.product-card-body {
  padding: 1.3rem;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 0.8rem;
}
.product-price small {
  font-size: 0.75rem;
  color: var(--text-light);
  font-family: var(--font-body);
}
.product-features {
  margin-bottom: 1.2rem;
}
.product-features li {
  font-size: 0.78rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-features li:last-child {
  border-bottom: none;
}
.product-features li i {
  color: var(--secondary);
  font-size: 0.7rem;
}
.product-card-body .btn {
  width: 100%;
  font-size: 0.78rem;
}
.product-card.featured {
  border-color: var(--secondary);
}
.product-card.featured .product-card-header {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}
.sec-why {
  padding: 4rem 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.why-item {
  text-align: center;
  padding: 1.5rem 1rem;
}
.why-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 0.8rem;
}
.why-item h4 {
  margin-bottom: 0.3rem;
}
.why-item p {
  font-size: 0.75rem;
  color: var(--text-light);
}
.sec-cta {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  text-align: center;
  color: var(--white);
}
.sec-cta h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.sec-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}
.sec-cta .btn {
  background: var(--secondary);
  color: var(--white);
}
.sec-cta .btn:hover {
  background: var(--secondary-light);
}
.inner-hero {
  padding: 6rem 0 3rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  text-align: center;
  color: var(--white);
}
.inner-hero h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
.inner-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-size: 0.72rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}
.sec-content {
  padding: 3.5rem 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.content-grid.reverse {
  direction: rtl;
}
.content-grid.reverse > * {
  direction: ltr;
}
.content-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.content-img img {
  width: 100%;
  object-fit: cover;
}
.content-text h2 {
  margin-bottom: 0.8rem;
}
.content-text p {
  font-size: 0.85rem;
  color: var(--text-light);
}
.content-text .btn {
  margin-top: 1rem;
}
.sec-process {
  padding: 3.5rem 0;
  background: var(--white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -0.6rem;
  width: 1.2rem;
  height: 1.5px;
  background: var(--border);
}
.process-step:last-child::after {
  display: none;
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 auto 0.8rem;
  font-family: var(--font-heading);
}
.process-step h4 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.process-step p {
  font-size: 0.75rem;
  color: var(--text-light);
}
.sec-benefits {
  padding: 3.5rem 0;
}
.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}
.benefit-item {
  display: flex;
  gap: 0.8rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.benefit-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}
.benefit-item i {
  font-size: 1.2rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.benefit-item h4 {
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}
.benefit-item p {
  font-size: 0.78rem;
  color: var(--text-light);
}
.sec-values {
  padding: 3.5rem 0;
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.8rem;
}
.value-card {
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow);
}
.value-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}
.value-card h4 {
  margin-bottom: 0.3rem;
}
.value-card p {
  font-size: 0.78rem;
  color: var(--text-light);
}
.sec-story {
  padding: 3.5rem 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 2.5rem;
  align-items: center;
}
.story-text h2 {
  margin-bottom: 0.8rem;
}
.story-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}
.story-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.2rem;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-light);
}
.sec-contact {
  padding: 3.5rem 0;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 2rem;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.contact-info-card h2 {
  color: var(--white);
  margin-bottom: 0.3rem;
  font-size: 1.4rem;
}
.contact-info-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.contact-info-item i {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.contact-info-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.contact-info-item strong {
  display: block;
  color: var(--white);
  font-size: 0.78rem;
  margin-bottom: 0.1rem;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}
.contact-form-card h3 {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--primary);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.form-checkbox label {
  font-size: 0.72rem;
  color: var(--text-light);
  cursor: pointer;
}
.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}
.sec-map {
  padding: 0 0 3.5rem;
}
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
}
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 1.5rem 0 1rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.footer-brand i {
  color: var(--primary-light);
}
.footer-tagline {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
}
.footer-copy {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--white);
}
.footer-legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: center;
}
.footer-legal a {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: var(--white);
}
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 1rem 0;
  z-index: 2000;
  display: none;
  border-top: 2px solid var(--primary);
}
.cookie-popup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
  flex-wrap: wrap;
}
.cookie-popup p {
  font-size: 0.75rem;
  margin-bottom: 0;
  flex: 1;
}
.cookie-popup p a {
  color: var(--secondary-light);
  text-decoration: underline;
}
.cookie-popup-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.cookie-popup .btn {
  font-size: 0.72rem;
  padding: 0.45rem 1.2rem;
}
.fullpage {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.2rem;
}
.fullpage-content {
  max-width: 480px;
}
.fullpage-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.fullpage-content h1 {
  margin-bottom: 0.5rem;
}
.fullpage-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.policy-content {
  padding: 3.5rem 0;
}
.policy-content h1 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}
.policy-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.policy-content h2 {
  font-size: 1.3rem;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
}
.policy-content h3 {
  font-size: 1.05rem;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
}
.policy-content p,
.policy-content li {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}
.policy-content ul,
.policy-content ol {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}
.policy-content ul {
  list-style: disc;
}
.policy-content ol {
  list-style: decimal;
}
.policy-content li {
  margin-bottom: 0.3rem;
}
@media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
    display: none;
  }
  .header-nav.nav-open {
    right: 0;
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }
  .nav-list a {
    font-size: 1rem;
  }
  .hero-decor {
    display: none;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-step::after {
    display: none;
  }
  .welcome-grid {
    grid-template-columns: 1fr;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .content-grid.reverse {
    direction: ltr;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .benefits-list {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-links {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 13px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hero {
    min-height: 80vh;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .hero-text {
    font-size: 0.85rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .story-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .inner-hero {
    padding: 5rem 0 2rem;
  }
  .inner-hero h1 {
    font-size: 1.6rem;
  }
  .cookie-popup-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 12px;
  }
  .container {
    padding: 0 0.8rem;
  }
  .hero {
    min-height: 75vh;
  }
  .contact-info-card {
    padding: 1.5rem;
  }
  .contact-form-card {
    padding: 1.5rem;
  }
}
