/* Zion Infosystem — PPC landing (white + navy + green) */
:root {
  --navy: #0c2340;
  --navy-light: #153a5c;
  --green: #0f766e;
  --green-dark: #0d5c56;
  --green-soft: #ecfdf5;
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --warn: #b45309;
  --warn-bg: #fffbeb;
  --shadow: 0 4px 6px -1px rgba(12, 35, 64, 0.08), 0 2px 4px -2px rgba(12, 35, 64, 0.06);
  --shadow-lg: 0 20px 40px -12px rgba(12, 35, 64, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
  --max: 1140px;
  --narrow: 720px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2rem, var(--narrow));
  margin-inline: auto;
}

/* Urgency top bar */
.urgency-bar {
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  color: var(--white);
  text-align: center;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1rem;
  line-height: 1.1;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  object-position: left center;
  display: block;
}

.logo-tagline {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 400px) {
  .logo-tagline {
    display: none;
  }
  .logo-img {
    max-width: 140px;
    height: 36px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 901px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-block {
  width: 70%;
  margin: 0 auto;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.45);
  filter: brightness(1.05);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--green-dark);
}

.btn-accent {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
}

.btn-accent:hover {
  filter: brightness(1.06);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border: none;
}

.btn-whatsapp:hover {
  background: #1fb855;
}

.btn-text {
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 0.875rem;
  cursor: pointer;
  margin-top: 0.75rem;
  text-decoration: underline;
}

.btn-text:hover {
  color: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #e8f1ef;
  background-image: url("assets/bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:linear-gradient( 165deg, rgba(0, 0, 0, 0.82) 0%, rgba(1, 1, 1, 0.29) 28%, rgba(26, 26, 26, 0.4) 52%, rgb(0, 0, 0) 100% );
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  max-width: 480px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.22), rgba(12, 35, 64, 0.06) 45%, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-form-card {
    order: -1;
  }
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.badge-live {
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1px solid rgba(15, 118, 110, 0.2);
}

.badge-warn {
  background: var(--warn-bg);
  color: var(--warn);
  border: 1px solid rgba(180, 83, 9, 0.2);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color:#fff;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  color: #fff;
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.trust-badges {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-badges li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #fff;
  font-size: 0.9375rem;
}

.trust-badges .check {
  color:#fff;
  font-weight: 800;
}

.hero-keywords {
  font-size: 0.8125rem;
  line-height: 1.5;
  max-width: 40rem;
}

.muted {
  color: #fff;
}

.hero-keywords strong {
  color: #fff;
  font-weight: 600;
}

/* Hero form card */
.hero-form-card {
  position: relative;
}

.form-card-inner {
  background:#ffffffe5;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  animation: fade-up 0.7s ease-out;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.35rem;
}

.form-lead {
  margin: 0 0 1.25rem;
  color: var(--gray-500);
  font-size: 0.9375rem;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lead-form .field-full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field .label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
}

.field .req {
  color: #b45309;
  font-weight: 800;
}

.field.has-error input,
.field.has-error textarea {
  border-color: #dc2626;
  background: #fff7f7;
}

.field.has-error input:focus,
.field.has-error textarea:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.field-error {
  font-size: 0.75rem;
  font-weight: 600;
  color: #b91c1c;
  line-height: 1.35;
  min-height: 1.1em;
}

.field-error:empty,
.field-error[hidden] {
  display: none;
}

.field-error:not([hidden]):not(:empty) {
  display: block;
}

.field input,
.field textarea {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
  background: var(--white);
}

.lead-form .btn {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
}

/* Lead form toast (AJAX submit) */
.form-toast {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 220;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: min(calc(100vw - 2rem), 420px);
  padding: 1rem 1rem 1rem 1.15rem;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(12, 35, 64, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transform: translate(-50%, calc(120% + env(safe-area-inset-bottom)));
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.15, 0.64, 1), opacity 0.35s ease, visibility 0.35s;
}

.form-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.form-toast--success {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
}

.form-toast--error {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  color: #fff;
}

.form-toast-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 0.1rem;
}

.form-toast--error .form-toast-icon {
  font-size: 1.1rem;
  font-weight: 700;
}

.form-toast-msg {
  margin: 0;
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  padding-right: 0.25rem;
}

.form-toast-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin: -0.25rem -0.15rem -0.25rem 0;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.form-toast-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 768px) {
  .form-toast {
    bottom: calc(5.75rem + env(safe-area-inset-bottom));
    width: 90%;
    max-width: 90%;
  }

  body.sticky-visible .form-toast {
    bottom: calc(7.25rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 520px) {
  .lead-form {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section {
  padding: clamp(2rem, 4vw, 2rem) 0;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.mobile-only{
  color: #fff !important;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.5vw, 2.125rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-desc {
  margin: 0;
  color: var(--gray-500);
  font-size: 1.0625rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Why — creative feature band */
.why {
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(165deg, #e8f4f1 0%, #f5faf9 38%, #ffffff 72%, #eef6f4 100%); */
}

.why-deco {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 0% 15%, rgba(13, 148, 136, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 85%, rgba(12, 52, 84, 0.1), transparent 50%),
    radial-gradient(circle at 70% 25%, rgba(13, 148, 136, 0.06) 0%, transparent 35%);
  opacity: 1;
}

.why-deco::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(12, 35, 64, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.why > .container {
  position: relative;
  z-index: 1;
}

.why-head h2 {
  position: relative;
  display: inline-block;
}

.why-head h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 0.65rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--navy-light), #34d399);
}

.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.35rem;
}

.why-card {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(12, 35, 64, 0.07), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--accent), var(--navy-light));
  opacity: 0.35;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(12, 35, 64, 0.12), 0 0 0 1px rgba(13, 148, 136, 0.12);
  border-color: rgba(13, 148, 136, 0.25);
}

.why-card:hover::before {
  opacity: 1;
  transform: scaleY(1.05);
}

.why-card-wide {
  grid-column: span 1;
}

@media (min-width: 900px) {
 

  .why-card-wide .why-icon {
    grid-row: 1 / 3;
    align-self: center;
    margin-bottom: 0;
  }

  .why-card-wide h3 {
    margin: 0;
    align-self: end;
  }

  .why-card-wide p {
    align-self: start;
  }
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: #fff;
  box-shadow: 0 10px 28px rgba(12, 35, 64, 0.18);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 14px 36px rgba(12, 35, 64, 0.22);
}

.why-card:nth-child(1) .why-icon {
  background: linear-gradient(145deg, #0d9488, #0f766e);
}

.why-card:nth-child(2) .why-icon {
  background: linear-gradient(145deg, #0e7490, #155e75);
}

.why-card:nth-child(3) .why-icon {
  background: linear-gradient(145deg, #0369a1, #0c4a6e);
}

.why-card:nth-child(4) .why-icon {
  background: linear-gradient(145deg, #059669, #047857);
}

.why-card:nth-child(5) .why-icon {
  background: linear-gradient(145deg, #7c3aed, #5b21b6);
}

.why-card:nth-child(6) .why-icon {
  background: linear-gradient(145deg, #0f766e, #134e4a);
}

.why-card:nth-child(7) .why-icon {
  background: linear-gradient(145deg, #db2777, #9d174d);
}

.why-card:nth-child(8) .why-icon {
  background: linear-gradient(145deg, #d97706, #b45309);
}

.why-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.why-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-700);
}

/* Services */
.services {
  background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.service-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-500);
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.portfolio-item {
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  display: block;
  transition: box-shadow 0.35s, transform 0.35s;
}

.portfolio-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.portfolio-preview {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--gray-200);
  overflow: hidden;
}

.portfolio-thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-thumb {
  transform: scale(1.07);
}

.portfolio-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(12, 35, 64, 0.75), transparent 55%);
  opacity: 0.85;
  transition: opacity 0.35s;
  pointer-events: none;
}

.portfolio-item:hover .portfolio-preview::after {
  opacity: 1;
}

.portfolio-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.portfolio-cta {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.portfolio-item:hover .portfolio-cta {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-info {
  padding: 1.25rem 1.35rem;
}

.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
}

.portfolio-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.portfolio-more {
  text-align: center;
  margin: 2.25rem 0 0;
}

.portfolio .section-desc a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.portfolio .section-desc a:hover {
  color: var(--navy);
}

/* Testimonials */
.testimonials {
  background: var(--navy);
  color: var(--white);
}

.testimonials .section-head h2 {
  color: var(--white);
}

.testimonials .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 0;
  transition: background 0.25s, border-color 0.25s;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(52, 211, 153, 0.35);
}

.testimonial-wide {
  grid-column: span 1;
}

@media (min-width: 900px) {
  .testimonial-wide {
    /* grid-column: span 2; */
  }
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.star-half {
  font-size: 0.85em;
  opacity: 0.9;
  margin-left: 1px;
}

.testimonial-card p {
  flex: 1 1 auto;
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.testimonial-card footer {
  margin-top: auto;
  flex-shrink: 0;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.price-card-featured {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.2);
  transform: scale(1.02);
}

.price-card-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

@media (max-width: 899px) {
  .price-card-featured {
    transform: none;
  }
  .price-card-featured:hover {
    transform: translateY(-4px);
  }
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--green-dark));
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  margin: 0 0 1.25rem;
}

.price .currency {
  font-size: 1.25rem;
  vertical-align: top;
}

.price .period {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
}

.price-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.price-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.price-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: -0.75rem 0 1rem;
}

/* Urgent CTA */
.urgent-cta {
  background: linear-gradient(135deg, var(--green-soft), var(--white));
  border-block: 1px solid var(--gray-200);
}

.urgent-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--white);
  border: 2px solid rgba(245, 158, 11, 0.45);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.urgent-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0.5rem 0 0.5rem;
}

.urgent-copy p {
  margin: 0;
  color: var(--gray-500);
  max-width: 36rem;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  text-align: left;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-trigger:hover {
  color: var(--accent);
}

.faq-trigger[aria-expanded="true"] {
  color: var(--green-dark);
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gray-100);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform 0.25s;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-panel {
  padding: 0 0 1.15rem;
}

.faq-panel p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Contact — creative band */
.contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #eef6f4 0%, #f5faf9 40%, #f0f5fb 100%);
}

.contact-deco {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(13, 148, 136, 0.12), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 100%, rgba(12, 52, 84, 0.08), transparent 50%);
}

.contact-deco::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(rgba(12, 35, 64, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.contact > .container {
  position: relative;
  z-index: 1;
}

.contact-head h2 {
  position: relative;
  display: inline-block;
}

.contact-head h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 0.65rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--navy-light), #34d399);
}

.contact .section-desc a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact .section-desc a:hover {
  color: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  align-items: stretch;
}

.contact-map {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr 1.2fr;
  }
  .contact-map {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
}

.contact-card,
.contact-map {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: 0 10px 40px rgba(12, 35, 64, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: transform 0.35s cubic-bezier(0.34, 1.15, 0.64, 1), box-shadow 0.35s ease, border-color 0.25s ease;
  overflow: hidden;
}

.contact-card::before,
.contact-map::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, var(--accent), var(--navy-light));
  opacity: 0.5;
}

.contact-card--phone::before {
  background: linear-gradient(180deg, #0d9488, #0f766e);
}

.contact-card--inbox::before {
  background: linear-gradient(180deg, #7c3aed, #5b21b6);
}

.contact-map::before {
  background: linear-gradient(180deg, #0369a1, #0c4a6e);
}

.contact-card:hover,
.contact-map:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(12, 35, 64, 0.12), 0 0 0 1px rgba(13, 148, 136, 0.12);
  border-color: rgba(13, 148, 136, 0.2);
}

.contact-card-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.contact-map-head {
  margin-bottom: 0.85rem;
}

.contact-icon-badge {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #0d9488, #0f766e);
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.35);
}

.contact-icon-badge svg {
  stroke: currentColor;
}

.contact-icon-badge--duo {
  background: linear-gradient(145deg, #7c3aed, #5b21b6);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.3);
}

.contact-icon-badge--map {
  background: linear-gradient(145deg, #0369a1, #0c4a6e);
  box-shadow: 0 10px 24px rgba(3, 105, 161, 0.3);
}

.contact-card-head h3,
.contact-map-head .map-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.contact-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-card-body > p {
  margin: 0;
}

.contact-card-body .btn {
  margin-top: auto;
}

.contact-link {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--navy);
  text-decoration: underline;
}

.contact-link-email {
  font-size: 1rem;
  word-break: break-all;
}

.map-address {
  margin: 0 0 1rem;
  line-height: 1.55;
  max-width: 42rem;
  color: #000;
}

.small {
  font-size: 0.875rem;
}

.map-embed {
  flex: 1;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(13, 148, 136, 0.35), rgba(12, 52, 84, 0.25)) border-box;
  box-shadow: 0 12px 32px rgba(12, 35, 64, 0.1);
  aspect-ratio: 16 / 11;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 1.5rem 0;
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-inner a {
  color: #5eead4;
  font-weight: 600;
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -8px 30px rgba(12, 35, 64, 0.12);
  padding: 0.65rem 0;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  animation: slide-up 0.35s ease;
}

@keyframes slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.sticky-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sticky-cta-inner p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.sticky-cta-btns {
  display: flex;
  gap: 0.5rem;
}

/* Floating call + WhatsApp */
.float-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.float-call,
.float-wa {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-call {
  background: linear-gradient(135deg, var(--accent), var(--green-dark));
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.float-call:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.48);
}

.float-wa {
  background: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.float-wa:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

@media (min-width: 769px) {
  .float-actions {
    bottom: 2rem;
  }
}

body.sticky-visible {
  padding-bottom: 72px;
}

/* Exit modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 35, 64, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fade-in 0.25s ease;
}

.modal-overlay[hidden] {
  display: none !important;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: modal-in 0.35s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.modal p {
  margin: 0 0 1.25rem;
  color: var(--gray-500);
  font-size: 0.9375rem;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
}

.modal-close:hover {
  background: var(--gray-200);
}
