@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #7B5B3A;
  --primary-light: #A67C52;
  --secondary: #C4956A;
  --accent: #D4A574;
  --accent-dark: #B8845A;
  --bg-light: #FAF6F1;
  --bg-cream: #F0E8DE;
  --bg-warm: #E8DDD0;
  --text-dark: #3A2E25;
  --text-body: #5C4D3C;
  --text-light: #8A7B6B;
  --white: #FFFDF9;
  --border: #E0D5C8;
  --shadow: rgba(59, 46, 37, 0.08);
  --shadow-md: rgba(59, 46, 37, 0.12);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.3s ease;
  --header-h: 62px;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Quicksand', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.85rem; }
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 20px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.header-scrolled {
  background: rgba(250, 246, 241, 0.97);
  box-shadow: 0 2px 16px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.logo:hover {
  color: var(--primary-light);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  display: block;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.2px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: var(--bg-cream);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 5px;
  z-index: 1010;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: var(--bg-cream);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250, 246, 241, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-overlay nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-overlay nav a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: block;
}

.mobile-overlay nav a:hover,
.mobile-overlay nav a.active {
  color: var(--primary);
  background: var(--bg-cream);
}

.hero {
  padding: calc(var(--header-h) + 40px) 0 50px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 50%, var(--bg-warm) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge i {
  font-size: 0.7rem;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 14px;
  line-height: 1.15;
  color: var(--text-dark);
}

.hero h1 span {
  color: var(--primary);
  font-style: italic;
}

.hero-text {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow-md);
}

.hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(123, 91, 58, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
}

.btn-light:hover {
  background: var(--bg-cream);
  transform: translateY(-1px);
}

.section {
  padding: 55px 0;
}

.section-alt {
  background: var(--bg-cream);
}

.section-warm {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-label i {
  font-size: 0.65rem;
}

.section-header h2 {
  margin-bottom: 10px;
}

.section-header p {
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--shadow);
  border-color: var(--secondary);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.1rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow-md);
}

.product-visual {
  height: 160px;
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.product-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--white), transparent);
}

.product-info {
  padding: 18px 20px;
}

.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.product-info p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.product-btn {
  padding: 6px 14px;
  font-size: 0.72rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--border);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.process-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 0.95rem;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.value-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: 0 8px 24px var(--shadow);
}

.value-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
}

.value-content h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.value-content p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.cta-section {
  text-align: center;
  padding: 50px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: var(--white);
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.cta-box p {
  color: rgba(255, 253, 249, 0.85);
  font-size: 0.88rem;
  margin-bottom: 22px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .btn-light {
  border-color: rgba(255, 253, 249, 0.3);
}

.cta-box .btn-light:hover {
  background: var(--white);
  color: var(--primary);
}

.page-hero {
  padding: calc(var(--header-h) + 36px) 0 36px;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.75rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb i {
  font-size: 0.6rem;
}

.content-section {
  padding: 50px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px var(--shadow);
}

.content-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.content-text h2 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.content-text p {
  font-size: 0.85rem;
  color: var(--text-body);
  margin-bottom: 10px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.info-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
}

.info-list-item i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--shadow);
  border-color: var(--secondary);
}

.guide-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.2rem;
  color: var(--primary);
}

.guide-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tip-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.tip-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.tip-content h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.tip-content p {
  font-size: 0.76rem;
  color: var(--text-light);
}

.insight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px 20px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--shadow);
}

.insight-card i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.insight-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.insight-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 26px 20px;
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: 0 8px 24px var(--shadow);
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
  color: var(--white);
}

.team-card h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.team-role {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.team-card p {
  font-size: 0.76rem;
  color: var(--text-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 30px 26px;
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.contact-form-wrap > p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.82rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 91, 58, 0.1);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.74rem;
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
}

.form-check a {
  color: var(--primary);
  text-decoration: underline;
}

.form-error {
  font-size: 0.7rem;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #c0392b;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all var(--transition);
}

.contact-card:hover {
  box-shadow: 0 6px 20px var(--shadow);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
}

.contact-card h4 {
  font-size: 0.88rem;
  margin-bottom: 3px;
}

.contact-card p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.map-section {
  padding: 0 0 50px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.site-footer {
  background: var(--text-dark);
  color: rgba(255, 253, 249, 0.7);
  padding: 28px 0 18px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.7rem;
  color: rgba(255, 253, 249, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 253, 249, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copyright {
  font-size: 0.68rem;
}

.footer-privacy {
  display: flex;
  gap: 14px;
}

.footer-privacy a {
  font-size: 0.68rem;
  color: rgba(255, 253, 249, 0.5);
  transition: color var(--transition);
}

.footer-privacy a:hover {
  color: var(--white);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: rgba(255, 253, 249, 0.85);
  padding: 16px 20px;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border-top: 1px solid rgba(255, 253, 249, 0.1);
}

.cookie-popup.active {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text p {
  font-size: 0.76rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 18px;
  font-size: 0.74rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: var(--text-dark);
}

.cookie-accept:hover {
  background: var(--accent-dark);
}

.cookie-decline {
  background: transparent;
  color: rgba(255, 253, 249, 0.7);
  border: 1px solid rgba(255, 253, 249, 0.2);
}

.cookie-decline:hover {
  border-color: rgba(255, 253, 249, 0.5);
  color: var(--white);
}

.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 30px) 20px 30px;
}

.status-content {
  max-width: 480px;
}

.status-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.status-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.status-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 22px;
}

.policy-content {
  padding: calc(var(--header-h) + 30px) 0 50px;
}

.policy-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.policy-wrap h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.policy-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 30px;
  display: block;
}

.policy-wrap h2 {
  font-size: 1.4rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.policy-wrap h3 {
  font-size: 1.15rem;
  margin-top: 20px;
  margin-bottom: 8px;
}

.policy-wrap p {
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 12px;
}

.policy-wrap ul,
.policy-wrap ol {
  margin: 10px 0 16px 20px;
}

.policy-wrap ul {
  list-style: disc;
}

.policy-wrap ol {
  list-style: decimal;
}

.policy-wrap li {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 6px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  text-align: center;
  padding: 22px 14px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px var(--shadow);
}

.about-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.about-text h2 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.about-text p {
  font-size: 0.85rem;
  line-height: 1.75;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg-cream);
}

.faq-question i {
  font-size: 0.7rem;
  color: var(--primary);
  transition: transform var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
  padding: 0 20px 16px;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-image img {
    height: 280px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .feature-grid,
  .product-grid,
  .guide-cards,
  .insight-cards,
  .team-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-story-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-grid.reverse {
    direction: ltr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero {
    padding: calc(var(--header-h) + 30px) 0 40px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .section {
    padding: 40px 0;
  }

  .feature-grid,
  .product-grid,
  .guide-cards,
  .insight-cards,
  .team-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .tips-list {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-privacy {
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image img {
    height: 220px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    padding: 30px 20px;
  }

  .logo {
    font-size: 1.1rem;
  }
}

@media (max-width: 380px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 12px;
  }

  .hero {
    padding: calc(var(--header-h) + 20px) 0 30px;
  }

  .section {
    padding: 32px 0;
  }

  .hero-image img {
    height: 180px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 200px;
    margin: 0 auto;
  }

  .header-inner {
    padding: 0 12px;
  }

  .map-wrap {
    height: 220px;
  }
}
