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

:root {
  --primary: #FF6B00;
  --secondary: #0021FF;
  --accent: #FF008A;
  --light-accent: #00E1FF;
  --background: #FFFFFF;
  --text: #000000;
  --gray: #333333;
  --light-gray: #f2f2f2;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  border-bottom: 5px solid var(--accent);
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 2rem;
  position: relative;
}

h3::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 5px;
  background-color: var(--secondary);
  bottom: -10px;
  left: 0;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

.bg-primary {
  background-color: var(--primary);
  color: white;
}

.bg-secondary {
  background-color: var(--secondary);
  color: white;
}

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

.bg-light {
  background-color: var(--light-gray);
}


.brutal-container {
  border: 5px solid var(--text);
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.brutal-container::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: 10px;
  background-color: var(--accent);
}

.brutal-box {
  border: 3px solid var(--text);
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: transform 0.3s;
}

.brutal-box:hover {
  transform: translateY(-5px);
  box-shadow: 5px 5px 0 var(--primary);
}


.brutal-btn {
  background-color: var(--primary);
  color: white;
  border: 3px solid var(--text);
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.brutal-btn:hover {
  background-color: var(--text);
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0 var(--accent);
}

.brutal-btn-secondary {
  background-color: var(--secondary);
}

.brutal-btn-accent {
  background-color: var(--accent);
}


.brutal-nav {
  background-color: var(--background);
  border-bottom: 5px solid var(--text);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brutal-nav .uk-navbar-container {
  background: transparent !important;
}

.brutal-nav .uk-navbar-nav > li > a {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
  min-height: auto;
  padding: 0.5rem 1rem;
}

.brutal-nav .uk-navbar-nav > li:hover > a {
  color: var(--accent);
  background-color: var(--text);
}

.brutal-nav .uk-navbar-toggle {
  color: var(--text);
}

.brutal-nav .uk-navbar-toggle:hover {
  color: var(--accent);
}

.brutal-logo {
  display: flex;
  align-items: center;
}

.brutal-logo img {
  height: 50px;
}


.brutal-hero {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.brutal-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: repeating-linear-gradient(
    45deg,
    var(--primary),
    var(--primary) 20px,
    var(--secondary) 20px,
    var(--secondary) 40px
  );
}

.brutal-hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.brutal-hero .uk-text-lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--accent);
  padding-left: 1rem;
}


.brutal-feature {
  padding: 2rem;
  border: 3px solid var(--text);
  margin-bottom: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.brutal-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: var(--primary);
}

.brutal-feature:nth-child(2n)::before {
  background-color: var(--secondary);
}

.brutal-feature:nth-child(3n)::before {
  background-color: var(--accent);
}

.brutal-feature:hover {
  transform: translateY(-5px);
  box-shadow: 5px 5px 0 var(--text);
}

.brutal-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.brutal-feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}


.brutal-testimonial {
  padding: 2rem;
  border: 3px solid var(--text);
  position: relative;
  margin-bottom: 2rem;
}

.brutal-testimonial::before {
  content: "``";
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 6rem;
  color: var(--accent);
  line-height: 1;
  font-weight: 700;
}

.brutal-testimonial-content {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.brutal-testimonial-author {
  font-weight: 700;
  color: var(--secondary);
}


.brutal-form {
  border: 3px solid var(--text);
  padding: 2rem;
  position: relative;
}

.brutal-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.brutal-form .uk-input,
.brutal-form .uk-textarea,
.brutal-form .uk-select {
  border: 2px solid var(--text);
  border-radius: 0;
  padding: 0.8rem;
  font-family: 'Space Grotesk', sans-serif;
}

.brutal-form .uk-input:focus,
.brutal-form .uk-textarea:focus,
.brutal-form .uk-select:focus {
  border-color: var(--accent);
  box-shadow: none;
}

.brutal-form .uk-checkbox,
.brutal-form .uk-radio {
  border: 2px solid var(--text);
  width: 20px;
  height: 20px;
}

.brutal-form .uk-checkbox:checked,
.brutal-form .uk-radio:checked {
  background-color: var(--primary);
}

.brutal-form label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}


.brutal-footer {
  background-color: var(--text);
  color: white;
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.brutal-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: repeating-linear-gradient(
    45deg,
    var(--primary),
    var(--primary) 20px,
    var(--accent) 20px,
    var(--accent) 40px
  );
}

.brutal-footer h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.brutal-footer ul {
  list-style: none;
  padding: 0;
}

.brutal-footer ul li {
  margin-bottom: 0.8rem;
}

.brutal-footer a {
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.brutal-footer a:hover {
  color: var(--accent);
  text-decoration: none;
}

.brutal-footer a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s;
}

.brutal-footer a:hover::after {
  width: 100%;
}

.brutal-copyright {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}


.brutal-divider {
  height: 5px;
  background-color: var(--text);
  margin: 3rem 0;
}

.brutal-badge {
  background-color: var(--accent);
  color: white;
  padding: 0.3rem 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: inline-block;
  position: relative;
}

.brutal-badge::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--text);
  top: 3px;
  left: 3px;
  z-index: -1;
}


.brutal-offer {
  border: 3px solid var(--text);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.brutal-offer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 50px 0 0;
  border-color: var(--accent) transparent transparent transparent;
}

.brutal-offer h3 {
  margin-top: 0.5rem;
}

.brutal-offer-badge {
  position: absolute;
  top: 10px;
  right: -30px;
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 2rem;
  transform: rotate(45deg);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  box-shadow: 0 0 0 3px var(--text);
}


.brutal-step {
  border: 3px solid var(--text);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.brutal-step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: var(--secondary);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  border: 3px solid var(--text);
}


.brutal-contact-info {
  border: 3px solid var(--text);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.brutal-contact-info i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
}

.brutal-map {
  border: 3px solid var(--text);
  height: 400px;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--text);
  color: white;
  padding: 1rem;
  z-index: 9999;
  display: none;
  border-top: 5px solid var(--accent);
}

.cookie-consent.show {
  display: block;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  overflow-y: auto;
}

.cookie-settings-modal.show {
  display: block;
}

.cookie-settings-container {
  background-color: white;
  max-width: 600px;
  margin: 50px auto;
  padding: 2rem;
  border: 5px solid var(--text);
  position: relative;
}

.cookie-settings-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.cookie-switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .cookie-slider {
  background-color: var(--primary);
}

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--primary);
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}


.thanks-container {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 2rem;
}


@media (max-width: 960px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .brutal-container {
    padding: 1.5rem;
  }
  
  .brutal-hero {
    padding: 4rem 0 3rem;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .brutal-container {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .brutal-hero {
    padding: 3rem 0 2rem;
  }
  
  .brutal-feature,
  .brutal-testimonial,
  .brutal-form,
  .brutal-offer,
  .brutal-step {
    padding: 1.5rem;
  }
  
  .brutal-form::before {
    width: 30px;
    height: 30px;
  }
  
  .brutal-offer::before {
    border-width: 30px 30px 0 0;
  }
  
  .brutal-step-number {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}