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

:root {
  --primary: #1e3a5f;
  --secondary: #e8927c;
  --accent: #f4b860;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover { color: var(--accent); }

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 15px 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px var(--shadow);
}

.cookie-banner.show { display: block; }

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

.cookie-content p {
  margin: 0;
  font-size: 14px;
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-btn {
  background: var(--secondary);
  color: var(--dark);
  border: none;
  padding: 8px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: var(--accent);
  color: var(--white);
}

.header {
  background: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  z-index: 1000;
}

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

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

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

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  margin: 3px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

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

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after { width: 100%; }

.hero {
  background: linear-gradient(135deg, #1a2332 0%, #2d5a7b 50%, #1a3a52 100%);
  color: var(--white);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

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

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -80px;
  left: -80px;
  animation-delay: 5s;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--secondary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 30px) scale(1.05); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 162, 97, 0.15);
  border: 1px solid rgba(244, 162, 97, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 20px;
}

.hero-badge i {
  font-size: 14px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  color: var(--white);
  line-height: 1.2;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-feature-item i {
  color: var(--secondary);
  font-size: 16px;
}

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

.btn-large {
  padding: 14px 35px;
  font-size: 15px;
}

.btn-outline {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  animation: slideInRight 0.6s ease-out;
}

.hero-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(244, 162, 97, 0.5);
}

.hero-card-1 { animation-delay: 0.1s; }
.hero-card-2 { animation-delay: 0.2s; }
.hero-card-3 { animation-delay: 0.3s; }

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.hero-card-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.hero-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}

.btn-primary, .btn-secondary, .btn-product, .btn-submit {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-product {
  background: var(--primary);
  color: var(--white);
  width: 100%;
}

.btn-product:hover {
  background: var(--accent);
}

.btn-submit {
  background: var(--primary);
  color: var(--white);
  width: 100%;
  font-size: 15px;
}

.btn-submit:hover {
  background: var(--accent);
}

.energy-foundation {
  padding: 60px 0;
  background: var(--light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-header h2 { color: var(--primary); }

.section-header p {
  color: var(--gray);
  font-size: 1rem;
}

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

.foundation-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px var(--shadow);
  transition: transform 0.3s ease;
}

.foundation-card:hover { transform: translateY(-5px); }

.foundation-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.foundation-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.daily-rhythm {
  padding: 60px 0;
}

.rhythm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.rhythm-image img {
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow);
}

.rhythm-text h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.rhythm-text p {
  color: var(--gray);
  margin-bottom: 20px;
}

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

.rhythm-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.rhythm-list i {
  color: var(--secondary);
  font-size: 1rem;
}

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

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

.product-card {
  background: var(--white);
  padding: 35px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px var(--shadow);
  transition: transform 0.3s ease;
}

.product-card:hover { transform: translateY(-5px); }

.product-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.product-icon i {
  font-size: 2rem;
  color: var(--white);
}

.product-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.product-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.approach-section {
  padding: 60px 0;
}

.approach-content {
  max-width: 900px;
  margin: 0 auto;
}

.approach-content h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
}

.approach-content > p {
  text-align: center;
  color: var(--gray);
  margin-bottom: 40px;
}

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

.approach-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.approach-item i {
  font-size: 1.8rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.approach-item h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.approach-item p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a2332 0%, #2d5a7b 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 162, 97, 0.15);
  border: 1px solid rgba(244, 162, 97, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 20px;
}

.cta-badge i {
  font-size: 14px;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  opacity: 0.9;
  color: var(--white);
  line-height: 1.7;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.cta-feature i {
  color: var(--secondary);
  font-size: 16px;
}

.btn-cta {
  display: inline-block;
  padding: 14px 40px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 162, 97, 0.3);
}

.cta-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.cta-stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(244, 162, 97, 0.5);
}

.cta-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 10px;
}

.cta-stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
}

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

.page-hero h1 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin: 0;
}

.content-section {
  padding: 60px 0;
}

.content-layout {
  max-width: 900px;
  margin: 0 auto;
}

.content-main h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.content-main p {
  color: var(--gray);
  margin-bottom: 20px;
}

.content-main img {
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow);
}

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

.strategies-section h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

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

.strategy-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: transform 0.3s ease;
}

.strategy-card:hover { transform: translateY(-5px); }

.strategy-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.strategy-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.strategy-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.implementation-section {
  padding: 60px 0;
}

.implementation-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.implementation-box h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.implementation-box p {
  color: var(--gray);
  margin-bottom: 20px;
}

.disclaimer-section {
  padding: 40px 0;
  background: #fff8f0;
}

.disclaimer-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 25px;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
}

.disclaimer-box p {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
  line-height: 1.7;
}

.routine-intro {
  padding: 60px 0;
}

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

.intro-text h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.intro-text p {
  color: var(--gray);
  margin-bottom: 15px;
}

.intro-image img {
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow);
}

.routine-components {
  padding: 60px 0;
  background: var(--light);
}

.routine-components h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

.components-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.component-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
}

.component-item i {
  font-size: 2rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.component-content h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.component-content p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.building-routine {
  padding: 60px 0;
}

.building-content {
  max-width: 900px;
  margin: 0 auto;
}

.building-content h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
}

.building-content > p {
  text-align: center;
  color: var(--gray);
  margin-bottom: 40px;
}

.building-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.step-box {
  background: var(--light);
  padding: 25px;
  border-radius: 8px;
  border-top: 3px solid var(--secondary);
}

.step-box h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.step-box p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.building-content .btn-primary {
  display: block;
  margin: 0 auto;
  max-width: 350px;
}

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

.contact-hero h1 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin: 0;
}

.contact-main {
  padding: 60px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.contact-form-wrapper h2 {
  color: var(--primary);
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

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

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
}

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

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

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-box {
  background: var(--light);
  padding: 30px;
  border-radius: 8px;
}

.contact-info-box h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

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

.info-item:last-child { margin-bottom: 0; }

.info-item i {
  font-size: 1.3rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.info-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 3px;
  font-size: 14px;
}

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

.contact-hours {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
}

.contact-hours h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-hours p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

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

.map-section h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
}

.error-main, .thankyou-main {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section, .thankyou-section {
  padding: 60px 0;
}

.error-content, .thankyou-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-number {
  font-size: 6rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 20px;
}

.error-content h1, .thankyou-content h1 {
  color: var(--primary);
  margin-bottom: 15px;
}

.error-content p, .thankyou-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

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

.thankyou-icon {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.policy-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a52 100%);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}

.policy-hero h1 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.policy-hero p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

.policy-content {
  padding: 60px 0;
}

.policy-text {
  max-width: 900px;
  margin: 0 auto;
}

.policy-text h2 {
  color: var(--primary);
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.policy-text h3 {
  color: var(--primary);
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.policy-text h4 {
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 10px;
}

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

.policy-text ul {
  margin: 15px 0 15px 25px;
  color: var(--gray);
}

.policy-text li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.policy-text strong {
  color: var(--dark);
  font-weight: 600;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 25px 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  font-size: 13px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover { opacity: 1; }

@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }
  
  .nav-toggle { display: flex; }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px var(--shadow);
    display: none;
    gap: 15px;
    z-index: 999;
  }
  
  .nav-menu.active { display: flex; }
  
  .hero {
    padding: 70px 0 80px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.05rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta a {
    width: 100%;
    text-align: center;
  }
  
  .hero-shape-1,
  .hero-shape-2 {
    width: 250px;
    height: 250px;
  }
  
  .hero-shape-3 {
    width: 150px;
    height: 150px;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-visual {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .cta-stat {
    padding: 20px;
  }
  
  .cta-stat-number {
    font-size: 2.2rem;
  }
  
  .cta-stat-label {
    font-size: 13px;
  }
  
  .rhythm-layout,
  .intro-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .intro-layout .intro-image {
    order: -1;
  }
  
  .foundation-grid,
  .products-grid,
  .strategies-grid,
  .approach-features,
  .building-steps {
    grid-template-columns: 1fr;
  }
  
  .error-number {
    font-size: 4rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  
  .hero {
    padding: 50px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .hero-features {
    gap: 10px;
  }
  
  .hero-feature-item {
    font-size: 14px;
  }
  
  .hero-card {
    padding: 20px;
  }
  
  .hero-card h3 {
    font-size: 1.15rem;
  }
  
  .cta-visual {
    grid-template-columns: 1fr;
  }
  
  .cta-stat {
    padding: 25px;
  }
  
  .cta-stat-number {
    font-size: 2.5rem;
  }
  
  .btn-primary, .btn-secondary, .btn-product, .btn-submit {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .foundation-card,
  .product-card,
  .strategy-card {
    padding: 20px;
  }
  
  .error-actions, .thankyou-actions {
    flex-direction: column;
  }
  
  .error-actions a, .thankyou-actions a {
    width: 100%;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 13px;
    line-height: 1.5;
  }
  
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 0.95rem; }
  h4 { font-size: 0.85rem; }
  
  .container {
    padding: 0 12px;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .nav-menu {
    padding: 15px;
  }
  
  .nav-menu a {
    font-size: 13px;
  }
  
  .hero {
    padding: 40px 0 50px;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .hero-badge {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .hero-badge i {
    font-size: 12px;
  }
  
  .hero-feature-item {
    font-size: 12px;
  }
  
  .hero-feature-item i {
    font-size: 13px;
  }
  
  .btn-large,
  .btn-outline {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-cta {
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .hero-card {
    padding: 18px;
  }
  
  .hero-card-icon {
    width: 45px;
    height: 45px;
  }
  
  .hero-card-icon i {
    font-size: 1.3rem;
  }
  
  .hero-card h3 {
    font-size: 1rem;
  }
  
  .hero-card p {
    font-size: 12px;
  }
  
  .section-header h2 {
    font-size: 1.2rem;
  }
  
  .section-header p {
    font-size: 13px;
  }
  
  .foundation-card,
  .product-card,
  .strategy-card {
    padding: 18px;
  }
  
  .foundation-card i {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .foundation-card h3,
  .product-card h3,
  .strategy-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .foundation-card p,
  .product-card p,
  .strategy-card p {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .product-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }
  
  .product-icon i {
    font-size: 1.5rem;
  }
  
  .product-price {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .btn-product,
  .btn-submit {
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .rhythm-list li {
    font-size: 12px;
  }
  
  .rhythm-list i {
    font-size: 14px;
  }
  
  .approach-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .approach-item i {
    font-size: 1.4rem;
  }
  
  .approach-item h4 {
    font-size: 0.9rem;
  }
  
  .approach-item p {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-grid {
    gap: 25px;
  }
  
  .cta-badge {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .cta-content h2 {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  
  .cta-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .cta-feature {
    font-size: 12px;
  }
  
  .cta-feature i {
    font-size: 14px;
  }
  
  .cta-stat {
    padding: 20px;
  }
  
  .cta-stat-number {
    font-size: 2.2rem;
  }
  
  .cta-stat-label {
    font-size: 12px;
  }
  
  .component-item {
    flex-direction: column;
    padding: 18px;
    gap: 10px;
  }
  
  .component-item i {
    font-size: 1.6rem;
  }
  
  .component-content h3 {
    font-size: 0.95rem;
  }
  
  .component-content p {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .step-box {
    padding: 18px;
  }
  
  .step-box h4 {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  
  .step-box p {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .strategy-number {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  
  .implementation-box {
    padding: 18px;
  }
  
  .implementation-box h2 {
    font-size: 1.2rem;
  }
  
  .implementation-box p {
    font-size: 12px;
    line-height: 1.6;
  }
  
  .disclaimer-box {
    padding: 18px;
  }
  
  .disclaimer-box p {
    font-size: 11px;
    line-height: 1.6;
  }
  
  .contact-layout {
    gap: 30px;
  }
  
  .contact-form-wrapper h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .contact-form {
    gap: 18px;
  }
  
  .form-group label {
    font-size: 12px;
    margin-bottom: 5px;
  }
  
  .form-group input,
  .form-group textarea {
    font-size: 13px;
    padding: 10px;
  }
  
  .checkbox-label {
    font-size: 11px;
  }
  
  .contact-info-box,
  .contact-hours {
    padding: 18px;
  }
  
  .contact-info-box h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .info-item {
    gap: 12px;
    margin-bottom: 15px;
  }
  
  .info-item i {
    font-size: 1.1rem;
  }
  
  .info-item strong {
    font-size: 12px;
  }
  
  .info-item p {
    font-size: 12px;
  }
  
  .contact-hours h4 {
    font-size: 0.95rem;
  }
  
  .contact-hours p {
    font-size: 12px;
  }
  
  .error-number {
    font-size: 3.5rem;
  }
  
  .error-content h1,
  .thankyou-content h1 {
    font-size: 1.3rem;
  }
  
  .error-content p,
  .thankyou-content p {
    font-size: 12px;
  }
  
  .thankyou-icon {
    font-size: 3rem;
  }
  
  .policy-hero h1 {
    font-size: 1.4rem;
  }
  
  .policy-hero p {
    font-size: 12px;
  }
  
  .policy-text h2 {
    font-size: 1.2rem;
    margin-top: 30px;
  }
  
  .policy-text h3 {
    font-size: 1rem;
    margin-top: 20px;
  }
  
  .policy-text h4 {
    font-size: 0.9rem;
  }
  
  .policy-text p,
  .policy-text li {
    font-size: 12px;
    line-height: 1.6;
  }
  
  .policy-text ul {
    margin-left: 20px;
  }
  
  .footer {
    padding: 20px 0;
  }
  
  .footer-content {
    gap: 12px;
  }
  
  .footer-info p {
    font-size: 11px;
  }
  
  .footer-links {
    gap: 12px;
  }
  
  .footer-links a {
    font-size: 11px;
  }
}
