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

:root {
  --electric-blue: #2563eb;
  --coral-orange: #f97316;
  --gold-accent: #fbbf24;
  --dark-bg: #0f172a;
  --light-bg: #f8fafc;
  --text-light: #f1f5f9;
  --text-dark: #1e293b;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

strong, p {
  color: inherit;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.columns {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.header-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-orange));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  /* color: var(--text-light); */
}

.logo-text span {
  color: var(--coral-orange);
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease !important;
  position: relative;
}

.nav-link:hover, .nav-link.is-active {
  background: rgba(37, 99, 235, 0.2) !important;
  color: var(--gold-accent) !important;
}

.navbar-burger {
  background: transparent !important;
  border: none;
  height: auto;
  width: auto;
  display: none;
  cursor: pointer;
  margin-right: 20px;
}

.navbar-burger span {
  background-color: var(--text-dark) !important;
  height: 3px !important;
  width: 28px !important;
  border-radius: 3px;
  display: block;
  margin: 5px 0;
  transition: 0.3s;
}

.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e3a5f 50%, var(--dark-bg) 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-orange), var(--gold-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(241, 245, 249, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-image-container {
  position: relative;
}

.hero-main-image {
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1rem;
  animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  bottom: 20%;
  left: -8%;
  animation-delay: 2s;
}

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

.primary-cta-button {
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-orange));
  color: white !important;
  padding: 1rem 2rem !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.primary-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.secondary-cta-button {
  background: transparent;
  color: var(--text-light) !important;
  padding: 1rem 2rem !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  border: 2px solid rgba(251, 191, 36, 0.5) !important;
  transition: all 0.3s ease !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.secondary-cta-button:hover {
  border-color: var(--gold-accent) !important;
  background: rgba(251, 191, 36, 0.1);
}

.section-padding {
  padding: 100px 0;
}

.section-dark {
  background: var(--dark-bg);
  color: var(--text-light);
}

.section-light {
  background: var(--light-bg);
  color: var(--text-dark);
}

.section-accent {
  background: linear-gradient(135deg, var(--electric-blue), #1e40af);
  color: var(--text-light);
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
  color: var(--gold-accent);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(241, 245, 249, 0.7);
  max-width: 600px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-5px);
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-blue), var(--coral-orange));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(251, 191, 36, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-orange));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.service-card-text {
  color: rgba(241, 245, 249, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-accent);
}

.service-price-label {
  font-size: 0.875rem;
  color: rgba(241, 245, 249, 0.5);
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--gold-accent), #f59e0b);
  color: var(--dark-bg);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.advantage-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.advantage-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.advantage-text {
  color: #64748b;
  font-size: 0.95rem;
}

.about-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid var(--gold-accent);
  border-radius: 24px;
  pointer-events: none;
  opacity: 0.3;
}

.about-content-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about-content-text {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stat-box {
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-orange));
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  color: white;
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

.team-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

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

.team-image-container {
  position: relative;
  padding-top: 120%;
  overflow: hidden;
}

.team-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.95));
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--gold-accent);
  font-size: 0.875rem;
  font-weight: 500;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.review-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
}

.review-stars {
  color: var(--gold-accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-text {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-accent);
}

.review-author-info {
  flex: 1;
}

.review-author-name {
  font-weight: 700;
  color: var(--text-dark);
}

.review-author-location {
  font-size: 0.875rem;
  color: #64748b;
}

.contact-section {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.contact-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.15) 1px, transparent 1px),
    radial-gradient(circle at 90% 90%, rgba(249, 115, 22, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(251, 191, 36, 0.3);
}

.contact-icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-orange));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.875rem;
  color: rgba(241, 245, 249, 0.6);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-weight: 600;
  color: var(--text-light);
}

.contact-value a {
  color: inherit;
}

.contact-value a:hover {
  color: var(--gold-accent);
}

.form-container {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--electric-blue);
  background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(241, 245, 249, 0.4);
}

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

.form-select option {
  background: var(--dark-bg);
  color: var(--text-light);
}

.submit-button {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-orange));
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.legal-content {
  background: white;
  border-radius: 24px;
  padding: 3rem;
}

.legal-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.legal-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.legal-text {
  color: #475569;
  line-height: 1.8;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(37, 99, 235, 0.05);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-orange));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: #475569;
  line-height: 1.8;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.area-chip {
  background: white;
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.area-chip:hover {
  border-color: var(--electric-blue);
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-2px);
}

.footer-section {
  background: var(--dark-bg);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: rgba(241, 245, 249, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(241, 245, 249, 0.6);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--gold-accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(241, 245, 249, 0.6);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item a {
  color: inherit;
}

.footer-contact-item a:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  padding-top: 40px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(241, 245, 249, 0.4);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(241, 245, 249, 0.4);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--gold-accent);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 500px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 20px;
  padding: 2rem;
  z-index: 9999;
  display: block;
  animation: slideUp 0.5s ease;
}

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

.cookie-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.cookie-text {
  color: rgba(241, 245, 249, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-orange));
  color: white;
}

.cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.cookie-btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  color: var(--text-light);
}

.cookie-btn-secondary:hover {
  border-color: var(--gold-accent) !important;
  background: rgba(255, 255, 255, 0.05);
}

.hidden-content {
  display: none;
}

.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto 2rem;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thank-you-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.detail-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e3a5f 50%, var(--dark-bg) 100%);
  position: relative;
  overflow: hidden;
}

.detail-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--electric-blue), var(--coral-orange));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.process-content {
  flex: 1;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process-text {
  color: #475569;
  line-height: 1.7;
}

.pricing-table {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-service {
  font-weight: 600;
  color: var(--text-dark);
}

.pricing-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--electric-blue);
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-floating-card {
    display: none;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .cookie-consent-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .form-container {
    padding: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .navbar-burger {
    display: block;
    padding: 0.5rem;
  }
  
  .navbar-menu {
    display: none;
  }
  
  .navbar-menu.is-active {
    display: block;
    background: rgba(15, 23, 42, 0.95);
    padding: 1rem 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .navbar-burger {
    display: block;
    padding: 0.5rem;
  }
  
  .navbar-menu {
    display: none;
  }
  
  .navbar-menu.is-active {
    display: block;
    background: rgba(15, 23, 42, 0.95);
    padding: 1rem 0;
  }
}