@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #3d5a80;
  --primary-dark: #1a2744;
  --primary-light: #5b7faa;
  --accent: #d4856b;
  --accent-light: #e8c4b8;
  --accent-dark: #b86a50;
  --bg: #faf7f2;
  --bg-alt: #f0ebe3;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 0.9rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--primary-dark);
}

h1 { font-size: 2.4rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 0.8rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-title {
  margin-bottom: 0.8rem;
}

.section-desc {
  color: var(--text-light);
  max-width: 560px;
  font-size: 0.88rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(0);
}

header.header-hidden {
  transform: translateY(-100%);
}

header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

header .header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61, 90, 128, 0.08);
  z-index: -1;
  transition: all var(--transition);
}

header.scrolled .header-bg {
  background: rgba(250, 247, 242, 0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo i {
  color: var(--accent);
  font-size: 1.1rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-desktop a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.2rem 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover {
  color: var(--primary-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  transition: all 0.35s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 600;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav a:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav a:hover {
  color: var(--accent-light);
}

.hero {
  padding: 7rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-light);
  border-radius: var(--radius);
  z-index: -1;
}

.hero-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--white);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-badge i {
  color: var(--accent);
}

section {
  padding: 3.5rem 0;
}

section.alt-bg {
  background: var(--bg-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.1rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.82rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
}

.pillar-top {
  padding: 1.8rem 1.2rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
}

.pillar-top i {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--accent-light);
}

.pillar-top h3 {
  color: var(--white);
  font-size: 1.1rem;
}

.pillar-body {
  padding: 1.2rem;
}

.pillar-body p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.pillar-body ul {
  margin-top: 0.6rem;
}

.pillar-body ul li {
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.pillar-body ul li i {
  color: var(--accent);
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.image-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.image-text-section.reverse {
  direction: rtl;
}

.image-text-section.reverse > * {
  direction: ltr;
}

.image-text-img {
  border-radius: var(--radius);
  overflow: hidden;
}

.image-text-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-text-content h2 {
  margin-bottom: 0.8rem;
}

.image-text-content p {
  color: var(--text-light);
  font-size: 0.88rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  text-align: center;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-icon-wrap {
  padding: 2rem 1.2rem 1rem;
  background: linear-gradient(135deg, var(--bg-alt), var(--bg));
}

.product-icon-wrap i {
  font-size: 2.5rem;
  color: var(--accent);
}

.product-info {
  padding: 1.2rem;
}

.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.product-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.tips-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: var(--white);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.tip-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.tip-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.tip-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
  border-radius: var(--radius);
  margin: 0 1.2rem;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 0.9rem;
}

.cta-section .btn-primary {
  background: var(--accent);
}

.cta-section .btn-primary:hover {
  background: var(--accent-dark);
}

.sub-hero {
  padding: 6.5rem 0 2.5rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
}

.sub-hero h1 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.sub-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: var(--accent-light);
}

.content-section {
  padding: 3rem 0;
}

.content-section h2 {
  margin-bottom: 1rem;
}

.content-section h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.content-section p {
  color: var(--text-light);
  font-size: 0.88rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.info-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-card {
  background: var(--white);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  transition: transform var(--transition);
}

.info-card:hover {
  transform: translateY(-2px);
}

.info-card i {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.info-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-light);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.1rem;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}

.timeline-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.timeline-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-card i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(212, 133, 107, 0.15);
}

.contact-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
}

.contact-detail i {
  color: var(--accent-light);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.contact-form-side {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-side h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid #e0ddd8;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: border-color var(--transition);
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-light);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.map-container {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 280px;
  border: none;
}

.thank-you-wrap,
.error-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem 1.2rem;
}

.thank-you-wrap i,
.error-wrap i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.thank-you-wrap h1,
.error-wrap h1 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.thank-you-wrap p,
.error-wrap p {
  color: var(--text-light);
  font-size: 0.9rem;
  max-width: 440px;
  margin: 0 auto 1.5rem;
}

.error-wrap h1 {
  font-size: 4rem;
  color: var(--accent);
}

.error-wrap h2 {
  margin-bottom: 0.5rem;
}

.policy-content {
  padding: 3rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.policy-content ul {
  margin: 0.5rem 0 1rem 1.2rem;
  list-style: disc;
}

.policy-content ul li {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 1.5rem 0 1rem;
  font-size: 0.75rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-copy {
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--white);
  padding: 1rem 1.2rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.78rem;
  margin: 0;
  color: rgba(255,255,255,0.85);
  flex: 1;
}

.cookie-inner a {
  color: var(--accent-light);
}

.cookie-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btns button {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--accent-dark);
}

.cookie-decline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-decline:hover {
  background: rgba(255,255,255,0.2);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
}

.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-story-text h2 {
  margin-bottom: 0.8rem;
}

.about-story-text p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.products-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.sleep-phases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.phase-card {
  background: var(--white);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--accent);
}

.phase-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.phase-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

.routine-steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.routine-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.step-time {
  background: var(--accent);
  color: var(--white);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.routine-step h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.routine-step p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

.full-height-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }

  .hero-grid,
  .image-text-section,
  .content-grid,
  .about-story {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .image-text-section.reverse { direction: ltr; }

  .features-grid,
  .pillars-grid,
  .about-values {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid { grid-template-columns: 1fr 1fr; }
  .tips-list { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .sleep-phases { grid-template-columns: 1fr; }

  h1 { font-size: 2rem; }
  .hero-content h1 { font-size: 2.2rem; }
}

@media (max-width: 600px) {
  html { font-size: 15px; }

  .features-grid,
  .pillars-grid,
  .products-grid,
  .about-values {
    grid-template-columns: 1fr;
  }

  .stats-row { grid-template-columns: 1fr 1fr; }

  .hero { padding: 5.5rem 0 2.5rem; }
  .sub-hero { padding: 5.5rem 0 2rem; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-image img { height: 240px; }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.5rem; }

  section { padding: 2.5rem 0; }

  .cta-section { margin: 0; border-radius: 0; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links { justify-content: center; }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-btns { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  html { font-size: 14px; }
  .container { padding: 0 0.8rem; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
