/* ===================================
   PHANTOM BERRY - NATURE ORGANIC DESIGN
   Smart Home Solutions with Natural Touch
   =================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #3E4A3D;
  background-color: #F9F7F4;
  overflow-x: hidden;
}

/* NATURE ORGANIC DESIGN SYSTEM */
:root {
  --earth-dark: #3E4A3D;
  --earth-medium: #6B7F6A;
  --earth-light: #9BA89A;
  --sage-green: #7A9B76;
  --moss-green: #5A7555;
  --clay: #C9A577;
  --sand: #E8DCC4;
  --cream: #F9F7F4;
  --terracotta: #B97A57;
  --olive: #8B8B4A;
  --white: #FFFFFF;
  --shadow: rgba(62, 74, 61, 0.15);
  --shadow-soft: rgba(62, 74, 61, 0.08);
}

/* TYPOGRAPHY - NATURAL & ORGANIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--earth-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--earth-medium);
}

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

a:hover {
  color: var(--moss-green);
}

ul {
  list-style-position: inside;
}

li {
  margin-bottom: 8px;
  color: var(--earth-medium);
}

strong {
  color: var(--earth-dark);
  font-weight: 600;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER - ORGANIC DESIGN */
header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  padding: 20px 0;
  border-bottom: 3px solid var(--sage-green);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--earth-dark);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--sage-green);
  transition: width 0.3s ease, left 0.3s ease;
}

.main-nav a:hover {
  color: var(--moss-green);
  background-color: rgba(122, 155, 118, 0.1);
}

.main-nav a:hover::after {
  width: 80%;
  left: 10%;
}

/* MOBILE MENU - HAMBURGER */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: var(--sage-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--moss-green);
  transform: scale(1.1);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px var(--shadow);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--earth-dark);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--earth-dark);
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--white);
  border-left: 4px solid var(--sage-green);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--sage-green);
  color: var(--white);
  transform: translateX(8px);
}

/* BUTTONS - ORGANIC STYLE */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--moss-green) 100%);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--moss-green) 0%, var(--earth-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}

.btn-secondary {
  background: var(--white);
  color: var(--earth-dark);
  border: 2px solid var(--sage-green);
}

.btn-secondary:hover {
  background: var(--sage-green);
  color: var(--white);
  transform: translateY(-2px);
}

/* HERO SECTION - NATURE INSPIRED */
.hero {
  background: linear-gradient(135deg, var(--sand) 0%, var(--clay) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(122, 155, 118, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 165, 119, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  color: var(--earth-dark);
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--earth-medium);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  font-size: 14px;
  color: var(--earth-medium);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  border-radius: 20px;
  display: inline-block;
}

/* PAGE HERO - SIMPLIFIED */
.page-hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--moss-green) 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* SECTIONS - ORGANIC SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section {
  margin-bottom: 60px;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--earth-dark);
}

/* CARDS - NATURAL DESIGN */
.card,
.benefit-card,
.service-card,
.package-card,
.testimonial-card,
.value-card,
.case-study,
.link-card,
.resource-card,
.info-card,
.channel,
.option {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.card:hover,
.benefit-card:hover,
.service-card:hover,
.package-card:hover,
.value-card:hover,
.link-card:hover,
.resource-card:hover,
.info-card:hover,
.channel:hover,
.option:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px var(--shadow);
  border-color: var(--sage-green);
}

.card h3,
.benefit-card h3,
.service-card h3,
.package-card h3,
.value-card h3,
.case-study h3 {
  color: var(--earth-dark);
  margin-bottom: 16px;
  font-size: 22px;
}

.card p,
.benefit-card p,
.service-card p,
.package-card p,
.value-card p,
.case-study p {
  color: var(--earth-medium);
  font-size: 15px;
  line-height: 1.7;
}

/* FLEXBOX GRID LAYOUTS */
.benefits-grid,
.services-grid,
.packages-grid,
.values-grid,
.stats-grid,
.info-grid,
.channels-grid,
.testimonials-grid,
.link-grid,
.appointment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card,
.service-card,
.package-card,
.value-card,
.stat,
.info-card,
.channel,
.testimonial-card,
.link-card,
.option {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

/* FEATURED PACKAGE */
.package-card.featured {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--moss-green) 100%);
  color: var(--white);
  transform: scale(1.05);
  border: 3px solid var(--olive);
}

.package-card.featured h3,
.package-card.featured p,
.package-card.featured ul li {
  color: var(--white);
}

.package-card.featured:hover {
  transform: scale(1.08) translateY(-6px);
}

/* PRICE STYLING */
.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--sage-green);
  margin: 16px 0;
}

.package-card.featured .price {
  color: var(--sand);
}

/* PROCESS STEPS - ORGANIC FLOW */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px var(--shadow);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--moss-green) 100%);
  color: var(--white);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: var(--earth-medium);
}

/* TESTIMONIALS - READABLE DESIGN */
.testimonials {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid var(--sage-green);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--earth-dark);
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--sage-green);
  font-style: normal;
  font-size: 14px;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--earth-dark);
  margin-top: 24px;
}

/* STATS & METRICS */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-around;
  text-align: center;
  margin: 40px 0;
}

.stat {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 12px var(--shadow-soft);
}

.stat h3 {
  font-size: 48px;
  color: var(--sage-green);
  margin-bottom: 8px;
}

.stat p {
  font-size: 16px;
  color: var(--earth-medium);
}

/* CTA SECTIONS */
.cta-section {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--moss-green) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons,
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.text-image-section > * {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
}

/* SERVICE DETAILS */
.service-detail {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  border-left: 6px solid var(--sage-green);
}

.service-detail h2 {
  text-align: left;
  margin-bottom: 16px;
}

.service-detail ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-detail ul li {
  margin-bottom: 12px;
  color: var(--earth-medium);
  list-style-type: disc;
}

.service-detail .type {
  display: inline-block;
  background: var(--sand);
  color: var(--earth-dark);
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.duration {
  color: var(--earth-medium);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

/* CASE STUDIES */
.case-study {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  border-top: 4px solid var(--sage-green);
}

.case-study h3 {
  color: var(--earth-dark);
  margin-bottom: 12px;
}

/* ERROR PAGE (404) */
.error-section {
  padding: 80px 20px;
  text-align: center;
}

.error-content h1 {
  font-size: 120px;
  color: var(--sage-green);
  margin-bottom: 24px;
}

.error-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.helpful-links,
.contact-support {
  margin-top: 48px;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

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

/* THANK YOU PAGE */
.thank-you-section {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px var(--shadow);
}

.success-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: var(--sage-green);
  color: var(--white);
  border-radius: 50%;
  font-size: 48px;
  margin: 0 auto 24px;
}

.next-steps {
  text-align: left;
  margin-top: 40px;
  padding: 30px;
  background: var(--cream);
  border-radius: 16px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 24px;
}

.next-steps ol {
  list-style-position: inside;
  padding-left: 20px;
}

.next-steps li {
  margin-bottom: 16px;
  padding-left: 12px;
  color: var(--earth-medium);
}

/* CONTACT PAGE */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
}

.form-note {
  background: var(--cream);
  padding: 20px;
  border-radius: 12px;
  margin-top: 24px;
  border-left: 4px solid var(--sage-green);
}

.form-note p {
  font-size: 14px;
  margin-bottom: 8px;
}

/* LEGAL PAGES */
.legal-page {
  padding: 40px 20px;
}

.legal-page .container {
  max-width: 900px;
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 16px;
}

.last-updated,
.subtitle {
  text-align: center;
  color: var(--earth-medium);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px var(--shadow-soft);
  line-height: 1.8;
}

.legal-content h2 {
  text-align: left;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--earth-dark);
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content ul li {
  margin-bottom: 12px;
  list-style-type: disc;
}

/* FOOTER - NATURAL DESIGN */
footer {
  background: linear-gradient(135deg, var(--earth-dark) 0%, var(--earth-medium) 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 calc(33.333% - 27px);
  min-width: 250px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--sand);
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover {
  color: var(--sand);
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--earth-dark) 0%, var(--earth-medium) 100%);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--sage-green);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--moss-green);
}

.cookie-reject {
  background: var(--terracotta);
  color: var(--white);
}

.cookie-reject:hover {
  background: #A0654A;
}

.cookie-settings {
  background: var(--white);
  color: var(--earth-dark);
  border: 2px solid var(--sand);
}

.cookie-settings:hover {
  background: var(--sand);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(62, 74, 61, 0.8);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px var(--shadow);
}

.cookie-modal h2 {
  color: var(--earth-dark);
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: var(--cream);
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--earth-dark);
}

.cookie-category p {
  font-size: 14px;
  color: var(--earth-medium);
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  .benefits-grid,
  .services-grid,
  .packages-grid,
  .values-grid,
  .stats-grid,
  .info-grid,
  .channels-grid,
  .testimonials-grid,
  .link-grid,
  .appointment-options {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .package-card,
  .value-card,
  .stat,
  .info-card,
  .channel,
  .testimonial-card,
  .link-card,
  .option,
  .step {
    flex: 1 1 100%;
  }
  
  .package-card.featured {
    transform: scale(1);
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .error-content h1 {
    font-size: 80px;
  }
  
  .service-detail,
  .legal-content,
  .form-wrapper,
  .thank-you-content {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .value-card,
  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.card,
.benefit-card,
.service-card {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid var(--sage-green);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--sage-green);
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn-primary,
  .btn-secondary,
  .cta-section {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
  }
}