@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Oswald', sans-serif;
  margin: 0;
  background: #f4f4f4;
  min-height: 100vh;
  box-sizing: border-box;
  overflow-x: hidden !important;
}

.navbar, .navbar-content, .hero, .about-section, .clients-section, .change-section, .tech-section, .cta-btn, .change-cta {
  font-family: 'Oswald', sans-serif;
}

.navbar {
  background: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 70px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar-content {
  width: 100%;
  max-width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  padding: 0 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  margin: 0;
}
.navbar .logo {
  font-size: 1.7em;
  font-weight: bold;
  letter-spacing: 2px;
  color: #fc0294;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 18px;
  align-items: center;
}
.navbar ul li {
  margin: 0;
}
.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.08em;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  font-weight: 500;
}
.navbar ul li a:hover {
  background: #222;
  color: #ff9800;
  box-shadow: 0 2px 8px rgba(255,152,0,0.08);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 34px;
  height: 28px;
  justify-content: center;
  margin-left: 18px;
}
.hamburger span {
  height: 4px;
  background: #fc0294;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
@media (max-width: 900px) {
  .navbar-content {
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 0 12px;
    height: 60px;
  }
  .navbar-content {
    padding: 0 0;
    border-radius: 0;
    max-width: 100vw;
  }
  .navbar ul {
    display: none;
    flex-direction: column;
    background: #181818;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    border-radius: 0 0 0 0;
    gap: 0;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 60px);
    z-index: 100;
  }
  .navbar ul.active {
    display: flex;
  }
  .navbar ul li {
    width: 100%;
    text-align: center;
  }
  .navbar ul li a {
    padding: 18px 0;
    border-radius: 0;
    border-bottom: 1px solid #222;
    width: 100%;
    display: block;
    font-size: 1.2em;
  }
  .navbar ul li:last-child a {
    border-bottom: none;
  }
  .hamburger {
    display: flex;
  }
}
.footer-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #111;
  border-radius: 0;
}
.footer-cta {
  color: #fff;
  font-size: 1.35em;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 0.2px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-contact, .footer-terms {
  color: #fc0294;
  font-size: 1.08em;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-contact:hover, .footer-terms:hover {
  color: #ff9800;
}
.footer-divider {
  color: #fff;
  opacity: 0.4;
  font-size: 1.2em;
}
.footer-copy {
  color: #fff;
  font-size: 1em;
  margin-top: 10px;
  text-align: center;
  opacity: 0.7;
}
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 0;
  position: static;
  left: 0;
  bottom: 0;
  width: 100vw;
  font-size: 1em;
  z-index: 100;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
  .footer-content {
    padding: 32px 4vw 18px 4vw;
  }
  .footer-cta {
    font-size: 1.08em;
  }
}
@media (max-width: 600px) {
  .footer-content {
    padding: 18px 2vw 10px 2vw;
  }
  .footer-cta {
    font-size: 1em;
  }
  .footer-links {
    gap: 8px;
    font-size: 0.98em;
  }
}
@media (max-width: 700px) {
  .about-content, .hero-content {
    padding: 8px 1vw;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 99vw;
  }
  .steps li {
    min-height: 100px;
    padding: 16px 4px 14px 4px;
    font-size: 0.98em;
  }
  .about-section {
    padding: 32px 0 16px 0;
  }
  .hero {
    padding: 32px 0 16px 0;
  }
}

.hero {
  width: 100vw;
  max-width: none;
  padding: 80px 0 64px 0;
  background: linear-gradient(rgba(30, 0, 30, 0.60), rgba(0,0,0,0.60)), url('./images/PortadaLanding.webp') center/cover no-repeat;
  border-radius: 0;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  text-align: center;
  position: relative;
  top: 0;
  padding-top: 48px;
  color: #fff;
  overflow: hidden;
  animation: hero-fadein 1.2s cubic-bezier(.4,0,.2,1);
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(252,2,148,0.05) 0%, rgba(252,2,148,0.1) 100%);
  z-index: 1;
}
.hero > * {
  position: relative;
  z-index: 2;
}
.hero h2 {
  font-size: 2.7em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.18;
  text-shadow: 0 4px 32px rgba(0,0,0,0.25);
  letter-spacing: 0.5px;
}
.hero p {
  font-size: 1.25em;
  color: #f3e9f5;
  margin-bottom: 20px;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero b {
  color: #fc0294;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
@media (max-width: 900px) {
  .hero-content {
    max-width: 99vw;
    padding: 0 4vw;
  }
  .hero h2 {
    font-size: 1.5em;
  }
  .hero {
    padding-top: 32px;
  }
}
@media (max-width: 900px) {
  .hero {
    padding: 48px 0 32px 0;
  }
}
@keyframes hero-fadein {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
.cta-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 18px 44px;
  font-size: 1.25em;
  font-weight: 800;
  color: #fff;
  background: #fc0294;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(252,2,148,0.18);
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.cta-btn:hover, .cta-btn:focus {
  background: #c5438f;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(252,2,148,0.22);
  text-decoration: none;
}
.about-section {
  padding: 80px 0 64px 0;
  display: flex;
  justify-content: center;
  animation: about-fadein 1.2s cubic-bezier(.4,0,.2,1);
  overflow: visible;
}
.about-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(255,255,255,0.98);
  border-radius: 28px;
  box-shadow: 0 8px 48px rgba(60,60,180,0.07);
  text-align: center;
  position: relative;
  overflow: visible;
}
.about-content h3 {
  margin-top: 48px;
  font-size: 1.7em;
  color: #fc0294;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 36px;
  text-shadow: 0 2px 12px rgba(60,60,180,0.08);
}
.about-content p {
  font-size: 1.18em;
  color: #222;
  margin-bottom: 22px;
  line-height: 1.8;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(60,60,180,0.08);
  padding: 32px 18px 28px 18px;
  font-size: 1.08em;
  color: #222;
  font-weight: 600;
  position: relative;
  transition: box-shadow 0.2s;
  text-align: center;
}
.steps li:hover {
  box-shadow: 0 8px 32px rgba(60,60,180,0.13);
}
.steps li::before {
  content: counter(step);
  counter-increment: step;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 18px;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #fc0294 0%, #fc7498 100%);
  color: #fff;
  font-size: 1.3em;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(60,60,180,0.10);
}
.steps li b {
  color: #fc0294;
  font-weight: 700;
}
@media (max-width: 1100px) {
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .steps li {
    min-height: 100px;
    padding: 20px 8px 18px 8px;
    font-size: 1em;
  }
  .about-content {
    padding: 0 2vw;
  }
}
@keyframes about-fadein {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

.clients-section {
  width: 100%;
  background: #f7faff;
  padding: 64px 0 48px 0;
  display: flex;
  justify-content: center;
}
.clients-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.clients-content h3 {
  font-size: 1.5em;
  color: #222;
  font-weight: 800;
  margin-bottom: 12px;
}
.clients-content p {
  color: #555;
  font-size: 1.08em;
  margin-bottom: 32px;
}
.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.carousel-btn {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5em;
  color: #3a2ea4;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(60,60,180,0.07);
  transition: background 0.18s, color 0.18s;
  z-index: 2;
}
.carousel-btn:hover {
  background: #fc0294;
  color: #fff;
}
.carousel-track {
  display: flex;
  align-items: center;
  gap: 36px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 0;
  width: 100%;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.client-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.2s, transform 0.2s;
  border-radius: 12px;
  padding: 8px 18px;
  scroll-snap-align: start;
  max-width: 200px;
}
.client-logo:hover {
  transform: scale(1.07);
}
@media (max-width: 900px) {
  .clients-content {
    padding: 0 4vw;
  }
  .carousel-track {
    gap: 18px;
    padding: 8px 0;
  }
  .client-logo {
    height: 44px;
    padding: 6px 8px;
  }
}
@media (max-width: 600px) {
  .clients-section {
    padding: 32px 0 18px 0;
  }
  .carousel {
    max-width: 99vw;
  }
  .clients-content {
    padding: 0 2vw;
  }
}

.change-section {
  width: 100%;
  background: #fff;
  padding: 64px 0 48px 0;
  display: flex;
  justify-content: center;
}
.change-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.change-content h3 {
  font-size: 1.5em;
  color: #222;
  font-weight: 800;
  margin-bottom: 36px;
}
.change-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}
.change-card {
  background: #f7f7fa;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(60,60,180,0.06);
  padding: 36px 24px 32px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.change-card h4 {
  color: #fc0294;
  font-size: 1.18em;
  font-weight: 800;
  margin-bottom: 16px;
}
.change-card p {
  color: #222;
  font-size: 1.08em;
  line-height: 1.7;
}
.change-card:hover {
  box-shadow: 0 8px 32px rgba(252,2,148,0.10);
  transform: translateY(-4px) scale(1.03);
}
.change-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 16px 40px;
  font-size: 1.18em;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #fc0294 0%, #ff9800 100%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(252,2,148,0.13);
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.change-cta:hover, .change-cta:focus {
  background: linear-gradient(90deg, #ff9800 0%, #fc0294 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(252,2,148,0.18);
  text-decoration: none;
}
@media (max-width: 900px) {
  .change-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .change-content {
    padding: 0 4vw;
  }
  .change-card {
    padding: 28px 12px 24px 12px;
  }
}

.change-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  background: #fce4f6;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(252,2,148,0.07);
}
.change-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.tech-section {
  width: 100%;
  background: #f7faff;
  padding: 64px 0 48px 0;
  display: flex;
  justify-content: center;
}
.tech-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.tech-content h3 {
  font-size: 1.5em;
  color: #222;
  font-weight: 800;
  margin-bottom: 36px;
}
.tech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 0;
}
.tech-card {
  padding: 36px 24px 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
}

.tech-logo {
  width: 125px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 18px;
  background: #f7f7fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(60,60,180,0.04);
  padding: 8px;
  display: block;
}
.tech-card p {
  color: #222;
  font-size: 1.08em;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .tech-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tech-content {
    padding: 0 4vw;
  }
  .tech-card {
    padding: 28px 12px 24px 12px;
  }
  .tech-logo {
    width: 125px;
    margin-bottom: 12px;
  }
}

.testimonials-section {
  width: 100%;
  background: #fff6fa;
  padding: 64px 0 48px 0;
  display: flex;
  justify-content: center;
}
.testimonials-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.testimonials-content h3 {
  font-size: 1.5em;
  color: #fc0294;
  font-weight: 800;
  margin-bottom: 36px;
}
.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 0;
}
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 24px rgba(252,2,148,0.07);
  padding: 36px 24px 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}

.testimonial-img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 4px solid #fff6fa;
  box-shadow: 0 2px 8px rgba(252,2,148,0.10);
}
.testimonial-quote {
  font-size: 1.08em;
  color: #222;
  font-style: italic;
  margin-bottom: 18px;
  margin-top: 0;
  line-height: 1.7;
  position: relative;
}
.testimonial-quote:before {
  content: '“';
  color: #fc0294;
  font-size: 2.2em;
  position: absolute;
  left: -18px;
  top: -18px;
  opacity: 0.3;
}
.testimonial-quote:after {
  content: '”';
  color: #fc0294;
  font-size: 2.2em;
  position: absolute;
  right: -18px;
  bottom: -18px;
  opacity: 0.3;
}
.testimonial-name {
  font-weight: 700;
  color: #fc0294;
  font-size: 1.1em;
  margin-bottom: 2px;
}
.testimonial-role {
  color: #555;
  font-size: 0.98em;
}
@media (max-width: 900px) {
  .testimonials-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .testimonials-content {
    padding: 0 4vw;
  }
  .testimonial-card {
    padding: 28px 12px 24px 12px;
  }
  .testimonial-img {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }
}

.contact-section {
  width: 100%;
  background: #ffffff;
  padding: 64px 0 48px 0;
  display: flex;
  justify-content: center;
}
.contact-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 0 24px;
  width: 100%;
  justify-content: center;
}
.contact-left {
  flex: 1 1 340px;
  max-width: 270px;
  padding: 32px 0 0 0;
  text-align: center;
}
.contact-left h3 {
  font-size: 2em;
  color: #111;
  font-weight: 800;
  margin-bottom: 18px;
}
.contact-left p {
  color: #222;
  font-size: 1.5em;
  margin-bottom: 14px;
  line-height: 1.7;
}
.contact-right {
  flex: 2 1 480px;
  max-width: 600px;
  border-radius: 18px;
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: auto 0;
}
.contact-form {
  width: 100%;
}
.form-progress {
  width: 100%;
  text-align: right;
  margin-bottom: 18px;
  font-size: 1.08em;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
}
.form-row {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
.form-row input {
  flex: 1 1 0;
}
.form-step {
  animation: fadein 0.4s;
}
.form-step input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
  font-family: 'Oswald', sans-serif;
  background: #f7f7fa;
  transition: border 0.2s;
}
.form-step input:focus {
  border: 1.5px solid #fc0294;
  outline: none;
}
.form-info {
  font-size: 0.98em;
  color: #555;
  background: #f7f7fa;
  border-radius: 8px;
  padding: 14px 12px;
  margin-bottom: 18px;
  margin-top: 8px;
}
.form-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
}
.btn-black {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.08em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-family: 'Oswald', sans-serif;
}
.btn-black:hover, .btn-black:focus {
  background: #fc0294;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 4vw;
    width: 100%;
    align-items: stretch;
    justify-content: flex-start;
  }
  .contact-left, .contact-right {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }
  .contact-right {
    padding: 16px 8px 12px 8px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
  }
  .form-row .form-group {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contact-left, .contact-right {
    padding: 0;
    max-width: 100%;
    text-align: center;
  flex: 1 1 0px;

  }
  .contact-right {
    padding: 8px 2px 6px 2px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-row .form-group {
    width: 100%;
  }
  .contact-left h3 {
    font-size: 1.3em;
  }
  .contact-left p {
    font-size: 1em;
  }
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.input-error {
  color: #d32f2f;
  font-size: 0.97em;
  margin-top: -10px;
  margin-bottom: 10px;
  padding-left: 2px;
  font-weight: 500;
  text-align: left;
}
input.invalid {
  border: 1.5px solid #d32f2f !important;
  background: #fff0f0;
}

.form-group {
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
}
input, .form-group input {
  box-sizing: border-box;
}

.form-row .form-group{
    width: 45%;
}

@media (max-width: 900px) {
    .form-row .form-group{
        width: 100%;
    }
  }

.deliver-section {
  width: 100%;
  background: #f7f7fa;
  padding: 64px 0 72px 0;
  display: flex;
  justify-content: center;
}
.deliver-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.deliver-content h3 {
  font-size: 1.5em;
  color: #222;
  font-weight: 800;
  margin-bottom: 36px;
}
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 0;
}
.deliver-img {
  width: 100%;
  max-width: 370px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(60,60,180,0.07);
  transition: box-shadow 0.18s, transform 0.18s;
  background: #fff;
  margin: 0 auto;
  display: block;
}

@media (max-width: 900px) {
  .deliver-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .deliver-content {
    padding: 0 4vw;
  }
  .deliver-img {
    max-width: 99vw;
    aspect-ratio: 16/9;
  }
}

.footer-address {
  color: #fff;
  font-size: 1.08em;
  margin: 4px 0 0 0;
  text-align: center;
  font-weight: 500;
}
.footer-phone {
  color: #fc0294;
  font-size: 1.08em;
  margin: 2px 0 8px 0;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.18s;
}
.footer-phone:hover {
  color: #ff9800;
}

.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-btn {
  background: #fc0294;
  color: #fff !important;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1.08em;
  font-weight: 700;
  text-decoration: none;
  margin-left: 16px;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  display: inline-block;
}
.nav-btn:hover, .nav-btn:focus {
  background: #c5438f !important;
  color: #fff !important;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .nav-btn {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(60,60,180,0.07);
  padding: 48px 24px 48px 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.terms-container h1 {
  color: #fc0294;
  font-size: 2.1em;
  margin-bottom: 24px;
  text-align: center;
}
.terms-container h2 {
  color: #3a2ea4;
  font-size: 1.25em;
  margin-top: 32px;
  margin-bottom: 12px;
}
.terms-container p, .terms-container ul {
  color: #222;
  font-size: 1.08em;
  line-height: 1.7;
  margin-bottom: 16px;
}
.terms-container ul {
  padding-left: 20px;
}
@media (max-width: 700px) {
  .terms-container {
    padding: 24px 4vw;
    margin-top: 18px;
    margin-bottom: 18px;
  }
  .terms-container h1 {
    font-size: 1.3em;
  }
}