@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Playfair+Display:wght@400;600;700&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  --color-burgundy: #722F37;
  --color-burgundy-dark: #5a252c;
  --color-navy: #1E3A5F;
  --color-navy-light: #2a4d7a;
  --color-sand: #D4C4A8;
  --color-sand-light: #F5F0E8;
  --color-gold: #C9A962;
  --color-gold-light: #d4bc7a;
  --color-white: #ffffff;
  --color-dark: #1a1a1a;
  --color-gray: #6b6b6b;
  --color-gray-light: #e8e8e8;
  --font-heading: 'Playfair Display', serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Work Sans', sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-rhythm-1: 4rem;
  --space-rhythm-2: 5rem;
  --space-rhythm-3: 6rem;
  --space-rhythm-4: 8rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50%;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0,0,0,0.08);
  --shadow-md: 0 0.375rem 0.75rem rgba(0,0,0,0.12);
  --shadow-lg: 0 0.75rem 1.5rem rgba(0,0,0,0.15);
  --shadow-premium: 0 1rem 2.5rem rgba(30,58,95,0.12), 0 0.25rem 0.5rem rgba(114,47,55,0.06);
  --shadow-card-hover: 0 1.5rem 3rem rgba(30,58,95,0.18);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-organic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-sand-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-burgundy);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-burgundy);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

.main-flow {
  position: relative;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: 85rem;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: 60rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--color-burgundy);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-burgundy-dark);
  color: var(--color-white);
}

.btn-secondary {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-navy-light);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  border: 0.125rem solid var(--color-burgundy);
  color: var(--color-burgundy);
}

.btn-outline:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
}

.header {
  position: relative;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-burgundy) 100%);
  padding: var(--space-md) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}

.logo:hover {
  color: var(--color-gold-light);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-lg);
}

.nav-desktop a {
  color: var(--color-sand-light);
  font-size: 0.85rem;
  font-weight: 500;
  padding: var(--space-xs) 0;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.125rem;
  background: var(--color-gold);
  transition: width var(--transition-fast);
}

.nav-desktop a:hover {
  color: var(--color-gold);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.burger span {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background: var(--color-gold);
  transition: all var(--transition-fast);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.3rem, 0.3rem);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.3rem, -0.3rem);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-navy);
  padding: var(--space-md);
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

.nav-mobile.active {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nav-mobile a {
  display: block;
  color: var(--color-sand-light);
  font-size: 0.9rem;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav-mobile a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-gold);
}

/* Section Dividers – organic flow between sections */
.section-divider {
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.section-divider--organic {
  margin-top: -1px;
}

.section-divider--organic svg {
  height: clamp(4rem, 8vw, 7rem);
}

.section-divider--wave svg {
  height: clamp(3rem, 6vw, 5rem);
}

.section-divider--slant svg {
  height: clamp(3rem, 5vw, 5rem);
}

.section-divider--curve-up {
  margin-bottom: -1px;
}

.section-divider--curve-up svg {
  height: clamp(3rem, 6vw, 5rem);
}

.section-divider--soft {
  height: var(--space-rhythm-1);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-sand-light) 100%);
}

.hero {
  background: linear-gradient(145deg, rgba(114,47,55,0.85) 0%, rgba(90,37,44,0.88) 30%, rgba(30,58,95,0.9) 100%),
              url('../visuals/bg-image-1.webp') center / cover no-repeat;
  background-color: var(--color-burgundy);
  padding: var(--space-rhythm-4) 0;
  position: relative;
  overflow: hidden;
}

.hero-layered {
  isolation: isolate;
}

.hero-bg-pattern {
  position: absolute;
  inset: -20% -10% -20% -10%;
  background: radial-gradient(ellipse 70% 80% at 80% 20%, rgba(201,169,98,0.15) 0%, transparent 55%),
              radial-gradient(ellipse 50% 60% at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,169,98,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: var(--space-lg) var(--space-md);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.hero-content--reveal {
  animation: heroReveal 0.9s var(--ease-organic) both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title,
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.hero p {
  color: var(--color-sand);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 38rem;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn {
  padding: var(--space-md) var(--space-xl);
  font-size: 0.9rem;
}

.section {
  padding: var(--space-xxl) 0;
}

.section--layered {
  position: relative;
}

.section--rhythm-1 {
  padding: var(--space-rhythm-1) 0;
}

.section--rhythm-2 {
  padding: var(--space-rhythm-2) 0;
}

.section--rhythm-3 {
  padding: var(--space-rhythm-3) 0;
}

.section-alt {
  background: var(--color-white);
}

.section-dark {
  background: var(--color-navy);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p,
.section-dark .step-content p {
  color: var(--color-sand-light);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header--expressive {
  text-align: left;
  margin-bottom: var(--space-rhythm-1);
}

.section-header--centered {
  margin-bottom: var(--space-rhythm-2);
}

.section-header--light .section-header p,
.section-header--light p {
  color: rgba(245,240,232,0.85);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.section-title--display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--color-gray);
  max-width: 32rem;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.65;
}

.section-header--expressive p {
  margin-left: 0;
  max-width: 40rem;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: transform var(--transition-slow) var(--ease-organic),
              box-shadow var(--transition-normal);
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-0.5rem) scale(1.01);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card-body {
  padding: var(--space-md);
}

.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.card-body p {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-bottom: var(--space-md);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-burgundy);
  font-weight: 700;
}

.features {
  display: grid;
  gap: var(--space-xl);
}

.section--rhythm-1 .features {
  gap: var(--space-rhythm-1);
}

.feature {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-dark) 100%);
  color: var(--color-gold);
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  transition: transform var(--transition-normal);
}

.feature:hover .feature-icon {
  transform: scale(1.08) rotate(-3deg);
}

.feature-content h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.65;
}

.cta-section {
  background: linear-gradient(145deg, var(--color-burgundy) 0%, var(--color-burgundy-dark) 50%, #4a1e24 100%);
  text-align: center;
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section--premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,169,98,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
}

.cta-section p {
  color: var(--color-sand);
  margin-bottom: var(--space-xl);
  font-size: 1rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-section .btn {
  position: relative;
  padding: var(--space-md) var(--space-xl);
}

.contact-wrapper {
  display: grid;
  gap: var(--space-xl);
}

.contact-info {
  background: var(--color-navy);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  color: var(--color-sand-light);
}

.contact-info h3 {
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.contact-item i {
  color: var(--color-gold);
  font-size: 1rem;
  margin-top: 0.2rem;
}

.contact-item p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact-item a {
  color: var(--color-sand-light);
}

.contact-item a:hover {
  color: var(--color-gold);
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 0.0625rem solid var(--color-gray-light);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-burgundy);
}

.form-group textarea {
  min-height: 6rem;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--color-burgundy);
}

.checkbox-group label {
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-bottom: 0;
}

.checkbox-group a {
  color: var(--color-burgundy);
  text-decoration: underline;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 15rem;
  margin-top: var(--space-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: var(--color-dark);
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-gold);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.footer-links a {
  color: var(--color-sand);
  font-size: 0.75rem;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-copy {
  color: var(--color-gray);
  font-size: 0.7rem;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-navy);
  padding: var(--space-md);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  display: none;
}

.cookie-popup.active {
  display: block;
}

.cookie-content {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.cookie-content p {
  color: var(--color-sand-light);
  font-size: 0.8rem;
}

.cookie-content a {
  color: var(--color-gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.page-header {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-burgundy) 100%);
  padding: var(--space-xxl) 0 var(--space-xl);
  text-align: center;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: var(--color-sand);
  font-size: 0.9rem;
}

.breadcrumb {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 0.8rem;
}

.breadcrumb a {
  color: var(--color-sand);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb span {
  color: var(--color-gold);
}

.content-section {
  padding: var(--space-xl) 0;
}

.content-section h2 {
  margin-bottom: var(--space-md);
}

.content-section h3 {
  margin: var(--space-lg) 0 var(--space-sm);
}

.content-section p {
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  line-height: 1.7;
}

.content-section ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.content-section li {
  list-style: disc;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
}

.thank-you-content i {
  font-size: 3rem;
  color: var(--color-burgundy);
  margin-bottom: var(--space-lg);
}

.thank-you-content h1 {
  margin-bottom: var(--space-md);
}

.thank-you-content p {
  color: var(--color-gray);
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
}

.error-content h1 {
  font-size: 4rem;
  color: var(--color-burgundy);
  margin-bottom: var(--space-md);
}

.error-content p {
  color: var(--color-gray);
  margin-bottom: var(--space-lg);
}

.size-guide-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-lg) 0;
}

.size-guide-table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.size-guide-table th,
.size-guide-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 0.0625rem solid var(--color-gray-light);
}

.size-guide-table th {
  background: var(--color-burgundy);
  color: var(--color-white);
  font-weight: 500;
}

.size-guide-table tr:nth-child(even) {
  background: var(--color-white);
}

.size-guide-table tr:hover {
  background: var(--color-sand);
}

.info-box {
  background: var(--color-sand);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 0.25rem solid var(--color-burgundy);
  margin: var(--space-lg) 0;
}

.info-box h4 {
  margin-bottom: var(--space-sm);
}

.info-box p {
  margin-bottom: 0;
}

.process-steps {
  display: grid;
  gap: var(--space-rhythm-2);
}

.step {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-navy);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  transition: transform var(--transition-normal);
}

.step:hover .step-number {
  transform: scale(1.05);
}

.step-content h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.step-content p {
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-bottom: 0;
}

.testimonial-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-premium);
  border-left: 0.25rem solid var(--color-gold);
  transition: transform var(--transition-slow) var(--ease-organic),
              box-shadow var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateX(0.25rem);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
  line-height: 1.7;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-burgundy);
}

/* Scroll reveal – subtle entrance animations */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Respect user motion preferences – Google Ads compliant */
@media (prefers-reduced-motion: reduce) {
  .hero-content--reveal,
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .card:hover,
  .testimonial-card:hover,
  .feature:hover .feature-icon,
  .step:hover .step-number {
    transform: none;
  }
}

@media (min-width: 480px) {
  html {
    font-size: 15px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
  
  .burger {
    display: none;
  }
  
  .nav-desktop {
    display: block;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr 1.5fr;
  }
  
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
}