* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --accent: #f59e0b;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray: #64748b;
  --light: #f1f5f9;
  --white: #ffffff;
  --success: #10b981;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 15px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content p {
  margin: 0;
  font-size: 13px;
  flex: 1;
  min-width: 200px;
}

.privacy-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.privacy-actions a {
  color: var(--primary);
  font-size: 13px;
  text-decoration: underline;
}

.privacy-actions button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.privacy-actions button:hover {
  background: var(--primary-dark);
}

.header {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.hidden {
  transform: translateY(-100%);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-secondary:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  text-align: center;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-primary-large {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  text-align: center;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
  background: var(--primary-dark);
}

section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.section-header p {
  font-size: 15px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.hero-mega {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -50px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: -50px;
  animation-delay: 5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: 30%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-mega-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-mega-content p {
  font-size: 17px;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.7;
}

.hero-stats-inline {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.stat-inline {
  display: flex;
  flex-direction: column;
}

.stat-inline strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-inline span {
  font-size: 13px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-mega-visual {
  position: relative;
  min-height: 500px;
}

.hero-mega-visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-card {
  position: absolute;
  background: var(--white);
  color: var(--dark);
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: cardFloat 3s infinite ease-in-out;
}

.hero-card i {
  font-size: 28px;
  color: var(--primary);
}

.hero-card span {
  font-size: 14px;
  font-weight: 600;
}

.hero-card-1 {
  top: 20px;
  left: -30px;
  animation-delay: 0s;
}

.hero-card-2 {
  top: 50%;
  right: -30px;
  animation-delay: 1s;
}

.hero-card-3 {
  bottom: 30px;
  left: -20px;
  animation-delay: 2s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.services {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card i {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.about-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-text p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.metric-box {
  background: var(--light);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.metric-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.metric-label {
  font-size: 12px;
  color: var(--gray);
}

.process {
  background: var(--light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.step {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: rgb(48, 48, 101);
  opacity: 0.7;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.step p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.stats {
  background: var(--dark);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  opacity: 0.9;
}

.portfolio {
  background: var(--light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.portfolio-item {
  background: var(--white);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.portfolio-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.portfolio-icon i {
  font-size: 28px;
  color: var(--white);
}

.portfolio-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.portfolio-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.portfolio-result {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--success);
}

.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--light);
  padding: 35px;
  border-radius: 12px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: var(--primary);
  opacity: 0.2;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  font-size: 15px;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray);
}

.methodology {
  background: var(--light);
}

.methodology-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.methodology-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.methodology-content > p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.philosophy-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.philosophy-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.point-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  min-width: 50px;
}

.point-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.point-content p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.methodology-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.final-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.final-cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.final-cta-content > p {
  font-size: 16px;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.7;
}

.cta-note {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 20px;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 30px 0;
}

.footer-content {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.copyright {
  font-size: 13px;
  opacity: 0.7;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 15px;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.content-types {
  background: var(--light);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.type-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.type-card i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}

.type-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.type-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-card.featured {
  border-color: var(--primary);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.product-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light);
}

.product-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);
}

.product-features {
  list-style: none;
  margin-bottom: 25px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--dark);
}

.product-features i {
  color: var(--success);
  font-size: 16px;
}

.product-card .btn-primary,
.product-card .btn-secondary {
  width: 100%;
  text-align: center;
}

.tips-intro {
  background: var(--light);
}

.intro-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.intro-text p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

.intro-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.tip-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tip-icon {
  width: 50px;
  height: 50px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.tip-icon i {
  font-size: 24px;
  color: var(--primary);
}

.tip-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.tip-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.content-formats {
  background: var(--light);
}

.formats-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.format-item {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}

.format-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.format-item h3 i {
  color: var(--primary);
}

.format-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.practices-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.practice-column h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark);
}

.practice-list {
  list-style: none;
}

.practice-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--gray);
}

.practice-list i {
  color: var(--primary);
  margin-top: 3px;
}

.contact-section {
  background: var(--light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.contact-info > p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 15px;
}

.info-item i {
  font-size: 24px;
  color: var(--primary);
  margin-top: 3px;
}

.info-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark);
}

.info-item p {
  font-size: 13px;
  color: var(--gray);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--light);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Sora', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  margin: 20px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form button {
  width: 100%;
}

.map-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: var(--dark);
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thankyou-section,
.error-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
  background: var(--white);
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.success-icon i {
  font-size: 40px;
  color: var(--white);
}

.thankyou-content h1,
.error-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.thankyou-content p,
.error-content p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.thankyou-info {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid var(--light);
}

.error-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 100px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.error-suggestions {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid var(--light);
  text-align: left;
}

.error-suggestions h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.error-suggestions ul {
  list-style: none;
}

.error-suggestions li {
  margin-bottom: 10px;
}

.error-suggestions a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
  transition: color 0.3s ease;
}

.error-suggestions a:hover {
  color: var(--primary);
}

.error-suggestions i {
  font-size: 12px;
}

.policy-section {
  padding: 60px 0;
  background: var(--light);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.policy-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.policy-date {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light);
}

.policy-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 15px;
  color: var(--dark);
}

.policy-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
  color: var(--dark);
}

.policy-content p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

.policy-content ul,
.policy-content ol {
  margin: 15px 0 15px 25px;
}

.policy-content li {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    gap: 15px;
  }

  .nav.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  section {
    padding: 50px 0;
  }

  .hero-mega {
    padding: 60px 0 50px;
  }

  .hero-mega-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-mega-content h1 {
    font-size: 36px;
  }

  .hero-mega-content p {
    font-size: 16px;
  }

  .hero-stats-inline {
    gap: 20px;
  }

  .stat-inline strong {
    font-size: 24px;
  }

  .hero-mega-visual {
    height: 400px;
  }

  .hero-card {
    padding: 15px 20px;
    position: static;
    margin-bottom: 15px;
  }

  .hero-card i {
    font-size: 24px;
  }

  .hero-card span {
    font-size: 12px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .about-wrapper,
  .intro-wrapper,
  .contact-wrapper,
  .methodology-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-image,
  .intro-image,
  .methodology-image {
    order: -1;
  }

  .about-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .services-grid,
  .types-grid,
  .tips-grid,
  .formats-list,
  .practices-wrapper,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stat-number {
    font-size: 40px;
  }

  .final-cta {
    padding: 60px 0;
  }

  .final-cta-content h2 {
    font-size: 32px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .policy-content {
    padding: 40px 30px;
  }

  .policy-content h1 {
    font-size: 30px;
  }

  .policy-content h2 {
    font-size: 22px;
  }

  .thankyou-content,
  .error-content {
    padding: 40px 30px;
  }

  .error-number {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  body {
    font-size: 13px;
  }

  .logo {
    font-size: 18px;
  }

  section {
    padding: 40px 0;
  }

  .hero-mega {
    padding: 50px 0 40px;
  }

  .hero-mega-content h1 {
    font-size: 28px;
  }

  .hero-mega-content p {
    font-size: 15px;
  }

  .hero-stats-inline {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .stat-inline strong {
    font-size: 22px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-mega-visual {
    height: 300px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
  }

  .privacy-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .privacy-content p {
    font-size: 12px;
    min-width: 100%;
  }

  .privacy-actions {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .privacy-actions a {
    font-size: 12px;
  }

  .privacy-actions button {
    font-size: 12px;
    padding: 7px 18px;
  }

  .services-grid,
  .types-grid,
  .tips-grid,
  .formats-list,
  .practices-wrapper,
  .portfolio-grid,
  .testimonials-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card,
  .type-card,
  .tip-card,
  .portfolio-item,
  .testimonial-card {
    padding: 25px;
  }

  .product-card {
    padding: 25px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .step {
    padding: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .about-metrics {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .metric-box {
    padding: 18px;
  }

  .metric-number {
    font-size: 24px;
  }

  .about-text h2,
  .intro-text h2,
  .methodology-content h2,
  .contact-info h2 {
    font-size: 26px;
  }

  .philosophy-points {
    gap: 20px;
  }

  .point-number {
    font-size: 28px;
    min-width: 40px;
  }

  .point-content h4 {
    font-size: 16px;
  }

  .final-cta {
    padding: 50px 0;
  }

  .final-cta-content h2 {
    font-size: 26px;
  }

  .final-cta-content > p {
    font-size: 15px;
  }

  .btn-primary-large {
    width: 100%;
    padding: 14px 30px;
    font-size: 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .copyright {
    font-size: 12px;
  }

  .page-hero {
    padding: 50px 0;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  .page-hero p {
    font-size: 14px;
  }

  .contact-wrapper {
    gap: 30px;
  }

  .contact-form-wrapper {
    padding: 30px 25px;
  }

  .contact-form h3 {
    font-size: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 11px 14px;
    font-size: 13px;
  }

  .checkbox-label {
    font-size: 12px;
  }

  .policy-content {
    padding: 30px 20px;
  }

  .policy-content h1 {
    font-size: 26px;
  }

  .policy-content h2 {
    font-size: 20px;
  }

  .policy-content h3 {
    font-size: 16px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 13px;
  }

  .thankyou-content,
  .error-content {
    padding: 35px 25px;
  }

  .thankyou-content h1,
  .error-content h1 {
    font-size: 26px;
  }

  .thankyou-content p,
  .error-content p {
    font-size: 13px;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
    gap: 12px;
  }

  .thankyou-actions a,
  .error-actions a {
    width: 100%;
  }

  .error-number {
    font-size: 70px;
  }

  .error-suggestions h3 {
    font-size: 16px;
  }

  .error-suggestions a {
    font-size: 13px;
  }

  .success-icon {
    width: 70px;
    height: 70px;
  }

  .success-icon i {
    font-size: 35px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 12px;
  }

  body {
    font-size: 12px;
  }

  .logo {
    font-size: 16px;
  }

  .header {
    padding: 12px 0;
  }

  section {
    padding: 35px 0;
  }

  .hero-mega {
    padding: 40px 0 35px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 16px;
  }

  .hero-mega-content h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .hero-mega-content p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .hero-stats-inline {
    gap: 12px;
    margin-bottom: 25px;
  }

  .stat-inline strong {
    font-size: 20px;
  }

  .stat-inline span {
    font-size: 12px;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 10px 24px;
    font-size: 13px;
  }

  .hero-mega-visual {
    height: 250px;
  }

  .hero-card {
    padding: 12px 16px;
    gap: 12px;
  }

  .hero-card i {
    font-size: 20px;
  }

  .hero-card span {
    font-size: 11px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .section-header p {
    font-size: 13px;
  }

  .privacy-popup {
    padding: 12px 0;
  }

  .privacy-content {
    padding: 0 12px;
    gap: 12px;
  }

  .privacy-content p {
    font-size: 11px;
  }

  .privacy-actions {
    gap: 8px;
  }

  .privacy-actions a {
    font-size: 11px;
  }

  .privacy-actions button {
    font-size: 11px;
    padding: 6px 16px;
  }

  .service-card,
  .type-card,
  .tip-card,
  .portfolio-item,
  .testimonial-card,
  .step {
    padding: 20px;
  }

  .service-card i,
  .type-card i {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .service-card h3,
  .type-card h3,
  .tip-card h3,
  .step h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .service-card p,
  .type-card p,
  .tip-card p,
  .step p {
    font-size: 12px;
  }

  .product-card {
    padding: 20px;
  }

  .product-header h3 {
    font-size: 20px;
  }

  .price {
    font-size: 36px;
  }

  .price span {
    font-size: 14px;
  }

  .product-features li {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .product-features i {
    font-size: 14px;
  }

  .badge {
    font-size: 11px;
    padding: 4px 12px;
  }

  .portfolio-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .portfolio-icon i {
    font-size: 24px;
  }

  .portfolio-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .portfolio-item p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .portfolio-result {
    font-size: 15px;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .quote-icon {
    font-size: 35px;
  }

  .testimonial-card p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .testimonial-author strong {
    font-size: 14px;
  }

  .testimonial-author span {
    font-size: 12px;
  }

  .step-number {
    font-size: 32px;
  }

  .stats-grid {
    gap: 18px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-item p {
    font-size: 13px;
  }

  .about-metrics {
    gap: 12px;
  }

  .metric-box {
    padding: 16px;
  }

  .metric-number {
    font-size: 22px;
  }

  .metric-label {
    font-size: 11px;
  }

  .about-text h2,
  .intro-text h2,
  .methodology-content h2,
  .contact-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .about-text p,
  .intro-text p,
  .methodology-content > p,
  .contact-info > p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .image-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .philosophy-points {
    gap: 18px;
  }

  .philosophy-point {
    gap: 15px;
  }

  .point-number {
    font-size: 26px;
    min-width: 35px;
  }

  .point-content h4 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .point-content p {
    font-size: 12px;
  }

  .tip-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 12px;
  }

  .tip-icon i {
    font-size: 22px;
  }

  .format-item {
    padding: 18px;
  }

  .format-item h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .format-item p {
    font-size: 12px;
  }

  .practice-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .practice-list li {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .final-cta {
    padding: 40px 0;
  }

  .cta-label {
    font-size: 11px;
    padding: 6px 16px;
    margin-bottom: 15px;
  }

  .final-cta-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .final-cta-content > p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .btn-primary-large {
    padding: 12px 28px;
    font-size: 14px;
  }

  .cta-note {
    font-size: 12px;
    margin-top: 15px;
  }

  .footer {
    padding: 25px 0;
  }

  .footer-links {
    gap: 10px;
    margin-bottom: 12px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .copyright {
    font-size: 11px;
  }

  .page-hero {
    padding: 40px 0;
  }

  .page-hero h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .page-hero p {
    font-size: 13px;
  }

  .contact-wrapper {
    gap: 25px;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .contact-form h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 12px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .checkbox-group {
    margin: 18px 0;
  }

  .checkbox-label {
    font-size: 11px;
    gap: 8px;
  }

  .info-item {
    gap: 12px;
  }

  .info-item i {
    font-size: 20px;
  }

  .info-item h3 {
    font-size: 15px;
  }

  .info-item p {
    font-size: 12px;
  }

  .map-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .policy-content {
    padding: 25px 15px;
  }

  .policy-content h1 {
    font-size: 24px;
  }

  .policy-date {
    font-size: 12px;
    margin-bottom: 25px;
    padding-bottom: 18px;
  }

  .policy-content h2 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 12px;
  }

  .policy-content h3 {
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 12px;
    margin-bottom: 12px;
    word-break: break-all;
  }

  .policy-content ul,
  .policy-content ol {
    margin: 12px 0 12px 20px;
  }

  .thankyou-content,
  .error-content {
    padding: 30px 20px;
  }

  .success-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .success-icon i {
    font-size: 30px;
  }

  .thankyou-content h1,
  .error-content h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .thankyou-content p,
  .error-content p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .thankyou-actions,
  .error-actions {
    gap: 10px;
    margin: 25px 0;
  }

  .thankyou-info,
  .error-suggestions {
    margin-top: 25px;
    padding-top: 20px;
  }

  .error-number {
    font-size: 60px;
    margin-bottom: 15px;
  }

  .error-suggestions h3 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .error-suggestions li {
    margin-bottom: 8px;
  }

  .error-suggestions a {
    font-size: 12px;
    gap: 8px;
  }

  .error-suggestions i {
    font-size: 11px;
  }
}
