*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #3d7b6f;
  --primary-dark: #2a5a50;
  --primary-light: #5a9e90;
  --accent: #c8956c;
  --accent-light: #e8c4a0;
  --bg: #fafaf7;
  --surface: #f2efea;
  --surface-dark: #e5e0d8;
  --text: #212121;
  --text-sec: #636363;
  --white: #ffffff;
  --font-h: "Space Grotesk", sans-serif;
  --font-b: "Outfit", sans-serif;
  --header-h: 64px;
  --footer-h: auto;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --tr: 0.3s ease;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}
main {
  flex: 1;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-h);
  font-weight: 600;
  line-height: 1.25;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.125rem;
}
p {
  margin-bottom: 0.75rem;
}
p:last-child {
  margin-bottom: 0;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr);
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: #b8854f;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.header-accent {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--accent),
    var(--primary-light)
  );
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header.scrolled .header-inner {
  background: rgba(255, 255, 255, 0.97);
}
.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.07);
}
.site-header.header-hidden {
  transform: translateY(-100%);
}
.logo {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.3px;
}
.logo:hover {
  color: var(--primary);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text);
  cursor: pointer;
  padding: 0.25rem;
  z-index: 1002;
  position: relative;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background var(--tr);
}
.nav-toggle:hover {
  background: var(--surface);
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-list a {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-sec);
  position: relative;
  padding: 0.25rem 0;
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--tr);
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--primary-dark);
}
.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
  background: linear-gradient(
    135deg,
    var(--surface) 0%,
    var(--bg) 50%,
    var(--surface) 100%
  );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-family: var(--font-h);
}
.hero h1 {
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
  letter-spacing: -0.5px;
}
.hero p {
  color: var(--text-sec);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--surface-dark);
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-h);
  font-size: 1.25rem;
  color: var(--primary);
}
.hero-stat span {
  font-size: 0.7rem;
  color: var(--text-sec);
}
.section {
  padding: 3rem 0;
}
.section-alt {
  background: var(--surface);
}
.section-header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  margin-bottom: 0.5rem;
}
.section-header p {
  color: var(--text-sec);
  font-size: 0.85rem;
}
.section-label {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--surface-dark);
  transition: all var(--tr);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(61, 123, 111, 0.15);
}
.service-card.featured::before {
  content: "Suosituin";
  position: absolute;
  top: -10px;
  right: 1.25rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-family: var(--font-h);
}
.service-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.service-card:nth-child(1) .service-icon {
  background: rgba(61, 123, 111, 0.1);
  color: var(--primary);
}
.service-card:nth-child(2) .service-icon {
  background: rgba(200, 149, 108, 0.12);
  color: var(--accent);
}
.service-card:nth-child(3) .service-icon {
  background: rgba(42, 90, 80, 0.1);
  color: var(--primary-dark);
}
.service-card h3 {
  margin-bottom: 0.4rem;
}
.service-card .price {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0.75rem 0;
}
.service-card .price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-sec);
}
.service-features {
  margin: 0.75rem 0 1.25rem;
  flex: 1;
}
.service-features li {
  padding: 0.3rem 0;
  font-size: 0.8rem;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-features li i {
  color: var(--primary);
  font-size: 0.65rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.benefit-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--surface-dark);
  transition: all var(--tr);
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1rem;
}
.benefit-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.benefit-card p {
  font-size: 0.78rem;
  color: var(--text-sec);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 1.25rem 0.75rem;
  position: relative;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
}
.process-step h3 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.process-step p {
  font-size: 0.75rem;
  color: var(--text-sec);
}
.process-line {
  display: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--surface-dark);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--accent-light);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}
.testimonial-card p {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-sec);
  margin-bottom: 0.75rem;
  padding-top: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-h);
}
.author-info strong {
  font-size: 0.78rem;
  display: block;
}
.author-info span {
  font-size: 0.68rem;
  color: var(--text-sec);
}
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    var(--primary-light) 100%
  );
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
.cta-section .btn-accent {
  font-size: 0.85rem;
}
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 2.5rem 0 2rem;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.35rem;
  font-size: 1.75rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a:hover {
  color: var(--white);
}
.content-section {
  padding: 2.5rem 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.content-grid.reverse {
  direction: rtl;
}
.content-grid.reverse > * {
  direction: ltr;
}
.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.content-img img {
  width: 100%;
  object-fit: cover;
}
.content-text h2 {
  margin-bottom: 0.5rem;
}
.content-text p {
  color: var(--text-sec);
  font-size: 0.85rem;
}
.content-text ul {
  margin: 0.75rem 0;
}
.content-text ul li {
  padding: 0.3rem 0;
  font-size: 0.82rem;
  color: var(--text-sec);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.content-text ul li i {
  color: var(--primary);
  font-size: 0.65rem;
  margin-top: 0.3rem;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.tip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--surface-dark);
  transition: all var(--tr);
}
.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.tip-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}
.tip-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.tip-card p {
  font-size: 0.78rem;
  color: var(--text-sec);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.value-card i {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.value-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.value-card p {
  font-size: 0.78rem;
  color: var(--text-sec);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-box {
  text-align: center;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-dark);
}
.stat-box strong {
  display: block;
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--primary);
}
.stat-box span {
  font-size: 0.75rem;
  color: var(--text-sec);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--surface-dark);
}
.contact-form-card h2 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}
.contact-form-card > p {
  color: var(--text-sec);
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid var(--surface-dark);
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 0.82rem;
  background: var(--bg);
  color: var(--text);
  transition: border var(--tr);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61, 123, 111, 0.08);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.form-check input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--primary);
}
.form-check label {
  font-size: 0.75rem;
  color: var(--text-sec);
  margin-bottom: 0;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-info-card h2 {
  color: var(--white);
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}
.contact-info-card > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact-detail i {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.contact-detail div strong {
  display: block;
  font-size: 0.82rem;
}
.contact-detail div span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.contact-hours {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-hours h3 {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--white);
}
.contact-hours p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}
.map-section {
  padding: 0;
}
.map-section iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.65);
  padding: 1.5rem 0 1rem;
  font-size: 0.72rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.footer-risk {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--accent);
}
.footer-risk p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  transition: color var(--tr);
}
.footer-links a:hover {
  color: var(--white);
}
.footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
}
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
  z-index: 2000;
  display: none;
  border-top: 2px solid var(--primary);
}
.cookie-popup.show {
  display: block;
}
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-inner p {
  font-size: 0.78rem;
  color: var(--text-sec);
  flex: 1;
}
.cookie-inner p a {
  color: var(--primary);
  text-decoration: underline;
}
.cookie-inner button {
  white-space: nowrap;
}
.fullpage-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem;
}
.fullpage-content {
  max-width: 500px;
}
.fullpage-content i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.fullpage-content h1 {
  margin-bottom: 0.5rem;
}
.fullpage-content p {
  color: var(--text-sec);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}
.policy-content h1 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  text-align: center;
}
.policy-content h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.15rem;
  color: var(--primary-dark);
}
.policy-content h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
}
.policy-content p {
  color: var(--text-sec);
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}
.policy-content ul {
  margin: 0.75rem 0 0.75rem 1.25rem;
}
.policy-content ul li {
  font-size: 0.82rem;
  color: var(--text-sec);
  margin-bottom: 0.35rem;
  list-style: disc;
}
.policy-date {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-sec);
  margin-bottom: 2rem;
}
.faq-list {
  margin-top: 1rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--surface-dark);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 1rem 1.25rem;
}
.faq-item h3 {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--primary-dark);
}
.faq-item p {
  font-size: 0.8rem;
  color: var(--text-sec);
}
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-story-img img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    order: 1;
  }
  .hero-img {
    order: 2;
    max-width: 450px;
    margin: 0 auto;
  }
  .hero-stats {
    justify-content: center;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .about-story {
    grid-template-columns: 1fr;
  }
  .about-story-img {
    max-width: 450px;
    margin: 0 auto;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .content-img {
    max-width: 450px;
    margin: 0 auto;
  }
  .content-grid.reverse {
    direction: ltr;
  }
}
@media (max-width: 768px) {
  :root {
    --header-h: 56px;
  }
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.12);
    padding: 5rem 1.5rem 2rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
  }
  .main-nav.open {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: 0;
  }
  .nav-list li {
    width: 100%;
  }
  .nav-list a {
    display: block;
    padding: 0.85rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--surface);
  }
  .nav-list a::after {
    display: none;
  }
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--tr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
  .section {
    padding: 2.25rem 0;
  }
  .page-hero {
    padding: 2rem 0 1.5rem;
  }
  .tips-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 576px) {
  body {
    font-size: 0.82rem;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .hero {
    padding: 2.5rem 0 2rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 0.75rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .tips-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
@media (max-width: 320px) {
  .container {
    padding: 0 0.75rem;
  }
  .header-inner {
    padding: 0.75rem;
  }
  h1 {
    font-size: 1.25rem;
  }
  .service-card {
    padding: 1.25rem 1rem;
  }
  .contact-form-card {
    padding: 1.25rem;
  }
  .contact-info-card {
    padding: 1.25rem;
  }
}
