:root {
  --primary-gradient: linear-gradient(135deg, #0ea5e9 0%, #f97316 100%);
  --secondary-gradient: linear-gradient(135deg, #0284c7 0%, #ea580c 100%);
  --accent-icy: #0ea5e9;
  --accent-warm: #f97316;
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-light: #f1f5f9;
  --bg-dark: #0f172a;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

strong, p, b {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
  min-height: 52px;
  gap: 10px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

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

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

.btn-white {
  background: var(--bg-white);
  color: var(--accent-icy);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 42px;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 50px;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  padding: 15px 0;
  transition: var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 22px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-gradient);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-icy);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--primary-gradient);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 64px;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero-title span {
  display: block;
  background: linear-gradient(90deg, #fef3c7, #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 50%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}


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

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
}

.service-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-desc {
  color: #64748b;
  margin-bottom: 20px;
  font-size: 15px;
}

.service-price {
  font-size: 28px;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--accent-icy);
  font-weight: 600;
}

.service-link:hover {
  gap: 15px;
}


.features-section {
  background: var(--bg-light);
}

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

.feature-card {
  background: var(--bg-white);
  padding: 35px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 25px;
}

.feature-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-desc {
  color: #64748b;
  font-size: 15px;
}


.about-section {
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  height: 60%;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.3;
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content p {
  color: #475569;
  margin-bottom: 20px;
  font-size: 17px;
}

.about-list {
  list-style: none;
  margin: 30px 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-dark);
}

.about-list li::before {
  content: '✓';
  width: 28px;
  height: 28px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  flex-shrink: 0;
}


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

.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-role {
  color: var(--accent-icy);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-desc {
  color: #64748b;
  font-size: 14px;
}


.testimonials-section {
  background: var(--primary-gradient);
  color: var(--text-light);
}

.testimonials-section .section-title {
  color: var(--text-light);
  -webkit-text-fill-color: var(--text-light);
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
  opacity: 0.95;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--text-light);
}

.testimonial-name {
  font-weight: 600;
  font-size: 16px;
}

.testimonial-location {
  font-size: 14px;
  opacity: 0.8;
}


.cta-section {
  background: var(--bg-light);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 42px;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text {
  color: #64748b;
  font-size: 18px;
  margin-bottom: 40px;
}


.contact-section {
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info {
  padding: 40px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  color: var(--text-light);
}

.contact-info h3 {
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 5px;
}

.contact-value {
  font-size: 17px;
  font-weight: 500;
}

.contact-value a {
  color: var(--text-light);
}

.contact-form {
  background: var(--bg-light);
  padding: 45px;
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: 16px;
  transition: var(--transition-fast);
  background: var(--bg-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-icy);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

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


.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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


.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: #94a3b8;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-title {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-gradient);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 15px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-icy);
  padding-left: 5px;
}

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

.footer-copy {
  color: #64748b;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: #64748b;
  font-size: 14px;
}

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


.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 420px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-medium);
  z-index: 9999;
  display: block;
}

.cookie-banner h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.cookie-banner p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.cookie-btn-accept {
  background: var(--primary-gradient);
  color: var(--text-light);
}

.cookie-btn-accept:hover {
  opacity: 0.9;
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid #e2e8f0;
}

.cookie-btn-decline:hover {
  border-color: var(--text-dark);
}


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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--text-light);
  font-size: 18px;
  font-weight: 600;
}


.faq-section {
  background: var(--bg-light);
}

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

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-icy);
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

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

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

.faq-answer-content {
  padding: 0 30px 25px;
  color: #64748b;
  line-height: 1.8;
}


.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
}

.process-item {
  text-align: center;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-light);
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
}

.process-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: calc(-50% + 40px);
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-icy), rgba(14, 165, 233, 0.2));
  z-index: 1;
}

.process-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.process-desc {
  color: #64748b;
  font-size: 16px;
  max-width: 250px;
  margin: 0 auto;
}


.page-header {
  padding: 160px 0 80px;
  background: var(--primary-gradient);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-title {
  font-size: 52px;
  color: var(--text-light);
  margin-bottom: 15px;
  position: relative;
}

.page-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}


.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-light);
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin: 0 auto 30px;
  color: var(--text-light);
}

.thank-you-title {
  font-size: 42px;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-text {
  color: #64748b;
  font-size: 18px;
  margin-bottom: 40px;
}


@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-image {
    display: none;
  }

  .about-grid {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-medium);
    transform: translateY(-150%);
    transition: var(--transition-smooth);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-text {
    font-size: 17px;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-accent {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .process-item::after {
    display: none;
  }

  .cookie-banner {
    left: 15px;
    right: 15px;
    max-width: none;
    bottom: 15px;
  }

  .page-title {
    font-size: 38px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}


.page-header {
  padding: 160px 0 80px;
  background: var(--primary-gradient);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-title {
  font-size: 52px;
  color: var(--text-light);
  margin-bottom: 15px;
  position: relative;
}

.page-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}


.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-light);
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin: 0 auto 30px;
  color: var(--text-light);
}

.thank-you-title {
  font-size: 42px;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-text {
  color: #64748b;
  font-size: 18px;
  margin-bottom: 40px;
}


.mission-section {
  background: var(--bg-light);
}

.mission-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mission-card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 25px;
}

.mission-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.mission-text {
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
}


.stats-section {
  background: var(--primary-gradient);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  color: var(--text-light);
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}


.values-section {
  background: var(--bg-light);
}

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

.value-card {
  background: var(--bg-white);
  padding: 35px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
}

.value-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.value-desc {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}


.emergency-box {
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.emergency-box h4 {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 10px;
}

.emergency-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 0;
}


.services-detailed {
  background: var(--bg-white);
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #e2e8f0;
}

.service-detail-card.service-alt {
  direction: rtl;
}

.service-detail-card.service-alt > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-detail-content {
  max-width: 500px;
}

.service-badge {
  display: inline-block;
  background: var(--primary-gradient);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-detail-title {
  font-size: 36px;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-detail-desc {
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-pricing {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 25px;
  margin-top: 30px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.price-item:last-child {
  border-bottom: none;
}

.price-label {
  color: #64748b;
  font-size: 15px;
}

.price-value {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 18px;
}


.maintenance-section {
  background: var(--bg-light);
}

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

.maintenance-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
}

.maintenance-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.maintenance-card.featured {
  border: 3px solid var(--accent-icy);
}

.maintenance-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-gradient);
  color: var(--text-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.maintenance-header {
  padding: 35px 30px 25px;
  text-align: center;
  background: var(--bg-light);
}

.plan-name {
  font-size: 24px;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 48px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-period {
  color: #64748b;
  font-size: 14px;
  margin-top: 5px;
}

.plan-features {
  padding: 30px;
  list-style: none;
}

.plan-features li {
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-features li::before {
  content: '✓';
  color: var(--accent-icy);
  font-weight: bold;
}

.maintenance-card .btn {
  margin: 0 30px 30px;
  width: calc(100% - 60px);
}


.additional-services {
  background: var(--bg-white);
}


.gallery-section {
  background: var(--bg-white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--text-light);
  font-size: 18px;
  font-weight: 600;
}


.project-highlights {
  background: var(--bg-light);
}

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

.highlight-card {
  background: var(--bg-white);
  padding: 35px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 25px;
}

.highlight-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.highlight-desc {
  color: #64748b;
  font-size: 15px;
}


.brands-section {
  background: var(--bg-white);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
}

.brand-item {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #64748b;
}


.faq-section {
  background: var(--bg-light);
}

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

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-icy);
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

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

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

.faq-answer-content {
  padding: 0 30px 25px;
  color: #64748b;
  line-height: 1.8;
}


.process-section {
  background: var(--bg-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
}

.process-item {
  text-align: center;
  position: relative;
}

.process-number {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-light);
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
}

.process-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: calc(-50% + 40px);
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-icy), rgba(14, 165, 233, 0.2));
  z-index: 1;
}

.process-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.process-desc {
  color: #64748b;
  font-size: 16px;
  max-width: 250px;
  margin: 0 auto;
}


.installation-process {
  background: var(--bg-light);
}

.installation-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 60px;
  bottom: -40px;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-icy), rgba(14, 165, 233, 0.2));
}

.timeline-marker {
  width: 100px;
  height: 100px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-light);
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  padding-top: 5px;
}

.timeline-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.timeline-desc {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}


.repair-process {
  background: var(--bg-white);
}

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

.repair-card {
  background: var(--bg-light);
  padding: 35px;
  border-radius: var(--radius-md);
  text-align: center;
}

.repair-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 25px;
}

.repair-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.repair-desc {
  color: #64748b;
  font-size: 15px;
}


.guarantee-section {
  background: var(--primary-gradient);
  padding: 80px 0;
  text-align: center;
}

.guarantee-content {
  max-width: 700px;
  margin: 0 auto;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 25px;
}

.guarantee-title {
  font-size: 36px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.guarantee-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 30px;
}

.guarantee-list {
  list-style: none;
  text-align: left;
  display: inline-block;
}

.guarantee-list li {
  color: var(--text-light);
  padding: 10px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.guarantee-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}


.service-area-map {
  background: var(--bg-white);
}

.counties-section {
  background: var(--bg-light);
}

.counties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.county-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-soft);
}

.county-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.county-name {
  font-size: 24px;
  margin-bottom: 10px;
}

.county-desc {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 20px;
}

.city-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-list li {
  background: var(--bg-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-dark);
}


.towns-section {
  background: var(--bg-white);
}

.towns-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.town-item {
  background: var(--bg-light);
  padding: 25px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-icy);
}

.town-name {
  font-size: 20px;
  margin-bottom: 10px;
}

.town-desc {
  color: #64748b;
  font-size: 14px;
}


.why-local-section {
  background: var(--primary-gradient);
  padding: 80px 0;
}

.why-local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-local-content {
  color: var(--text-light);
}

.why-local-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.why-local-desc {
  font-size: 17px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.why-local-list {
  list-style: none;
}

.why-local-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.why-local-list li::before {
  content: '✓';
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.why-local-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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


.legal-content {
  background: var(--bg-white);
  padding: 80px 0;
}

.policy-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

.policy-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.policy-section p {
  color: #475569;
  margin-bottom: 15px;
  line-height: 1.8;
}

.policy-section ul {
  margin: 15px 0 15px 30px;
}

.policy-section li {
  color: #475569;
  margin-bottom: 10px;
  line-height: 1.7;
}

.contact-info-box {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 35px;
  max-width: 800px;
  margin: 50px auto 0;
  text-align: center;
}

.contact-info-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-info-box p {
  color: #64748b;
}

.policy-footer {
  max-width: 800px;
  margin: 50px auto 0;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}


.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-dark);
}

.cookie-table td {
  color: #475569;
  font-size: 14px;
}


.list-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: 10px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
    min-height: 48px;
  }

  .hero-title {
    font-size: 30px;
  }

  .section-title {
    font-size: 28px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }
}
