/* ------------------------------
   RESET + BASE
------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: #ffffff;
    color: #111;
}

/* ------------------------------
    NAVBAR GENERAL
------------------------------- */
.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

/* ------------------------------
    LOGO
------------------------------- */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0039b4;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.logo a:hover {
    color: #2563eb;
}

/* ------------------------------
    NAV UL PRINCIPAL
------------------------------- */
.main-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

/* ------------------------------
    LINKS PRINCIPALES
------------------------------- */
.main-navigation > ul > li > a {
    text-decoration: none;
    color: #111827;
    font-size: 0.97rem;
    font-weight: 500;
    padding: 8px 2px;
    transition: 0.25s ease;
    position: relative;
}

/* Subrayado animado */
.main-navigation > ul > li > a::after {
    content: "";
    width: 0;
    height: 2px;
    background: #2563eb;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.3s;
}

.main-navigation > ul > li > a:hover::after {
    width: 100%;
}

/* ------------------------------
    DROPDOWN
------------------------------- */
.main-navigation ul li {
    position: relative;
}

.main-navigation ul li ul {
    position: absolute;
    top: 32px;
    left: 0;
    background: white;
    padding: 12px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    min-width: 220px;
    z-index: 999;
}

.main-navigation ul li:hover > ul {
    display: flex;
}

.main-navigation ul li ul li a {
    padding: 10px 18px;
    font-size: 0.9rem;
    color: #374151;
}

.main-navigation ul li ul li a:hover {
    background: #f5f5f5;
    color: #111827;
}

/* ------------------------------
    BOTÓN ES (ESTILO BACANO)
------------------------------- */
.main-navigation ul li a[href="/es"] {
    background: #2563eb;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.25s;
}

.main-navigation ul li a[href="/es"]:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.4);
}

/* ------------------------------
    RESPONSIVE
------------------------------- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #111;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* MOBILE MODE */
@media (max-width: 900px) {

    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
        flex-direction: column;
    }

    .main-navigation.active {
        display: flex;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 16px;
    }

    .main-navigation ul li ul {
        position: static;
        box-shadow: none;
        padding-left: 12px;
        display: none;
    }

    .main-navigation ul li.open > ul {
        display: flex;
    }

    /* Botón ES en mobile */
    .main-navigation ul li a[href="/es"] {
        width: fit-content;
    }
}


/* MAIN CONTACT FORM AS PRIMARY EVENT */
.contact-primary {
    padding: 60px 0 80px;
    background: #f9fafb;
}

.contact-primary-container {
    max-width: 720px;
    margin: 0 auto;
}

/* Card */
.contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 24px 28px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 16px;
}

.contact-header h1 {
    font-size: 1.9rem;
    color: #111827;
    margin-bottom: 6px;
}

.contact-header p {
    font-size: 0.98rem;
    color: #4b5563;
}

/* Alerts */
.contact-alert {
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.contact-alert-success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.contact-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.two-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.form-group label span {
    color: #dc2626;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 10px 11px;
    font-size: 1rem;
    outline: none;
    background: #f9fafb;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.08s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
    background: #ffffff;
    transform: translateY(-1px);
}

/* Button */
.form-actions {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-primary:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.5);
    filter: brightness(1.03);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
}

.form-note {
    font-size: 0.78rem;
    color: #6b7280;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-primary {
        padding: 40px 0 50px;
    }

    .two-columns {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-card {
        padding: 22px 18px 24px;
    }
}


/* ============ GLOBAL FOR THIS PAGE ============ */

.ti-main {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
    background: #ffffff;
    line-height: 1.6;
}

.ti-container {
    width: min(1100px, 100% - 2.5rem);
    margin: 0 auto;
}

/* Base spacing for sections */
.ti-section {
    padding: 64px 0;
}

/* ============ HERO SECTION ============ */

    /* ================================
   HERO (Background Slider + Overlay Content)
   Works with your new HTML:
   .ti-hero, .ti-hero-bg, .ti-hero-bg__slide, .ti-hero__content, etc.
================================ */

/* HERO WRAPPER */
.ti-hero{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
  min-height: clamp(520px, 70vh, 760px);
  display: grid;
  align-items: center;
  background: #0b1220; /* fallback while bg loads */
}

/* BACKGROUND SLIDER LAYER */
.ti-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ti-hero-bg__slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transform: scale(1.08);
  transition: opacity 900ms ease, transform 4500ms ease;
  will-change: opacity, transform;
}

.ti-hero-bg__slide.is-active{
  opacity: 1;
  transform: scale(1.02);
}

/* Overlay (for readability) */
.ti-hero-bg__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 20% 25%, rgba(37, 99, 235, 0.35), rgba(15, 23, 42, 0) 60%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.55) 55%, rgba(15, 23, 42, 0.25));
}

/* CONTENT CONTAINER */
.ti-hero__container{
  position: relative;
  z-index: 2;
  padding: 86px 0 74px;
}

/* CONTENT CARD / COLUMN */
.ti-hero__content{
  max-width: 720px;
  padding: 26px 22px 22px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.32);
}

/* BADGE */
.ti-hero__badge{
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

/* TITLE */
.ti-hero__title{
  font-size: clamp(2.1rem, 3.3vw, 3.15rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 12px;
}

/* SUBTITLE */
.ti-hero__subtitle{
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.92);
  max-width: 640px;
  margin-bottom: 16px;
}

/* FEATURES LIST */
.ti-hero__features{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  font-size: 0.95rem;
}

.ti-hero__features li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(15, 23, 42, 0.28);
}

/* ACTIONS */
.ti-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

/* TRUST LINE */
.ti-hero__trust{
  font-size: 0.88rem;
  color: rgba(203, 213, 225, 0.92);
}

/* OPTIONAL: if your .ti-btn exists, these enhance it only inside hero */
.ti-hero .ti-btn{
  text-decoration: none;
}

.ti-hero .ti-btn-primary{
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.45);
}

.ti-hero .ti-btn-secondary{
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff;
}

.ti-hero .ti-btn-secondary:hover{
  background: rgba(255,255,255,0.16);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 980px){
  .ti-hero-bg__overlay{
    background:
      radial-gradient(800px 460px at 20% 20%, rgba(37, 99, 235, 0.28), rgba(15, 23, 42, 0) 62%),
      linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.55) 55%, rgba(15, 23, 42, 0.30));
  }

  .ti-hero__container{
    padding: 72px 0 56px;
  }

  .ti-hero__content{
    max-width: 760px;
  }
}

@media (max-width: 600px){
  .ti-hero{
    min-height: 560px;
  }

  .ti-hero__container{
    padding: 64px 0 46px;
  }

  .ti-hero__content{
    padding: 20px 16px 16px;
    border-radius: 18px;
  }

  .ti-hero__actions{
    flex-direction: column;
    align-items: stretch;
  }

  .ti-hero__title{
    font-size: clamp(1.9rem, 6vw, 2.5rem);
  }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  .ti-hero-bg__slide{
    transition: none;
    transform: none;
  }
}


/* ============ BUTTONS ============ */

.ti-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
}

.ti-btn-primary {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.ti-btn-primary:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.45);
}

.ti-btn-secondary {
    background: #e5edff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

.ti-btn-secondary:hover {
    background: #dbeafe;
}

.ti-btn-outline {
    background: transparent;
    color: #1d4ed8;
    border-color: #93c5fd;
}

.ti-btn-outline:hover {
    background: #eff6ff;
}

/* ============ GENERIC SECTION TITLES ============ */

.ti-section-title {
    font-size: 1.8rem;
    font-weight: 1000;
    margin-bottom: 10px;
    color: #0f172a;
}

.ti-section-intro {
    text-align: center;
    margin: 0 auto;
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 700px;
    margin-bottom: 18px;
}

.ti-section-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.ti-section-text {
    font-size: 0.98rem;
    color: #4b5563;
}

/* ============ WHY CHOOSE US / FEATURES ============ */

.ti-why {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.ti-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    font-size: 0.98rem;
}

.ti-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #111827;
}

/* ============ ABOUT SECTION ============ */

.ti-about {
    background: #f9fafb;
}

/* ============ SERVICES ============ */

.ti-services {
    background: #ffffff;
}

.ti-services-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
    display: grid;
    gap: 10px;
}

.ti-service-item {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.ti-service-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: #111827;
}

.ti-services-actions {
    margin-top: 8px;
}

/* ============ FAQ SECTION ============ */

.ti-faq {
    background: #f9fafb;
}

.ti-faq-container {
    max-width: 900px;
}

.ti-faq-item {
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.ti-faq-item:last-child {
    border-bottom: none;
}

.ti-faq-question {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
}

.ti-faq-answer {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 6px;
}

.ti-faq-list {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 4px 0 8px;
    font-size: 0.95rem;
    color: #4b5563;
}

/* ============ FINAL CTA ============ */

.ti-cta {
    text-align: center;
    background: radial-gradient(circle at top, #eff6ff, #ffffff 55%);
    padding-bottom: 80px;
}

.ti-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.ti-cta-text {
    font-size: 0.98rem;
    color: #4b5563;
    margin-bottom: 18px;
}

/* ============ RESPONSIVE ============ */

@media (min-width: 768px) {
    .ti-hero {
        padding: 96px 0 80px;
    }
}

@media (max-width: 768px) {
    .ti-hero-title {
        text-align: left;
    }

    .ti-hero-subtitle,
    .ti-hero-heading,
    .ti-hero-text {
        text-align: left;
    }

    .ti-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ti-section {
        padding: 48px 0;
    }

    .ti-faq-container {
        max-width: 100%;
    }
}

/* ================================
   TURN IDEAS TO SITES — FOOTER
================================ */

.ti-footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid #1e293b;
}

.ti-footer-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

/* TOP SECTION */
.ti-footer-top {
    text-align: center;
    margin-bottom: 40px;
}

.ti-footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 12px;
}

.ti-footer-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* GRID COLUMNS */
.ti-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.ti-footer-column h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f1f5f9;
}

.ti-footer-column p,
.ti-footer-column li {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.ti-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ti-footer-column a {
    text-decoration: none;
    color: #93c5fd;
    transition: 0.2s ease;
}

.ti-footer-column a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* SOCIAL AREA */
.ti-footer-social {
    text-align: center;
    margin-bottom: 30px;
}

.ti-footer-social h3 {
    margin-bottom: 10px;
    color: #f1f5f9;
}

.ti-footer-social a {
    color: #93c5fd;
    text-decoration: none;
    padding: 0 6px;
    transition: 0.2s;
}

.ti-footer-social a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* DIVIDER */
.ti-footer-divider {
    border: none;
    border-top: 1px solid #1e293b;
    margin: 24px 0;
}

/* BOTTOM SECTION */
.ti-footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
}

.ti-footer-bottom strong {
    color: #e2e8f0;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .ti-footer {
        padding: 50px 0 30px;
    }
    
    .ti-footer-title {
        font-size: 1.3rem;
    }
}

/* ================================
   PRICING SECTION
================================ */

.ti-pricing {
    background: #f9fafb;
}

.ti-pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.ti-pricing-header .ti-section-title {
    margin-bottom: 8px;
}

.ti-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

/* Cards */
.ti-pricing-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 18px 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ti-pricing-card-highlight {
    border-color: #2563eb;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
    position: relative;
}

.ti-pricing-badge {
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #2563eb;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 999px;
}

/* Custom card slight variation */
.ti-pricing-custom {
    border-style: dashed;
    border-color: #93c5fd;
    background: #eff6ff;
}

/* Card content */
.ti-pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.ti-pricing-tagline {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.ti-pricing-price {
    margin-bottom: 12px;
}

.ti-pricing-amount {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #111827;
}

.ti-pricing-note {
    font-size: 0.95rem;
    color: #6b7280;
}

/* Features list */
.ti-pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 14px;
    font-size: 1.1rem;
    color: #2c384b;
}

.ti-pricing-features li {
    margin-bottom: 0px;
}

/* Button */
.ti-pricing-btn {
    margin-top: 4px;
    margin-bottom: 8px;
    width: 100%;
}

.ti-pricing-small {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Disclaimer */
.ti-pricing-disclaimer {
    font-size: 0.8rem;
    color: #013cb1;
    margin-top: 18px;
    text-align: center;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .ti-pricing-header {
        text-align: left;
    }

    .ti-pricing-disclaimer {
        text-align: left;
    }
}
/* ------------------------------
   RESET + BASE
------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background: #ffffff;
    color: #111;
}

/* ------------------------------
    NAVBAR GENERAL
------------------------------- */
.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    position: relative; /* importante para el menú absoluto en mobile */
}

/* ------------------------------
    LOGO
------------------------------- */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.logo a:hover {
    color: #2563eb;
}

/* ------------------------------
    NAV UL PRINCIPAL (desktop base)
------------------------------- */
/*.main-navigation {
    /* desktop: normal block */


.main-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

/* ------------------------------
    LINKS PRINCIPALES
------------------------------- */
.main-navigation > ul > li > a {
    text-decoration: none;
    color: #111827;
    font-size: 0.97rem;
    font-weight: 500;
    padding: 8px 2px;
    transition: 0.25s ease;
    position: relative;
}

/* Subrayado animado */
.main-navigation > ul > li > a::after {
    content: "";
    width: 0;
    height: 3px;
    background: #2563eb;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: 0.3s;
}

.main-navigation > ul > li > a:hover::after {
    width: 100%;
}

/* ------------------------------
    DROPDOWN (desktop)
------------------------------- */
.main-navigation ul li {
    position: relative;
}

.main-navigation ul li ul {
    position: absolute;
    top: 32px;
    left: 0;
    background: white;
    padding: 12px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    min-width: 220px;
    z-index: 999;
}

.main-navigation ul li:hover > ul {
    display: flex;
}

.main-navigation ul li ul li a {
    padding: 10px 18px;
    font-size: 0.9rem;
    color: #374151;
}

.main-navigation ul li ul li a:hover {
    background: #f5f5f5;
    color: #111827;
}

/* ------------------------------
    BOTÓN ES (ESTILO BACANO)
------------------------------- */
.main-navigation ul li a[href="/es"] {
    background: #2563eb;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.25s;
}

.main-navigation ul li a[href="/es"]:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.4);
}

/* ------------------------------
    HAMBURGER BUTTON
------------------------------- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    width: 30px;
    height: 24px;
    justify-content: center;
    align-items: center;
    z-index: 10001; /* por encima del menú */
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: #111;
    border-radius: 999px;
    transition: 0.2s ease;
}

/* Animación X cuando está abierto */
.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ------------------------------
    MOBILE MODE
------------------------------- */
@media (max-width: 900px) {

    .menu-toggle {
        display: flex;
    }

    /* Escondemos el menú en mobile hasta que se abra */
    .main-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 16px 20px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Submenú en mobile: cae debajo, sin sombra */
    .main-navigation ul li ul {
        position: static;
        box-shadow: none;
        padding: 6px 0 0 14px;
        display: none;
        margin-top: 4px;
    }

    /* Cuando el li tiene la clase .open, mostramos su submenú */
    .main-navigation ul li.open > ul {
        display: flex;
    }

    /* Botón ES en mobile */
    .main-navigation ul li a[href="/es"] {
        width: 100%;
        text-align: center;
    }
}

/* (el resto de tu CSS sigue igual: contact-primary, ti-main, ti-hero, footer, pricing, etc.) */

/* ============================================
   ABOUT PAGE — GLOBAL STYLES
============================================ */

.ti-about-main {
    background: #ffffff;
    color: #0f172a;
    line-height: 1.7;
}

/* Section spacing overrides */
.ti-about-block {
    padding: 70px 0;
}

@media (max-width: 768px) {
    .ti-about-block {
        padding: 50px 0;
    }
}

/* ============================================
   HERO SECTION
============================================ */

.ti-about-hero {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff 40%, #f9fafb 100%);
    padding: 90px 0 70px;
    border-bottom: 1px solid #e5e7eb;
}

.ti-about-hero-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    text-align: center;
    color: #0f172a;
    margin-bottom: 16px;
}

.ti-about-hero-text {
    text-align: center;
    font-size: 1rem;
    color: #4b5563;
    max-width: 750px;
    margin: 0 auto 10px;
}

/* ============================================
   GRID LAYOUTS
============================================ */

.ti-about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

@media (max-width: 900px) {
    .ti-about-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

.ti-about-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ============================================
   LISTS
============================================ */

.ti-about-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.ti-about-list li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.97rem;
    color: #374151;
}

.ti-about-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 3px;
    color: #2563eb;
    font-size: 1.2rem;
}

/* ============================================
   MISSION — BADGES
============================================ */

.ti-about-badges {
    list-style: none;
    padding: 0;
}

.ti-about-badges li {
    background: #eff6ff;
    color: #1e3a8a;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #bfdbfe;
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .ti-about-badges li {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   VALUES — LIST
============================================ */

.ti-about-values-list li {
    margin-bottom: 14px;
    line-height: 1.6;
    color: #374151;
}

.ti-about-values-list li strong {
    color: #111827;
}

/* ============================================
   STAND FOR — PILL CARDS
============================================ */

.ti-about-pill-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.ti-about-pill {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ti-about-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

.ti-about-pill-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.ti-about-pill-text {
    font-size: 0.92rem;
    color: #4b5563;
}

/* ============================================
   DIFFERENCE — GRID ITEMS
============================================ */

.ti-about-diff-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.ti-about-diff-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.05);
    transition: 0.2s ease;
}

.ti-about-diff-item:hover {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
    transform: translateY(-4px);
}

.ti-about-diff-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.ti-about-diff-text {
    font-size: 0.92rem;
    color: #4b5563;
}

/* ============================================
   SERVICES BREAKDOWN
============================================ */

.ti-about-services .ti-about-list li {
    margin-bottom: 14px;
}

.ti-about-services .ti-about-list li strong {
    color: #111827;
}

/* ============================================
   PROCESS SECTION
============================================ */

.ti-about-process-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
}

.ti-about-process-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ti-about-process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

.ti-about-process-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.ti-about-process-text {
    font-size: 0.92rem;
    color: #4b5563;
}

/* ============================================
   SMALL SCREEN ADJUSTMENTS
============================================ */

@media (max-width: 768px) {
    .ti-about-hero-title {
        text-align: left;
    }

    .ti-about-hero-text {
        text-align: left;
    }

    .ti-section-title {
        font-size: 1.35rem;
    }

    .ti-about-pill-grid,
    .ti-about-diff-grid,
    .ti-about-process-grid {
        gap: 18px;
    }
}

/* ============================================
   CONTACT PAGE — BASE
============================================ */

.contact-page {
    background: #ffffff;
    color: #0f172a;
}

/* ============================================
   CONTACT HERO (INFO DE CONTACTO)
============================================ */

.contact-hero {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff 45%, #f9fafb 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid #e5e7eb;
}

.contact-hero .ti-container {
    max-width: 720px;
}

.contact-hero h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #0f172a;
}

.contact-hero h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 4px;
    color: #111827;
}

.contact-hero p {
    font-size: 0.98rem;
    color: #4b5563;
    margin-bottom: 4px;
}

.contact-hero-note {
    margin-top: 14px;
    font-weight: 500;
    color: #111827;
}

/* ============================================
   CONTACT FORM SECTION
============================================ */

.contact-form-section {
    padding: 40px 0 70px;
    background: #ffffff;
}

/* El form ya usa .contact-primary y .contact-card de tu CSS anterior.
   Solo centramos un poco más en esta página si hace falta. */
.contact-form-section .contact-primary-container {
    max-width: 780px;
}

/* ============================================
   CONTACT - WHY WORK WITH US
============================================ */

.contact-why {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 60px 0;
}

.contact-why h1 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.contact-why h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.contact-why p {
    font-size: 0.98rem;
    color: #4b5563;
    margin-bottom: 14px;
    max-width: 720px;
}

.contact-why ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    gap: 8px;
}

.contact-why ul li {
    font-size: 0.95rem;
    color: #374151;
    padding-left: 22px;
    position: relative;
}

.contact-why ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 0.9rem;
    color: #16a34a;
}

/* ============================================
   CONTACT - SERVICE AREA
============================================ */

.contact-service-area {
    background: #ffffff;
    padding: 50px 0 70px;
}

.contact-service-area h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.contact-service-area p {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 720px;
}

/* ============================================
   RESPONSIVE CONTACT PAGE
============================================ */

@media (max-width: 768px) {

    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-hero h2 {
        font-size: 1.6rem;
    }

    .contact-hero .ti-container {
        width: min(100% - 2.5rem, 100%);
    }

    .contact-form-section {
        padding: 30px 0 50px;
    }

    .contact-why {
        padding: 45px 0;
    }

    .contact-why h1 {
        font-size: 1.4rem;
    }

    .contact-why h2 {
        font-size: 1.2rem;
    }

    .contact-service-area {
        padding: 40px 0 55px;
    }
}

/* ============================================
   PORTFOLIO PAGE — BASE
============================================ */

.portfolio-page {
    background: #ffffff;
    color: #0f172a;
}

/* ============================================
   HERO
============================================ */

.portfolio-hero {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff 40%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 80px 0 60px;
}

.portfolio-hero-title {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #0f172a;
    text-align: left;
}

.portfolio-hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 720px;
    margin-bottom: 10px;
}

.portfolio-hero-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 750px;
    margin-bottom: 18px;
}

.portfolio-hero-text strong {
    color: #111827;
}

/* Meta info */
.portfolio-hero-meta {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    max-width: 780px;
}

.portfolio-hero-meta-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 2px;
}

.portfolio-hero-meta-value {
    font-size: 0.9rem;
    color: #111827;
}

/* ============================================
   FILTERS / CHIPS
============================================ */

.portfolio-filters {
    background: #ffffff;
    padding: 40px 0 30px;
    border-bottom: 1px solid #e5e7eb;
}

.portfolio-filter-chips {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-chip {
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.85rem;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
    cursor: pointer;
    transition: 0.18s ease;
}

.portfolio-chip:hover {
    border-color: #2563eb;
    color: #1d4ed8;
    background: #eff6ff;
}

.portfolio-chip-active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

/* ============================================
   PROJECT GRID
============================================ */

.portfolio-grid-section {
    background: #ffffff;
    padding: 50px 0 60px;
}

.portfolio-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* Card base */
.portfolio-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.14);
}

/* Card image */
.portfolio-card-image-link {
    display: block;
    overflow: hidden;
}

.portfolio-card-image {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.portfolio-card:hover .portfolio-card-image {
    transform: scale(1.04);
}

/* Card body */
.portfolio-card-body {
    padding: 16px 16px 18px;
}

.portfolio-card-title {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.portfolio-card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.18s ease;
}

.portfolio-card-title a:hover {
    color: #2563eb;
}

.portfolio-card-description {
    font-size: 0.92rem;
    color: #4b5563;
    margin-bottom: 10px;
}

/* Meta list */
.portfolio-card-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-size: 0.85rem;
    color: #6b7280;
}

.portfolio-card-meta li {
    margin-bottom: 3px;
}

/* Tags */
.portfolio-card-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.portfolio-card-tags li {
    font-size: 0.75rem;
    padding: 4px 9px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    white-space: nowrap;
}

/* ============================================
   RESULTS / STATS
============================================ */

.portfolio-results {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 60px 0;
}

.portfolio-stats-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.portfolio-stat {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    text-align: left;
}

.portfolio-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 4px;
}

.portfolio-stat-label {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   PROCESS
============================================ */

.portfolio-process {
    background: #ffffff;
    padding: 60px 0;
}

.portfolio-process-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.portfolio-process-step {
    background: #f9fafb;
    border-radius: 16px;
    padding: 18px 16px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.portfolio-process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.portfolio-process-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.portfolio-process-text {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   CTA FINAL
============================================ */

.portfolio-cta {
    background: radial-gradient(circle at top, #eff6ff, #ffffff 55%);
    text-align: center;
    padding-bottom: 80px;
}

.portfolio-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.portfolio-cta-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 640px;
    margin: 0 auto 18px;
}

.portfolio-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 768px) {

    .portfolio-hero {
        padding: 60px 0 40px;
    }

    .portfolio-hero-title {
        font-size: 1.8rem;
    }

    .portfolio-hero-subtitle,
    .portfolio-hero-text {
        max-width: 100%;
    }

    .portfolio-hero-meta {
        padding: 12px 12px;
    }

    .portfolio-grid-section {
        padding: 40px 0 50px;
    }

    .portfolio-results {
        padding: 45px 0;
    }

    .portfolio-process {
        padding: 45px 0;
    }

    .portfolio-cta {
        padding: 45px 0 60px;
    }

    .portfolio-card-image {
        height: 180px;
    }
}
/* ============================================
   SERVICES PAGE — BASE
============================================ */

.services-page {
    background: #ffffff;
    color: #0f172a;
}

/* ============================================
   HERO SERVICES
============================================ */

.services-hero {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff 40%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 80px 0 60px;
}

.services-hero-title {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #0f172a;
}

.services-hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 720px;
    margin-bottom: 10px;
}

.services-hero-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 750px;
    margin-bottom: 18px;
}

.services-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

/* Highlights debajo del hero */
.services-hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    padding: 14px 16px;
    background: #f9fafb;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    max-width: 820px;
}

.services-highlight {
    display: flex;
    flex-direction: column;
}

.services-highlight-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 2px;
}

.services-highlight-value {
    font-size: 0.9rem;
    color: #111827;
}

/* ============================================
   OVERVIEW STRIP
============================================ */

.services-overview {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 50px 0 40px;
}

.services-overview-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.services-overview-item {
    background: #f9fafb;
    border-radius: 14px;
    padding: 14px 14px 16px;
    border: 1px solid #e5e7eb;
}

.services-overview-item h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.services-overview-item p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   CORE SERVICES GRID
============================================ */

.services-core {
    background: #ffffff;
    padding: 60px 0;
}

.services-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.service-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.service-card-tagline {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 8px;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #374151;
}

.service-card-list li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px;
}

.service-card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2563eb;
    font-size: 1.1rem;
}

.service-card-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.service-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.service-card-link:hover {
    text-decoration: underline;
}

/* ============================================
   SERVICE PACKAGES / PRICING TEASER
============================================ */

.services-packages {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 60px 0;
}

.services-packages-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.services-package-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.services-package-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.services-package-price {
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
}

.services-package-text {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 10px;
}

.services-package-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
}

.services-package-list li {
    padding-left: 18px;
    margin-bottom: 6px;
    position: relative;
}

.services-package-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #16a34a;
    font-size: 1.1rem;
}

.services-packages-note {
    font-size: 0.86rem;
    color: #6b7280;
    margin-top: 16px;
}

.services-packages-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ============================================
   SERVICES FAQ
============================================ */

.services-faq {
    background: #ffffff;
    padding: 60px 0;
}

.services-faq-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.services-faq-item {
    background: #f9fafb;
    border-radius: 14px;
    padding: 14px 14px 16px;
    border: 1px solid #e5e7eb;
}

.services-faq-question {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.services-faq-answer {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   FINAL CTA
============================================ */

.services-cta {
    background: radial-gradient(circle at top, #eff6ff, #ffffff 55%);
    text-align: center;
    padding-bottom: 80px;
}

.services-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.services-cta-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 640px;
    margin: 0 auto 18px;
}

.services-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* ============================================
   RESPONSIVE — SERVICES
============================================ */

@media (max-width: 768px) {

    .services-hero {
        padding: 60px 0 40px;
    }

    .services-hero-title {
        font-size: 1.9rem;
    }

    .services-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .services-overview {
        padding: 45px 0 35px;
    }

    .services-core {
        padding: 50px 0;
    }

    .services-packages {
        padding: 50px 0;
    }

    .services-faq {
        padding: 45px 0;
    }

    .services-cta {
        padding: 45px 0 60px;
    }
}

/* ============================================
   SEO SERVICES PAGE — BASE
============================================ */

.seo-services-page {
    background: #ffffff;
    color: #0f172a;
}

/* ============================================
   HERO SEO
============================================ */

.seo-hero {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff 40%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 80px 0 60px;
}

.seo-hero-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #0f172a;
}

.seo-hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 750px;
    margin-bottom: 10px;
}

.seo-hero-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 780px;
    margin-bottom: 18px;
}

.seo-hero-text strong {
    color: #111827;
}

.seo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

/* Badges debajo del hero */
.seo-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.seo-hero-badges span {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
    white-space: nowrap;
}

/* ============================================
   SEO OVERVIEW
============================================ */

.seo-overview {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 55px 0 45px;
}

.seo-overview-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.seo-overview-item {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.seo-overview-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.seo-overview-item p {
    font-size: 0.92rem;
    color: #4b5563;
}

/* ============================================
   SEO SERVICES GRID
============================================ */

.seo-services-core {
    background: #ffffff;
    padding: 60px 0;
}

.seo-services-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.seo-service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.seo-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.seo-service-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.seo-service-tagline {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 8px;
}

.seo-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #374151;
}

.seo-service-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.seo-service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2563eb;
    font-size: 1.1rem;
}

.seo-service-note {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ============================================
   SEO PROCESS
============================================ */

.seo-process {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 60px 0;
}

.seo-process-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.seo-process-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.seo-process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
}

.seo-process-title {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.seo-process-text {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   SEO PACKAGES
============================================ */

.seo-packages {
    background: #ffffff;
    padding: 60px 0;
}

.seo-packages-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.seo-package-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid #dbe2f0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.seo-package-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.seo-package-price {
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
}

.seo-package-text {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 10px;
}

.seo-package-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
}

.seo-package-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.seo-package-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #16a34a;
    font-size: 1.1rem;
}

.seo-package-note {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #6b7280;
}

.seo-packages-footnote {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 18px;
}

/* ============================================
   SEO FAQ
============================================ */

.seo-faq {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0;
}

.seo-faq-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.seo-faq-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 14px 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.seo-faq-question {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.seo-faq-answer {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   FINAL CTA
============================================ */

.seo-cta {
    background: radial-gradient(circle at top, #eff6ff, #ffffff 55%);
    text-align: center;
    padding-bottom: 80px;
}

.seo-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.seo-cta-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 640px;
    margin: 0 auto 18px;
}

.seo-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* ============================================
   RESPONSIVE — SEO PAGE
============================================ */

@media (max-width: 768px) {

    .seo-hero {
        padding: 60px 0 40px;
    }

    .seo-hero-title {
        font-size: 2rem;
    }

    .seo-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .seo-hero-badges {
        gap: 6px;
    }

    .seo-hero-badges span {
        white-space: normal;
    }

    .seo-overview {
        padding: 45px 0 35px;
    }

    .seo-services-core {
        padding: 50px 0;
    }

    .seo-process {
        padding: 50px 0;
    }

    .seo-packages {
        padding: 50px 0;
    }

    .seo-faq {
        padding: 50px 0;
    }

    .seo-cta {
        padding: 45px 0 60px;
    }
}


/* ============================================
   ECOMMERCE PAGE — BASE
============================================ */

.ecommerce-page {
    background: #ffffff;
    color: #0f172a;
}

/* ============================================
   HERO ECOMMERCE
============================================ */

.ecommerce-hero {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff 40%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 80px 0 60px;
}

.ecommerce-hero-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #0f172a;
}

.ecommerce-hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 760px;
    margin-bottom: 10px;
}

.ecommerce-hero-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 780px;
    margin-bottom: 18px;
}

.ecommerce-hero-text strong {
    color: #111827;
}

.ecommerce-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

/* Badges */
.ecommerce-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.ecommerce-hero-badges span {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
    white-space: nowrap;
}

/* ============================================
   BENEFITS SECTION
============================================ */

.ecommerce-benefits {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 55px 0 45px;
}

.ecommerce-benefits-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.ecommerce-benefit-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.ecommerce-benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.ecommerce-benefit-card p {
    font-size: 0.92rem;
    color: #4b5563;
}

/* ============================================
   CORE ECOMMERCE SERVICES
============================================ */

.ecommerce-services-core {
    background: #ffffff;
    padding: 60px 0;
}

.ecommerce-services-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.ecommerce-service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ecommerce-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.ecommerce-service-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.ecommerce-service-tagline {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 8px;
}

.ecommerce-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #374151;
}

.ecommerce-service-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.ecommerce-service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2563eb;
    font-size: 1.1rem;
}

.ecommerce-service-note {
    font-size: 0.85rem;
    color: #6b7280;
}

.ecommerce-service-note a {
    color: #2563eb;
    text-decoration: none;
}

.ecommerce-service-note a:hover {
    text-decoration: underline;
}

/* ============================================
   PLATFORM SECTION
============================================ */

.ecommerce-platform {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 60px 0;
}

.ecommerce-platform-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.ecommerce-platform-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.ecommerce-platform-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.ecommerce-platform-card p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   ECOMMERCE PROCESS
============================================ */

.ecommerce-process {
    background: #ffffff;
    padding: 60px 0;
}

.ecommerce-process-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.ecommerce-process-step {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ecommerce-process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
}

.ecommerce-process-title {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.ecommerce-process-text {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   ECOMMERCE PACKAGES
============================================ */

.ecommerce-packages {
    background: #ffffff;
    padding: 60px 0;
}

.ecommerce-packages-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.ecommerce-package-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid #dbe2f0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.ecommerce-package-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.ecommerce-package-price {
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
}

.ecommerce-package-text {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 10px;
}

.ecommerce-package-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
}

.ecommerce-package-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.ecommerce-package-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #16a34a;
    font-size: 1.1rem;
}

.ecommerce-package-note {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #6b7280;
}

.ecommerce-packages-footnote {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 18px;
}

/* ============================================
   ECOMMERCE FAQ
============================================ */

.ecommerce-faq {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0;
}

.ecommerce-faq-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.ecommerce-faq-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 14px 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.ecommerce-faq-question {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.ecommerce-faq-answer {
    font-size: 0.9rem;
    color: #4b5563;
}

.ecommerce-faq-answer a {
    color: #2563eb;
    text-decoration: none;
}

.ecommerce-faq-answer a:hover {
    text-decoration: underline;
}

/* ============================================
   FINAL CTA
============================================ */

.ecommerce-cta {
    background: radial-gradient(circle at top, #eff6ff, #ffffff 55%);
    text-align: center;
    padding-bottom: 80px;
}

.ecommerce-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.ecommerce-cta-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 640px;
    margin: 0 auto 18px;
}

.ecommerce-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* ============================================
   RESPONSIVE — ECOMMERCE PAGE
============================================ */

@media (max-width: 768px) {

    .ecommerce-hero {
        padding: 60px 0 40px;
    }

    .ecommerce-hero-title {
        font-size: 2rem;
    }

    .ecommerce-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ecommerce-hero-badges {
        gap: 6px;
    }

    .ecommerce-hero-badges span {
        white-space: normal;
    }

    .ecommerce-benefits {
        padding: 45px 0 35px;
    }

    .ecommerce-services-core {
        padding: 50px 0;
    }

    .ecommerce-platform {
        padding: 50px 0;
    }

    .ecommerce-process {
        padding: 50px 0;
    }

    .ecommerce-packages {
        padding: 50px 0;
    }

    .ecommerce-faq {
        padding: 50px 0;
    }

    .ecommerce-cta {
        padding: 45px 0 60px;
    }
}

/* ============================================
   BRANDING & LOGO DESIGN PAGE — BASE
============================================ */

.branding-page {
    background: #ffffff;
    color: #0f172a;
}

/* ============================================
   HERO BRANDING
============================================ */

.branding-hero {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff 40%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 80px 0 60px;
}

.branding-hero-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #0f172a;
}

.branding-hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 760px;
    margin-bottom: 10px;
}

.branding-hero-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 780px;
    margin-bottom: 18px;
}

.branding-hero-text strong {
    color: #111827;
}

.branding-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

/* Badges */
.branding-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.branding-hero-badges span {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
    white-space: nowrap;
}

/* ============================================
   BRANDING BENEFITS
============================================ */

.branding-benefits {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 55px 0 45px;
}

.branding-benefits-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.branding-benefit-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.branding-benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.branding-benefit-card p {
    font-size: 0.92rem;
    color: #4b5563;
}

/* ============================================
   CORE BRANDING SERVICES
============================================ */

.branding-services-core {
    background: #ffffff;
    padding: 60px 0;
}

.branding-services-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.branding-service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.branding-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.branding-service-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.branding-service-tagline {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 8px;
}

.branding-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #374151;
}

.branding-service-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.branding-service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2563eb;
    font-size: 1.1rem;
}

.branding-service-note {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ============================================
   BRANDING & WEB CONNECTION
============================================ */

.branding-web-connection {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 60px 0;
}

.branding-web-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.branding-web-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.branding-web-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.branding-web-card p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   BRANDING PROCESS
============================================ */

.branding-process {
    background: #ffffff;
    padding: 60px 0;
}

.branding-process-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.branding-process-step {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.branding-process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
}

.branding-process-title {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.branding-process-text {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   BRANDING PACKAGES
============================================ */

.branding-packages {
    background: #ffffff;
    padding: 60px 0;
}

.branding-packages-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.branding-package-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid #dbe2f0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.branding-package-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.branding-package-price {
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
}

.branding-package-text {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 10px;
}

.branding-package-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
}

.branding-package-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.branding-package-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #16a34a;
    font-size: 1.1rem;
}

.branding-package-note {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #6b7280;
}

.branding-packages-footnote {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 18px;
}

/* ============================================
   BRANDING FAQ
============================================ */

.branding-faq {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0;
}

.branding-faq-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.branding-faq-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 14px 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.branding-faq-question {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.branding-faq-answer {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   FINAL CTA
============================================ */

.branding-cta {
    background: radial-gradient(circle at top, #eff6ff, #ffffff 55%);
    text-align: center;
    padding-bottom: 80px;
}

.branding-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.branding-cta-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 640px;
    margin: 0 auto 18px;
}

.branding-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* ============================================
   RESPONSIVE — BRANDING PAGE
============================================ */

@media (max-width: 768px) {

    .branding-hero {
        padding: 60px 0 40px;
    }

    .branding-hero-title {
        font-size: 2rem;
    }

    .branding-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .branding-hero-badges {
        gap: 6px;
    }

    .branding-hero-badges span {
        white-space: normal;
    }

    .branding-benefits {
        padding: 45px 0 35px;
    }

    .branding-services-core {
        padding: 50px 0;
    }

    .branding-web-connection {
        padding: 50px 0;
    }

    .branding-process {
        padding: 50px 0;
    }

    .branding-packages {
        padding: 50px 0;
    }

    .branding-faq {
        padding: 50px 0;
    }

    .branding-cta {
        padding: 45px 0 60px;
    }
}

/* ============================================
   WEBSITE DESIGN SERVICES PAGE — BASE
============================================ */

.webdesign-page {
    background: #ffffff;
    color: #0f172a;
}

/* ============================================
   HERO WEB DESIGN
============================================ */

.webdesign-hero {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff 40%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 80px 0 60px;
}

.webdesign-hero-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #0f172a;
}

.webdesign-hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 780px;
    margin-bottom: 10px;
}

.webdesign-hero-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 800px;
    margin-bottom: 18px;
}

.webdesign-hero-text strong {
    color: #111827;
}

.webdesign-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

/* Highlights */
.webdesign-hero-highlights {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
    background: #f9fafb;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 14px 16px;
    max-width: 900px;
}

.webdesign-highlight {
    display: flex;
    flex-direction: column;
}

.webdesign-highlight-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 2px;
}

.webdesign-highlight-value {
    font-size: 0.9rem;
    color: #111827;
}

/* ============================================
   WHY WEB DESIGN MATTERS
============================================ */

.webdesign-why {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 55px 0 45px;
}

.webdesign-why-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.webdesign-why-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.webdesign-why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.webdesign-why-card p {
    font-size: 0.92rem;
    color: #4b5563;
}

/* ============================================
   CORE WEB DESIGN SERVICES
============================================ */

.webdesign-services-core {
    background: #ffffff;
    padding: 60px 0;
}

.webdesign-services-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.webdesign-service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.webdesign-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.webdesign-service-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.webdesign-service-tagline {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 8px;
}

.webdesign-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #374151;
}

.webdesign-service-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.webdesign-service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2563eb;
    font-size: 1.1rem;
}

.webdesign-service-note {
    font-size: 0.85rem;
    color: #6b7280;
}

.webdesign-service-note a {
    color: #2563eb;
    text-decoration: none;
}

.webdesign-service-note a:hover {
    text-decoration: underline;
}

/* ============================================
   INDUSTRIES / WHO WE SERVE
============================================ */

.webdesign-industries {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 60px 0;
}

.webdesign-industries-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.webdesign-industry-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.webdesign-industry-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.webdesign-industry-card p {
    font-size: 0.9rem;
    color: #4b5563;
}

.webdesign-industry-card a {
    color: #2563eb;
    text-decoration: none;
}

.webdesign-industry-card a:hover {
    text-decoration: underline;
}

/* ============================================
   WEB DESIGN APPROACH
============================================ */

.webdesign-approach {
    background: #ffffff;
    padding: 60px 0;
}

.webdesign-approach-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.webdesign-approach-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.webdesign-approach-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.webdesign-approach-card p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   WEB DESIGN PROCESS
============================================ */

.webdesign-process {
    background: #ffffff;
    padding: 60px 0;
}

.webdesign-process-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.webdesign-process-step {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.webdesign-process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
}

.webdesign-process-title {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.webdesign-process-text {
    font-size: 0.9rem;
    color: #4b5563;
}

.webdesign-process-text a {
    color: #2563eb;
    text-decoration: none;
}

.webdesign-process-text a:hover {
    text-decoration: underline;
}

/* ============================================
   WEB DESIGN PACKAGES
============================================ */

.webdesign-packages {
    background: #ffffff;
    padding: 60px 0;
}

.webdesign-packages-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.webdesign-package-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid #dbe2f0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.webdesign-package-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.webdesign-package-price {
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
}

.webdesign-package-text {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 10px;
}

.webdesign-package-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
}

.webdesign-package-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.webdesign-package-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #16a34a;
    font-size: 1.1rem;
}

.webdesign-package-note {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #6b7280;
}

.webdesign-packages-footnote {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 18px;
}

/* ============================================
   WEB DESIGN FAQ
============================================ */

.webdesign-faq {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0;
}

.webdesign-faq-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.webdesign-faq-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 14px 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.webdesign-faq-question {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.webdesign-faq-answer {
    font-size: 0.9rem;
    color: #4b5563;
}

.webdesign-faq-answer a {
    color: #2563eb;
    text-decoration: none;
}

.webdesign-faq-answer a:hover {
    text-decoration: underline;
}

/* ============================================
   FINAL CTA
============================================ */

.webdesign-cta {
    background: radial-gradient(circle at top, #eff6ff, #ffffff 55%);
    text-align: center;
    padding-bottom: 80px;
}

.webdesign-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.webdesign-cta-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 640px;
    margin: 0 auto 18px;
}

.webdesign-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* ============================================
   RESPONSIVE — WEB DESIGN PAGE
============================================ */

@media (max-width: 768px) {

    .webdesign-hero {
        padding: 60px 0 40px;
    }

    .webdesign-hero-title {
        font-size: 2rem;
    }

    .webdesign-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .webdesign-hero-highlights {
        grid-template-columns: minmax(0, 1fr);
    }

    .webdesign-why {
        padding: 45px 0 35px;
    }

    .webdesign-services-core {
        padding: 50px 0;
    }

    .webdesign-industries {
        padding: 50px 0;
    }

    .webdesign-approach {
        padding: 50px 0;
    }

    .webdesign-process {
        padding: 50px 0;
    }

    .webdesign-packages {
        padding: 50px 0;
    }

    .webdesign-faq {
        padding: 50px 0;
    }

    .webdesign-cta {
        padding: 45px 0 60px;
    }
}

/* ============================================
   WEBSITE MAINTENANCE PAGE — BASE
============================================ */

.maintenance-page {
    background: #ffffff;
    color: #0f172a;
}

/* ============================================
   HERO – WEBSITE MAINTENANCE
============================================ */

.maintenance-hero {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff 40%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 80px 0 60px;
}

.maintenance-hero-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #0f172a;
}

.maintenance-hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 780px;
    margin-bottom: 10px;
}

.maintenance-hero-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 800px;
    margin-bottom: 18px;
}

.maintenance-hero-text strong {
    color: #111827;
}

.maintenance-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

/* Highlights */
.maintenance-hero-highlights {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
    background: #f9fafb;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 14px 16px;
    max-width: 900px;
}

.maintenance-highlight {
    display: flex;
    flex-direction: column;
}

.maintenance-highlight-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 2px;
}

.maintenance-highlight-value {
    font-size: 0.9rem;
    color: #111827;
}

/* ============================================
   WHY MAINTENANCE MATTERS
============================================ */

.maintenance-why {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 55px 0 45px;
}

.maintenance-why-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.maintenance-why-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.maintenance-why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.maintenance-why-card p {
    font-size: 0.92rem;
    color: #4b5563;
}

/* ============================================
   CORE MAINTENANCE SERVICES
============================================ */

.maintenance-services-core {
    background: #ffffff;
    padding: 60px 0;
}

.maintenance-services-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.maintenance-service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.maintenance-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.maintenance-service-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.maintenance-service-tagline {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 8px;
}

.maintenance-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #374151;
}

.maintenance-service-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.maintenance-service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2563eb;
    font-size: 1.1rem;
}

.maintenance-service-note {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ============================================
   WHO MAINTENANCE IS FOR
============================================ */

.maintenance-for {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 60px 0;
}

.maintenance-for-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.maintenance-for-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.maintenance-for-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.maintenance-for-card p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   MAINTENANCE PROCESS
============================================ */

.maintenance-process {
    background: #ffffff;
    padding: 60px 0;
}

.maintenance-process-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.maintenance-process-step {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.maintenance-process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.14);
}

.maintenance-process-title {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.maintenance-process-text {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   MAINTENANCE PACKAGES
============================================ */

.maintenance-packages {
    background: #ffffff;
    padding: 60px 0;
}

.maintenance-packages-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.maintenance-package-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid #dbe2f0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.maintenance-package-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.maintenance-package-price {
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
}

.maintenance-package-text {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 10px;
}

.maintenance-package-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
}

.maintenance-package-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.maintenance-package-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #16a34a;
    font-size: 1.1rem;
}

.maintenance-package-note {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #6b7280;
}

.maintenance-packages-footnote {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 18px;
}

/* ============================================
   MAINTENANCE FAQ
============================================ */

.maintenance-faq {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0;
}

.maintenance-faq-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.maintenance-faq-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 14px 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.maintenance-faq-question {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.maintenance-faq-answer {
    font-size: 0.9rem;
    color: #4b5563;
}

.maintenance-faq-answer a {
    color: #2563eb;
    text-decoration: none;
}

.maintenance-faq-answer a:hover {
    text-decoration: underline;
}

/* ============================================
   FINAL CTA
============================================ */

.maintenance-cta {
    background: radial-gradient(circle at top, #eff6ff, #ffffff 55%);
    text-align: center;
    padding-bottom: 80px;
}

.maintenance-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.maintenance-cta-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 640px;
    margin: 0 auto 18px;
}

.maintenance-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* ============================================
   RESPONSIVE — MAINTENANCE PAGE
============================================ */

@media (max-width: 768px) {

    .maintenance-hero {
        padding: 60px 0 40px;
    }

    .maintenance-hero-title {
        font-size: 2rem;
    }

    .maintenance-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .maintenance-hero-highlights {
        grid-template-columns: minmax(0, 1fr);
    }

    .maintenance-why {
        padding: 45px 0 35px;
    }

    .maintenance-services-core {
        padding: 50px 0;
    }

    .maintenance-for {
        padding: 50px 0;
    }

    .maintenance-process {
        padding: 50px 0;
    }

    .maintenance-packages {
        padding: 50px 0;
    }

    .maintenance-faq {
        padding: 50px 0;
    }

    .maintenance-cta {
        padding: 45px 0 60px;
    }
}


/* ============================================
   PRICING PAGE — BASE
============================================ */

.pricing-page {
    background: #ffffff;
    color: #0f172a;
}

/* ============================================
   HERO PRICING
============================================ */

.pricing-hero {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff 40%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 80px 0 60px;
}

.pricing-hero-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    color: #0f172a;
}

.pricing-hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 780px;
    margin-bottom: 10px;
}

.pricing-hero-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 800px;
    margin-bottom: 18px;
}

.pricing-hero-text strong {
    color: #111827;
}

.pricing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

/* Highlights */
.pricing-hero-highlights {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
    background: #f9fafb;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 14px 16px;
    max-width: 900px;
}

.pricing-highlight {
    display: flex;
    flex-direction: column;
}

.pricing-highlight-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 2px;
}

.pricing-highlight-value {
    font-size: 0.9rem;
    color: #111827;
}

/* ============================================
   HOW PRICING WORKS
============================================ */

.pricing-intro {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 55px 0 45px;
}

.pricing-intro-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.pricing-intro-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.pricing-intro-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.pricing-intro-card p {
    font-size: 0.92rem;
    color: #4b5563;
}

/* ============================================
   CORE PACKAGES
============================================ */

.pricing-packages {
    background: #ffffff;
    padding: 60px 0;
}

.pricing-packages-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.pricing-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid #dbe2f0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card-highlight {
    border-color: #2563eb;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.22);
}

.pricing-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #2563eb;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 999px;
}

.pricing-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.pricing-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
}

.pricing-card-tagline {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 10px;
}

.pricing-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: #374151;
}

.pricing-card-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.pricing-card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #16a34a;
    font-size: 1.1rem;
}

.pricing-card-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 10px;
}

.pricing-card-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.pricing-packages-footnote {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 18px;
}

/* ============================================
   SPECIALIZED SERVICES (SEO, ECOM, BRANDING, MAINT)
============================================ */

.pricing-services-breakdown {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 60px 0;
}

.pricing-services-breakdown a {
    color: #2563eb;
    text-decoration: none;
}

.pricing-services-breakdown a:hover {
    text-decoration: underline;
}

.pricing-services-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.pricing-service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.pricing-service-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.pricing-service-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
}

.pricing-service-text {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 8px;
}

.pricing-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: #374151;
}

.pricing-service-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.pricing-service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2563eb;
    font-size: 1.1rem;
}

.pricing-service-note {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ============================================
   PRICING FACTORS
============================================ */

.pricing-factors {
    background: #ffffff;
    padding: 60px 0;
}

.pricing-factors-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.pricing-factor-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.pricing-factor-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0f172a;
}

.pricing-factor-card p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* ============================================
   PRICING FAQ
============================================ */

.pricing-faq {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0;
}

.pricing-faq-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.pricing-faq-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 14px 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.pricing-faq-question {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.pricing-faq-answer {
    font-size: 0.9rem;
    color: #4b5563;
}

.pricing-faq-answer a {
    color: #2563eb;
    text-decoration: none;
}

.pricing-faq-answer a:hover {
    text-decoration: underline;
}

/* ============================================
   FINAL CTA
============================================ */

.pricing-cta {
    background: radial-gradient(circle at top, #eff6ff, #ffffff 55%);
    text-align: center;
    padding-bottom: 80px;
}

.pricing-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.pricing-cta-text {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 640px;
    margin: 0 auto 18px;
}

.pricing-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* ============================================
   RESPONSIVE — PRICING PAGE
============================================ */

@media (max-width: 768px) {

    .pricing-hero {
        padding: 60px 0 40px;
    }

    .pricing-hero-title {
        font-size: 2rem;
    }

    .pricing-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-hero-highlights {
        grid-template-columns: minmax(0, 1fr);
    }

    .pricing-intro {
        padding: 45px 0 35px;
    }

    .pricing-packages {
        padding: 50px 0;
    }

    .pricing-services-breakdown {
        padding: 50px 0;
    }

    .pricing-factors {
        padding: 50px 0;
    }

    .pricing-faq {
        padding: 50px 0;
    }

    .pricing-cta {
        padding: 45px 0 60px;
    }
}

/* ============================================
   BLOG PAGE — COMING SOON
============================================ */

.blog-page {
    background: #ffffff;
    color: #0f172a;
}

/* HERO BLOG */
.blog-hero {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff 40%, #f9fafb 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 80px 0 50px;
}

.blog-hero-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    color: #0f172a;
}

.blog-hero-subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 640px;
    margin-bottom: 6px;
}

.blog-hero-text {
    font-size: 0.96rem;
    color: #4b5563;
    max-width: 640px;
}

/* COMING SOON SECTION */

.blog-coming-soon {
    background: #ffffff;
    padding: 60px 0 80px;
}

.blog-coming-container {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.blog-coming-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.blog-coming-subtitle {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 620px;
    margin: 0 auto 18px;
}

/* Caja central */

.blog-coming-box {
    background: #f9fafb;
    border-radius: 18px;
    padding: 20px 18px 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
    text-align: left;
    margin-bottom: 18px;
}

.blog-coming-box h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.blog-coming-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: #374151;
}

.blog-coming-box ul li {
    margin-bottom: 6px;
}

.blog-coming-note {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Botón CTA */

.blog-coming-btn {
    margin-top: 4px;
}

/* RESPONSIVE BLOG PAGE */

@media (max-width: 768px) {

    .blog-hero {
        padding: 60px 0 40px;
    }

    .blog-coming-soon {
        padding: 50px 0 60px;
    }

    .blog-coming-box {
        padding: 18px 14px 20px;
    }
}







/* ================================
   HERO HOME + 3D CUBE SLIDER
================================ */

.ti-hero-home {
  padding: 86px 0 72px;
  background: radial-gradient(circle at top left, #eff6ff, #ffffff 45%, #f9fafb 100%);
  border-bottom: 1px solid #e5e7eb;
}

.ti-hero-home__container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.ti-hero-home__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e5edff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.ti-hero-home__title {
  font-size: clamp(2.1rem, 3vw, 2.9rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 12px;
}

.ti-hero-home__subtitle {
  font-size: 1.02rem;
  color: #4b5563;
  max-width: 640px;
  margin-bottom: 14px;
}

.ti-hero-home__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 9px;
  color: #111827;
  font-weight: 600;
  font-size: 0.95rem;
}

.ti-hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.ti-hero-home__trust {
  font-size: 0.88rem;
  color: #6b7280;
}

/* ===== CUBE WRAP ===== */

.ti-cube {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

.ti-cube__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  overflow: hidden;

  perspective: 1100px;
  perspective-origin: 50% 40%;
}

.ti-cube__cube {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 850ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform;
}

/* Faces */
.ti-cube__face {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  backface-visibility: hidden;
}

/* ✅ IMPORTANT: forces image to fill the square properly */
.ti-cube__face .ti-cube__img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: none;
}

/* Caption overlay */
.ti-cube__caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.3;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Cube depth */
:root { --ti-cube-depth: 260px; }

/* Position each face in 3D space */
.ti-cube__face--front  { transform: rotateY(  0deg) translateZ(var(--ti-cube-depth)); }
.ti-cube__face--right  { transform: rotateY( 90deg) translateZ(var(--ti-cube-depth)); }
.ti-cube__face--back   { transform: rotateY(180deg) translateZ(var(--ti-cube-depth)); }
.ti-cube__face--left   { transform: rotateY(-90deg) translateZ(var(--ti-cube-depth)); }
/* Optional 6 faces if you enable them in HTML */
.ti-cube__face--top    { transform: rotateX( 90deg) translateZ(var(--ti-cube-depth)); }
.ti-cube__face--bottom { transform: rotateX(-90deg) translateZ(var(--ti-cube-depth)); }

/* Controls */
.ti-cube__controls {
  display: flex;
  gap: 10px;
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 10;
}

.ti-cube__btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  color: #0f172a;
  transition: transform 0.12s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ti-cube__btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.14);
}

.ti-cube__btn:active { transform: translateY(0); }

.ti-cube__hint {
  position: absolute;
  right: 14px;
  top: 18px;
  font-size: 0.78rem;
  color: rgba(15, 23, 42, 0.6);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  .ti-cube__cube { transition: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .ti-hero-home__container { grid-template-columns: 1fr; }
  .ti-cube { margin: 14px auto 0; max-width: 560px; }
}

@media (max-width: 520px) {
  .ti-hero-home { padding: 60px 0 52px; }
  .ti-cube__controls { left: 12px; top: 12px; }
  .ti-cube__hint { display: none; }
}


/* ================================
   HERO IMAGE ROTATOR
================================ */

.ti-hero-image-rotator {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin-left: auto;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.ti-hero-image-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Each image */
.ti-hero-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

/* Active image */
.ti-hero-image.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Image itself */
.ti-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Caption */
.ti-hero-image figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Responsive */
@media (max-width: 980px) {
  .ti-hero-image-rotator {
    margin: 20px auto 0;
    max-width: 560px;
  }
}


/* ================================
   FLOATING CONTACT BUTTONS
================================ */

.ti-float-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Base button */
.ti-float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* Hover */
.ti-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}

/* Icon only on small screens */
.ti-float-label {
  font-size: 0.9rem;
  white-space: nowrap;
}

/* EMAIL */
.ti-float-email {
  background: linear-gradient(135deg, #2563eb, #1e40af);
}

/* PHONE */
.ti-float-phone {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

/* Mobile optimization */
@media (max-width: 640px) {
  .ti-float-actions {
    right: 16px;
    bottom: 16px;
  }

  .ti-float-label {
    display: none; /* solo icono */
  }

  .ti-float-btn {
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
    font-size: 1.4rem;
  }
}


/* ================================
   SERVICES HERO — BG ROTATOR (PREMIUM)
================================ */
.ti-services-hero{
  position: relative;
  padding: 92px 0 78px;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
  background: #0b1220; /* fallback */
}

/* Background rotator wrapper */
.ti-services-hero__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Each background layer (one image) */
.ti-services-hero__bg-layer{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 900ms ease, transform 1200ms ease;
  will-change: opacity, transform;
}

.ti-services-hero__bg-layer img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

/* Active slide */
.ti-services-hero__bg-layer.is-active{
  opacity: 1;
  transform: scale(1.02);
}

/* Overlay to ensure text readability */
.ti-services-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,99,235,0.35), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(79,70,229,0.28), transparent 55%),
    linear-gradient(180deg, rgba(2,6,23,0.65), rgba(2,6,23,0.82));
}

/* Layout container */
.ti-services-hero__container{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

/* Left content */
.ti-services-hero__content{
  padding: 18px 0 0;
  color: #e5e7eb;
}

.ti-services-hero__kicker{
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  color: #eaf2ff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.ti-services-hero__title{
  font-size: clamp(2.15rem, 3.2vw, 3.05rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 12px;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.ti-services-hero__subtitle{
  font-size: 1.02rem;
  color: rgba(226,232,240,0.92);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Bullet cards */
.ti-services-hero__bullets{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
  max-width: 680px;
}

.ti-services-hero__bullets li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  color: #f8fafc;
  font-weight: 650;
}

/* Actions */
.ti-services-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

/* Trust pills */
.ti-services-hero__trust{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(226,232,240,0.9);
}

.ti-services-hero__trust span{
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}

/* Right highlight cards */
.ti-services-hero__cards{
  display: grid;
  gap: 12px;
  align-content: start;
}

.ti-services-hero__card{
  border-radius: 18px;
  padding: 16px 16px 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.ti-services-hero__card-title{
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #ffffff;
  font-weight: 850;
}

.ti-services-hero__card-text{
  font-size: 0.95rem;
  color: rgba(226,232,240,0.92);
  line-height: 1.55;
  margin-bottom: 10px;
}

.ti-services-hero__card-link{
  color: #93c5fd;
  text-decoration: none;
  font-weight: 800;
}

.ti-services-hero__card-link:hover{
  text-decoration: underline;
  color: #ffffff;
}

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  .ti-services-hero__bg-layer{
    transition: none;
  }
}

/* Responsive */
@media (max-width: 980px){
  .ti-services-hero{
    padding: 78px 0 62px;
  }
  .ti-services-hero__container{
    grid-template-columns: 1fr;
  }
  .ti-services-hero__cards{
    margin-top: 10px;
  }
}
@media (max-width: 520px){
  .ti-services-hero{
    padding: 60px 0 50px;
  }
}

