:root {
  --primary: #6b3fa0;
  --primary-light: #8b65b8;
  --primary-dark: #4e2d76;
  --secondary: #e07a5f;
  --secondary-light: #f09a80;
  --accent: #f2cc8f;
  --accent-light: #f7deb4;
  --dark: #1e1428;
  --text: #2e2538;
  --text-mid: #5c5168;
  --text-light: #8a8194;
  --bg: #fdfaf7;
  --bg-alt: #f5f0ea;
  --white: #ffffff;
  --border: #e8e2dc;
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow-sm: 0 1px 8px rgba(107, 63, 160, 0.06);
  --shadow: 0 4px 20px rgba(107, 63, 160, 0.08);
  --shadow-lg: 0 8px 30px rgba(107, 63, 160, 0.12);
  --transition: 0.3s ease;
  --font-heading: "Fraunces", serif;
  --font-body: "Space Grotesk", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--secondary);
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.125rem;
}
h4 {
  font-size: 1rem;
}

p {
  margin-bottom: 0.75rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

main {
  flex: 1;
}

section {
  padding: 2.5rem 0;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  margin-bottom: 0.375rem;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-mid);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.bg-alt {
  background: var(--bg-alt);
}

.site-header {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1.5rem);
  max-width: 72rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  border-radius: 3rem;
  padding: 0.5rem 1.25rem;
  z-index: 1000;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow var(--transition),
    background var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 226, 220, 0.6);
}

.site-header.header-hidden {
  transform: translateX(-50%) translateY(calc(-100% - 1.5rem));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  position: relative;
}

.logo::after {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--secondary);
  border-radius: 50%;
  margin-left: 0.1rem;
  vertical-align: super;
}

.logo:hover {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: 1.25rem;
}

.nav-menu a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.375rem 0;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  background: var(--secondary);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  white-space: nowrap;
  transition:
    background var(--transition),
    transform var(--transition),
    color var(--transition);
}

.nav-cta:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(30, 20, 40, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  text-align: center;
}

.mobile-nav-links li {
  margin-bottom: 1.25rem;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--secondary);
}

.mobile-nav-cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1rem;
  background: var(--secondary);
  color: var(--white);
  padding: 0.625rem 1.5rem;
  border-radius: 2rem;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

body.nav-open .logo {
  color: var(--white);
}

body.nav-open .logo::after {
  background: var(--secondary);
}

body.nav-open .nav-toggle span {
  background: var(--white);
}

.hero {
  background: linear-gradient(160deg, #1e1428 0%, #3d2266 50%, #6b3fa0 100%);
  color: var(--white);
  text-align: center;
  padding: 7.5rem 1rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(224, 122, 95, 0.12);
  top: -6rem;
  right: -6rem;
}

.hero::after {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(242, 204, 143, 0.08);
  bottom: -4rem;
  left: -4rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid rgba(242, 204, 143, 0.4);
  padding: 0.25rem 0.875rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.625rem 1.5rem;
  border-radius: 2rem;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--primary);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.service-card:nth-child(2) {
  border-top-color: var(--secondary);
}

.service-card:nth-child(3) {
  border-top-color: var(--accent);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-card:nth-child(2) .service-icon {
  color: var(--secondary);
}

.service-card:nth-child(3) .service-icon {
  color: var(--accent);
}

.service-card h3 {
  margin-bottom: 0.375rem;
}

.service-card p {
  font-size: 0.8125rem;
  color: var(--text-mid);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(107, 63, 160, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.feature-content h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.8125rem;
  color: var(--text-mid);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  text-align: center;
}

.step-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
}

.step-card:nth-child(2) .step-icon {
  background: var(--secondary);
}

.step-card:nth-child(3) .step-icon {
  background: #c8941a;
}

.step-card h3 {
  margin-bottom: 0.375rem;
}

.step-card p {
  font-size: 0.8125rem;
  color: var(--text-mid);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:nth-child(2) {
  border-left-color: var(--secondary);
}

.testimonial-card:nth-child(3) {
  border-left-color: var(--primary);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--dark);
}

.testimonial-role {
  font-size: 0.6875rem;
  color: var(--text-light);
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  text-align: center;
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(224, 122, 95, 0.12);
  top: -6rem;
  right: -4rem;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(242, 204, 143, 0.08);
  bottom: -4rem;
  left: -2rem;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

.page-hero {
  background: linear-gradient(160deg, #1e1428 0%, #4e2d76 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 1rem 2rem;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.content-split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.content-split h2 {
  margin-bottom: 0.75rem;
}

.content-split p {
  color: var(--text-mid);
  font-size: 0.8125rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  border-bottom: 3px solid var(--accent);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.product-card h3 {
  margin-bottom: 0.375rem;
}

.product-card p {
  font-size: 0.8125rem;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
}

.product-card .btn {
  margin-top: 0.75rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.package-icon {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.package-card h3 {
  margin-bottom: 0.375rem;
}

.package-card p {
  font-size: 0.8125rem;
  color: var(--text-mid);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(107, 63, 160, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.value-card:nth-child(2) .value-icon {
  background: rgba(224, 122, 95, 0.1);
  color: var(--secondary);
}

.value-card:nth-child(3) .value-icon {
  background: rgba(242, 204, 143, 0.15);
  color: #bf8d14;
}

.value-card:nth-child(4) .value-icon {
  background: rgba(30, 20, 40, 0.08);
  color: var(--dark);
}

.value-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.value-card p {
  font-size: 0.8125rem;
  color: var(--text-mid);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--accent-light);
  position: relative;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  inset: 0.375rem;
  border: 1px solid var(--accent-light);
  border-radius: calc(var(--radius-lg) - 0.25rem);
  pointer-events: none;
  opacity: 0.5;
}

.contact-form-wrap h3 {
  margin-bottom: 0.25rem;
}

.contact-form-wrap .section-label {
  margin-bottom: 1rem;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(107, 63, 160, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.contact-info-text strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--dark);
  margin-bottom: 0.125rem;
}

.contact-info-text p {
  font-size: 0.8125rem;
  color: var(--text-mid);
  margin: 0;
}

.contact-hours {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 0.5rem;
}

.contact-hours h4 {
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.contact-hours p {
  font-size: 0.8125rem;
  color: var(--text-mid);
  margin-bottom: 0.25rem;
}

.form-group {
  margin-bottom: 0.875rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.8125rem;
  color: var(--text);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.form-check input[type="checkbox"] {
  margin-top: 0.1875rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.form-check a {
  color: var(--primary);
  text-decoration: underline;
}

.map-wrap {
  padding: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 18rem;
  border: 0;
  display: block;
}

.faq-grid {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}

.faq-item p {
  font-size: 0.8125rem;
  color: var(--text-mid);
}

.main-fullscreen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1rem 2rem;
}

.fullscreen-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.fullscreen-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.fullscreen-text {
  color: var(--text-mid);
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

.policy-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.policy-content h2 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.policy-content p {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.policy-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
  list-style: disc;
}

.policy-content li {
  font-size: 0.8125rem;
  color: var(--text-mid);
  margin-bottom: 0.375rem;
  line-height: 1.6;
}

.policy-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 1rem 0;
  font-size: 0.75rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
}

.footer-legal a:hover {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  z-index: 1100;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  padding: 0.875rem 1rem;
  font-size: 0.75rem;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-btn {
  background: var(--secondary);
  color: var(--white);
  padding: 0.4rem 1.25rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.75rem;
  transition: background var(--transition);
  white-space: nowrap;
}

.cookie-btn:hover {
  background: var(--primary);
}

@media (max-width: 794px) {
  h1 {
    font-size: 1.625rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  section {
    padding: 1.75rem 0;
  }

  .site-header {
    width: calc(100% - 1rem);
    border-radius: 2rem;
    padding: 0.4rem 0.875rem;
    top: 0.5rem;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 6rem 1rem 2.5rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .page-hero {
    padding: 5rem 1rem 1.5rem;
  }

  .services-grid,
  .products-grid,
  .steps-grid,
  .testimonials-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .content-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.375rem;
  }
  h2 {
    font-size: 1.125rem;
  }
  section {
    padding: 1.5rem 0;
  }

  .hero {
    padding: 5.5rem 0.75rem 2rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.875rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .main-fullscreen {
    padding: 5rem 0.75rem 1.5rem;
  }

  .fullscreen-title {
    font-size: 1.375rem;
  }

  .contact-form-wrap {
    padding: 1.25rem;
  }
}

@media (max-width: 360px) {
  .logo {
    font-size: 0.8125rem;
  }

  .site-header {
    padding: 0.35rem 0.625rem;
  }

  .hero h1 {
    font-size: 1.25rem;
  }

  .btn {
    font-size: 0.75rem;
    padding: 0.5rem 1.125rem;
  }
}
