/* =============================================
   DEBUGDEVS — Landing Page Styles
   Colors: #F41245 (accent red), #020B1D (dark navy), #FFFFFF (white)
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent: #F41245;
  --dark: #020B1D;
  --white: #ffffff;
  --gray-light: #f0f0f0;
  --gray-mid: #e0e0e0;
  --font-mono: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---- TOPBAR ---- */
.topbar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ---- NAVBAR ---- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--gray-mid);
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--dark);
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.navbar .logo-img {
  height: 58px;
}

.logo-text.white {
  color: var(--white);
}

.logo-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--dark);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark);
}

/* ---- NAV DROPDOWN (Servicios) ---- */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  font-size: 0.65rem;
  color: var(--dark);
  line-height: 1;
  transition: transform 0.2s, color 0.2s;
}

.nav-dropdown-btn:hover {
  color: var(--accent);
}

.nav-item-dropdown.open .nav-dropdown-btn {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}

.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: hover) {
  .nav-item-dropdown:hover .nav-dropdown-btn {
    transform: rotate(180deg);
  }

  .nav-item-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav-dropdown-menu li a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.nav-dropdown-menu li a span {
  font-size: 0.78rem;
  font-weight: 400;
  color: #888;
}

.nav-dropdown-menu li a:hover {
  background: var(--gray-light);
  color: var(--accent);
}

.nav-dropdown-menu li a.current {
  color: var(--accent);
  background: var(--gray-light);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  border: none;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ---- SECTION HELPERS ---- */
.section-title {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.section-title.white { color: var(--white); }
.section-title.dark  { color: var(--dark); }

.section-divider {
  width: 60px;
  height: 5px;
  border-radius: 3px;
  margin: 20px 0 32px;
}

.section-divider.white { background: var(--white); }
.section-divider.dark  { background: var(--dark); }


/* ---- HERO ---- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  background: var(--gray-light);
  min-height: 88vh;
  gap: 60px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-section-wrap {
  background: var(--gray-light);
  width: 100%;
}

.hero-content {
  max-width: 480px;
  flex: 1;
}

.hero-eyebrow {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 4px;
}

.hero-brand {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-mono);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-divider {
  width: 60px;
  height: 5px;
  background: var(--dark);
  border-radius: 3px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn-outline-white {
  width: auto;
}

.hero-visual {
  position: relative;
  flex: 1;
  max-width: 560px;
  min-height: 400px;
}

.hero-img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.hero-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}


/* ---- ABOUT ---- */
.about {
  background: var(--accent);
  padding: 90px 60px;
}

.about-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-left {
  flex-shrink: 0;
  max-width: 300px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  color: var(--white);
}

.feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ---- SERVICES ---- */
.services {
  padding: 90px 60px;
  background: var(--dark);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.services-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.services-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.services-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin-top: 10px;
}

/* Pricing cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  color: var(--white);
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

.pricing-card-featured {
  background: rgba(244, 18, 69, 0.12);
  border-color: var(--accent);
  position: relative;
}

.pricing-card-featured:hover {
  border-color: var(--accent);
}

.pricing-card-top {
  margin-bottom: 28px;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.plan-badge.featured {
  color: var(--white);
}

.plan-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  display: inline-block;
}

.plan-dot.accent-dot { background: var(--accent); }
.plan-dot.dark-dot   { background: rgba(255,255,255,0.25); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.price-amount {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
}

.price-period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.pricing-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.btn-outline-white {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 13px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.pricing-card-featured .btn-accent {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* Feature list */
.pricing-features {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.feat-yes::before {
  background-color: rgba(244, 18, 69, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23F41245' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.feat-no::before {
  background-color: rgba(255,255,255,0.06);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feat-no {
  color: rgba(255,255,255,0.3);
}

.pricing-cards.svc-plan-single {
  grid-template-columns: 1fr;
  max-width: 440px;
}

.pricing-cards.svc-plan-duo {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
}

@media (max-width: 768px) {
  .pricing-cards.svc-plan-duo {
    grid-template-columns: 1fr;
  }
}

.pricing-suited {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 24px;
  padding-top: 24px;
}

.pricing-suited-label {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.pricing-suited .svc-feature-list {
  margin-bottom: 28px;
}

/* ---- TEAM ---- */
.team {
  padding: 90px 60px;
  background: var(--white);
}

.team-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.team-left {
  max-width: 300px;
  flex-shrink: 0;
}

.team-left p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin-top: 8px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  flex: 1;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-mid);
}

.team-photo.placeholder {
  background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--dark);
}

.team-card p {
  font-size: 0.85rem;
  color: var(--accent);
}

/* ---- LOGO BAR ---- */
.logo-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  padding: 28px 60px;
}

.logo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 140px;
  max-height: 52px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}

.client-logo img:hover {
  opacity: 1;
  filter: none;
}

.client-logo-ph {
  font-size: 0.8rem;
  color: #bbb;
  font-style: italic;
}

/* ---- SERVICE VISUAL CARDS ---- */
.svc-visual {
  padding: 90px 60px;
  background: var(--white);
}

.svc-visual-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.svc-visual-header {
  text-align: center;
  margin-bottom: 52px;
}

.svc-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.accent-text { color: var(--accent); }

.svc-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-top: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.svc-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark);
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.svc-card-featured {
  background: var(--accent);
}

.svc-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 11, 29, 0.55);
}

.svc-card-featured .svc-card-overlay {
  background: rgba(244, 18, 69, 0.55);
}

.svc-card-body {
  padding: 28px 24px 32px;
}

.svc-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: lowercase;
}

.svc-card-featured .svc-card-tag {
  color: rgba(255,255,255,0.7);
}

.svc-card-body h3 {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}

.svc-card-body > p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.svc-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.svc-feature-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-feature-list li::before {
  content: '»';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.svc-card-featured .svc-feature-list li::before {
  color: var(--white);
}

.svc-btn {
  display: inline-block;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 0.88rem;
}

/* ---- TEAM (rediseñado) ---- */
.team-header {
  text-align: center;
  margin-bottom: 48px;
}

.team-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-top: 10px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- FAQ ---- */
.faq {
  padding: 90px 60px;
  background: var(--white);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-mid);
}

.faq-item {
  border-bottom: 1px solid var(--gray-mid);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
}

/* ---- CONTACT ---- */
.contact {
  padding: 90px 60px;
  background: var(--gray-light);
}

.contact-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-left {
  max-width: 320px;
  flex-shrink: 0;
}

.contact-left p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 32px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-msg {
  font-size: 0.9rem;
  min-height: 1.2em;
}

.contact-form-msg.success {
  color: #2e7d32;
}

.contact-form-msg.error {
  color: #c62828;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.contact-left p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.contact-info p {
  font-size: 0.88rem;
  color: #444;
  margin: 0 !important;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  padding: 60px 60px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 220px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.footer-social-link:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--accent); }

.footer-col p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ---- SERVICE DETAIL PAGE ---- */
.svc-hero {
  padding: 64px 60px 90px;
  background: var(--dark);
  color: var(--white);
}

.svc-hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.svc-hero-inner {
  flex: 1;
  max-width: 560px;
}

.svc-hero-crumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
}

.svc-hero-crumb a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.svc-hero-crumb a:hover {
  color: var(--accent);
}

.svc-hero-title {
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.svc-hero-title .accent {
  color: var(--accent);
}

.svc-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 480px;
}

.svc-hero-img {
  position: relative;
  flex: 1;
  max-width: 480px;
  border-radius: 12px;
  overflow: hidden;
}

.svc-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(244, 18, 69, 0.3), rgba(2, 11, 29, 0.6));
}

.svc-hero-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.svc-hero-img-texture::after {
  background: linear-gradient(150deg, rgba(2, 11, 29, 0.72), rgba(2, 11, 29, 0.92));
}

.svc-hero-img-texture img {
  filter: blur(3px) saturate(0.7);
  transform: scale(1.06);
}

/* Detail content grid */
.svc-detail {
  padding: 90px 60px;
  background: var(--white);
}

.svc-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.svc-detail-header {
  text-align: center;
  margin-bottom: 48px;
}

.svc-detail-lead {
  color: #666;
  font-size: 0.95rem;
  margin-top: 10px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-detail-card {
  border: 1px solid var(--gray-mid);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.svc-detail-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.svc-detail-card h3 {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 10px;
}

.svc-detail-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
}

/* Process steps */
.svc-process {
  padding: 90px 60px;
  background: var(--gray-light);
}

.svc-process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.svc-process-header {
  text-align: center;
  margin-bottom: 48px;
}

.svc-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.svc-step {
  text-align: left;
}

.svc-step-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.svc-step h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.svc-step p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* CTA banner */
.svc-cta {
  padding: 80px 60px;
  background: var(--accent);
  text-align: center;
}

.svc-cta h2 {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 16px;
}

.svc-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 28px;
}

.svc-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.svc-cta .btn-dark:hover {
  opacity: 1;
  background: var(--white);
  color: var(--dark);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }

  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--gray-mid);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle-wrap {
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border: none;
    background: var(--gray-light);
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-item-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .hero {
    flex-direction: column;
    padding: 60px 24px;
    min-height: auto;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 100%;
    width: 100%;
  }

  .about {
    padding: 60px 24px;
  }

  .about-inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-left { max-width: 100%; }

  .services {
    padding: 60px 24px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .team {
    padding: 60px 24px;
  }

  .svc-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .faq {
    padding: 60px 24px;
  }

  .svc-visual {
    padding: 60px 24px;
  }

  .team-inner {
    flex-direction: column;
    gap: 40px;
  }

  .team-left { max-width: 100%; }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-bar {
    padding: 24px;
  }

  .logo-bar-inner {
    gap: 28px;
  }

  .contact {
    padding: 60px 24px;
  }

  .contact-inner {
    flex-direction: column;
    gap: 40px;
  }

  .contact-left { max-width: 100%; }

  .footer {
    padding: 48px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .svc-hero {
    padding: 48px 24px 60px;
  }

  .svc-hero-content {
    flex-direction: column;
    gap: 36px;
  }

  .svc-hero-inner {
    max-width: 100%;
  }

  .svc-hero-img {
    max-width: 100%;
    width: 100%;
  }

  .svc-detail {
    padding: 60px 24px;
  }

  .svc-detail-grid {
    grid-template-columns: 1fr;
  }

  .svc-process {
    padding: 60px 24px;
  }

  .svc-process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .svc-cta {
    padding: 60px 24px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .svc-cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .svc-process-steps {
    grid-template-columns: 1fr;
  }
}
