/* ═══════════════════════════════════════
       INSURGENTE CONTACT - EDITORIAL REBELLION
       ═══════════════════════════════════════ */

    /* Using Inter from main.css --font-sans */

    /* Grain texture overlay */
    .grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9998;
      opacity: 0.035;
      mix-blend-mode: overlay;
    }

    /* ── HERO ── */
    .ct-hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      position: relative;
      overflow: hidden;
      padding: calc(120px + var(--space-2xl)) var(--container-padding) var(--space-3xl);
    }

    .ct-hero__blob {
      position: absolute;
      top: 50%;
      right: -25%;
      transform: translateY(-55%);
      width: 110vmax;
      height: 110vmax;
      z-index: 0;
      opacity: 0.4;
      pointer-events: none;
    }

    .ct-hero__blob spline-viewer {
      width: 100%;
      height: 100%;
    }

    .ct-hero__content {
      position: relative;
      z-index: 1;
      max-width: var(--container-max);
      margin: 0 auto;
      width: 100%;
    }

    .ct-hero__eyebrow {
      font-size: var(--text-xs);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--rosa);
      font-weight: 500;
      margin-bottom: var(--space-lg);
      opacity: 0;
      transform: translateY(20px);
    }

    .ct-hero__title {
      font-size: clamp(3rem, 8vw, 7.5rem);
      font-weight: 700;
      line-height: 0.92;
      color: var(--white);
      margin-bottom: var(--space-xl);
      letter-spacing: -0.03em;
      opacity: 0;
      transform: translateY(40px);
    }

    .ct-hero__title em {
      font-style: italic;
      color: var(--rosa);
      display: inline;
    }

    .ct-hero__subtitle {
      font-size: var(--text-lg);
      color: var(--gray-400);
      font-weight: 300;
      line-height: 1.7;
      max-width: 520px;
      opacity: 0;
      transform: translateY(30px);
    }

    .ct-hero__scroll-hint {
      position: absolute;
      bottom: var(--space-xl);
      right: var(--container-padding);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--gray-500);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      opacity: 0;
    }

    .ct-hero__scroll-hint span {
      writing-mode: vertical-rl;
    }

    .ct-hero__scroll-line {
      width: 1px;
      height: 48px;
      background: var(--gray-600);
      position: relative;
      overflow: hidden;
    }

    .ct-hero__scroll-line::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--rosa);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0% { top: -100%; }
      50% { top: 100%; }
      100% { top: 100%; }
    }

    @media (max-width: 767px) {
      .ct-hero__scroll-hint {
        display: none;
      }
    }

    /* ── CONTACT STRIPS ── */
    .ct-strips {
      position: relative;
      z-index: 1;
    }

    .ct-strip {
      display: block;
      text-decoration: none;
      border-top: 1px solid var(--gray-800);
      padding: var(--space-xl) var(--container-padding);
      transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }

    .ct-strip:last-child {
      border-bottom: 1px solid var(--gray-800);
    }

    .ct-strip__inner {
      max-width: var(--container-max);
      margin: 0 auto;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: var(--space-lg);
      position: relative;
      z-index: 1;
    }

    .ct-strip__label {
      font-size: var(--text-xs);
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--gray-500);
      font-weight: 500;
      flex-shrink: 0;
      min-width: 80px;
      transition: color 0.4s ease;
    }

    .ct-strip__value {
      font-size: clamp(1.8rem, 5vw, 4.5rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
      line-height: 1.1;
      transition: color 0.4s ease;
    }

    .ct-strip__arrow {
      width: clamp(24px, 3vw, 48px);
      height: clamp(24px, 3vw, 48px);
      color: var(--gray-600);
      flex-shrink: 0;
      transition: color 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .ct-strip__bg {
      position: absolute;
      inset: 0;
      background: var(--rosa);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 0;
    }

    .ct-strip:hover .ct-strip__bg {
      transform: scaleY(1);
    }

    .ct-strip:hover .ct-strip__label,
    .ct-strip:hover .ct-strip__value {
      color: var(--white);
    }

    .ct-strip:hover .ct-strip__arrow {
      color: var(--white);
      transform: translate(6px, -6px);
    }

    .ct-strip:focus-visible {
      outline: 2px solid var(--rosa);
      outline-offset: -2px;
    }

    @media (max-width: 767px) {
      .ct-strip__inner {
        flex-wrap: wrap;
        gap: var(--space-xs);
      }
      .ct-strip__label {
        width: 100%;
      }
      .ct-strip__arrow {
        position: absolute;
        top: 0;
        right: 0;
      }
    }

    /* ── MARQUEE ── */
    .ct-marquee {
      overflow: hidden;
      padding: var(--space-xl) 0;
      border-bottom: 1px solid var(--gray-800);
      position: relative;
    }

    .ct-marquee__track {
      display: flex;
      width: max-content;
      animation: marqueeScroll 30s linear infinite;
    }

    .ct-marquee__item {
      font-size: clamp(0.8rem, 1.2vw, 1rem);
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: var(--gray-600);
      white-space: nowrap;
      padding: 0 var(--space-2xl);
      font-weight: 500;
    }

    .ct-marquee__dot {
      color: var(--rosa);
      padding: 0 var(--space-lg);
      font-size: 0.5em;
      vertical-align: middle;
    }

    @keyframes marqueeScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── FORM SECTION ── */
    .ct-form-section {
      padding: var(--space-5xl) 0 var(--space-4xl);
      position: relative;
    }

    .ct-form-layout {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-padding);
      display: grid;
      gap: var(--space-4xl);
    }

    @media (min-width: 968px) {
      .ct-form-layout {
        grid-template-columns: 0.45fr 0.55fr;
        align-items: start;
      }
    }

    /* Left: Form intro */
    .ct-form__intro {
      position: static;
    }

    @media (min-width: 968px) {
      .ct-form__intro {
        position: sticky;
        top: 140px;
      }
    }

    .ct-form__eyebrow {
      font-size: var(--text-xs);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--rosa);
      font-weight: 500;
      margin-bottom: var(--space-lg);
    }

    .ct-form__title {
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: var(--space-xl);
    }

    .ct-form__title em {
      font-style: italic;
      color: var(--rosa);
    }

    .ct-form__subtitle {
      color: var(--gray-400);
      font-size: var(--text-base);
      font-weight: 300;
      line-height: 1.7;
      max-width: 400px;
    }

    .ct-form__promise {
      margin-top: var(--space-2xl);
      padding-top: var(--space-lg);
      border-top: 1px solid var(--gray-800);
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .ct-form__promise-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: var(--text-sm);
      color: var(--gray-500);
      font-weight: 300;
      line-height: 1.5;
    }

    .ct-form__promise-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: var(--rosa);
      margin-top: 2px;
    }

    /* Right: Form */
    .ct-form {
      display: flex;
      flex-direction: column;
      gap: var(--space-2xl);
    }

    .ct-form-row {
      display: grid;
      gap: var(--space-2xl);
    }

    @media (min-width: 640px) {
      .ct-form-row--two {
        grid-template-columns: 1fr 1fr;
      }
    }

    .ct-form-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ct-form-label {
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--white);
      letter-spacing: 0.02em;
    }

    .ct-form-label__optional {
      color: var(--gray-600);
      font-weight: 300;
    }

    .ct-form-label__required {
      color: var(--rosa);
      margin-left: 2px;
    }

    .ct-form-input,
    .ct-form-textarea {
      width: 100%;
      padding: var(--space-md) 0;
      font-size: var(--text-lg);
      font-family: inherit;
      font-weight: 300;
      color: var(--white);
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--gray-700);
      border-radius: 0;
      transition: border-color 0.3s ease;
      -webkit-appearance: none;
    }

    .ct-form-input:hover,
    .ct-form-textarea:hover {
      border-bottom-color: var(--gray-500);
    }

    .ct-form-input:focus,
    .ct-form-textarea:focus {
      outline: none;
      border-bottom-color: var(--rosa);
    }

    .ct-form-input::placeholder,
    .ct-form-textarea::placeholder {
      color: var(--gray-600);
      font-weight: 300;
    }

    .ct-form-textarea {
      min-height: 140px;
      resize: vertical;
    }

    .ct-form-hint {
      font-size: var(--text-xs);
      color: var(--gray-600);
      font-weight: 300;
    }

    .ct-form-alert {
      display: none;
      padding: var(--space-sm) var(--space-md);
      background: rgba(239, 68, 68, 0.08);
      border: 1px solid rgba(239, 68, 68, 0.3);
      border-radius: var(--radius-md);
      color: #fca5a5;
      font-size: var(--text-sm);
      font-weight: 500;
      line-height: 1.5;
    }

    .ct-form-alert.is-visible {
      display: block;
    }

    /* Service Interest - bold blocks instead of tiny pills */
    .ct-interest-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    @media (min-width: 640px) {
      .ct-interest-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .ct-interest-item {
      cursor: pointer;
    }

    .ct-interest-item__input {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .ct-interest-item__label {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: var(--space-md) var(--space-sm);
      font-size: clamp(0.7rem, 1vw, 0.85rem);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--gray-500);
      border: 1px solid var(--gray-800);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      user-select: none;
      min-height: 56px;
    }

    .ct-interest-item__label:hover {
      border-color: var(--gray-500);
      color: var(--white);
    }

    .ct-interest-item__input:checked + .ct-interest-item__label {
      background: var(--rosa);
      border-color: var(--rosa);
      color: var(--white);
    }

    .ct-interest-item__input:focus-visible + .ct-interest-item__label {
      outline: 2px solid var(--rosa);
      outline-offset: 2px;
    }

    /* Submit - Insurgente Misaligned Rectangles */
    .ct-submit {
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      padding: var(--space-md) var(--space-2xl);
      font-size: var(--text-base);
      font-weight: 700;
      font-family: inherit;
      color: var(--black);
      background: none;
      border: none;
      cursor: pointer;
      align-self: flex-start;
      position: relative;
      z-index: 1;
      isolation: isolate;
      transition: color 0.35s ease;
    }

    .ct-submit::before,
    .ct-submit::after {
      content: '';
      position: absolute;
      z-index: -1;
      transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                  left 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                  right 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                  bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                  background-color 0.35s ease;
    }

    /* ::before - top-left, leaves gap at right and bottom */
    .ct-submit::before {
      top: 0;
      left: 0;
      right: 20px;
      bottom: 8px;
      background-color: var(--white);
    }

    /* ::after - bottom-right, leaves gap at left and top */
    .ct-submit::after {
      top: 8px;
      left: 20px;
      right: 0;
      bottom: 0;
      background-color: var(--white);
    }

    .ct-submit:hover::before,
    .ct-submit:hover::after {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: var(--rosa);
    }

    .ct-submit:hover {
      color: var(--white);
    }

    .ct-submit:focus-visible {
      outline: 2px solid var(--rosa);
      outline-offset: 6px;
    }

    .ct-submit svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s var(--ease-out);
    }

    .ct-submit:hover svg {
      transform: translateX(4px);
    }

    /* Validation */
    .ct-form-input:invalid:not(:placeholder-shown),
    .ct-form-textarea:invalid:not(:placeholder-shown) {
      border-bottom-color: #e53e3e;
    }

    .ct-form-input:valid:not(:placeholder-shown),
    .ct-form-textarea:valid:not(:placeholder-shown) {
      border-bottom-color: var(--gray-500);
    }

    /* Phone Field */
    .ct-phone-field {
      display: flex;
      gap: 0;
      border-bottom: 1px solid var(--gray-700);
      transition: border-color 0.3s ease;
    }

    .ct-phone-field:hover {
      border-bottom-color: var(--gray-500);
    }

    .ct-phone-field:focus-within {
      border-bottom-color: var(--rosa);
    }

    .ct-phone-code-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: var(--space-md) var(--space-sm) var(--space-md) 0;
      font-family: inherit;
      font-size: var(--text-lg);
      font-weight: 300;
      color: var(--white);
      background: transparent;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: color 0.2s ease;
    }

    .ct-phone-code-btn:focus-visible {
      outline: 2px solid var(--rosa);
      outline-offset: -2px;
    }

    .ct-phone-code-btn .flag {
      font-size: 1.3rem;
      line-height: 1;
    }

    .ct-phone-code-btn .code-text {
      color: var(--gray-400);
      font-size: var(--text-base);
      font-weight: 300;
    }

    .ct-phone-code-btn .chevron {
      width: 14px;
      height: 14px;
      color: var(--gray-500);
      transition: transform 0.2s ease;
      flex-shrink: 0;
    }

    .ct-phone-code-btn[aria-expanded="true"] .chevron {
      transform: rotate(180deg);
    }

    .ct-phone-field .ct-form-input {
      border-bottom: none;
      padding-left: var(--space-sm);
      flex: 1;
      min-width: 0;
    }

    .ct-phone-field .ct-form-input:hover,
    .ct-phone-field .ct-form-input:focus {
      border-bottom: none;
    }

    /* Exclude phone input from standalone validation borders */
    .ct-phone-field .ct-form-input:invalid:not(:placeholder-shown),
    .ct-phone-field .ct-form-input:valid:not(:placeholder-shown) {
      border-bottom: none;
    }

    /* Phone dropdown - reuse styles */
    .phone-code-selector {
      position: relative;
      flex-shrink: 0;
    }

    .phone-code-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      width: 280px;
      max-height: 280px;
      overflow-y: auto;
      background: #141414;
      border: 1px solid var(--gray-700);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
      z-index: 100;
      display: none;
      flex-direction: column;
    }

    .phone-code-dropdown.is-open {
      display: flex;
    }

    .phone-code-search {
      position: sticky;
      top: 0;
      padding: var(--space-sm);
      background: #141414;
      border-bottom: 1px solid var(--gray-800);
      z-index: 1;
    }

    .phone-code-search input {
      width: 100%;
      padding: 8px 12px;
      font-family: inherit;
      font-size: var(--text-sm);
      font-weight: 300;
      color: var(--white);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--gray-700);
      border-radius: 0;
    }

    .phone-code-search input::placeholder {
      color: var(--gray-600);
    }

    .phone-code-search input:focus {
      outline: none;
      border-color: var(--rosa);
    }

    .phone-code-list {
      list-style: none;
      padding: 4px 0;
      margin: 0;
    }

    .phone-code-option {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      font-size: var(--text-sm);
      font-weight: 300;
      color: var(--gray-300);
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease;
      border: none;
      background: none;
      width: 100%;
      font-family: inherit;
      text-align: left;
    }

    .phone-code-option:hover,
    .phone-code-option:focus-visible {
      background: rgba(255, 39, 122, 0.1);
      color: var(--white);
      outline: none;
    }

    .phone-code-option.is-selected {
      color: var(--rosa);
      font-weight: 500;
    }

    .phone-code-option .flag {
      font-size: 1.15rem;
      line-height: 1;
      flex-shrink: 0;
    }

    .phone-code-option .country-name {
      flex: 1;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .phone-code-option .country-code {
      color: var(--gray-500);
      flex-shrink: 0;
    }

    .phone-code-dropdown::-webkit-scrollbar { width: 5px; }
    .phone-code-dropdown::-webkit-scrollbar-track { background: transparent; }
    .phone-code-dropdown::-webkit-scrollbar-thumb { background: var(--gray-700); }

    /* ── INFO SECTION ── */
    .ct-info {
      background: var(--white);
      padding: var(--space-4xl) 0;
      color: var(--black);
    }

    .ct-info__layout {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-padding);
      display: grid;
      gap: var(--space-3xl);
    }

    @media (min-width: 768px) {
      .ct-info__layout {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: var(--space-2xl);
      }
    }

    .ct-info-block__title {
      font-size: var(--text-xs);
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--rosa);
      margin-bottom: var(--space-md);
      font-weight: 700;
    }

    .ct-info-block__content {
      color: var(--gray-700);
      line-height: 1.8;
      font-weight: 300;
    }

    .ct-info-block__content a {
      color: var(--gray-700);
      text-decoration: none;
      transition: color 0.3s;
    }

    .ct-info-block__content a:hover {
      color: var(--rosa);
    }

    .ct-info-block__hint {
      margin-top: var(--space-md);
      font-size: var(--text-sm);
      color: var(--gray-500);
      line-height: 1.6;
    }

    .ct-info-block__hint strong {
      color: var(--gray-700);
      font-weight: 700;
    }

    /* Social links - horizontal */
    .ct-social-row {
      display: flex;
      gap: var(--space-lg);
      flex-wrap: wrap;
    }

    .ct-social-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gray-700);
      text-decoration: none;
      font-weight: 500;
      font-size: var(--text-sm);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      transition: color 0.3s;
    }

    .ct-social-link:hover {
      color: var(--rosa);
    }

    .ct-social-link svg {
      width: 18px;
      height: 18px;
    }

    /* ── MAP ── */
    .ct-map {
      position: relative;
      height: 380px;
      overflow: hidden;
    }

    .ct-map iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(1) contrast(1.1);
      transition: filter 0.5s ease;
    }

    .ct-map:hover iframe {
      filter: grayscale(0.3) contrast(1);
    }

    .ct-map__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, var(--white) 0%, transparent 15%, transparent 85%, var(--black) 100%);
      pointer-events: none;
    }

    /* ── CTA ── */
    .ct-cta {
      padding: var(--space-4xl) 0 var(--space-3xl);
      text-align: center;
    }

    .ct-cta__text {
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--gray-600);
      line-height: 1.3;
    }

    .ct-cta__text strong {
      color: var(--rosa);
    }

    /* ── ENTRANCE ANIMATIONS ── */
    .ct-reveal {
      opacity: 0;
      transform: translateY(30px);
    }

    .ct-strip-reveal {
      opacity: 0;
      transform: translateX(-40px);
    }
