@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import 'https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css';


:root {
  --primary-blue: #1e3a8a;
  --primary-orange: #ea580c;
  --neutral-gray: #64748b;
  --light-gray: #f1f5f9;
  --dark-gray: #334155;
  --white: #ffffff;
  --success-green: #16a34a;
  --warning-yellow: #eab308;
  --error-red: #dc2626;
}


html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.8rem;
  font-weight: 700;
}

h3 {
  font-size: 2.2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.8rem;
  font-weight: 600;
}

h5 {
  font-size: 1.5rem;
  font-weight: 500;
}

h6 {
  font-size: 1.2rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}


.button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.button-primary {
  background-color: var(--primary-orange);
  color: var(--white);
  padding: 12px 24px;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.button-primary:hover {
  background-color: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
  color: var(--white);
}

.button-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 10px 24px;
}

.button-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-1px);
}

.button-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 10px 24px;
}

.button-outline:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

.button-ghost {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
}

.button-ghost:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}


.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-brand .navbar-item {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-blue) !important;
}

.navbar-menu {
  background-color: transparent;
}

.navbar-item {
  font-weight: 500;
  color: var(--dark-gray) !important;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}

.navbar-item:hover {
  color: var(--primary-orange) !important;
}

.navbar-item.is-active {
  color: var(--primary-orange) !important;
  font-weight: 600;
}


.hero-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #3b82f6 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: var(--light-gray)
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


.card {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.card-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #3b82f6 100%);
  color: var(--white);
  padding: 1.5rem;
  border-bottom: none;
}

.card-content {
  padding: 2rem;
}

.service-card .card-content {
  text-align: center;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #fb923c 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
}


.section {
  padding: 5rem 0;
}

.section-compact {
  padding: 3rem 0;
}

.section-large {
  padding: 7rem 0;
}


.columns {
  margin: 0 -0.75rem;
}

.column {
  padding: 0 0.75rem;
}


.field {
  margin-bottom: 1.5rem;
}

.label {
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
  display: block;
}

.input, .textarea, .select select {
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: var(--white);
}

.input:focus, .textarea:focus, .select select:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
  outline: none;
}

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


.table {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.table th {
  background-color: var(--primary-blue);
  color: var(--white);
  font-weight: 600;
  border-bottom: none;
  padding: 1rem;
}

.table td {
  padding: 1rem;
  border-bottom: 1px solid #f1f5f9;
}


.footer {
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-orange);
}

.footer-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}


.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-orange);
}

.price-small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--neutral-gray);
}


.testimonial {
  background-color: var(--light-gray);
  border-radius: 16px;
  padding: 2rem;
  margin: 1rem 0;
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-orange);
  font-weight: 800;
  line-height: 1;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  max-width: 500px;
  margin: 0 auto;
}

.cookie-consent-banner h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.cookie-consent-banner p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-consent-buttons .button {
  flex: 1;
  min-width: 120px;
}


@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .button {
    width: 100%;
    justify-content: center;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .price {
    font-size: 1.6rem;
  }
}


@media (prefers-contrast: high) {
  .button {
    border: 2px solid currentColor;
  }
  
  .card {
    border: 2px solid var(--dark-gray);
  }
}


@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


@media print {
  .navbar,
  .cookie-consent-banner,
  .button {
    display: none !important;
  }
  
  .hero-section {
    background: none !important;
    color: black !important;
    min-height: auto !important;
  }
  
  .card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}


.button:focus,
.navbar-item:focus,
.input:focus,
.textarea:focus,
.select select:focus {
  outline: 3px solid var(--primary-orange);
  outline-offset: 2px;
}


a {
  color: var(--primary-orange);
  transition: color 0.3s ease;
  text-decoration: none;
}

a:hover {
  color: #c2410c;
  text-decoration: underline;
}

a:focus {
  outline: 3px solid var(--primary-orange);
  outline-offset: 2px;
  border-radius: 4px;
}


.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

.has-text-primary { color: var(--primary-blue); }
.has-text-secondary { color: var(--primary-orange); }
.has-text-muted { color: var(--neutral-gray); }
.has-text-success { color: var(--success-green); }
.has-text-warning { color: var(--warning-yellow); }
.has-text-error { color: var(--error-red); }

.has-background-primary { background-color: var(--primary-blue); }
.has-background-secondary { background-color: var(--primary-orange); }
.has-background-light { background-color: var(--light-gray); }
.has-background-dark { background-color: var(--dark-gray); }


.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--primary-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}