@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --color-primary: #BF092F;
  --color-secondary: #132440;
  --color-tertiary: #16476A;
  --color-accent: #3B9797;
  --color-white: #FAFAFA;
  --color-light: #F0F4F8;
  --color-dark: #0A1628;
  --color-gray: #6B7B8C;
  --color-overlay: rgba(19, 36, 64, 0.85);
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  
  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-md: 1rem;
  --size-lg: 1.25rem;
  --size-xl: 1.5rem;
  --size-2xl: 2rem;
  --size-3xl: 2.5rem;
  --size-4xl: 3.5rem;
  --size-5xl: 4.5rem;
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50%;
  
  --shadow-sm: 0 2px 8px rgba(19, 36, 64, 0.08);
  --shadow-md: 0 4px 20px rgba(19, 36, 64, 0.12);
  --shadow-lg: 0 8px 40px rgba(19, 36, 64, 0.16);
  --shadow-glow: 0 0 30px rgba(59, 151, 151, 0.3);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --header-height: 4.5rem;
  --container-max: 75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-md);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-secondary);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(var(--size-3xl), 5vw, var(--size-5xl));
}

h2 {
  font-size: clamp(var(--size-2xl), 4vw, var(--size-3xl));
}

h3 {
  font-size: clamp(var(--size-xl), 3vw, var(--size-2xl));
}

h4 {
  font-size: var(--size-lg);
}

p {
  margin-bottom: var(--space-md);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.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;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate-fade {
  animation: fadeIn var(--transition-smooth) forwards;
}

.animate-slide-left {
  animation: slideInLeft var(--transition-smooth) forwards;
}

.animate-slide-right {
  animation: slideInRight var(--transition-smooth) forwards;
}

.animate-scale {
  animation: scaleIn var(--transition-smooth) forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  position: fixed;
  background: var(--color-overlay);
  backdrop-filter: blur(10px);
  padding: var(--space-md) 0;
  animation: fadeIn 0.3s ease;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: var(--size-xl);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  transition: transform var(--transition-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}

.logo:hover {
  transform: scale(1.02);
}

.logo span {
  color: var(--color-accent);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-xl);
}

.nav-desktop a {
  font-size: var(--size-sm);
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-sm) 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  transform-origin: center;
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 20rem;
  height: 100vh;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary));
  padding: var(--space-4xl) var(--space-xl);
  transition: right var(--transition-smooth);
  z-index: 999;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mobile-nav a {
  font-size: var(--size-lg);
  font-weight: 500;
  color: var(--color-white);
  display: block;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--color-accent);
  padding-left: var(--space-md);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(19, 36, 64, 0.9) 0%, rgba(22, 71, 106, 0.8) 50%, rgba(59, 151, 151, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  padding: var(--space-4xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--size-xs);
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.hero h1 .highlight {
  color: var(--color-accent);
  position: relative;
}

.hero-text {
  font-size: var(--size-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
  max-width: 35rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--size-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #9B0726;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-secondary);
}

.btn-secondary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: #2D7A7A;
  transform: translateY(-2px);
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: var(--radius-full);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(191, 9, 47, 0.15) 0%, transparent 70%);
  top: -5rem;
  right: -5rem;
  animation-delay: 0s;
}

.shape-2 {
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, rgba(59, 151, 151, 0.2) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(22, 71, 106, 0.25) 0%, transparent 70%);
  top: 30%;
  right: 15%;
  animation-delay: 4s;
}

.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-3xl);
}

.section-tag {
  display: inline-block;
  font-size: var(--size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--color-gray);
}

.section-dark {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary));
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section-light {
  background: var(--color-light);
}

.about-grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

.about-content h3 {
  margin-bottom: var(--space-md);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.about-feature i {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  font-size: var(--size-md);
}

.about-feature-text h4 {
  margin-bottom: var(--space-xs);
}

.about-feature-text p {
  font-size: var(--size-sm);
  color: var(--color-gray);
  margin: 0;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-decoration {
  position: absolute;
  width: 60%;
  height: 60%;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  top: -1.5rem;
  right: -1.5rem;
  z-index: -1;
}

.services-grid {
  display: grid;
  gap: var(--space-lg);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-accent);
  transition: height var(--transition-base);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: var(--size-xl);
  margin-bottom: var(--space-lg);
}

.service-card h3 {
  font-size: var(--size-lg);
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: var(--size-sm);
  color: var(--color-gray);
  margin: 0;
}

.products-grid {
  display: grid;
  gap: var(--space-xl);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--size-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.product-info {
  padding: var(--space-lg);
}

.product-info h3 {
  font-size: var(--size-lg);
  margin-bottom: var(--space-sm);
}

.product-info p {
  font-size: var(--size-sm);
  color: var(--color-gray);
  margin-bottom: var(--space-md);
}

.product-price {
  font-family: var(--font-display);
  font-size: var(--size-xl);
  font-weight: 700;
  color: var(--color-primary);
}

.product-price span {
  font-size: var(--size-sm);
  font-weight: 400;
  color: var(--color-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--size-4xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: var(--size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  margin: var(--space-md);
}

.testimonial-rating {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  color: #F5A623;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: var(--space-lg);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-family: var(--font-display);
  font-size: var(--size-3xl);
  color: var(--color-accent);
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
}

.testimonial-info h4 {
  font-size: var(--size-sm);
  font-family: var(--font-body);
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: var(--size-xs);
  color: var(--color-gray);
}

.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-primary), #9B0726);
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-content p {
  max-width: 35rem;
  margin: 0 auto var(--space-xl);
  opacity: 0.9;
}

.cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
}

.cta-shape-1 {
  width: 20rem;
  height: 20rem;
  top: -10rem;
  left: -5rem;
}

.cta-shape-2 {
  width: 15rem;
  height: 15rem;
  bottom: -5rem;
  right: -3rem;
}

.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: var(--size-sm);
  color: rgba(255, 255, 255, 0.6);
  max-width: 20rem;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.footer-col h4 {
  font-size: var(--size-sm);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col a,
.footer-col span {
  font-size: var(--size-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-xl);
}

.footer-copyright {
  font-size: var(--size-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-legal a {
  font-size: var(--size-xs);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--color-accent);
}

.contact-section {
  position: relative;
}

.contact-grid {
  display: grid;
  gap: var(--space-2xl);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary));
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--color-white);
}

.contact-info-card h3 {
  color: var(--color-white);
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-item i {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: var(--size-sm);
  font-family: var(--font-body);
  color: var(--color-white);
  margin-bottom: 2px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: var(--size-sm);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-item-text a:hover {
  color: var(--color-accent);
}

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--size-sm);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: var(--size-md);
  border: 2px solid var(--color-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(59, 151, 151, 0.1);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.form-checkbox input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--color-accent);
}

.form-checkbox label {
  font-size: var(--size-sm);
  color: var(--color-gray);
  margin: 0;
}

.form-checkbox a {
  color: var(--color-accent);
  text-decoration: underline;
}

.map-section {
  height: 20rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-2xl);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary));
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.page-hero p {
  max-width: 35rem;
  margin: 0 auto;
  opacity: 0.85;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: var(--size-sm);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--color-white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.asymmetric-section {
  position: relative;
}

.asymmetric-grid {
  display: grid;
  gap: var(--space-xl);
}

.asymmetric-item {
  position: relative;
}

.asymmetric-item.offset {
  transform: translateY(var(--space-xl));
}

.asymmetric-item.overlap {
  margin-top: calc(var(--space-xl) * -1);
  z-index: 2;
}

.angled-section {
  position: relative;
  padding: var(--space-4xl) 0;
  margin: var(--space-2xl) 0;
}

.angled-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-light);
  transform: skewY(-3deg);
  z-index: -1;
}

.feature-showcase {
  display: grid;
  gap: var(--space-2xl);
}

.feature-showcase-item {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.feature-showcase-item.reverse .feature-showcase-content {
  order: 2;
}

.feature-showcase-content h3 {
  margin-bottom: var(--space-md);
}

.feature-showcase-image {
  position: relative;
}

.feature-showcase-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.feature-number {
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  font-family: var(--font-display);
  font-size: var(--size-5xl);
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.2;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(19, 36, 64, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay h4 {
  color: var(--color-white);
  font-size: var(--size-md);
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary));
  color: var(--color-white);
  transform: scale(1.05);
}

.pricing-card.featured h3,
.pricing-card.featured h4 {
  color: var(--color-white);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--size-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .pricing-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-header h3 {
  font-size: var(--size-lg);
  margin-bottom: var(--space-md);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: var(--size-4xl);
  font-weight: 700;
  color: var(--color-primary);
}

.pricing-card.featured .pricing-amount {
  color: var(--color-accent);
}

.pricing-amount span {
  font-size: var(--size-md);
  font-weight: 400;
}

.pricing-features {
  margin-bottom: var(--space-xl);
  color: black;
}

.pricing-features li {
  padding: var(--space-sm) 0;
  font-size: var(--size-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.pricing-features i {
  color: var(--color-accent);
}

.faq-list {
  max-width: 45rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  font-size: var(--size-md);
  font-weight: 500;
  text-align: left;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-light);
}

.faq-question i {
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 20rem;
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: var(--size-sm);
  color: var(--color-gray);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  max-width: 25rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(150%);
  transition: transform var(--transition-smooth);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-popup h4 {
  margin-bottom: var(--space-sm);
}

.cookie-popup p {
  font-size: var(--size-sm);
  color: var(--color-gray);
  margin-bottom: var(--space-md);
}

.cookie-popup a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
}

.cookie-actions .btn {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--size-xs);
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary));
  color: var(--color-white);
}

.thank-you-content {
  max-width: 35rem;
  padding: var(--space-xl);
}

.thank-you-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto var(--space-xl);
  background: var(--color-accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-3xl);
  animation: scaleIn var(--transition-smooth) forwards;
}

.thank-you-content h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.thank-you-content p {
  opacity: 0.85;
  margin-bottom: var(--space-xl);
}

.error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-light);
}

.error-content {
  max-width: 35rem;
  padding: var(--space-xl);
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.error-content h1 {
  margin-bottom: var(--space-md);
}

.error-content p {
  color: var(--color-gray);
  margin-bottom: var(--space-xl);
}

.policy-content {
  max-width: 50rem;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: var(--size-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.policy-content h3 {
  font-size: var(--size-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.policy-content p {
  color: var(--color-gray);
}

.policy-content ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
}

.policy-content li {
  color: var(--color-gray);
  margin-bottom: var(--space-sm);
  position: relative;
}

.policy-content li::before {
  content: '•';
  color: var(--color-accent);
  position: absolute;
  left: calc(var(--space-lg) * -1);
}

.process-timeline {
  position: relative;
  padding-left: var(--space-2xl);
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-tertiary));
}

.process-step {
  position: relative;
  padding-bottom: var(--space-xl);
}

.process-step::before {
  content: '';
  position: absolute;
  left: calc(var(--space-2xl) * -1 + 0.5rem);
  top: 0.25rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.process-step h4 {
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: var(--size-sm);
  color: var(--color-gray);
  margin: 0;
}

@media (min-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  
  .burger-btn {
    display: none;
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .asymmetric-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .feature-showcase-item {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-links {
    grid-template-columns: repeat(3, auto);
    gap: var(--space-3xl);
  }

}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .about-image-decoration {
    display: none;
  }
  
  .asymmetric-item.offset {
    transform: none;
  }
  
  .asymmetric-item.overlap {
    margin-top: 0;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .stats-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  html {
    font-size: 14px;
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-xl);
  }
  
  .hero-content {
    padding: var(--space-2xl) 0;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .logo {
    font-size: var(--size-lg);
  }
  
  .service-card {
    padding: var(--space-lg);
  }
  
  .service-icon {
    width: 3rem;
    height: 3rem;
    font-size: var(--size-lg);
    margin-bottom: var(--space-md);
  }
  
  .testimonial-card {
    padding: var(--space-lg);
    margin: var(--space-sm);
  }
  
  .product-info {
    padding: var(--space-md);
  }
  
  .stat-item {
    padding: var(--space-md);
  }
  
  .stat-number {
    font-size: var(--size-2xl);
  }
  
  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    padding: var(--space-md);
    bottom: var(--space-sm);
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: var(--space-lg);
  }
  
  .pricing-card {
    padding: var(--space-lg);
  }
  
  .pricing-amount {
    font-size: var(--size-2xl);
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .faq-question {
    padding: var(--space-md);
    font-size: var(--size-sm);
  }
  
  .faq-answer-inner {
    padding: 0 var(--space-md) var(--space-md);
  }
  
  .page-hero {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-xl);
  }
  
  .cta-section {
    padding: var(--space-2xl) 0;
  }
  
  .map-section {
    height: 15rem;
  }
  
  .about-feature i {
    width: 2rem;
    height: 2rem;
    font-size: var(--size-sm);
  }
  
  .contact-item i {
    width: 2rem;
    height: 2rem;
    font-size: var(--size-sm);
  }
}

@media (max-width: 374px) {
  html {
    font-size: 13px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .logo {
    font-size: var(--size-md);
    max-width: 60%;
    line-height: 1.2;
    word-break: break-word;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .hero-badge {
    font-size: 0.65rem;
    padding: var(--space-xs) var(--space-sm);
  }
  
  h1 {
    font-size: clamp(1.5rem, 7vw, var(--size-3xl));
  }
  
  h2 {
    font-size: clamp(1.25rem, 6vw, var(--size-2xl));
  }
  
  h3 {
    font-size: clamp(1.1rem, 5vw, var(--size-xl));
  }
  
  .hero-text {
    font-size: var(--size-md);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--size-xs);
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }
  
  .stat-item {
    padding: var(--space-sm);
  }
  
  .stat-number {
    font-size: var(--size-xl);
  }
  
  .stat-label {
    font-size: var(--size-xs);
  }
  
  .service-card,
  .testimonial-card,
  .product-card,
  .pricing-card {
    border-radius: var(--radius-md);
  }
  
  .service-card {
    padding: var(--space-md);
  }
  
  .service-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: var(--size-md);
  }
  
  .testimonial-card {
    padding: var(--space-md);
    margin: var(--space-xs);
  }
  
  .testimonial-text {
    padding-left: var(--space-md);
    font-size: var(--size-sm);
  }
  
  .testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    font-size: var(--size-sm);
  }
  
  .product-info {
    padding: var(--space-sm);
  }
  
  .product-info h3 {
    font-size: var(--size-md);
  }
  
  .product-price {
    font-size: var(--size-lg);
  }
  
  .product-badge {
    font-size: 0.6rem;
    padding: 2px var(--space-xs);
  }
  
  .cookie-popup {
    left: var(--space-xs);
    right: var(--space-xs);
    padding: var(--space-sm);
  }
  
  .cookie-popup h4 {
    font-size: var(--size-sm);
  }
  
  .cookie-popup p {
    font-size: var(--size-xs);
  }
  
  .cookie-actions .btn {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: var(--space-md);
  }
  
  .form-group input,
  .form-group textarea {
    padding: var(--space-sm);
    font-size: var(--size-sm);
  }
  
  .form-checkbox label {
    font-size: var(--size-xs);
  }
  
  .pricing-card {
    padding: var(--space-md);
  }
  
  .pricing-header {
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
  }
  
  .pricing-amount {
    font-size: var(--size-xl);
  }
  
  .pricing-features li {
    font-size: var(--size-xs);
  }
  
  .pricing-badge {
    font-size: 0.6rem;
    padding: 2px var(--space-sm);
  }
  
  .faq-question {
    padding: var(--space-sm);
    font-size: var(--size-xs);
    gap: var(--space-xs);
  }
  
  .faq-answer-inner {
    padding: 0 var(--space-sm) var(--space-sm);
    font-size: var(--size-xs);
  }
  
  .page-hero {
    padding: calc(var(--header-height) + var(--space-lg)) 0 var(--space-lg);
  }
  
  .breadcrumb {
    font-size: var(--size-xs);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
  }
  
  .map-section {
    height: 12rem;
    margin-top: var(--space-lg);
  }
  
  .footer-col h4 {
    font-size: var(--size-xs);
    margin-bottom: var(--space-sm);
  }
  
  .footer-col a,
  .footer-col span {
    font-size: var(--size-xs);
  }
  
  .footer-copyright,
  .footer-legal a {
    font-size: 0.65rem;
  }
  
  .footer-legal {
    gap: var(--space-sm);
  }
  
  .about-feature {
    gap: var(--space-sm);
  }
  
  .about-feature i {
    width: 1.75rem;
    height: 1.75rem;
    font-size: var(--size-xs);
  }
  
  .about-feature-text h4 {
    font-size: var(--size-sm);
  }
  
  .about-feature-text p {
    font-size: var(--size-xs);
  }
  
  .contact-item {
    gap: var(--space-sm);
  }
  
  .contact-item i {
    width: 1.75rem;
    height: 1.75rem;
    font-size: var(--size-xs);
  }
  
  .contact-item-text h4 {
    font-size: var(--size-xs);
  }
  
  .contact-item-text p,
  .contact-item-text a {
    font-size: var(--size-xs);
  }
  
  .process-timeline {
    padding-left: var(--space-lg);
  }
  
  .process-step::before {
    left: calc(var(--space-lg) * -1 + 0.25rem);
    width: 0.5rem;
    height: 0.5rem;
  }
  
  .process-timeline::before {
    left: 0.5rem;
  }
  
  .process-step h4 {
    font-size: var(--size-sm);
  }
  
  .process-step p {
    font-size: var(--size-xs);
  }
  
  .thank-you-content,
  .error-content {
    padding: var(--space-md);
  }
  
  .thank-you-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: var(--size-xl);
  }
  
  .error-code {
    font-size: clamp(4rem, 18vw, 8rem);
  }
  
  .mobile-nav {
    max-width: 100%;
    padding: var(--space-3xl) var(--space-md);
  }
  
  .mobile-nav a {
    font-size: var(--size-md);
  }
  
  .gallery-item-overlay {
    padding: var(--space-sm);
  }
  
  .gallery-item-overlay h4 {
    font-size: var(--size-sm);
  }
  
  .feature-number {
    font-size: var(--size-3xl);
    top: -1rem;
    left: -0.5rem;
  }
  
  .section-tag {
    font-size: 0.65rem;
  }
  
  .cta-section {
    padding: var(--space-xl) 0;
  }
  
  .angled-section {
    padding: var(--space-xl) 0;
    margin: var(--space-lg) 0;
  }
  
  .policy-content h2 {
    font-size: var(--size-lg);
    margin-top: var(--space-lg);
  }
  
  .policy-content h3 {
    font-size: var(--size-md);
    margin-top: var(--space-md);
  }
  
  .policy-content p,
  .policy-content li {
    font-size: var(--size-sm);
  }
  
  .policy-content ul {
    padding-left: var(--space-lg);
  }
}

