:root {
  --orange-brand: #d56409;
  --orange-bright: #c56000;
  --slate-brand: #233d47;
  --slate-light: #46585e;
  --slate-mid: #7c8d92;
  --sand: #b5c2c4;
  --charcoal-2: #39505b;
  --ink: #06111a;
  --white: #f0f4f8;
  --section-alt: #39505b;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(213, 100, 9, 0.3);
  --gradient-primary: linear-gradient(135deg, #d56409, #c56000);
  --gradient-hero: linear-gradient(
    160deg,
    #06111a 0%,
    #233d47 40%,
    #d56409 100%
  );
  --gradient-dark: linear-gradient(135deg, #06111a, #233d47);
  --gradient-card: linear-gradient(
    145deg,
    rgba(57, 80, 91, 0.5),
    rgba(57, 80, 91, 0.15)
  );
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: var(--slate-brand);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

a {
  color: var(--orange-brand);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--orange-bright);
}

h1,
h2,
h3,
h4 {
  color: var(--white);
  line-height: 1.15;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.35rem;
}
h4 {
  font-size: 1.15rem;
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 93, 7, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 93, 7, 0.4);
  color: var(--white);
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(196, 93, 7, 0.4);
  color: var(--orange-brand);
}
.btn-outline:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--ink);
}
.btn-white:hover {
  background: var(--orange-brand);
  color: var(--white);
  transform: translateY(-2px);
}

/* SECTION COMMON */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--slate-mid);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* ACCENT DIVIDER */
.accent-line {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 4px;
  margin: 1.25rem auto 0;
}

/* GRID BG PATTERN (subtle) */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 93, 7, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 93, 7, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(6, 17, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.5rem 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background: rgba(6, 17, 26, 0.25);
  backdrop-filter: blur(4px);
  padding: 4px;
  box-shadow: 0 0 0 1px rgba(213, 100, 9, 0.15);
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.main-nav a {
  color: var(--sand);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-brand);
  transition: width 0.3s;
}
.main-nav a:hover {
  color: var(--white);
}
.main-nav a:hover::after {
  width: 100%;
}
.main-nav .nav-cta {
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}
.main-nav .nav-cta::after {
  display: none;
}
.main-nav .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(196, 93, 7, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sand);
  margin: 5px 0;
  transition: 0.3s;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
[class*="w-block-"] {
  background: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
section.block-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.block-hero .container {
  position: relative;
  z-index: 2;
}

/* Animated background shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: heroFloat 20s ease-in-out infinite;
}
.hero-bg-shapes .shape:nth-child(1) {
  width: 600px;
  height: 600px;
  background: rgba(196, 93, 7, 0.12);
  top: -10%;
  right: -10%;
  animation-delay: 0s;
}
.hero-bg-shapes .shape:nth-child(2) {
  width: 400px;
  height: 400px;
  background: rgba(255, 159, 41, 0.08);
  bottom: -5%;
  left: -5%;
  animation-delay: -7s;
}
.hero-bg-shapes .shape:nth-child(3) {
  width: 300px;
  height: 300px;
  background: rgba(75, 95, 103, 0.15);
  top: 40%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196, 93, 7, 0.12);
  border: 1px solid rgba(196, 93, 7, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--orange-brand);
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero-badge i {
  font-size: 0.75rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    #f0f4f8 0%,
    var(--orange-brand) 60%,
    var(--orange-bright) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--sand);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 70%
  );
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-stats-bar {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.25rem 2.5rem;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: fadeInUp 0.6s ease-out 0.6s both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--slate-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-mid);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease-out 0.8s both;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--slate-mid), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ===== SERVICES ===== */
section.block-services-grid {
  background: var(--section-alt);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--gradient-card);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  display: block;
  color: inherit;
  text-decoration: none;
}
a.service-card {
  cursor: pointer;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}
.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(196, 93, 7, 0.15),
    rgba(196, 93, 7, 0.05)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--orange-brand);
  transition: all 0.4s;
}
.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}
.service-card h3 {
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--sand);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== STATS ===== */
section.block-stats {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}
section.block-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 93, 7, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 93, 7, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: 2rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}
.stat-number {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.stat-label {
  color: var(--slate-mid);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ===== TEAM ===== */
section.block-team {
  background: var(--section-alt);
  position: relative;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.team-card {
  text-align: center;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  border: 1px solid var(--border-subtle);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}
.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--orange-brand);
  transition: transform 0.4s;
}
.team-card:hover .team-photo {
  transform: scale(1.05);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-name {
  margin-bottom: 0.25rem;
}
.team-role {
  color: var(--orange-brand);
  font-size: 0.9rem;
  font-weight: 500;
}
.team-bio {
  color: var(--slate-mid);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ===== TEXT BLOCK ===== */
.block-text {
  position: relative;
}
.text-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--sand);
  font-size: 1.1rem;
  line-height: 1.9;
}
.text-content p {
  margin-bottom: 1.2rem;
}
.text-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.text-content h4 {
  color: var(--orange-brand);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.text-content ul,
.text-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.text-content li {
  margin-bottom: 0.5rem;
}
.text-content b,
strong {
  color: var(--white);
}
.block-text.text-center .text-content {
  text-align: center;
}
.block-text.text-center .text-content ul,
.block-text.text-center .text-content ol {
  display: inline-block;
  text-align: left;
}

/* ===== CTA ===== */
.block-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(196, 93, 7, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  position: relative;
}
.cta-text {
  color: var(--slate-mid);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
  max-width: 600px;
  margin-inline: auto;
}
.cta-actions {
  position: relative;
}

/* ===== CONTACT ===== */
.block-contact {
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-info-item:last-child {
  border-bottom: none;
}
.contact-info-item i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(
    135deg,
    rgba(196, 93, 7, 0.15),
    rgba(196, 93, 7, 0.05)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-brand);
  font-size: 1.1rem;
}
.contact-info-item .label {
  font-size: 0.8rem;
  color: var(--slate-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info-item .value {
  color: var(--white);
  font-weight: 500;
}

.contact-form-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(10, 20, 26, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange-brand);
  box-shadow: 0 0 0 3px rgba(196, 93, 7, 0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: 8rem;
  padding-bottom: 4rem;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.page-header .intro {
  color: var(--sand);
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 1.125rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--slate-mid);
  max-width: 320px;
  margin-top: 1rem;
  line-height: 1.7;
  text-align: justify;
}
.footer-links .footer-heading,
.footer-contact .footer-heading {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links a {
  display: block;
  color: var(--slate-mid);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--orange-brand);
  padding-left: 4px;
}
.footer-contact p {
  color: var(--slate-mid);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.footer-contact i {
  color: var(--orange-brand);
  width: 16px;
  font-size: 0.9rem;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--slate-mid);
  font-size: 0.85rem;
}

/* ===== PROCESS ===== */
.block-process {
  background: var(--section-alt);
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: all 0.4s ease;
  display: block;
  color: inherit;
  text-decoration: none;
}
a.process-step {
  cursor: pointer;
}
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}
.process-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.process-number-lg {
  font-size: 4rem;
  position: static;
  margin-bottom: 0.5rem;
}
.process-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(196, 93, 7, 0.15),
    rgba(196, 93, 7, 0.05)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange-brand);
  transition: all 0.4s;
}
.process-step:hover .process-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}
.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}
.process-step p {
  color: var(--slate-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}
.process-connector {
  display: none;
}

/* ===== TRUST ===== */
.block-trust {
  background: var(--gradient-dark);
  position: relative;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.trust-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.trust-item i {
  font-size: 1.25rem;
  color: var(--orange-brand);
  width: 24px;
  text-align: center;
}
.trust-item span {
  color: var(--sand);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  color: white;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5);
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reveal {
  /* opacity: 0; */
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--ink);
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }
  .main-nav.open {
    right: 0;
  }
  .main-nav .nav-cta {
    width: 100%;
    text-align: center;
  }

  section.block-hero {
    min-height: auto;
    padding: 7rem 0 4rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }
  .cta-card {
    padding: 3rem 1.5rem;
  }

  .block-stats::before {
    background-size: 30px 30px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats-bar {
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-header.scrolled {
    background: rgba(6, 17, 26, 0.95);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  .section {
    padding: 4rem 0;
  }
  .service-card {
    padding: 2rem 1.5rem;
  }
  .team-card {
    padding: 2rem 1.5rem;
  }
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats-bar {
    border-radius: 20px;
    padding: 1rem;
  }
}

/* ============================================================
   BLOQUES AMPLIADOS — carrusel, galería, video, social, FAQ,
   testimonios, clientes, mapa, código, tabla, precios, etc.
   ============================================================ */

/* --- Raw HTML --- */
.block-raw-html .raw-html-content {
  max-width: 100%;
  overflow-x: auto;
}
.block-raw-html iframe {
  max-width: 100%;
}

/* --- Heading --- */
.block-heading .section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.block-heading.text-center .section-header {
  align-items: center;
}
.block-heading .accent-line {
  margin-top: 0.5rem;
}

/* --- Carousel --- */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.2);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-slide {
  min-width: 100%;
  position: relative;
}
.carousel-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.25rem;
  background: linear-gradient(transparent, rgba(6, 17, 26, 0.85));
  color: var(--white);
  font-weight: 600;
}
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 5;
  background: rgba(6, 17, 26, 0.6);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.carousel-prev {
  left: 1rem;
}
.carousel-next {
  right: 1rem;
}
.carousel-prev:hover,
.carousel-next:hover {
  background: var(--orange-brand);
}
.carousel-dots {
  position: absolute;
  bottom: 0.75rem;
  right: 1rem;
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}
.carousel-dots button.active {
  background: var(--orange-brand);
}

/* --- Galería --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}
.gallery-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}
.gallery-item figcaption {
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  color: var(--sand);
}

/* --- Video --- */
.video-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-embed iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}
.video-caption {
  margin-top: 0.75rem;
  color: var(--sand);
  text-align: center;
}

/* --- Social post --- */
.social-post-embed {
  max-width: 560px;
  margin: 0 auto;
}
.social-post-frame {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--gradient-card);
}
.social-post-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.social-post-header i {
  font-size: 1.4rem;
  color: var(--orange-brand);
}
.social-post-link {
  border-left: 3px solid var(--orange-brand);
  padding-left: 0.75rem;
  margin: 0;
}
.social-post-link a {
  color: var(--white);
}
.social-post-caption {
  margin-top: 0.75rem;
  color: var(--sand);
  text-align: center;
}

/* --- FAQ --- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gradient-card);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
}
.faq-question:hover {
  color: var(--orange-brand);
}
.faq-icon {
  transition: transform 0.3s;
  color: var(--orange-brand);
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
}
.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--sand);
}

/* --- Testimonios --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars {
  color: var(--orange-brand);
  display: flex;
  gap: 0.2rem;
}
.testimonial-quote {
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-photo-placeholder {
  background: linear-gradient(135deg, var(--slate-light), var(--slate-brand));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-mid);
  font-size: 1.2rem;
}
.testimonial-name {
  display: block;
  font-weight: 700;
}
.testimonial-role {
  display: block;
  font-size: 0.85rem;
  color: var(--sand);
}

/* --- Clientes --- */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}
.client-item {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.client-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.client-logo {
  max-height: 40px;
  width: auto;
  opacity: 0.9;
}
.client-name {
  color: var(--sand);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* --- Mapa --- */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.map-embed iframe {
  display: block;
}
.map-address {
  margin-top: 0.75rem;
  color: var(--sand);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.map-address i {
  color: var(--orange-brand);
}

/* --- Código --- */
.code-block {
  background: #0b1622;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.9rem;
}
.code-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border-subtle);
}
.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate-mid);
}
.code-dot:nth-child(1) {
  background: #ff5f57;
}
.code-dot:nth-child(2) {
  background: #febc2e;
}
.code-dot:nth-child(3) {
  background: #28c840;
}
.code-lang {
  margin-left: auto;
  color: var(--sand);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.code-block pre {
  padding: 1.25rem;
  overflow-x: auto;
}
.code-block code {
  font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
  color: #e6edf3;
  line-height: 1.6;
  white-space: pre;
}

/* --- Cita --- */
.quote-card {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
}
.quote-mark {
  font-size: 2rem;
  color: var(--orange-brand);
  margin-bottom: 1rem;
  display: inline-block;
}
.quote-text {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.6;
}
.quote-footer {
  margin-top: 1.25rem;
}
.quote-author {
  font-weight: 700;
  display: block;
}
.quote-role {
  color: var(--sand);
  font-size: 0.9rem;
}

/* --- Botones --- */
.buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --- Columnas --- */
.columns-grid {
  display: grid;
  gap: 1.25rem;
}
.columns-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.columns-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.columns-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.column-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.column-card h3 {
  margin-bottom: 0.75rem;
  color: var(--orange-brand);
}
.column-content p + p {
  margin-top: 0.75rem;
}

/* --- Tabla --- */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--gradient-card);
}
.data-table th,
.data-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.data-table th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--orange-brand);
  font-weight: 700;
}
.data-table tr:last-child td {
  border-bottom: none;
}

/* --- Descarga --- */
.download-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.download-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  flex-shrink: 0;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
}
.download-card h3 {
  margin-bottom: 0.25rem;
}
.download-card p {
  color: var(--sand);
}
.download-card .btn {
  margin-left: auto;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing-featured {
  border-color: var(--orange-brand);
  box-shadow: var(--shadow-card);
  background: linear-gradient(
    145deg,
    rgba(213, 100, 9, 0.15),
    rgba(57, 80, 91, 0.2)
  );
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pricing-plan {
  color: var(--sand);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
}
.pricing-description {
  color: var(--sand);
  font-size: 0.9rem;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--white);
}
.pricing-features i {
  color: var(--orange-brand);
  margin-top: 0.35rem;
  font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .columns-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .columns-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .columns-grid.cols-2,
  .columns-grid.cols-3,
  .columns-grid.cols-4 {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .download-card .btn {
    margin-left: 0;
  }
}

.blog-hero {
  background: var(--ink);
  color: var(--white);
  padding: 6rem 0 3rem;
  text-align: center;
}
.blog-intro {
  color: var(--slate-mid);
  max-width: 720px;
  margin: 1rem auto 0;
}
.blog-list {
  padding: 4rem 0;
}
.blog-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 1.25rem 1.5rem;
}
.blog-card-date,
.blog-post-date {
  color: var(--slate-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}
.blog-card-body h2 {
  margin: 0.5rem 0;
}
.blog-card-body h2 a {
  color: var(--ink);
  text-decoration: none;
}
.blog-card-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.blog-empty {
  color: var(--slate-mid);
}
.blog-post {
  padding-bottom: 4rem;
}
.blog-post-header {
  background: var(--ink);
  color: var(--white);
  padding: 5rem 0 2.5rem;
}
.blog-post-header h1 {
  margin-top: 0.5rem;
}
.blog-post-excerpt {
  color: var(--slate-mid);
  max-width: 720px;
  margin-top: 0.75rem;
}
.blog-post-cover {
  margin: 2rem 0;
}
.blog-post-cover img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.blog-post-body {
  max-width: 820px;
}
@media (max-width: 640px) {
  .blog-card {
    grid-template-columns: 1fr;
  }
}
