:root {
  --primary: #7C3AED;
  --primary-light: #A78BFA;
  --primary-dark: #5B21B6;
  --primary-bg: #EDE9FE;
  --secondary: #14B8A6;
  --secondary-light: #99F6E4;
  --accent: #F59E0B;
  --dark: #1E1033;
  --dark-surface: #2D2145;
  --light: #FAF5FF;
  --white: #FFFFFF;
  --text: #2D2145;
  --text-light: #6B7280;
  --text-lighter: #9CA3AF;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(124, 58, 237, 0.08);
  --shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
  --shadow-lg: 0 8px 30px rgba(124, 58, 237, 0.15);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --header-height: 73px;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0.8rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
}

.btn-accent:hover {
  background: #e08e00;
  transform: translateY(-2px);
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-light {
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.accent-bar {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 0.5rem auto 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
  background: #00000066;
}

.site-header::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.site-header.scrolled {
  background: rgba(30, 16, 51, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  z-index: 1001;
}

.logo i {
  color: var(--accent);
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  padding: 0.2rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--white);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 1001;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(160deg, var(--dark) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu nav a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.mobile-menu.active nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active nav a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active nav a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active nav a:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu nav a:hover {
  color: var(--secondary);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, #2a1652 50%, var(--dark) 100%);
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 30%, rgba(20, 184, 166, 0.2) 0%, transparent 40%),
              radial-gradient(circle at 60% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 30%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(124, 58, 237, 0.3);
  border: 1px solid rgba(124, 58, 237, 0.5);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--primary-light);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--secondary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 480px;
}

.subpage-hero {
  min-height: auto;
  padding: 8rem 0 3rem;
}

.subpage-hero .container {
  display: block;
  text-align: center;
}

.subpage-hero .hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.subpage-hero .hero-content p {
  margin: 0 auto 1.5rem;
  max-width: 500px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  text-align: center;
  padding: 1.5rem 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 1rem;
}

.step-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.82rem;
}

.step-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon i {
  color: var(--white);
  font-size: 1.2rem;
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.featured-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.featured-text h2 {
  margin-bottom: 0.8rem;
}

.featured-text p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
}

.featured-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.featured-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.featured-list li i {
  color: var(--secondary);
  font-size: 0.9rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.testimonial-card blockquote {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  font-family: var(--font-heading);
}

.testimonial-author span {
  font-weight: 600;
  font-size: 0.82rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
  text-align: center;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.product-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-family: var(--font-heading);
}

.product-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.product-icon i {
  font-size: 1.4rem;
  color: var(--primary);
}

.product-card h3 {
  margin-bottom: 0.5rem;
}

.product-card .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0.8rem 0;
}

.product-card .price small {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
}

.product-features {
  text-align: left;
  margin: 1rem 0 1.5rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  padding: 0.3rem 0;
  color: var(--text-light);
}

.product-features li i {
  color: var(--secondary);
  font-size: 0.75rem;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.method-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.method-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.method-card i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.method-card h3 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.method-card p {
  color: var(--text-light);
  font-size: 0.82rem;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-story img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-story-text h2 {
  margin-bottom: 0.8rem;
}

.about-story-text p {
  color: var(--text-light);
  font-size: 0.88rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--light);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.value-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.value-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.82rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-form-wrap {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form-wrap h3 {
  margin-bottom: 0.3rem;
}

.contact-form-wrap > p {
  color: var(--text-light);
  font-size: 0.82rem;
  margin-bottom: 1.2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.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.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

.form-check label a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--light);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-info-card:hover {
  background: var(--primary-bg);
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: var(--white);
  font-size: 1rem;
}

.contact-info-card h4 {
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.contact-info-card p {
  color: var(--text-light);
  font-size: 0.8rem;
}

.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq-item {
  padding: 1.2rem;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}

.faq-item h4 {
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
}

.faq-item p {
  color: var(--text-light);
  font-size: 0.8rem;
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem 0 1rem;
  font-size: 0.78rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-brand i {
  color: var(--accent);
}

.footer-col p {
  max-width: 260px;
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-policy-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-policy-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  transition: color var(--transition);
}

.footer-policy-links a:hover {
  color: var(--secondary);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
}

.privacy-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 0;
  z-index: 200;
  transition: bottom 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.privacy-popup.visible {
  bottom: 0;
}

.privacy-popup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.privacy-popup-inner p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  flex: 1;
}

.privacy-popup-inner p a {
  color: var(--secondary);
  text-decoration: underline;
}

.privacy-popup-btns {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.page-fullheight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.2rem 3rem;
}

.page-fullheight i {
  font-size: 3.5rem;
  color: #6a2ad8;
  margin-bottom: 1.2rem;
}

.page-fullheight h1 {
  margin-bottom: 0.6rem;
}

.page-fullheight p {
  color: var(--text-light);
  font-size: 0.9rem;
  max-width: 450px;
  margin: 0 auto 1.5rem;
}

.policy-content {
  padding: 8rem 0 3rem;
}

.policy-content h1 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.policy-content h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.policy-content p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.policy-content ul {
  margin: 0.6rem 0 0.8rem 1.5rem;
  list-style: disc;
}

.policy-content ul li {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.policy-content .last-updated {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-lighter);
}

.about-stats {
  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.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-intro-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
}

.contact-theme-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-theme-header i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.contact-theme-header h2 {
  margin-bottom: 0.4rem;
}

.contact-theme-header p {
  color: var(--text-light);
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .hero .container {
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 3rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 320px;
    margin: 0 auto;
  }

  .subpage-hero {
    padding: 6rem 0 2.5rem;
  }

  .steps-grid,
  .services-grid,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .featured-grid,
  .about-story,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .methods-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-direction: column;
    gap: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-policy-links {
    justify-content: center;
  }

  .privacy-popup-inner {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 3rem 0;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 6rem 0 2.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-image img {
    max-width: 260px;
  }

  .contact-form-wrap {
    padding: 1.2rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .cta-section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 400px) {
  html {
    font-size: 12px;
  }

  .container {
    padding: 0 0.8rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .logo {
    font-size: 1rem;
  }
}
