@layer reset, theme;


* { box-sizing: border-box; }
html, body { height: 100%; }
body, h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }
img, video { max-width: 100%; height: auto; display: block; }

:root {
  --color-primary: #033865;
  --color-accent: #da0034;
  --color-text: #333333;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-bg: #ffffff;
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  --font-size-base: 16px;
  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
  --z-base: 0;
  --z-header: 40;
  --z-dropdown: 100;
  --z-overlay: 300;
  --z-sticky: 400;
  --z-modal: 1000;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-bg);
}

h1 { font-size: clamp(1.75rem, 2.5vw, 2.25rem); }
h2 { font-size: clamp(1.375rem, 2vw, 1.75rem); }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); }

.u-section-spacing { margin-bottom: var(--space-16); }
.u-text-muted { color: var(--color-muted); }
.u-border { border: 1px solid var(--color-border); }
.u-rounded-xl { border-radius: 16px; }
.u-container { max-width: 1200px; margin-inline: auto; padding-inline: var(--space-5); }

.site-main { display: block; }

.text-left { text-align: left; }
.mb-8 { margin-bottom: var(--space-8); }
.mb-16 { margin-bottom: var(--space-16); }
.px-5 { padding-left: var(--space-5); padding-right: var(--space-5); }
.py-10 { padding-top: var(--space-10); padding-bottom: var(--space-10); }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.rounded-2xl { border-radius: 1rem; }
.border { border-width: 1px; border-style: solid; border-color: var(--color-border); }
.border-gray-200 { border-color: #e5e7eb; }

.absolute { position: absolute; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: var(--space-4); }
.h-10 { height: 2.5rem; }
.w-10 { width: 2.5rem; }
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.object-cover { object-fit: cover; }

.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }

@media (min-width: 768px) {
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:block { display: block; }
}

.text-gray-900 { color: #1a1a1a; }
.text-gray-600 { color: #4b5563; }
.text-yellow-400 { color: #fbbf24; }
.text-\[\#da0034\] { color: #da0034; }

.hidden { display: none; }

.leading-tight { line-height: 1.25; }

.mb-5 { margin-bottom: 1.25rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-6 { margin-top: var(--space-6); }

.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * (1 - var(--tw-space-x-reverse)));
}
.-space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.75rem * (1 - var(--tw-space-x-reverse)));
}

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }

.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-gray-500 { color: #6b7280; }
.text-gray-700 { color: #374151; }

.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.pt-4 { padding-top: var(--space-4); }
.pb-4 { padding-bottom: var(--space-4); }
.pl-4 { padding-left: var(--space-4); }
.pr-4 { padding-right: var(--space-4); }

.m-4 { margin: var(--space-4); }
.m-6 { margin: var(--space-6); }
.m-8 { margin: var(--space-8); }
.mt-4 { margin-top: var(--space-4); }
.ml-4 { margin-left: var(--space-4); }
.mr-4 { margin-right: var(--space-4); }

.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.hover\:text-\[\#c60030\]:hover { color: #c60030; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }

@media (min-width: 640px) {
  .sm\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:text-center { text-align: center; }
  .md\:text-left { text-align: left; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
}

.client-avatars {
    display: flex;
    margin-left: -12px;
    align-items: center;
    flex-shrink: 0;
    height: 40px;
}

.client-avatar {
    display: inline-block;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -12px;
}

.client-avatar:first-child {
    margin-left: 0;
}

.client-rating {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 40px;
    flex: 1;
}

.client-stars {
    display: flex;
    color: #fbbf24;
    gap: 1px;
    align-items: center;
    margin-bottom: 2px;
    margin-top: 0;
}

.client-stars i {
    font-size: 14px;
    color: #fbbf24 !important;
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 1;
    text-align: center;
}

.stars-fallback {
    display: none;
    font-size: 14px;
    color: #fbbf24;
    letter-spacing: 1px;
    line-height: 1;
    text-align: center;
}

.client-stars:not(:has(i[class*="fa"])) .stars-fallback {
    display: inline;
}

.accent-button {
    display: inline-block;
    padding: 12px 24px;
    background: #da0034;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    line-height: 1.2;
}

.accent-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.accent-button:hover {
    background: #c60030;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 0, 52, 0.35);
    color: white;
    text-decoration: none;
}

.accent-button:hover::before {
    left: 100%;
}

.accent-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(218, 0, 52, 0.3);
}
