:root {
  --primary: #605dba;
  --primary-dark: #34306e;
  --violet: #747ed1;
  --fuchsia: #e668b3;
  --green: #45c4a0;
  --yellow: #fab758;
  --red: #e2626b;
  --dark: #1f2937;
  --muted: #60697b;
  --light: #fefefe;
  --soft: #f6f7fb;
  --white: #fff;
  --border: #e8eaf3;
  --shadow: 0 0.25rem 1.75rem rgba(30, 34, 40, .07);
  --radius: 0.8rem;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.bg-light { background: var(--soft); }
.bg-dark { background: #21262c; color: rgba(255,255,255,.78); }
.wrapper { position: relative; }
.section-padding { padding: 100px 0; }
.display-1, .display-3, .display-4, .display-5, .display-7 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin: 0;
}
.display-1 { font-size: clamp(2.65rem, 6vw, 3.85rem); }
.display-3 { font-size: clamp(2rem, 4vw, 3rem); }
.display-4 { font-size: clamp(1.75rem, 3vw, 2.35rem); }
.display-5 { font-size: clamp(1.6rem, 2.7vw, 2.1rem); }
.display-7 { font-size: clamp(1.45rem, 2vw, 1.8rem); }
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.55; }
.eyebrow {
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 14px;
}
.underline {
	position: relative;
    z-index: 2;
}
.underline::after {
	content: "";
    position: absolute;
    z-index: -1;
    display: block;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom;
	background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 208.01 8.3'%3E%3Cpath fill='%23fab758' d='M64.42,2.42Q42.78,1.46,21.19,0c-2.8-.19-4.09.89-3.87,2L3.92,1.87c-5.13-.05-5.28,3.87-.12,3.92l60.49.55c46.63,2.08,93.34,2.51,139.81,1.27,5-.13,5.39-3.87.13-3.92Z'/%3E%3C/svg%3E");
    left: 50%;
    bottom: -.1em;
    width: 110%;
    height: .3em;
    transform: translateX(-50%);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1;
  cursor: pointer;
  transition: .18s ease;
  box-shadow: 0 .5rem 1rem rgba(96,93,186,.18);
}
.btn:hover { transform: translateY(-2px); background: var(--primary-dark); }
.btn-white { background: #fff; color: var(--primary-dark); box-shadow: none; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(164,174,198,.12);
}
.card-body { padding: 34px 30px; }
.icon-pill {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
}
.icon-fuchsia { background: rgba(230,104,179,.12); color: var(--fuchsia); }
.icon-violet { background: rgba(116,126,209,.13); color: var(--violet); }
.icon-green { background: rgba(69,196,160,.13); color: var(--green); }
.icon-red { background: rgba(226,98,107,.12); color: var(--red); }
.icon-yellow { background: rgba(250,183,88,.18); color: #b97900; }
.icon-primary { background: rgba(96,93,186,.13); color: var(--primary); }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 22px 0;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.02em;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--primary);
  font-weight: 800;
}
.logo small { display: block; opacity: .72; font-family: "Manrope"; font-size: .74rem; font-weight: 700; letter-spacing: .02em; margin-top: 2px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,.84);
  font-weight: 800;
  font-size: .88rem;
}
.nav-links a:hover { color: #fff; }
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: transparent;
  color: rgba(255,255,255,.75);
  font-weight: 800;
  font-size: .78rem;
  cursor: pointer;
}
.lang-btn.active { background: #fff; color: var(--primary-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  background-image:
    linear-gradient(90deg, rgba(23,20,68,.82), rgba(33,35,92,.54) 48%, rgba(27,31,48,.36)),
    url("https://www.costawebexperts.es/fileadmin/user_upload/panoramic-vista-from-balcony-in-altea_LIGHTER_2.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero .container {
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 120px 0 170px;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 { color: #fff; margin-bottom: 22px; }

.hero p {
  color: rgba(255,255,255,.86);
  margin: 0 auto 34px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .btn:not(.btn-outline) {
  background: #44b542;
}

/* Divider */
.hero .overflow-hidden {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.divider {
  width: 100%;
  color: var(--soft);
  line-height: 0;
}

.divider svg {
  width: 100%;
  height: 120px;
  display: block;
}

/* Top intro boxes */
.top-cards {
  position: relative;
  z-index: 5;
  margin-bottom: -100px;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card.intro-card {
	position: relative;
    top: -130px;
}
.intro-card h4 {
  font-family: "Space Grotesk";
  font-size: 1.18rem;
  margin: 0 0 10px;
  letter-spacing: -.025em;
}
.intro-card p { margin: 0 0 14px; color: var(--muted); font-size: .96rem; }
.more { font-weight: 800; color: var(--primary); font-size: .9rem; }

/* About */
.intro-heading { max-width: 820px; margin: 0 auto 70px; }
.intro-heading h2 { margin-bottom: 12px; }
.intro-heading h3 { margin: 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.photo-collage {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 18px;
  align-items: center;
}
.photo-stack { display: grid; gap: 18px; }
.photo {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
  background: #ddd;
  margin: 0;
  padding: 0;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-small { height: 175px; }
.photo-main { height: 330px; }
.photo-tall { height: 455px; }
.counter-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-70%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(96,93,186,.25);
  z-index: 2;
}
.counter-badge strong {
  display: block;
  font-family: "Space Grotesk";
  font-size: 2rem;
  line-height: 1;
}
.counter-badge span { font-size: .84rem; line-height: 1.2; font-weight: 800; }
.about-text p { color: var(--muted); margin: 20px 0 28px; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stat h3 { color: var(--primary); font-size: 2rem; margin: 0 0 2px; font-family: "Space Grotesk"; }
.stat p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.35; }

/* CTA quote */
.gradient-cta {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .24), #962f2f14 26%), linear-gradient(135deg, #f4f2ff 0%, #eef6ff 48%, #fff7e4 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), inset 0 -1px 0 rgba(130, 140, 170, .14);
}
.cta-header { max-width: 850px; margin: 0 auto 34px; }
.cta-header h3 { margin-bottom: 12px; }
.quick-form {
  display: flex;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  padding: 8px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.quick-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 20px;
  font: inherit;
  color: var(--dark);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.price {
  text-align: center;
  font-family: "Space Grotesk";
  font-weight: 700;
  letter-spacing: -.05em;
  color: var(--dark);
  margin-bottom: 6px;
}
.price .currency { font-size: 1.4rem; vertical-align: 55%; }
.price .value { font-size: 3.5rem; }
.price .duration { font-size: 1rem; color: var(--muted); letter-spacing: 0; }
.pricing h4 { text-align: center; margin: 0 0 24px; font-family: "Space Grotesk"; font-size: 1.25rem; }
.check-list { list-style: none; padding: 0; margin: 0 0 28px; }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: .94rem;
}
.check-list li::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(96,93,186,.12);
  color: var(--primary);
  font-weight: 900;
  line-height: 1;
}

/* Purple band */
.band {
  background:
    linear-gradient(135deg, rgba(50,47,126,.94), rgba(96,93,186,.92)),
    radial-gradient(circle at 80% 20%, rgba(250,183,88,.3), transparent 30%);
  color: #fff;
  overflow: hidden;
}
.band .container { max-width: 980px; }
.band h3 { color: #fff; margin: 0 0 18px; }
.band p { color: rgba(255,255,255,.82); margin: 0 auto 28px; max-width: 720px; }

.band.customers {
	background: linear-gradient(135deg, rgb(144 142 192 / 94%), rgba(96, 93, 186, .92)), radial-gradient(circle at 80% 20%, rgba(250, 183, 88, .3), transparent 30%);
}

/* Clients/areas */
.area-map {
  background:
    linear-gradient(rgba(246,247,251,.92), rgba(246,247,251,.92)),
    url("https://www.costawebexperts.es/typo3conf/ext/site_package/Resources/Public/assets_upgrade_site/img/map.png");
  background-size: 800px;
  background-position: center;
}
.area-tags {
  max-width: 880px;
  margin: 34px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.area-tag {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 17px;
  color: var(--primary-dark);
  font-weight: 800;
  box-shadow: 0 .35rem 1rem rgba(30,34,40,.04);
  font-size: 14px;
}
.area-tags.customer-tags {
	
}
.area-tags.customer-tags .area-tag.customer-tag {
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
	box-shadow: none;
    background: none;
    border: none;
}
.area-tags.customer-tags .area-tag.customer-tag img {
	max-width: 160px;
}
.area-tags.customer-tags .area-tag.customer-tag.customer-tag-large img { 
	max-width: 235px;
}

h3.special-display-5 {
	font-family: "Oooh Baby", cursive;
	font-weight: 500;
    font-size: 1.77em;
	margin-top: 32px;
}


/* Contact */
.contact-bg {
  background-image:
    linear-gradient(rgba(30,34,40,.55), rgba(30,34,40,.55)),
    url("https://www.costawebexperts.es/typo3conf/ext/site_package/Resources/Public/assets_upgrade_site/img/computer.jpg");
  background-size: cover;
  background-position: center;
}
.contact-card {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255,255,255,.94);
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.18);
}
.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.pricing-cards .pricing.card:first-child .btn,
.contact-actions .btn:not(.btn-outline) {
	background: #44b542;
}
.contact-actions .btn-outline {
  color: var(--primary-dark);
  border-color: #9fa7ca;
}
.contact-actions .btn-outline:hover { background: var(--soft); }

/* Footer */
footer { padding: 78px 0 70px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  color: #fff;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 1.3rem;
}
.footer-logo .logo-mark { color: var(--primary); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.15fr;
  gap: 36px;
}
footer h4 { color: #fff; margin: 0 0 14px; font-family: "Space Grotesk"; }
footer p, footer li { margin: 0 0 10px; color: rgba(255,255,255,.66); font-size: .95rem; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer a:hover { color: #fff; }

[data-lang] { display: none; }
[data-lang].active { display: block; }
span[data-lang].active { display: inline; }

.from-label {
	font-size: 17px;
    margin-right: 6px;
}

@media (min-width: 721px) {
	.hide-on-desktop {
		display: none;
	}
	.area-tags.customer-tags .area-tag.customer-tag.customer-tag-large.corrected img {
		margin-top: 23px;
	}
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .grid-3, .about-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr 1fr; }
  .about-grid, .pricing-grid { gap: 44px; }
  .section-padding { padding: 82px 0; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { padding: 14px 0; }
  .hero, .hero .container {
		min-height: 760px;
	}
  .hero .container { padding: 105px 0 145px; }
  .top-cards { margin-top: -90px; }
  .card-body { padding: 28px 24px; }
  .photo-collage { grid-template-columns: 1fr; }
  .photo-main, .photo-small, .counter-badge { display: none; }
  .stats-row, .pricing-cards { grid-template-columns: 1fr; }
  .quick-form { flex-direction: column; border-radius: 22px; gap: 8px; }
  .quick-form input { min-height: 48px; padding: 0 12px; text-align: center; }
  .contact-card { padding: 38px 22px; }
  .hero .overflow-hidden {
    position: static;
  }
  .btn {
	  padding: 17px 24px;
	  font-size: 1.1rem;
  }
  .stats-row {
	  grid-auto-flow: row;
	align-content: start;
	justify-content: center;
	justify-items: center;
  }
  .stats-row .stat {
	  
  }
  .stat h3 {
    font-size: 3rem;
  }
  .stat p {
		margin: 0 0 20px;
		color: var(--muted);
		font-size: 1rem;
		line-height: 0.15;
		text-align: center;
	}
	.display-7,
	.display-4 {
		text-align: center;
        padding: 0 10%;
        margin-bottom: 30px;
		font-size: clamp(1.75rem, 3vw, 2.35rem);
	}
	.wrapper.gradient-cta .container.section-padding {
		padding: 52px 0 82px;
	}
	.wrapper p {
		text-align: center;
	}
	footer {
		text-align: center;
	}
}