:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #c9a227;
  --accent-light: #e8d5a3;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --cream: #fdfbf7;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-strong: rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow);
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

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

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--primary);
  color: var(--white) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 550px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero h1 span {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  line-height: 1.8;
}

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

.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--accent-light);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 450px;
  height: 500px;
}

.hero-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-image svg {
  width: 200px;
  height: 200px;
  fill: var(--white);
  opacity: 0.9;
}

.hero-float {
  position: absolute;
  background: var(--white);
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-float-1 {
  top: 30px;
  left: -50px;
}

.hero-float-2 {
  bottom: 50px;
  right: -40px;
}

.float-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.float-text {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Story Section */
.story-section {
  padding: 100px 0;
  background: var(--cream);
}

.story-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.story-intro h2 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.story-intro p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.story-content {
  display: flex;
  gap: 80px;
  align-items: center;
}

.story-image {
  flex: 1;
  position: relative;
}

.story-img-main {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #e8d5a3 0%, #c9a227 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-img-main svg {
  width: 150px;
  height: 150px;
  fill: var(--white);
}

.story-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
}

.story-text {
  flex: 1;
}

.story-text h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.story-text p {
  color: var(--text);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.story-list {
  list-style: none;
  margin-top: 30px;
}

.story-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.story-list-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.story-list-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--white);
}

/* Problem Section */
.problem-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: '?';
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-size: 400px;
  color: rgba(255, 255, 255, 0.03);
  font-weight: 700;
}

.problem-header {
  text-align: center;
  margin-bottom: 60px;
}

.problem-header .section-label {
  color: var(--accent);
}

.problem-header h2 {
  font-size: 2.4rem;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.problem-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  flex: 1 1 280px;
  max-width: 350px;
  transition: all 0.3s ease;
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.problem-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.problem-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

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

.problem-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.problem-cta {
  text-align: center;
  margin-top: 60px;
}

/* Insight Section */
.insight-section {
  padding: 100px 0;
  background: var(--off-white);
}

.insight-wrapper {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.insight-main {
  flex: 2;
}

.insight-main h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 30px;
  line-height: 1.3;
}

.insight-main p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 20px;
}

.insight-highlight {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 0 15px 15px 0;
}

.insight-highlight p {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
  font-style: italic;
}

.insight-sidebar {
  flex: 1;
  background: var(--primary);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insight-stat {
  text-align: center;
  margin-bottom: 30px;
}

.insight-stat:last-child {
  margin-bottom: 0;
}

.insight-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
}

.insight-stat-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-top: 5px;
}

/* Trust Section */
.trust-section {
  padding: 100px 0;
  background: var(--white);
}

.trust-header {
  text-align: center;
  margin-bottom: 60px;
}

.trust-header h2 {
  font-size: 2.4rem;
  color: var(--primary);
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.trust-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
}

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

.trust-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--accent);
}

.trust-item h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 2.4rem;
  color: var(--primary);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  flex: 1 1 350px;
  max-width: 400px;
  box-shadow: 0 10px 40px var(--shadow);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 25px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.2rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 3px;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.services-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px 30px;
  flex: 1 1 320px;
  max-width: 380px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-strong);
  border-color: var(--accent);
}

.service-card.selected {
  border-color: var(--accent);
  background: var(--white);
}

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

.service-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--accent);
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.service-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.service-price .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.service-price .currency {
  font-size: 1rem;
  color: var(--text-light);
}

/* Form Section */
.form-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--white), var(--primary));
}

.form-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.form-info {
  flex: 1;
  color: var(--white);
}

.form-info h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
}

.form-info p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.form-benefits {
  list-style: none;
  margin-top: 30px;
}

.form-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.form-benefits li::before {
  content: '→';
  color: var(--accent);
  font-size: 1.2rem;
}

.form-container {
  flex: 1;
  background: var(--white);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.form-container h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--primary);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background: var(--cream);
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-header h2 {
  font-size: 2.4rem;
  color: var(--primary);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.benefit-item {
  flex: 1 1 calc(50% - 20px);
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.benefit-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.benefit-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Urgency Section */
.urgency-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  text-align: center;
}

.urgency-content h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.urgency-content p {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-dark:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 2.4rem;
  color: var(--primary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 25px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.faq-question span {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-top: 20px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--accent);
}

.footer-col p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  font-size: 0.95rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-col ul a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
}

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

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

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

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
}

.sticky-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.5);
  transition: all 0.3s ease;
}

.sticky-cta a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-content p {
  flex: 1;
  font-size: 0.95rem;
  opacity: 0.9;
}

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

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--accent);
  color: var(--primary);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

/* Page Styles */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 150px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 80px 0;
}

.page-content h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 40px 0 20px;
}

.page-content h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin: 30px 0 15px;
}

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

.page-content ul, .page-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.page-content li {
  margin-bottom: 10px;
  color: var(--text);
}

/* About Page */
.about-section {
  padding: 80px 0;
}

.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-image {
  flex: 1;
  height: 400px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image svg {
  width: 150px;
  height: 150px;
  fill: var(--white);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.about-text p {
  color: var(--text);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.values-section {
  padding: 80px 0;
  background: var(--cream);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  flex: 1 1 280px;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-light);
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: flex;
  gap: 60px;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.contact-item h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--text-light);
}

.contact-map {
  flex: 1;
  height: 400px;
  background: var(--cream);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map svg {
  width: 100px;
  height: 100px;
  fill: var(--accent);
  opacity: 0.5;
}

/* Thanks Page */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding-top: 80px;
}

.thanks-content {
  text-align: center;
  max-width: 600px;
  padding: 60px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.thanks-content h1 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.thanks-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.thanks-service {
  background: var(--cream);
  padding: 20px;
  border-radius: 15px;
  margin: 30px 0;
}

.thanks-service p {
  margin: 0;
  color: var(--primary);
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .hero-image-wrapper {
    width: 350px;
    height: 400px;
  }

  .story-content,
  .insight-wrapper,
  .form-wrapper,
  .about-content,
  .contact-grid {
    flex-direction: column;
  }

  .story-accent {
    bottom: -20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .benefit-item {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-image-wrapper {
    width: 280px;
    height: 320px;
  }

  .hero-float {
    display: none;
  }

  .form-container {
    padding: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta {
    bottom: 20px;
    right: 20px;
  }

  .sticky-cta a {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}
