@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --color-dark: #212121;
  --color-gray: #323232;
  --color-teal: #0D7377;
  --color-cyan: #14FFEC;
  --color-white: #ffffff;
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  
  --transition-fast: 0.2s ease-out;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-dark);
  line-height: 1.6;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-cyan);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-select: none;
  user-select: none;
}

picture {
  display: block;
}

iframe {
  max-width: 100%;
  height: auto;
}

header {
  background-color: var(--color-white);
  padding: var(--space-md) var(--space-lg);
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(13, 115, 119, 0.1);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: -0.5px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  margin: 6px 0;
  transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

nav {
  display: flex;
  gap: var(--space-lg);
}

nav.active {
  display: flex;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.25rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-cyan);
  transition: width var(--transition-fast);
}

nav a:hover::after {
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-gray) 100%);
  color: var(--color-white);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  color: var(--color-cyan);
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 20px rgba(20, 255, 236, 0.3);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-cyan);
  color: var(--color-dark);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  font-size: 0.95rem;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-cyan);
  border: 2px solid var(--color-cyan);
}

.btn-secondary:hover {
  background-color: var(--color-cyan);
  color: var(--color-dark);
}

section {
  padding: var(--space-2xl) var(--space-lg);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-cyan);
  margin: var(--space-md) auto 0;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(13, 115, 119, 0.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-cyan);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-teal);
}

.card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-cyan);
  margin: var(--space-md) 0;
}

.testimonial {
  background-color: rgba(13, 115, 119, 0.05);
  border-left: 4px solid var(--color-cyan);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-md);
  color: var(--color-gray);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-teal);
}

.form-group {
  margin-bottom: var(--space-md);
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--color-dark);
}

input, textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid rgba(13, 115, 119, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(20, 255, 236, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.9rem;
}

footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-lg);
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(20, 255, 236, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  text-align: left;
  margin-bottom: var(--space-lg);
}

.footer-section h4 {
  color: var(--color-cyan);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.footer-section a {
  display: block;
  margin-bottom: var(--space-xs);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-section a:hover {
  color: var(--color-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(20, 255, 236, 0.2);
  padding-top: var(--space-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn var(--transition-smooth);
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  animation: slideUp var(--transition-smooth);
}

.modal-close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray);
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--color-teal);
}

.modal-title {
  clear: both;
  margin-bottom: var(--space-md);
  color: var(--color-teal);
}

.modal-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.modal-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
}

.modal-buttons button {
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.modal-accept {
  background-color: var(--color-cyan);
  color: var(--color-dark);
}

.modal-accept:hover {
  background-color: var(--color-white);
  border: 1px solid var(--color-cyan);
}

.modal-decline {
  background-color: transparent;
  color: var(--color-gray);
  border: 1px solid var(--color-gray);
}

.modal-decline:hover {
  background-color: var(--color-gray);
  color: var(--color-white);
}

.asymmetric-section {
  position: relative;
  overflow: hidden;
}

.asymmetric-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.asymmetric-image {
  position: relative;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.asymmetric-image img {
  width: 100%;
  height: auto;
}

.asymmetric-text {
  position: relative;
  z-index: 2;
}

.angled-section {
  position: relative;
  padding: var(--space-2xl) var(--space-lg);
  background: linear-gradient(135deg, rgba(13, 115, 119, 0.05) 0%, rgba(20, 255, 236, 0.05) 100%);
  transform: skewY(-2deg);
  margin: var(--space-xl) 0;
}

.angled-section > * {
  transform: skewY(2deg);
}

.overlap-container {
  position: relative;
  height: 400px;
}

.overlap-item {
  position: absolute;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.overlap-item:nth-child(1) {
  width: 60%;
  top: 0;
  left: 0;
  z-index: 3;
}

.overlap-item:nth-child(2) {
  width: 60%;
  top: 80px;
  right: 0;
  z-index: 2;
}

.overlap-item:nth-child(3) {
  width: 60%;
  top: 160px;
  left: 50px;
  z-index: 1;
}

.overlap-item:hover {
  transform: translateY(-10px);
  z-index: 10;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.float {
  animation: float 3s ease-in-out infinite;
}

@media (max-width: 1024px) {
  :root {
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
  }

  h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  }

  section {
    padding: var(--space-xl) var(--space-md);
  }

  .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    background-color: var(--color-white);
    padding: var(--space-lg);
    gap: var(--space-md);
    overflow-y: auto;
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
    box-shadow: var(--shadow-md);
    z-index: 99;
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  nav.active {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  nav a {
    font-size: 0.9rem;
  }

  .asymmetric-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .asymmetric-image {
    transform: rotate(0deg);
    order: -1;
  }

  .asymmetric-image img {
    width: 100%;
    height: auto;
  }

  .overlap-container {
    height: auto;
  }

  .overlap-item {
    position: static;
    width: 100% !important;
    margin-bottom: var(--space-lg);
    z-index: auto !important;
  }

  .overlap-item:hover {
    z-index: auto !important;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-md);
  }

  .footer-section {
    border-bottom: 1px solid rgba(20, 255, 236, 0.1);
    padding-bottom: var(--space-md);
  }

  .footer-section:last-child {
    border-bottom: none;
  }

  .footer-section a {
    display: block;
    margin: var(--space-xs) 0;
  }

  h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }

  h3 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
  }

  p {
    font-size: 0.9rem;
  }

  section {
    padding: var(--space-xl) var(--space-md);
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: var(--space-md);
  }

  .card-image {
    height: 180px;
  }

  .testimonial {
    padding: var(--space-md);
  }

  .modal-content {
    width: 95%;
    max-width: 450px;
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 640px) {
  :root {
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 1.25rem;
    --space-xl: 1.75rem;
    --space-2xl: 2rem;
  }

  header {
    padding: var(--space-md) var(--space-sm);
  }

  .header-container {
    gap: var(--space-md);
  }

  .logo {
    font-size: 1.1rem;
    letter-spacing: -0.3px;
  }

  .nav-toggle span {
    width: 20px;
    height: 1.5px;
    margin: 5px 0;
  }

  nav {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    padding: var(--space-md);
    display: none;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
  }

  nav.active {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  nav a {
    font-size: 0.85rem;
    padding-bottom: 0.2rem;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content h1 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: var(--space-md);
  }

  .hero-content p {
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .btn-secondary {
    border-width: 1.5px;
  }

  section {
    padding: var(--space-xl) var(--space-sm);
  }

  .section-title {
    margin-bottom: var(--space-lg);
  }

  .section-title::after {
    width: 50px;
    height: 2px;
    margin: var(--space-sm) auto 0;
  }

  h1 {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }

  h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  }

  h3 {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
  }

  .grid {
    gap: var(--space-md);
  }

  .card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }

  .card-image {
    height: 160px;
    margin-bottom: var(--space-md);
  }

  .card-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
  }

  .card-price {
    font-size: 1.25rem;
    margin: var(--space-md) 0;
  }

  .testimonial {
    padding: var(--space-md);
    border-left-width: 3px;
  }

  .testimonial-text {
    font-size: 0.8rem;
    margin-bottom: var(--space-sm);
  }

  .testimonial-author {
    font-size: 0.85rem;
  }

  .form-group {
    margin-bottom: var(--space-md);
  }

  label {
    font-size: 0.85rem;
    margin-bottom: var(--space-xs);
  }

  input, textarea {
    padding: 0.6rem;
    font-size: 0.85rem;
  }

  textarea {
    min-height: 100px;
  }

  .checkbox-group {
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }

  .checkbox-group label {
    font-size: 0.8rem;
  }

  .modal-content {
    padding: var(--space-md);
    width: 90%;
  }

  .modal-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
  }

  .modal-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .modal-buttons {
    gap: var(--space-sm);
  }

  .modal-buttons button {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .footer-content {
    gap: var(--space-md);
  }

  .footer-section h4 {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
  }

  .footer-section a {
    font-size: 0.8rem;
    margin: var(--space-xs) 0;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding-top: var(--space-md);
  }

  .angled-section {
    padding: var(--space-xl) var(--space-sm);
    margin: var(--space-lg) 0;
  }

  ul {
    margin-left: var(--space-md);
  }

  ul li {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xs: 0.4rem;
    --space-sm: 0.6rem;
    --space-md: 1rem;
    --space-lg: 1.2rem;
    --space-xl: 1.5rem;
    --space-2xl: 1.8rem;
  }

  header {
    padding: var(--space-sm) var(--space-sm);
    border-bottom: 1px solid rgba(13, 115, 119, 0.08);
  }

  .header-container {
    gap: var(--space-sm);
  }

  .logo {
    font-size: 1rem;
    letter-spacing: -0.3px;
  }

  .nav-toggle {
    padding: var(--space-xs);
  }

  .nav-toggle span {
    width: 18px;
    height: 1.5px;
    margin: 4px 0;
  }

  nav {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    padding: var(--space-md) var(--space-sm);
    display: none;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
  }

  nav.active {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  nav a {
    font-size: 0.8rem;
    padding-bottom: 0.15rem;
  }

  .hero {
    min-height: 55vh;
  }

  .hero-content {
    padding: 0 var(--space-sm);
  }

  .hero-content h1 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 10px rgba(20, 255, 236, 0.2);
  }

  .hero-content p {
    font-size: 0.8rem;
    margin-bottom: var(--space-md);
    line-height: 1.4;
  }

  .btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
  }

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

  section {
    padding: var(--space-lg) var(--space-sm);
  }

  .section-title {
    margin-bottom: var(--space-lg);
  }

  .section-title h2 {
    font-size: 1.2rem;
  }

  .section-title::after {
    width: 40px;
    height: 2px;
    margin: var(--space-sm) auto 0;
  }

  h1 {
    font-size: 1.3rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  h3 {
    font-size: 0.95rem;
  }

  h4 {
    font-size: 0.9rem;
  }

  p {
    font-size: 0.8rem;
    margin-bottom: var(--space-md);
    line-height: 1.5;
  }

  .grid {
    gap: var(--space-md);
  }

  .card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .card-image {
    height: 140px;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-sm);
  }

  .card-title {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
  }

  .card-price {
    font-size: 1.1rem;
    margin: var(--space-md) 0;
  }

  .testimonial {
    padding: var(--space-md);
    border-left-width: 2px;
    margin-bottom: var(--space-md);
  }

  .testimonial-text {
    font-size: 0.75rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
  }

  .testimonial-author {
    font-size: 0.8rem;
  }

  .form-group {
    margin-bottom: var(--space-md);
  }

  label {
    font-size: 0.8rem;
    margin-bottom: var(--space-xs);
    font-weight: 500;
  }

  input, textarea {
    padding: 0.5rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
  }

  textarea {
    min-height: 90px;
    resize: vertical;
  }

  .checkbox-group {
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }

  .checkbox-group label {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .modal {
    padding: var(--space-md);
  }

  .modal-content {
    padding: var(--space-md);
    width: 92%;
    max-width: 400px;
    border-radius: var(--radius-md);
  }

  .modal-close {
    font-size: 1.3rem;
    width: 28px;
    height: 28px;
  }

  .modal-title {
    font-size: 1rem;
    margin-bottom: var(--space-md);
  }

  .modal-text {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: var(--space-md);
  }

  .modal-buttons {
    gap: var(--space-sm);
    flex-wrap: wrap;
  }

  .modal-buttons button {
    padding: 0.45rem 0.7rem;
    font-size: 0.7rem;
    flex: 1;
    min-width: 80px;
  }

  .footer-content {
    gap: var(--space-md);
  }

  .footer-section {
    padding-bottom: var(--space-md);
  }

  .footer-section h4 {
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
  }

  .footer-section p {
    font-size: 0.75rem;
  }

  .footer-section a {
    font-size: 0.75rem;
    margin: var(--space-xs) 0;
  }

  .footer-bottom {
    font-size: 0.7rem;
    padding-top: var(--space-md);
  }

  .angled-section {
    padding: var(--space-lg) var(--space-sm);
    margin: var(--space-lg) 0;
    transform: skewY(-1.5deg);
  }

  .angled-section > * {
    transform: skewY(1.5deg);
  }

  ul {
    margin-left: var(--space-md);
    padding-left: 0;
  }

  ul li {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
  }

  ol {
    margin-left: var(--space-md);
  }

  ol li {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
  }

  strong {
    font-weight: 600;
  }
}

@media (max-width: 380px) {
  :root {
    --space-xs: 0.3rem;
    --space-sm: 0.5rem;
    --space-md: 0.9rem;
    --space-lg: 1rem;
    --space-xl: 1.3rem;
    --space-2xl: 1.5rem;
  }

  header {
    padding: var(--space-sm) var(--space-xs);
  }

  .logo {
    font-size: 0.9rem;
    letter-spacing: -0.2px;
  }

  .nav-toggle span {
    width: 16px;
    height: 1.5px;
    margin: 3px 0;
  }

  nav {
    padding: var(--space-md) var(--space-xs);
    display: none;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
  }

  nav.active {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  nav a {
    font-size: 0.75rem;
  }

  .hero {
    min-height: 50vh;
  }

  .hero-content h1 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
  }

  .hero-content p {
    font-size: 0.75rem;
    margin-bottom: var(--space-md);
  }

  .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }

  section {
    padding: var(--space-lg) var(--space-xs);
  }

  .container {
    padding: 0 var(--space-xs);
  }

  h1 {
    font-size: 1.1rem;
  }

  h2 {
    font-size: 1rem;
  }

  h3 {
    font-size: 0.9rem;
  }

  h4 {
    font-size: 0.85rem;
  }

  p {
    font-size: 0.75rem;
    margin-bottom: var(--space-md);
  }

  .card {
    padding: var(--space-md);
  }

  .card-image {
    height: 120px;
  }

  .card-title {
    font-size: 0.95rem;
  }

  .card-price {
    font-size: 1rem;
  }

  .testimonial {
    padding: var(--space-md);
  }

  .testimonial-text {
    font-size: 0.7rem;
  }

  .testimonial-author {
    font-size: 0.75rem;
  }

  label {
    font-size: 0.75rem;
  }

  input, textarea {
    padding: 0.4rem;
    font-size: 0.75rem;
  }

  textarea {
    min-height: 80px;
  }

  .checkbox-group label {
    font-size: 0.7rem;
  }

  .modal-content {
    width: 94%;
    padding: var(--space-md);
  }

  .modal-title {
    font-size: 0.95rem;
  }

  .modal-text {
    font-size: 0.7rem;
  }

  .modal-buttons button {
    padding: 0.4rem 0.6rem;
    font-size: 0.65rem;
  }

  .footer-section h4 {
    font-size: 0.8rem;
  }

  .footer-section a {
    font-size: 0.7rem;
  }

  .footer-bottom {
    font-size: 0.65rem;
  }

  ul li {
    font-size: 0.75rem;
  }

  ol li {
    font-size: 0.75rem;
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.25rem;
    --space-sm: 0.4rem;
    --space-md: 0.8rem;
    --space-lg: 0.9rem;
    --space-xl: 1.1rem;
    --space-2xl: 1.3rem;
  }

  html {
    font-size: 14px;
  }

  header {
    padding: var(--space-sm) var(--space-xs);
  }

  .logo {
    font-size: 0.85rem;
    letter-spacing: -0.1px;
  }

  .nav-toggle span {
    width: 14px;
    height: 1.5px;
    margin: 2px 0;
  }

  nav {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    padding: var(--space-md) var(--space-xs);
    display: none;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
  }

  nav.active {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  nav a {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 45vh;
  }

  .hero-content {
    padding: 0 var(--space-xs);
  }

  .hero-content h1 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
  }

  .hero-content p {
    font-size: 0.7rem;
    margin-bottom: var(--space-md);
  }

  .btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.65rem;
  }

  section {
    padding: var(--space-lg) var(--space-xs);
  }

  .container {
    padding: 0 var(--space-xs);
  }

  h1 {
    font-size: 1rem;
  }

  h2 {
    font-size: 0.95rem;
  }

  h3 {
    font-size: 0.85rem;
  }

  h4 {
    font-size: 0.8rem;
  }

  p {
    font-size: 0.7rem;
    margin-bottom: var(--space-md);
    line-height: 1.4;
  }

  .section-title {
    margin-bottom: var(--space-lg);
  }

  .section-title::after {
    width: 30px;
    height: 1.5px;
    margin: var(--space-sm) auto 0;
  }

  .card {
    padding: var(--space-md);
  }

  .card-image {
    height: 100px;
    margin-bottom: var(--space-md);
  }

  .card-title {
    font-size: 0.9rem;
  }

  .card-price {
    font-size: 0.95rem;
  }

  .testimonial {
    padding: var(--space-md);
    border-left-width: 2px;
  }

  .testimonial-text {
    font-size: 0.65rem;
    line-height: 1.3;
  }

  .testimonial-author {
    font-size: 0.7rem;
  }

  label {
    font-size: 0.7rem;
  }

  input, textarea {
    padding: 0.35rem;
    font-size: 0.7rem;
  }

  textarea {
    min-height: 70px;
  }

  .checkbox-group label {
    font-size: 0.65rem;
  }

  .modal-content {
    width: 96%;
    padding: var(--space-md);
  }

  .modal-title {
    font-size: 0.9rem;
  }

  .modal-text {
    font-size: 0.65rem;
    line-height: 1.3;
  }

  .modal-buttons button {
    padding: 0.35rem 0.5rem;
    font-size: 0.6rem;
  }

  .footer-section h4 {
    font-size: 0.75rem;
  }

  .footer-section a {
    font-size: 0.65rem;
  }

  .footer-bottom {
    font-size: 0.6rem;
  }

  ul {
    margin-left: var(--space-md);
  }

  ul li {
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
  }

  ol li {
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
  }

  .angled-section {
    padding: var(--space-lg) var(--space-xs);
    margin: var(--space-lg) 0;
    transform: skewY(-1deg);
  }

  .angled-section > * {
    transform: skewY(1deg);
  }
}
